// +------------------------------------------------------------+
// | CLASSES                                                    |
// +------------------------------------------------------------+

function _t_ct_pt(id, ctDomain, aid)
{
    this.version = 'v2';
    this.id      = id;
    this.ctDomain  = ctDomain;
    this.aid     = aid;
    this.key     = null;
    this.referer = encodeURIComponent(window.location.href);
    this.ctutn   = null;
    this.ctutv   = null;
    this.tpid    = null;
    this.rcs_l   = null;
    this.rcs_t   = null;
    this.rcs_d   = null;
    this.rcs_i   = null;

    // Complex pixel values.
    this.action_type        = null;
    this.initial_fire_delay = null;
    this.num_fires_per_view = null;
    this.fire_repeat_sleep  = null;
    this.total_num_fired    = null;

    // +----------------+
    // | Public Methods |
    // +----------------+

    this.get_page_view_tracker = function()
    {
        return this._get_tracking_base_url()
               + 't.gif'
               + '?c='
               + this.id
               + '&r='
               + this.referer
               + '&s=1'
               + '&a='
               + this.aid
               + this._get_ctu_qs()
               + this._get_tpid_qs()
               + this._get_rcs_qs();
    };

    this.set_rcs = function(l, t, d, i)
    {
        this.rcs_l = encodeURIComponent(l);
        this.rcs_i = encodeURIComponent(i);

        this.rcs_t = t;
        if (t.length > 100)
        {
            this.rcs_t = t.substr(0, 97) + '...';
        }

        this.rcs_d = d;
        if (d.length > 250)
        {
            this.rcs_d = d.substr(0, 247) + '...';
        }

        this.rcs_t = encodeURIComponent(this.rcs_t);
        this.rcs_d = encodeURIComponent(this.rcs_d);
    };

    this.set_tpid = function(tpid)
    {
        this.tpid = encodeURIComponent(tpid);
    };

    this.set_complex_fire_values = function(action_type,
                                            initial_fire_delay,
                                            num_fires_per_view,
                                            fire_repeat_sleep)
    {
        this.action_type = action_type;
        this.initial_fire_delay = initial_fire_delay;
        this.num_fires_per_view = num_fires_per_view;
        this.fire_repeat_sleep = fire_repeat_sleep;

        this.total_num_fired = 0;
    }

    this.track_action_complex = function()
    {
        var inst = this;

        if (this.action_type === 'delayed' && this.total_num_fired === 0)
        {
            setTimeout(function() {
                inst.track_action();
            }, this.initial_fire_delay * 1000);

            return;
        }
        else if (this.action_type === 'repetitive')
        {
            if (this.total_num_fired === 0)
            {
                setTimeout(function() {
                    inst.track_action();
                }, this.initial_fire_delay * 1000);
            }
            else if (this.total_num_fired <= this.num_fires_per_view)
            {
                setTimeout(function() {
                    inst.track_action();
                }, this.fire_repeat_sleep * 1000);
            }
        }
    }

    this.is_complex = function () {
        return this.action_type === 'delayed' || this.action_type === 'repetitive';
    }

    this.track_action = function()
    {
        if (this.is_complex() &&
            this.total_num_fired === this.num_fires_per_view)
        {
            return;
        }

        var img;

        img = document.createElement('img');
        img.id = 'tpv';
        img.width = '1';
        img.height = '1';
        img.src = this._cache_bust(this.get_page_view_tracker());
        img.alt = '';

        document.body.appendChild(img);

        this.total_num_fired++;

        if (this.is_complex())
        {
            this.track_action_complex();
        }
    };

    // +-----------------+
    // | Private Methods |
    // +-----------------+

    this._cache_bust = function(url)
    {
        return this._url_adjoin_qs(url, { api_z : Math.random() });
    };

    this._cast_to_string = function(a)
    {
        if (typeof a == 'boolean')
        {
            return a ? '1' : '0';
        }

        if (typeof a == 'object' && !a)
        {
            return '';
        }

        return encodeURIComponent('' + a);
    };

    this._get_ctu_qs = function()
    {
        var qs;

        qs = '';
        if (this.ctutn != null && this.ctutv != null)
        {
            qs = '&' + this.ctutn + '=' + this.ctutv;
        }

        return qs;
    };

    this._get_ct_domain_prefix = function()
    {
        return this.ctDomain + '-';
    };

    this._get_rcs_qs = function()
    {
        var qs;

        qs = '';
        if (this.rcs_l != null && this.rcs_t != null && this.rcs_d != null)
        {
            qs =   '&rcs_l=' + this.rcs_l
                 + '&rcs_t=' + this.rcs_t
                 + '&rcs_d=' + this.rcs_d
                 + '&rcs_i=' + this.rcs_i;
        }

        return qs;
    };

    this._get_tpid_qs = function()
    {
        var qs;

        qs = '';
        if (this.tpid != null && this.tpid.length > 0)
        {
            qs = '&tpid=' + this.tpid;
        }

        return qs;
    };

    this._get_tracking_base_url = function()
    {
        return document.location.protocol
               + '//'
               + this._get_ct_domain_prefix()
               + 't.crowdtwist.com/'
               + this.version
               + '/';
    };

    this._url_adjoin_qs = function(url, table)
    {
        var parts = url.split('?');
        var vars = [];

        if (parts.length == 2)
        {
            var name_value_pairs = parts[1].split('&');
            for (var i = 0; i < name_value_pairs.length; i++)
            {
                var name = name_value_pairs[i].split('=')[0];
                if (name && !table.hasOwnProperty(name))
                {
                    vars.push(name_value_pairs[i]);
                }
            }
        }

        for (var key in table)
        {
            vars.push(key + '=' + this._cast_to_string(table[key]));
        }

        return parts[0] + '?' + vars.join('&');
    };
};

// +------------------------------------------------------------+
// | CLIENT FUNCTIONS                                           |
// +------------------------------------------------------------+

/**
 * Rendered:     2025-01-23 09:31:10
 * Site ID:      2
 * Client ID:    66
 * Cachebuster:  1733324866445
 * Num. Actions: 4640
 */

/**
 * Action name:    101:netflixmattmurdock
 * Action created: 2018-10-19 00:00:00
 */
function ct_trck_marvel_410064718(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4338);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Agentsofshield:10favoritegadgets
 * Action created: 2018-03-06 00:00:00
 */
function ct_trck_marvel_410059365(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2783);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Article - Disneyparks
 * Action created: 2019-08-27 00:00:00
 */
function ct_trck_marvel_410081808(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Discover - Goldenage
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080508(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - 90scrossover
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080516(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9262);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - Fashion70s
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080513(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9260);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - Hairstyles80s
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080514(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9261);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - Iconiccomics
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080518(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - Marvelcomics1pulllist
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080519(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9265);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - Marvelsbirthday80th
 * Action created: 2019-09-03 00:00:00
 */
function ct_trck_marvel_410082054(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - Partyonems
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080517(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - Silveragemonsters
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080511(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9259);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Anniversary: Video - Teamorigins60s
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080510(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandthewasp:wartvspot
 * Action created: 2018-06-27 00:00:00
 */
function ct_trck_marvel_410061391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3448);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandthewasp:worldpremiere
 * Action created: 2018-06-25 00:00:00
 */
function ct_trck_marvel_410061316(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandwasp:evangelinelillypremiere
 * Action created: 2018-06-26 00:00:00
 */
function ct_trck_marvel_410061381(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3441);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandwasp:hannahjohnkamenpremiere
 * Action created: 2018-06-26 00:00:00
 */
function ct_trck_marvel_410061384(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3444);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandwasp:kevinfeigepremiere
 * Action created: 2018-06-26 00:00:00
 */
function ct_trck_marvel_410061382(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3442);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandwasp:laurencefishburnepremiere
 * Action created: 2018-06-26 00:00:00
 */
function ct_trck_marvel_410061383(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3443);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandwasp:newtrailer
 * Action created: 2018-05-02 00:00:00
 */
function ct_trck_marvel_410060561(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandwasp:officialtrailer
 * Action created: 2018-01-30 00:00:00
 */
function ct_trck_marvel_410059032(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandwasp:paulruddpremiere
 * Action created: 2018-06-26 00:00:00
 */
function ct_trck_marvel_410061380(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3440);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Antmanandwasp:tipremiere
 * Action created: 2018-06-26 00:00:00
 */
function ct_trck_marvel_410061385(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3445);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    article view the latest edition of music to marvel by
 * Action created: 2016-03-21 17:03:30
 */
function ct_trck_marvel_410049132(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    article view the latest edition of your man at marvel games
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049131(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Cloakanddaggerfinalethoughts
 * Action created: 2018-08-06 00:00:00
 */
function ct_trck_marvel_410062330(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Cloakanddaggertolife
 * Action created: 2018-08-06 00:00:00
 */
function ct_trck_marvel_410062332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3719);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Comics - Newmutantsincomics
 * Action created: 2020-01-07 00:00:00
 */
function ct_trck_marvel_410086818(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10760);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Funko Short
 * Action created: 2018-07-26 15:27:22
 */
function ct_trck_marvel_410062090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Greatestfemalemarvelsuperheroes
 * Action created: 2018-08-16 00:00:00
 */
function ct_trck_marvel_410062603(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Iron Fist Season 2 Trailer
 * Action created: 2018-07-31 00:00:00
 */
function ct_trck_marvel_410062115(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3679);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Ironmanlookback
 * Action created: 2018-08-29 00:00:00
 */
function ct_trck_marvel_410062759(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Kellythompsonwestcoastavengers
 * Action created: 2018-08-23 00:00:00
 */
function ct_trck_marvel_410062669(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Lukecage#1digital
 * Action created: 2018-08-20 00:00:00
 */
function ct_trck_marvel_410062633(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Margaretstohltlocm#2
 * Action created: 2018-08-23 00:00:00
 */
function ct_trck_marvel_410062670(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3941);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Marvelrunawayshulu
 * Action created: 2018-08-15 00:00:00
 */
function ct_trck_marvel_410062588(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Muaugust
 * Action created: 2018-08-01 00:00:00
 */
function ct_trck_marvel_410062132(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Museptember
 * Action created: 2018-09-04 00:00:00
 */
function ct_trck_marvel_410062823(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4062);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Robcoddryfantomex
 * Action created: 2019-11-01 00:00:00
 */
function ct_trck_marvel_410084979(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10463);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article: Steveditkopages
 * Action created: 2018-07-16 00:00:00
 */
function ct_trck_marvel_410061668(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3561);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article:cloakanddaggerpromo
 * Action created: 2018-03-01 00:00:00
 */
function ct_trck_marvel_410059322(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2760);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article:daredevilfisk
 * Action created: 2018-10-11 00:00:00
 */
function ct_trck_marvel_410057428(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article:e3spider-mangamegameplay
 * Action created: 2018-07-12 00:00:00
 */
function ct_trck_marvel_410060990(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3519);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article:infinitywarprelude
 * Action created: 2018-03-26 00:00:00
 */
function ct_trck_marvel_410059817(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2923);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article:intlwomensday
 * Action created: 2018-03-09 00:00:00
 */
function ct_trck_marvel_410059398(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article:jessicajonesmdo
 * Action created: 2018-07-18 00:00:00
 */
function ct_trck_marvel_410061714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3583);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Article:risingvideo
 * Action created: 2017-12-07 00:00:00
 */
function ct_trck_marvel_410058356(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article -  Endgameewcovers
 * Action created: 2019-04-10 00:00:00
 */
function ct_trck_marvel_410072588(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Againstallodds
 * Action created: 2019-04-24 00:00:00
 */
function ct_trck_marvel_410073310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7119);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Avengersmeeting
 * Action created: 2019-04-26 00:00:00
 */
function ct_trck_marvel_410073469(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Blackwidowprimer
 * Action created: 2019-04-15 00:00:00
 */
function ct_trck_marvel_410072950(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Capprimer
 * Action created: 2019-04-11 00:00:00
 */
function ct_trck_marvel_410072652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Captainmarvelprimer
 * Action created: 2019-04-17 00:00:00
 */
function ct_trck_marvel_410073052(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Chrisevansfavoritescene
 * Action created: 2019-03-28 00:00:00
 */
function ct_trck_marvel_410071510(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Chrisevanslastday
 * Action created: 2019-03-28 00:00:00
 */
function ct_trck_marvel_410071511(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Diamondselect
 * Action created: 2019-04-09 00:00:00
 */
function ct_trck_marvel_410072552(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6859);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Disneyplusexpandinguniverse
 * Action created: 2019-11-13 00:00:00
 */
function ct_trck_marvel_410085139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Eventsafter
 * Action created: 2019-04-09 00:00:00
 */
function ct_trck_marvel_410072550(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Hawkeyeprimer
 * Action created: 2019-04-16 00:00:00
 */
function ct_trck_marvel_410072995(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6979);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Hulkprimer
 * Action created: 2019-04-19 00:00:00
 */
function ct_trck_marvel_410073139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Jimmykimmel
 * Action created: 2019-04-11 00:00:00
 */
function ct_trck_marvel_410072651(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Mcupicture
 * Action created: 2019-04-25 00:00:00
 */
function ct_trck_marvel_410073368(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Rhodeyprimer
 * Action created: 2019-04-19 00:00:00
 */
function ct_trck_marvel_410073138(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Thanosrefresher
 * Action created: 2019-04-26 00:00:00
 */
function ct_trck_marvel_410073468(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Thorprimer
 * Action created: 2019-04-12 00:00:00
 */
function ct_trck_marvel_410072730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6939);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Timetravel
 * Action created: 2019-04-24 00:00:00
 */
function ct_trck_marvel_410073311(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7120);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Tonystarkprimer
 * Action created: 2019-04-09 00:00:00
 */
function ct_trck_marvel_410072555(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6861);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Article - Twitteremojis
 * Action created: 2019-04-17 00:00:00
 */
function ct_trck_marvel_410073032(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6999);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Ironman1d+
 * Action created: 2019-11-14 00:00:00
 */
function ct_trck_marvel_410085141(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Livestream - Bestmoments
 * Action created: 2019-04-23 00:00:00
 */
function ct_trck_marvel_410073212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7100);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Livestream - Diesel
 * Action created: 2019-04-23 00:00:00
 */
function ct_trck_marvel_410073211(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7099);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Livestream - Prattjohansson
 * Action created: 2019-04-23 00:00:00
 */
function ct_trck_marvel_410073210(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Livestream - Rdjfavreau
 * Action created: 2019-04-23 00:00:00
 */
function ct_trck_marvel_410073209(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Marvel101 - Hawkeye
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072301(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6784);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Marvel101 - Infinitygauntlet
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072303(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6786);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Marvel101 - Thor
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072293(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6782);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Readinglist - Bestbattles
 * Action created: 2019-04-16 00:00:00
 */
function ct_trck_marvel_410072300(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6978);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Readinglist - Infinity
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072304(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6787);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Readinglist - Infinitystones
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072302(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6785);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Readinglist - Starthere
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072291(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6780);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Readinglist - Thanosmadtitan
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072305(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6788);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers: Readinglist - Thanoswins
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072306(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6789);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers:infinitywar
 * Action created: 2018-03-16 00:00:00
 */
function ct_trck_marvel_410059444(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Avengers:superbowltrailer
 * Action created: 2018-02-05 00:00:00
 */
function ct_trck_marvel_410059088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Article
 * Action created: 2016-10-13 00:00:00
 */
function ct_trck_marvel_410050920(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1244);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Article - Black Panther A New Legacy
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1139);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Article - Black Panther's Prey
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050357(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1146);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Article - Black Panther's Pride Series
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050349(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Article - Black Panther: World Of Wakanda
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050352(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1141);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Article - Black Panther: World Of Wakanda Series
 * Action created: 2016-08-15 15:43:14
 */
function ct_trck_marvel_410050353(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1142);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Article - Chris Sprouse Roars Onto Black Panther
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050358(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1147);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Article - History Of Black Panther Series
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050348(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Digital Comics - Black Panther Discover List
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050359(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1148);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Digital Comics - Marvel Essentials
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050360(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1149);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Video - Black Panther: A Nation Under Our Feet
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050354(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1143);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Video - Black Panther: Black Panther Featurette
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050355(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1144);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Black Panther: Video - Marvel 101 - Black Panther
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050356(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1145);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpanther:2018 Livestream
 * Action created: 2018-01-29 00:00:00
 */
function ct_trck_marvel_410059031(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpanther:doramilaje-marvel101
 * Action created: 2018-02-09 00:00:00
 */
function ct_trck_marvel_410059130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpanther:kingfeaturette
 * Action created: 2018-01-24 00:00:00
 */
function ct_trck_marvel_410059009(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2539);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpanther:marvel101-studios
 * Action created: 2018-02-15 00:00:00
 */
function ct_trck_marvel_410059174(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2682);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpanther:newtrailerandposter
 * Action created: 2018-01-29 15:10:53
 */
function ct_trck_marvel_410056748(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpanther:officialtrailer
 * Action created: 2018-01-25 00:00:00
 */
function ct_trck_marvel_410059012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpanther:pagetoscreen
 * Action created: 2018-01-09 00:00:00
 */
function ct_trck_marvel_410058812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpanther:wakandafeaturette
 * Action created: 2018-01-23 00:00:00
 */
function ct_trck_marvel_410058996(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpantherlexus:ch6
 * Action created: 2018-01-08 00:00:00
 */
function ct_trck_marvel_410058710(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpantherlexus:ch7
 * Action created: 2018-01-08 00:00:00
 */
function ct_trck_marvel_410058711(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpantherlexus:ch8
 * Action created: 2018-01-08 00:00:00
 */
function ct_trck_marvel_410058712(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2459);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Blackpantherlexus:chapter5
 * Action created: 2018-01-03 00:00:00
 */
function ct_trck_marvel_410058709(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2442);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captain America Civil War Premiere Live Blog Feed
 * Action created: 2016-04-20 10:45:32
 */
function ct_trck_marvel_410049319(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - 10definitiveissues
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5520);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Avengershistory
 * Action created: 2019-02-11 00:00:00
 */
function ct_trck_marvel_410069354(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Disneyland
 * Action created: 2019-02-28 00:00:00
 */
function ct_trck_marvel_410070195(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6078);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Essentialreading
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068829(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5518);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Europeangala
 * Action created: 2019-03-01 00:00:00
 */
function ct_trck_marvel_410070215(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Everythingweknow
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068830(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5519);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Fightskrulls
 * Action created: 2019-02-25 00:00:00
 */
function ct_trck_marvel_410070035(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6004);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Fivegames
 * Action created: 2019-02-21 00:00:00
 */
function ct_trck_marvel_410069949(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Flerken
 * Action created: 2019-03-13 00:00:00
 */
function ct_trck_marvel_410070628(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Giftguide
 * Action created: 2019-03-01 00:00:00
 */
function ct_trck_marvel_410070210(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Historypart1
 * Action created: 2019-02-07 00:00:00
 */
function ct_trck_marvel_410069036(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5718);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Historypart2
 * Action created: 2019-02-07 00:00:00
 */
function ct_trck_marvel_410069270(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5720);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Kreeskrullwarfeaturette
 * Action created: 2019-02-25 00:00:00
 */
function ct_trck_marvel_410070034(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6003);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Legendsfigures
 * Action created: 2019-02-25 00:00:00
 */
function ct_trck_marvel_410070071(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Liberationrun
 * Action created: 2019-02-27 00:00:00
 */
function ct_trck_marvel_410070130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Mpq
 * Action created: 2019-02-27 00:00:00
 */
function ct_trck_marvel_410070129(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Openingweekend
 * Action created: 2019-03-11 00:00:00
 */
function ct_trck_marvel_410070554(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Pies
 * Action created: 2019-02-07 00:00:00
 */
function ct_trck_marvel_410069269(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5719);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Plane
 * Action created: 2019-02-07 00:00:00
 */
function ct_trck_marvel_410069249(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Reviews
 * Action created: 2019-03-08 00:00:00
 */
function ct_trck_marvel_410070490(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Russobrothers
 * Action created: 2019-02-08 00:00:00
 */
function ct_trck_marvel_410069333(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Article - Theskrullscomics
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068834(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Characterpage - Caroldanvers
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5521);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Characterpage - Mar-vell
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068840(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5529);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Characterpage - Nickfury
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068835(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Characterpage - Ronan
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068837(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5526);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Characterpage - Talos
 * Action created: 2019-03-07 00:00:00
 */
function ct_trck_marvel_410070450(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6219);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Characterpage - Yonrogg
 * Action created: 2019-03-07 00:00:00
 */
function ct_trck_marvel_410070449(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6218);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Livestream
 * Action created: 2019-02-26 00:00:00
 */
function ct_trck_marvel_410069252(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6040);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Carolcorps
 * Action created: 2019-02-15 00:00:00
 */
function ct_trck_marvel_410069488(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Feige
 * Action created: 2019-03-05 00:00:00
 */
function ct_trck_marvel_410070349(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6158);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Gooseredcarpet
 * Action created: 2019-03-05 00:00:00
 */
function ct_trck_marvel_410070351(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6160);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Jacksongregg
 * Action created: 2019-03-05 00:00:00
 */
function ct_trck_marvel_410070350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6159);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Kree101
 * Action created: 2019-03-01 00:00:00
 */
function ct_trck_marvel_410070211(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Larsonlynch
 * Action created: 2019-03-05 00:00:00
 */
function ct_trck_marvel_410070348(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Marvel101
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068828(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Mcoc
 * Action created: 2019-02-26 00:00:00
 */
function ct_trck_marvel_410070089(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Skrulls101
 * Action created: 2019-02-25 00:00:00
 */
function ct_trck_marvel_410070033(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6002);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel: Video - Superbowlspot
 * Action created: 2019-02-04 00:00:00
 */
function ct_trck_marvel_410069128(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Captainmarvel:ewfirstlook
 * Action created: 2018-09-05 00:00:00
 */
function ct_trck_marvel_410062833(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Article - Artistinfluences
 * Action created: 2019-07-23 00:00:00
 */
function ct_trck_marvel_410079253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Article - Markbagley
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080491(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9238);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Article - Pulllist
 * Action created: 2019-08-07 00:00:00
 */
function ct_trck_marvel_410080151(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Article - Reviewscarnage
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080490(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Article - Specialcovers
 * Action created: 2019-07-23 00:00:00
 */
function ct_trck_marvel_410079255(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8740);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Article - Twimepisode
 * Action created: 2019-07-23 00:00:00
 */
function ct_trck_marvel_410079256(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8741);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Article - Variantcovers
 * Action created: 2019-07-23 00:00:00
 */
function ct_trck_marvel_410079254(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8739);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Characterpage - Cletuskasady
 * Action created: 2019-07-23 00:00:00
 */
function ct_trck_marvel_410079258(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8743);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Discover - Maximumevent
 * Action created: 2019-08-05 00:00:00
 */
function ct_trck_marvel_410079943(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Discover - Villaincarnage
 * Action created: 2019-07-23 13:21:26
 */
function ct_trck_marvel_410079257(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8742);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Video - Ems
 * Action created: 2019-08-01 00:00:00
 */
function ct_trck_marvel_410079810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Carnage: Video - Marvel101
 * Action created: 2019-07-23 00:00:00
 */
function ct_trck_marvel_410079259(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8744);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Celebrate Marvel's Legacy With Marvel Comics #1000
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074492(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Apocalypse - Characterhunt
 * Action created: 2020-10-26 00:00:00
 */
function ct_trck_marvel_410096988(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12224);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Avengers
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6781);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Blackpantheronscreen
 * Action created: 2018-10-25 00:00:00
 */
function ct_trck_marvel_410064766(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4375);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Blackwidow
 * Action created: 2018-10-24 00:00:00
 */
function ct_trck_marvel_410064762(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4372);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Cable - Characterhunt
 * Action created: 2020-10-26 00:00:00
 */
function ct_trck_marvel_410096986(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Captainamerica
 * Action created: 2018-10-24 00:00:00
 */
function ct_trck_marvel_410064759(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4369);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Cloaktyronejohnson
 * Action created: 2019-03-12 00:00:00
 */
function ct_trck_marvel_410070610(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6318);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Cypher - Characterhunt
 * Action created: 2020-10-26 00:00:00
 */
function ct_trck_marvel_410096985(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12222);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Daggertandybowen
 * Action created: 2019-03-12 00:00:00
 */
function ct_trck_marvel_410070609(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Hawkeyebarton
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072294(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6783);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Ironman
 * Action created: 2018-10-24 00:00:00
 */
function ct_trck_marvel_410064760(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4370);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Loki
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074499(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7585);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Magik - Characterhunt
 * Action created: 2020-10-26 00:00:00
 */
function ct_trck_marvel_410096984(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12221);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Malekith
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074495(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7581);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Mysterio
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075709(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Odin
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074497(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7583);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Peterparker
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075710(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8039);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Rocket
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072307(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6790);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Spiderman
 * Action created: 2018-10-24 00:00:00
 */
function ct_trck_marvel_410064761(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4371);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Thanos
 * Action created: 2018-10-25 00:00:00
 */
function ct_trck_marvel_410064767(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4376);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Thor
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074503(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7589);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Warmachinerhodes
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6791);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characterpage: Wolverine - Characterhunt
 * Action created: 2020-10-26 00:00:00
 */
function ct_trck_marvel_410096983(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12220);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characters - Caroldanverscaptainmarvel
 * Action created: 2020-03-04 00:00:00
 */
function ct_trck_marvel_410087912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11083);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characters - Gwenstacyghostspider
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087963(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11088);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characters - Natasharomanoffblackwidow
 * Action created: 2020-03-04 00:00:00
 */
function ct_trck_marvel_410087906(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11078);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characters - Ororomunroestorm
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087970(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11096);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characters - Yeleabelovablackwidow
 * Action created: 2020-03-04 00:00:00
 */
function ct_trck_marvel_410087911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11082);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Characters: Morganlefay
 * Action created: 2019-12-04 00:00:00
 */
function ct_trck_marvel_410085345(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10606);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Check Out A Fellow Marvel Insider's Top Picks
 * Action created: 2019-03-22 13:41:59
 */
function ct_trck_marvel_410071350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Check Out Luke Cage In Marvel Contest Of Champions
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050291(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1101);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Check Out The Marvel Sdcc Hub Page
 * Action created: 2016-06-15 10:40:36
 */
function ct_trck_marvel_410049808(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 998);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Clicked On Captain America Newsletter
 * Action created: 2016-03-31 10:30:08
 */
function ct_trck_marvel_410049192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Clicked On Sdcc Newsletter
 * Action created: 2016-03-31 10:30:17
 */
function ct_trck_marvel_410049195(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Cloakanddagger:aiwpremiere
 * Action created: 2018-05-18 00:00:00
 */
function ct_trck_marvel_410060824(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3262);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Cloakanddagger:extendedtrailer
 * Action created: 2018-05-01 00:00:00
 */
function ct_trck_marvel_410060543(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3183);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Cloakanddagger:interview-chadwickboseman
 * Action created: 2018-05-18 00:00:00
 */
function ct_trck_marvel_410060823(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3261);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Cloakanddagger:letsplay
 * Action created: 2018-06-05 00:00:00
 */
function ct_trck_marvel_410060944(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3324);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Cloakanddagger:sneakpeek
 * Action created: 2018-04-13 00:00:00
 */
function ct_trck_marvel_410060267(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3091);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Cloakanddagger:sneakpeek2onfreeform
 * Action created: 2018-05-18 00:00:00
 */
function ct_trck_marvel_410060822(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3260);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Cloakanddagger:trailer3/20
 * Action created: 2018-03-20 00:00:00
 */
function ct_trck_marvel_410059765(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2886);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comic: Article - Conanbattlefortheserpentcrown#1
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086884(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10779);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comic: Article - Niciezajuggernaut
 * Action created: 2020-02-18 00:00:00
 */
function ct_trck_marvel_410087580(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10980);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comicis: Discover - Createyourownjan2021
 * Action created: 2021-01-11 00:00:00
 */
function ct_trck_marvel_410098238(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13360);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics - Article - Fallofhouseofx
 * Action created: 2023-11-15 09:45:52
 */
function ct_trck_marvel_410116684(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17150);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics - Article: Modakvillainposter
 * Action created: 2021-04-20 00:00:00
 */
function ct_trck_marvel_410101320(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    comics visit the on-sale release calendar
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 100yearsdisneyvariantcovers
 * Action created: 2023-01-09 16:14:49
 */
function ct_trck_marvel_410112658(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16372);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 10moments
 * Action created: 2023-09-26 10:40:48
 */
function ct_trck_marvel_410116089(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17033);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 10realms
 * Action created: 2019-03-26 00:00:00
 */
function ct_trck_marvel_410071435(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 10xmennotdead
 * Action created: 2020-01-31 00:00:00
 */
function ct_trck_marvel_410087228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10872);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 1970smoribiusthelivingvampire
 * Action created: 2021-02-09 00:00:00
 */
function ct_trck_marvel_410099154(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13761);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 2021eisnernominations
 * Action created: 2021-06-09 00:00:00
 */
function ct_trck_marvel_410102287(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14667);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 2021eisnerwinners
 * Action created: 2021-07-27 00:00:00
 */
function ct_trck_marvel_410103263(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14821);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 20thcenturystudiosimprint
 * Action created: 2023-03-03 11:36:51
 */
function ct_trck_marvel_410113570(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16543);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 30free
 * Action created: 2022-07-12 16:42:33
 */
function ct_trck_marvel_410110311(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15865);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 3champsxofswords
 * Action created: 2020-10-21 00:00:00
 */
function ct_trck_marvel_410096729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12202);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 3monthwindow
 * Action created: 2020-10-19 00:00:00
 */
function ct_trck_marvel_410096716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 5brutalavengervavengerbattles
 * Action created: 2020-01-28 00:00:00
 */
function ct_trck_marvel_410087176(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10840);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 7thingsabouttheeternals
 * Action created: 2020-12-24 00:00:00
 */
function ct_trck_marvel_410098026(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13159);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 7thingsspiderwoman
 * Action created: 2020-08-20 00:00:00
 */
function ct_trck_marvel_410092242(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11830);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 80snewwave
 * Action created: 2019-06-26 00:00:00
 */
function ct_trck_marvel_410077770(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8318);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 80yearsofcapfoliosocietybook
 * Action created: 2021-03-17 00:00:00
 */
function ct_trck_marvel_410100769(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14281);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 80yearsofcaptainamerica
 * Action created: 2021-03-04 00:00:00
 */
function ct_trck_marvel_410099811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14104);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 81comics81years
 * Action created: 2020-08-28 00:00:00
 */
function ct_trck_marvel_410092377(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11879);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 85thhomagecovers
 * Action created: 2024-07-11 14:45:41
 */
function ct_trck_marvel_410122605(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18096);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 8storiesforblackhistory
 * Action created: 2021-02-04 00:00:00
 */
function ct_trck_marvel_410099074(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13683);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - 8womenheroes
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087978(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Aapiheritage
 * Action created: 2021-05-27 00:00:00
 */
function ct_trck_marvel_410102068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Abramsannouncement
 * Action created: 2019-06-20 00:00:00
 */
function ct_trck_marvel_410076289(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Absolutecarnageevent
 * Action created: 2019-07-15 00:00:00
 */
function ct_trck_marvel_410078576(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8638);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Agathaharknesscomichistory
 * Action created: 2021-02-25 00:00:00
 */
function ct_trck_marvel_410099678(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14004);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ahmedjungmsmarvel
 * Action created: 2020-10-20 00:00:00
 */
function ct_trck_marvel_410096723(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12200);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Alexrossmarvel#1
 * Action created: 2020-02-07 00:00:00
 */
function ct_trck_marvel_410087412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10915);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Alexrossvariants
 * Action created: 2020-07-28 00:00:00
 */
function ct_trck_marvel_410091858(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11741);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Allnewjjpodcast
 * Action created: 2020-03-02 00:00:00
 */
function ct_trck_marvel_410087886(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11076);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Allnewvenomvariants
 * Action created: 2024-10-08 15:57:02
 */
function ct_trck_marvel_410129772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19454);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Alyssawongironfist
 * Action created: 2022-05-23 15:35:46
 */
function ct_trck_marvel_410109494(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15751);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Amazingfantasy1000
 * Action created: 2022-05-13 15:27:59
 */
function ct_trck_marvel_410109371(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15733);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Amazingspidermanbeyond
 * Action created: 2021-09-15 00:00:00
 */
function ct_trck_marvel_410104500(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14941);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Amazingspidermansofar
 * Action created: 2020-02-14 00:00:00
 */
function ct_trck_marvel_410087536(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Amazingspidey1
 * Action created: 2022-01-13 00:00:00
 */
function ct_trck_marvel_410107445(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15350);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Americachavezinmarch
 * Action created: 2020-12-17 00:00:00
 */
function ct_trck_marvel_410097908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Americachavezmadeintheusa1
 * Action created: 2021-02-04 00:00:00
 */
function ct_trck_marvel_410099071(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13680);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Amulet
 * Action created: 2019-12-20 00:00:00
 */
function ct_trck_marvel_410085781(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10693);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Antman#1globalconspiracy
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086880(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10781);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Antmanwaspkangcomics
 * Action created: 2023-02-03 10:56:10
 */
function ct_trck_marvel_410113170(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16469);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Askedansweredwomcharlieanders
 * Action created: 2023-06-22 16:38:08
 */
function ct_trck_marvel_410115066(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16834);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Asmgangwarcrime
 * Action created: 2023-10-17 12:13:21
 */
function ct_trck_marvel_410116293(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17080);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Astonishingiceman
 * Action created: 2023-04-07 13:44:11
 */
function ct_trck_marvel_410113933(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16624);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Astonishinginfinitycomics
 * Action created: 2024-10-17 12:16:10
 */
function ct_trck_marvel_410130672(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19614);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Astonishingxmen
 * Action created: 2024-12-03 15:25:29
 */
function ct_trck_marvel_410134552(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20394);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Aug2020comics
 * Action created: 2020-05-21 00:00:00
 */
function ct_trck_marvel_410090321(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11485);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - August19mu
 * Action created: 2019-08-02 00:00:00
 */
function ct_trck_marvel_410079828(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avengers60stormbreakersvariantco1682626819
 * Action created: 2023-04-27 16:20:19
 */
function ct_trck_marvel_410114304(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16688);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avengersacademymarvelsvoicesinfi1719431831
 * Action created: 2024-06-26 15:57:11
 */
function ct_trck_marvel_410122492(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18013);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avengersacademyoliveirainterview
 * Action created: 2024-12-05 14:55:55
 */
function ct_trck_marvel_410134674(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20414);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avengersassemblealphatrailer
 * Action created: 2022-10-21 16:50:37
 */
function ct_trck_marvel_410111717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16156);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avengersempyre
 * Action created: 2020-10-12 00:00:00
 */
function ct_trck_marvel_410096288(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avengersmechstrike
 * Action created: 2020-11-17 00:00:00
 */
function ct_trck_marvel_410097399(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12385);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avengersmechstrike1
 * Action created: 2021-01-08 00:00:00
 */
function ct_trck_marvel_410098241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13342);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avengersxmen60alexrosscover
 * Action created: 2023-03-24 16:13:42
 */
function ct_trck_marvel_410113805(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16594);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Avsxandhoxpox
 * Action created: 2020-04-06 00:00:00
 */
function ct_trck_marvel_410089602(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11285);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Axejudgmentday
 * Action created: 2022-02-01 00:00:00
 */
function ct_trck_marvel_410107719(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15484);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Axejudgmentday2
 * Action created: 2022-03-16 17:15:16
 */
function ct_trck_marvel_410108515(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Axejudgmentday3
 * Action created: 2022-04-11 18:31:20
 */
function ct_trck_marvel_410108906(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15654);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Axejudgmenttiein
 * Action created: 2022-05-16 13:37:02
 */
function ct_trck_marvel_410109378(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15736);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Axejudgmentvariant
 * Action created: 2022-04-29 11:36:45
 */
function ct_trck_marvel_410109182(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15696);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Barwithnoname
 * Action created: 2024-04-01 14:03:11
 */
function ct_trck_marvel_410121717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17543);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bastion
 * Action created: 2024-04-24 15:11:03
 */
function ct_trck_marvel_410121963(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17650);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Benedictcomicbookstore
 * Action created: 2020-07-29 00:00:00
 */
function ct_trck_marvel_410091893(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11752);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bestcats
 * Action created: 2023-07-31 12:13:20
 */
function ct_trck_marvel_410115468(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16925);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bestnewmarvelcomiccharacters
 * Action created: 2019-12-27 00:00:00
 */
function ct_trck_marvel_410086707(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10708);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bestof2024
 * Action created: 2024-12-30 11:08:27
 */
function ct_trck_marvel_410136232(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20795);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Betaraybillsimonsonjohnson
 * Action created: 2021-03-31 00:00:00
 */
function ct_trck_marvel_410101045(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14480);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Beyondamazingspiderman
 * Action created: 2022-08-30 16:17:34
 */
function ct_trck_marvel_410111051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15978);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Biggestherovshero
 * Action created: 2023-08-11 09:41:41
 */
function ct_trck_marvel_410115559(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16944);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Biggestseriesarriveonmu
 * Action created: 2024-04-05 10:09:17
 */
function ct_trck_marvel_410121732(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17568);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Biginfinitymoments
 * Action created: 2024-11-27 09:32:45
 */
function ct_trck_marvel_410134253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20354);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackcat1
 * Action created: 2020-09-10 00:00:00
 */
function ct_trck_marvel_410092548(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackhistorymonthcoverartists
 * Action created: 2023-02-01 14:09:25
 */
function ct_trck_marvel_410113014(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16448);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackhistorymonthvariantcovers
 * Action created: 2022-11-30 15:04:47
 */
function ct_trck_marvel_410112250(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16272);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackhistorymonthvariants
 * Action created: 2025-01-09 12:52:12
 */
function ct_trck_marvel_410136812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20934);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackknightebonyblade
 * Action created: 2021-03-18 00:00:00
 */
function ct_trck_marvel_410100800(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14320);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackpanthercomics
 * Action created: 2022-11-02 10:11:08
 */
function ct_trck_marvel_410111842(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16194);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackpantherewing
 * Action created: 2023-02-24 15:57:03
 */
function ct_trck_marvel_410113441(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16534);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackpantherinspace
 * Action created: 2020-07-23 00:00:00
 */
function ct_trck_marvel_410091781(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11718);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackwhiteblooddeadpool
 * Action created: 2021-02-26 00:00:00
 */
function ct_trck_marvel_410099688(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackwidow#1look
 * Action created: 2020-02-28 00:00:00
 */
function ct_trck_marvel_410087739(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11065);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackwidow1
 * Action created: 2020-08-07 00:00:00
 */
function ct_trck_marvel_410092113(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11788);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackwidowcomics
 * Action created: 2021-07-08 00:00:00
 */
function ct_trck_marvel_410103037(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14765);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackwidowmcucovers
 * Action created: 2020-10-09 00:00:00
 */
function ct_trck_marvel_410096272(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackwidowongoingseriesapril
 * Action created: 2020-01-17 00:00:00
 */
function ct_trck_marvel_410087011(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10811);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Blackwidowwintersoldierromance
 * Action created: 2023-05-03 14:53:02
 */
function ct_trck_marvel_410114407(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16704);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bladesbestteamups
 * Action created: 2023-10-27 13:01:34
 */
function ct_trck_marvel_410116504(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17109);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bladespowers
 * Action created: 2024-01-12 09:31:05
 */
function ct_trck_marvel_410117177(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17255);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bloodhunt#1coverreveal
 * Action created: 2023-12-20 10:35:28
 */
function ct_trck_marvel_410117013(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17204);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bloodhunt#2miles
 * Action created: 2024-05-22 15:33:32
 */
function ct_trck_marvel_410122225(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17829);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bloodhuntjedmackaynews
 * Action created: 2024-03-08 17:42:32
 */
function ct_trck_marvel_410121536(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17427);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bloodstonefamily
 * Action created: 2022-10-12 10:17:16
 */
function ct_trck_marvel_410111525(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16116);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bobafettwarofthebountyhunters
 * Action created: 2021-02-16 00:00:00
 */
function ct_trck_marvel_410099292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13842);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bookofvishanti
 * Action created: 2022-05-06 09:38:08
 */
function ct_trck_marvel_410109258(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15715);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bryanedwardhillinterview
 * Action created: 2020-12-23 00:00:00
 */
function ct_trck_marvel_410098010(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Buckysamteamup
 * Action created: 2020-01-31 00:00:00
 */
function ct_trck_marvel_410087232(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10875);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Busiekthemarvels
 * Action created: 2020-02-14 00:00:00
 */
function ct_trck_marvel_410087527(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10955);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bwvenomwar
 * Action created: 2024-07-17 16:58:28
 */
function ct_trck_marvel_410122620(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18133);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Bystanders
 * Action created: 2019-09-17 00:00:00
 */
function ct_trck_marvel_410082897(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9839);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - C2e2summerofsymbiotes
 * Action created: 2023-04-03 10:42:50
 */
function ct_trck_marvel_410113876(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16612);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Cable1
 * Action created: 2019-12-20 00:00:00
 */
function ct_trck_marvel_410085783(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10695);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Calamitiesthatmadegwenom
 * Action created: 2021-01-13 00:00:00
 */
function ct_trck_marvel_410098310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13401);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Capamericamystery
 * Action created: 2022-06-14 14:14:10
 */
function ct_trck_marvel_410109932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15800);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Capcomvariants
 * Action created: 2024-09-09 14:17:04
 */
function ct_trck_marvel_410126872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18894);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Capsmadbombsaga
 * Action created: 2020-03-17 00:00:00
 */
function ct_trck_marvel_410088136(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11160);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainamercacenturygame
 * Action created: 2023-04-11 15:34:57
 */
function ct_trck_marvel_410113960(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16631);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainamericabestmoments
 * Action created: 2022-09-20 15:19:24
 */
function ct_trck_marvel_410111272(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16045);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainamericanewera
 * Action created: 2022-01-20 00:00:00
 */
function ct_trck_marvel_410107567(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15403);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainamericatheend
 * Action created: 2020-02-07 00:00:00
 */
function ct_trck_marvel_410087410(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10914);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captaincarter
 * Action created: 2021-12-10 00:00:00
 */
function ct_trck_marvel_410106385(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15196);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainmarvelbosslogicvariantcov1578515025
 * Action created: 2020-01-08 00:00:00
 */
function ct_trck_marvel_410086844(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10764);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainmarvelchat
 * Action created: 2021-07-22 00:00:00
 */
function ct_trck_marvel_410103203(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14802);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainmarvelfinalissue
 * Action created: 2023-03-21 14:41:47
 */
function ct_trck_marvel_410113763(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16586);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainmarvelroguerivalry
 * Action created: 2023-05-10 13:59:28
 */
function ct_trck_marvel_410114538(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16726);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Captainmarvelsofar
 * Action created: 2020-07-13 00:00:00
 */
function ct_trck_marvel_410091589(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11678);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Carnagewhattoread
 * Action created: 2019-11-07 00:00:00
 */
function ct_trck_marvel_410085066(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10498);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Celebratepride
 * Action created: 2020-06-25 00:00:00
 */
function ct_trck_marvel_410090929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11607);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Celebritiesathletesappearinhellf1620319928
 * Action created: 2021-05-06 00:00:00
 */
function ct_trck_marvel_410101523(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14563);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Charlesxavierfamilytree
 * Action created: 2022-06-08 17:08:58
 */
function ct_trck_marvel_410109724(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15787);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Chriscantwellironman
 * Action created: 2020-08-13 00:00:00
 */
function ct_trck_marvel_410092174(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11807);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Cindymoonsilk
 * Action created: 2020-02-29 00:00:00
 */
function ct_trck_marvel_410087753(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11071);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Claremontanniversary
 * Action created: 2020-09-16 00:00:00
 */
function ct_trck_marvel_410092672(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11985);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Claremontreturnstowolverine
 * Action created: 2020-12-01 00:00:00
 */
function ct_trck_marvel_410097627(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Cloakdaggersnapshots1
 * Action created: 2020-09-08 00:00:00
 */
function ct_trck_marvel_410092454(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Cocacolainfinitycomics
 * Action created: 2024-05-03 10:05:06
 */
function ct_trck_marvel_410122006(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17691);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Cocacolavariants
 * Action created: 2024-06-13 11:14:42
 */
function ct_trck_marvel_410122373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17950);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Coccosmicghostrider
 * Action created: 2020-10-22 00:00:00
 */
function ct_trck_marvel_410096938(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12208);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Codyziglarspiderman
 * Action created: 2022-01-06 00:00:00
 */
function ct_trck_marvel_410107357(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15324);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Collectionsjuly1
 * Action created: 2020-06-05 00:00:00
 */
function ct_trck_marvel_410090460(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11521);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Collectionsjune3
 * Action created: 2020-05-08 00:00:00
 */
function ct_trck_marvel_410090210(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11427);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Coloristsadvice
 * Action created: 2023-01-19 12:00:53
 */
function ct_trck_marvel_410112842(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16408);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Comicbookday2023
 * Action created: 2022-11-02 13:23:36
 */
function ct_trck_marvel_410111859(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16195);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Comicbookdaycovers
 * Action created: 2020-02-07 00:00:00
 */
function ct_trck_marvel_410087417(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10919);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Comicseighttentpoles
 * Action created: 2021-09-01 00:00:00
 */
function ct_trck_marvel_410104012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14895);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Comicsjuly8
 * Action created: 2020-06-11 00:00:00
 */
function ct_trck_marvel_410090621(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11544);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Comicsprospiderman
 * Action created: 2022-09-21 12:44:33
 */
function ct_trck_marvel_410111280(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16046);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Comunidades2023
 * Action created: 2023-08-04 11:49:45
 */
function ct_trck_marvel_410115520(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16932);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Connectinghelfiregalacovers
 * Action created: 2021-05-04 00:00:00
 */
function ct_trck_marvel_410101491(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14560);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Connycc23jeffs3
 * Action created: 2023-10-16 10:07:21
 */
function ct_trck_marvel_410116280(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17076);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Consdcc23msmarvel
 * Action created: 2023-07-23 12:02:57
 */
function ct_trck_marvel_410115391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16912);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Consdcc23xmen
 * Action created: 2023-08-01 09:16:59
 */
function ct_trck_marvel_410115489(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16928);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Contestofchaos
 * Action created: 2023-05-19 15:57:10
 */
function ct_trck_marvel_410114670(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16747);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Couplesnowexes
 * Action created: 2020-02-14 00:00:00
 */
function ct_trck_marvel_410087525(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10953);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Creatorfavoritecouples
 * Action created: 2023-02-13 15:17:36
 */
function ct_trck_marvel_410113254(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16491);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Dailybuglereporters
 * Action created: 2020-01-03 00:00:00
 */
function ct_trck_marvel_410086766(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10746);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Dakenrobwilliams
 * Action created: 2021-01-12 00:00:00
 */
function ct_trck_marvel_410098291(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13381);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Daredevil650issue
 * Action created: 2022-07-14 14:08:49
 */
function ct_trck_marvel_410110323(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15869);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Daredevilcostumes
 * Action created: 2024-02-28 17:36:36
 */
function ct_trck_marvel_410121435(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17383);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Daredevildarkestmoments
 * Action created: 2023-05-11 15:18:52
 */
function ct_trck_marvel_410114557(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16729);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Daredevilkig
 * Action created: 2020-12-18 00:00:00
 */
function ct_trck_marvel_410097925(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Daredevilnyc
 * Action created: 2023-04-18 16:45:06
 */
function ct_trck_marvel_410114062(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16647);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Darkmarvel
 * Action created: 2020-02-21 11:33:02
 */
function ct_trck_marvel__410087632(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Darkphoenixbeginning
 * Action created: 2019-06-04 00:00:00
 */
function ct_trck_marvel_410075371(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7900);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Darkphoenixenter
 * Action created: 2019-06-06 00:00:00
 */
function ct_trck_marvel_410075509(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Darkphoenixreturns
 * Action created: 2019-06-06 00:00:00
 */
function ct_trck_marvel_410075529(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7958);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Darkphoenixrisesvariants
 * Action created: 2019-10-16 00:00:00
 */
function ct_trck_marvel_410084196(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10320);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Darkwebtrailer
 * Action created: 2022-10-10 14:33:58
 */
function ct_trck_marvel_410111508(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16112);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Darkxmen
 * Action created: 2023-04-07 17:24:07
 */
function ct_trck_marvel_410113938(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16626);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Dazzlersoloseries
 * Action created: 2024-05-15 14:22:52
 */
function ct_trck_marvel_410122146(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17769);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deaconfrost
 * Action created: 2023-05-19 15:58:34
 */
function ct_trck_marvel_410114671(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16748);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadpool#1trailer
 * Action created: 2024-04-03 16:28:28
 */
function ct_trck_marvel_410121710(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17544);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadpool&wolverinewwiiitrailer
 * Action created: 2024-03-29 12:14:18
 */
function ct_trck_marvel_410121693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17526);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadpool30robliefeld
 * Action created: 2020-12-11 00:00:00
 */
function ct_trck_marvel_410097820(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadpoolnerdy301
 * Action created: 2021-02-05 00:00:00
 */
function ct_trck_marvel_410099090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13701);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadpoolorigin
 * Action created: 2020-01-02 00:00:00
 */
function ct_trck_marvel_410086752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadpoolreadingguide
 * Action created: 2024-05-28 11:46:47
 */
function ct_trck_marvel_410122243(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17849);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadpoolrelationship
 * Action created: 2020-02-20 00:00:00
 */
function ct_trck_marvel_410087608(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadpoolvwolverineslashemupinter1718741750
 * Action created: 2024-06-18 16:15:50
 */
function ct_trck_marvel_410122412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17955);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deadxmen
 * Action created: 2023-10-16 16:58:25
 */
function ct_trck_marvel_410116285(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17078);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Deathtothemotherhold
 * Action created: 2020-03-02 00:00:00
 */
function ct_trck_marvel_410087885(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11075);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - December2020
 * Action created: 2019-09-11 00:00:00
 */
function ct_trck_marvel_410082639(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Demonbear
 * Action created: 2020-09-02 00:00:00
 */
function ct_trck_marvel_410092419(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11903);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Demondayskibbonus
 * Action created: 2021-01-06 00:00:00
 */
function ct_trck_marvel_410098186(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13318);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Demondaysmarikoinjune
 * Action created: 2021-03-03 00:00:00
 */
function ct_trck_marvel_410099769(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14080);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Denyscowan
 * Action created: 2020-07-08 00:00:00
 */
function ct_trck_marvel_410091545(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Destinymystiqueromance
 * Action created: 2023-03-24 11:32:55
 */
function ct_trck_marvel_410113796(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16591);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Destinyofx
 * Action created: 2021-12-07 00:00:00
 */
function ct_trck_marvel_410106327(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15186);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Devilsreigntiein
 * Action created: 2021-10-15 00:00:00
 */
function ct_trck_marvel_410105250(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15009);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Didjaknowdigintomerrymarvelmulti1578502875
 * Action created: 2020-01-08 00:00:00
 */
function ct_trck_marvel_410086840(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10762);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Didjaknowdraculadoesntplaynice
 * Action created: 2020-01-27 00:00:00
 */
function ct_trck_marvel_410087148(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Didjaknowironman2020
 * Action created: 2020-01-16 00:00:00
 */
function ct_trck_marvel_410086975(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10806);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Didjaknowkreelskrullwar
 * Action created: 2020-03-20 00:00:00
 */
function ct_trck_marvel_410088185(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11182);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Didjaknowmerrymarvelmultiverse
 * Action created: 2019-11-26 00:00:00
 */
function ct_trck_marvel_410085276(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10581);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Didjaknowtaskmaster
 * Action created: 2020-03-27 00:00:00
 */
function ct_trck_marvel_410089366(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11233);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Digitalexclusives
 * Action created: 2020-04-29 00:00:00
 */
function ct_trck_marvel_410089996(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11382);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Digitalfirstcomics
 * Action created: 2020-05-27 00:00:00
 */
function ct_trck_marvel_410090370(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11500);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Discodazzlervariants
 * Action created: 2024-06-27 10:40:39
 */
function ct_trck_marvel_410122496(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18014);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Disney100yearsvariantcovers
 * Action created: 2022-10-13 15:37:24
 */
function ct_trck_marvel_410111553(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16121);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Disneywhatifcovers
 * Action created: 2024-01-24 12:39:11
 */
function ct_trck_marvel_410117297(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17273);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Doctoraphraglaad
 * Action created: 2020-07-31 00:00:00
 */
function ct_trck_marvel_410091914(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11760);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Doctordoomguide
 * Action created: 2023-09-11 09:45:07
 */
function ct_trck_marvel_410115895(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17012);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Doctordoomsteamups
 * Action created: 2019-12-03 00:00:00
 */
function ct_trck_marvel_410085319(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10601);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Doctorstrangenewseries
 * Action created: 2022-12-08 12:10:37
 */
function ct_trck_marvel_410112331(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16286);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Donmcgregorblackpanther
 * Action created: 2020-11-12 00:00:00
 */
function ct_trck_marvel_410097305(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Doomavengersbattles
 * Action created: 2024-10-31 16:20:19
 */
function ct_trck_marvel_410132073(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19854);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Doomstorm
 * Action created: 2025-01-17 09:38:16
 */
function ct_trck_marvel_410137292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21114);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Doomtieins
 * Action created: 2024-11-18 13:38:52
 */
function ct_trck_marvel_410133453(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20174);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Dpvariantsacrossthemultiverse
 * Action created: 2024-08-07 10:40:19
 */
function ct_trck_marvel_410123912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18354);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Dwaynemduffie
 * Action created: 2020-06-16 00:00:00
 */
function ct_trck_marvel_410090765(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11560);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Earlymudropsjuly
 * Action created: 2024-07-08 17:34:14
 */
function ct_trck_marvel_410122595(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18093);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Earlyreleasesmujune
 * Action created: 2024-06-04 10:25:46
 */
function ct_trck_marvel_410122323(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17889);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Earlyreleasesmumay
 * Action created: 2024-05-06 14:43:13
 */
function ct_trck_marvel_410122066(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17711);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Earth65ghostspider
 * Action created: 2023-12-13 17:30:34
 */
function ct_trck_marvel_410116933(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17192);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Earthsmightiestassembleinempyrea1579204948
 * Action created: 2020-01-16 00:00:00
 */
function ct_trck_marvel_410086978(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10807);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Echoreading
 * Action created: 2024-01-08 11:30:31
 */
function ct_trck_marvel_410117126(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17249);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Edbrissonfallofx
 * Action created: 2023-08-18 14:26:19
 */
function ct_trck_marvel_410115684(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16956);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Eisnernoms2022
 * Action created: 2022-05-18 18:05:51
 */
function ct_trck_marvel_410109432(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15742);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyre#0kicksoffbiggest2020event
 * Action created: 2020-01-17 00:00:00
 */
function ct_trck_marvel_410087009(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10810);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyre#4ending
 * Action created: 2020-07-10 00:00:00
 */
function ct_trck_marvel_410091571(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11665);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyre6
 * Action created: 2020-09-02 00:00:00
 */
function ct_trck_marvel_410092421(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11905);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyrecatchup
 * Action created: 2020-08-04 00:00:00
 */
function ct_trck_marvel_410092086(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11781);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyreff#0
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087983(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyrefinalissue
 * Action created: 2020-08-24 00:00:00
 */
function ct_trck_marvel_410092292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyrekreeskrull#1
 * Action created: 2020-03-26 00:00:00
 */
function ct_trck_marvel_410089357(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11232);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyrerklll
 * Action created: 2020-08-26 00:00:00
 */
function ct_trck_marvel_410092303(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Empyresuperteam
 * Action created: 2020-02-19 00:00:00
 */
function ct_trck_marvel_410087604(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10999);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Endofempyre
 * Action created: 2020-09-04 00:00:00
 */
function ct_trck_marvel_410092445(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11911);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Enterthephoenix
 * Action created: 2020-11-20 00:00:00
 */
function ct_trck_marvel_410097439(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12441);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Escapadeinterview
 * Action created: 2022-05-11 15:45:35
 */
function ct_trck_marvel_410109350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15726);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Espnnfldraft2022
 * Action created: 2022-04-29 16:15:55
 */
function ct_trck_marvel_410109205(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15701);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Eternals1november
 * Action created: 2020-08-20 00:00:00
 */
function ct_trck_marvel_410092241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11829);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Eternals1spoilersession
 * Action created: 2021-01-06 00:00:00
 */
function ct_trck_marvel_410098185(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Eternals500yearswar
 * Action created: 2022-01-12 00:00:00
 */
function ct_trck_marvel_410107435(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15349);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Eternalscovers
 * Action created: 2020-09-24 00:00:00
 */
function ct_trck_marvel_410092756(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12028);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Eternalsmu
 * Action created: 2021-11-03 00:00:00
 */
function ct_trck_marvel_410105473(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15064);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Eveewingshapingfuture
 * Action created: 2020-02-10 00:00:00
 */
function ct_trck_marvel_410087462(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Everysymbiote
 * Action created: 2023-06-02 09:10:01
 */
function ct_trck_marvel_410114822(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16787);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Everythingyouneedtoknowultimate
 * Action created: 2024-07-10 16:41:51
 */
function ct_trck_marvel_410122599(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18095);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Evolutionofpunisher
 * Action created: 2019-01-18 00:00:00
 */
function ct_trck_marvel_410068129(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ewingsword
 * Action created: 2020-09-23 00:00:00
 */
function ct_trck_marvel_410092738(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12022);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Excalibur#1newcaptainbritain
 * Action created: 2020-02-06 00:00:00
 */
function ct_trck_marvel_410087391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10908);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Excalibur2newteam
 * Action created: 2019-11-22 00:00:00
 */
function ct_trck_marvel_410085221(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Explorexmenlegends
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13501);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Facesofkhonshu
 * Action created: 2022-04-08 10:12:22
 */
function ct_trck_marvel_410108838(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15646);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Falconhistory
 * Action created: 2021-01-11 00:00:00
 */
function ct_trck_marvel_410098268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13361);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fallofxdeclassified
 * Action created: 2023-08-11 16:39:06
 */
function ct_trck_marvel_410115562(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16946);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fallofxkrakoa
 * Action created: 2023-06-25 08:45:20
 */
function ct_trck_marvel_410115088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fallofxmap
 * Action created: 2023-06-22 12:07:57
 */
function ct_trck_marvel_410115062(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16832);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fallofxsispurrier
 * Action created: 2023-09-22 12:09:36
 */
function ct_trck_marvel_410116051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17029);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fallofxwedding
 * Action created: 2023-09-29 16:54:08
 */
function ct_trck_marvel_410116143(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17040);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fallofxxforce
 * Action created: 2023-09-13 15:17:51
 */
function ct_trck_marvel_410115934(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fanfourlifestories1
 * Action created: 2021-04-23 00:00:00
 */
function ct_trck_marvel_410101359(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14535);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fantasticfour
 * Action created: 2022-08-17 16:08:16
 */
function ct_trck_marvel_410110831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fantasticfour101
 * Action created: 2023-08-09 10:17:41
 */
function ct_trck_marvel_410115543(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16940);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fantasticfour25
 * Action created: 2020-09-25 00:00:00
 */
function ct_trck_marvel_410092772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fantasticfour700issue
 * Action created: 2023-02-27 12:31:14
 */
function ct_trck_marvel_410113486(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16536);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fantasticfour700issuegueststars
 * Action created: 2023-03-06 14:33:12
 */
function ct_trck_marvel_410113632(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16546);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fantasticfourvariantcovers
 * Action created: 2022-11-09 17:56:42
 */
function ct_trck_marvel_410111953(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16214);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Favoritebooksofthedecade
 * Action created: 2019-12-26 00:00:00
 */
function ct_trck_marvel_410086697(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10704);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fcbd2022
 * Action created: 2021-12-10 00:00:00
 */
function ct_trck_marvel_410106388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15199);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fcbd2022marvelvoices
 * Action created: 2022-01-24 00:00:00
 */
function ct_trck_marvel_410107602(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15424);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fcbd2022preview
 * Action created: 2022-05-06 16:57:24
 */
function ct_trck_marvel_410109268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fcbd2022spideyvenom
 * Action created: 2022-01-21 00:00:00
 */
function ct_trck_marvel_410107578(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15405);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fcbd2024
 * Action created: 2023-11-17 11:07:27
 */
function ct_trck_marvel_410116718(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17156);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fcbdspideyamazingfriends
 * Action created: 2022-02-08 00:00:00
 */
function ct_trck_marvel_410107796(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15508);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fernandarodriguezthelocust
 * Action created: 2020-10-14 00:00:00
 */
function ct_trck_marvel_410096309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12162);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ffgrimmnoir1
 * Action created: 2020-01-31 00:00:00
 */
function ct_trck_marvel_410087234(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Finaldoctorstrangestory
 * Action created: 2019-12-26 00:00:00
 */
function ct_trck_marvel_410086698(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10705);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Finalmembersofgotgrevealed
 * Action created: 2021-02-11 00:00:00
 */
function ct_trck_marvel_410099234(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13803);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Firstevercomics
 * Action created: 2019-05-09 00:00:00
 */
function ct_trck_marvel_410074402(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7498);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Firstlookfantomex#1
 * Action created: 2020-07-09 00:00:00
 */
function ct_trck_marvel_410091557(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Firstlookgiantsizedxmen
 * Action created: 2020-01-31 00:00:00
 */
function ct_trck_marvel_410087235(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10878);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fivehulkfights
 * Action created: 2020-11-10 00:00:00
 */
function ct_trck_marvel_410097256(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12301);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Flerken
 * Action created: 2023-11-02 12:13:15
 */
function ct_trck_marvel_410116542(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17120);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Footballinthemarveluniverse
 * Action created: 2021-02-03 00:00:00
 */
function ct_trck_marvel_410099063(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Forceworksagents
 * Action created: 2020-03-03 00:00:00
 */
function ct_trck_marvel_410087897(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Forgivenvampires
 * Action created: 2023-04-20 12:18:14
 */
function ct_trck_marvel_410114083(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16655);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fortnite
 * Action created: 2022-09-23 14:58:59
 */
function ct_trck_marvel_410111309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16053);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fortnitecomiccovers
 * Action created: 2020-08-27 00:00:00
 */
function ct_trck_marvel_410092323(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11871);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fortnitefirstlook
 * Action created: 2022-03-18 10:33:05
 */
function ct_trck_marvel_410108551(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15606);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fortniteseries
 * Action created: 2022-02-25 12:16:52
 */
function ct_trck_marvel_410108264(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15572);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fortnitesuitreveal
 * Action created: 2022-06-08 09:19:16
 */
function ct_trck_marvel_410109719(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15785);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fourthwall
 * Action created: 2022-08-31 15:30:51
 */
function ct_trck_marvel_410111069(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15980);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Foxaprilfinale
 * Action created: 2024-01-17 16:51:02
 */
function ct_trck_marvel_410117241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17265);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Franklinrichardsxmen
 * Action created: 2020-08-10 00:00:00
 */
function ct_trck_marvel_410092142(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11801);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Freecomicbookday2023mu
 * Action created: 2023-05-10 13:57:53
 */
function ct_trck_marvel_410114537(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16725);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Freecomicbookday2023titles
 * Action created: 2023-01-10 15:28:48
 */
function ct_trck_marvel_410112663(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16375);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Freecomicbookday24
 * Action created: 2024-01-05 16:02:13
 */
function ct_trck_marvel_410117121(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17248);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Freecomicbooksjuly2020
 * Action created: 2020-06-08 00:00:00
 */
function ct_trck_marvel_410090580(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Freecomicbooktitles2025
 * Action created: 2025-01-03 15:39:05
 */
function ct_trck_marvel_410136433(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20854);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Freecomicsmay2020
 * Action created: 2020-05-05 00:00:00
 */
function ct_trck_marvel_410090172(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11420);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Freemujune
 * Action created: 2020-06-11 00:00:00
 */
function ct_trck_marvel_410090623(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11545);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Friendlyneighboorhoodsmprequelco1725991850
 * Action created: 2024-09-10 14:10:50
 */
function ct_trck_marvel_410126952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18914);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fromtheasheswolverine
 * Action created: 2024-05-10 12:36:01
 */
function ct_trck_marvel_410122101(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17715);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fulllistcomicsmayjunejuly
 * Action created: 2020-05-19 00:00:00
 */
function ct_trck_marvel_410090302(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11479);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Fury1
 * Action created: 2023-02-08 14:50:24
 */
function ct_trck_marvel_410113218(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16480);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Futureofthexmenrevealed
 * Action created: 2020-01-27 00:00:00
 */
function ct_trck_marvel_410087151(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10838);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Futureofxmensxsw
 * Action created: 2024-03-14 16:41:24
 */
function ct_trck_marvel_410121562(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17431);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gagefavoritefuturemarvelstories
 * Action created: 2020-01-27 00:00:00
 */
function ct_trck_marvel_410087162(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10839);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Galactusofficial
 * Action created: 2023-08-17 15:00:07
 */
function ct_trck_marvel_410115669(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16953);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gambitsgreatesthits
 * Action created: 2024-04-10 16:31:09
 */
function ct_trck_marvel_410121802(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17585);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gangwarconnections
 * Action created: 2024-01-24 10:32:42
 */
function ct_trck_marvel_410117295(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17271);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gettoknowjanefoster
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087967(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11092);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gettoknowthethunderbolts
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098651(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13500);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ghostridervsdoctorstrange
 * Action created: 2020-02-06 00:00:00
 */
function ct_trck_marvel_410087394(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10911);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Girlsofthemuunite
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087966(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11091);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godlovesmankills
 * Action created: 2020-03-05 00:00:00
 */
function ct_trck_marvel_410087952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11085);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gods
 * Action created: 2023-05-24 16:26:32
 */
function ct_trck_marvel_410114727(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16760);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godsaikomaki
 * Action created: 2023-08-28 15:46:47
 */
function ct_trck_marvel_410115781(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16969);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godscubiskcore
 * Action created: 2023-08-31 16:46:06
 */
function ct_trck_marvel_410115805(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16978);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godsdesigns
 * Action created: 2023-09-01 11:33:07
 */
function ct_trck_marvel_410115811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16982);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godsdimitri
 * Action created: 2023-08-29 14:31:47
 */
function ct_trck_marvel_410115787(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16970);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godsfirstlook
 * Action created: 2023-07-18 10:20:06
 */
function ct_trck_marvel_410115297(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16888);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godsissue2
 * Action created: 2023-10-06 16:30:35
 */
function ct_trck_marvel_410116206(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17054);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godsmia
 * Action created: 2023-08-30 15:09:38
 */
function ct_trck_marvel_410115797(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16973);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godspreview
 * Action created: 2023-10-04 14:28:16
 */
function ct_trck_marvel_410116188(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17048);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godsreferences
 * Action created: 2023-10-05 10:12:13
 */
function ct_trck_marvel_410116189(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17049);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Godswyn
 * Action created: 2023-08-23 09:47:07
 */
function ct_trck_marvel_410115729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16963);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gotg#1pavesthewayforwar
 * Action created: 2020-01-24 00:00:00
 */
function ct_trck_marvel_410087134(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10827);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Greatestbetrayals
 * Action created: 2023-03-16 09:27:03
 */
function ct_trck_marvel_410113692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16567);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Greatestskrullreveals
 * Action created: 2023-07-07 10:10:06
 */
function ct_trck_marvel_410115215(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16852);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gregparkstarwars
 * Action created: 2020-02-07 00:00:00
 */
function ct_trck_marvel_410087413(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10916);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Guardiansnewseries
 * Action created: 2023-01-06 15:28:11
 */
function ct_trck_marvel_410112643(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16370);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Guardiansofthegalaxy2
 * Action created: 2023-04-13 17:25:42
 */
function ct_trck_marvel_410114004(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16638);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gwenstacy#1eastereggscharactersm1579196479
 * Action created: 2020-01-16 00:00:00
 */
function ct_trck_marvel_410086974(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10805);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Gwenstacycarnage
 * Action created: 2020-10-13 00:00:00
 */
function ct_trck_marvel_410096300(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12160);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Halloweenextravaganza
 * Action created: 2022-06-13 16:52:15
 */
function ct_trck_marvel_410109924(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Halloweenmorbius
 * Action created: 2020-10-14 00:00:00
 */
function ct_trck_marvel_410096313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12164);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Halloweenstories2022
 * Action created: 2022-10-05 09:52:50
 */
function ct_trck_marvel_410111483(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16100);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Halloweentrickorread
 * Action created: 2022-08-05 13:28:39
 */
function ct_trck_marvel_410110589(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Halloweentrickorread2024
 * Action created: 2024-07-01 17:00:28
 */
function ct_trck_marvel_410122523(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18035);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Harknesshulkling
 * Action created: 2021-11-03 00:00:00
 */
function ct_trck_marvel_410105472(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15063);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hauntingmarvelhistory
 * Action created: 2019-10-31 00:00:00
 */
function ct_trck_marvel_410084951(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10461);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hawkeeyefractionaja
 * Action created: 2021-12-08 00:00:00
 */
function ct_trck_marvel_410106337(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15188);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hawkeyebwteamups
 * Action created: 2024-03-22 10:33:01
 */
function ct_trck_marvel_410121627(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17466);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellcat
 * Action created: 2022-11-28 15:51:41
 */
function ct_trck_marvel_410112190(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16265);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellcathistory
 * Action created: 2023-03-17 11:45:14
 */
function ct_trck_marvel_410113693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16571);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfireexcalibur
 * Action created: 2021-05-11 00:00:00
 */
function ct_trck_marvel_410101571(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14576);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregala2022firstlook
 * Action created: 2022-06-01 18:05:35
 */
function ct_trck_marvel_410109654(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15771);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregala23
 * Action created: 2023-07-27 08:26:41
 */
function ct_trck_marvel_410115445(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16916);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregaladauterman2022
 * Action created: 2022-04-14 16:40:37
 */
function ct_trck_marvel_410108976(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15662);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregaladeath
 * Action created: 2021-06-30 00:00:00
 */
function ct_trck_marvel_410102965(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14728);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregalaexplainer
 * Action created: 2023-07-13 12:22:18
 */
function ct_trck_marvel_410115268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregalafashion
 * Action created: 2021-03-16 00:00:00
 */
function ct_trck_marvel_410100748(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14261);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregalalissuelist
 * Action created: 2021-03-17 00:00:00
 */
function ct_trck_marvel_410100770(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14282);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregalatrilofmagneto
 * Action created: 2021-05-13 00:00:00
 */
function ct_trck_marvel_410101588(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14581);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregalavariantcovers
 * Action created: 2023-04-20 10:33:18
 */
function ct_trck_marvel_410114080(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16652);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregalaweek2
 * Action created: 2021-06-10 00:00:00
 */
function ct_trck_marvel_410102294(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14668);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregalaweek3
 * Action created: 2021-06-16 00:00:00
 */
function ct_trck_marvel_410102796(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14682);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiregalaweek4
 * Action created: 2021-06-23 00:00:00
 */
function ct_trck_marvel_410102868(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14700);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfirehellions
 * Action created: 2021-05-13 00:00:00
 */
function ct_trck_marvel_410101589(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14582);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfirenewmutants
 * Action created: 2021-05-19 00:00:00
 */
function ct_trck_marvel_410101968(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14596);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfirenewxcorp
 * Action created: 2021-05-20 00:00:00
 */
function ct_trck_marvel_410101989(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14601);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfiresword
 * Action created: 2021-05-27 00:00:00
 */
function ct_trck_marvel_410102073(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14620);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfirewolverine
 * Action created: 2021-05-25 00:00:00
 */
function ct_trck_marvel_410102048(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14615);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellfirexmen
 * Action created: 2021-05-12 00:00:00
 */
function ct_trck_marvel_410101584(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellions
 * Action created: 2020-09-28 00:00:00
 */
function ct_trck_marvel_410092791(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hellverine
 * Action created: 2024-08-14 14:42:20
 */
function ct_trck_marvel_410124493(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18474);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Herculeshistory
 * Action created: 2022-07-13 17:12:06
 */
function ct_trck_marvel_410110318(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15868);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Heroesathome
 * Action created: 2020-07-27 00:00:00
 */
function ct_trck_marvel_410091810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Heroesathomecomplete
 * Action created: 2020-09-17 00:00:00
 */
function ct_trck_marvel_410092681(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11998);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Heroesreborntradingcards
 * Action created: 2021-02-09 00:00:00
 */
function ct_trck_marvel_410099159(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13762);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hickmanhouseandpowerx
 * Action created: 2019-05-22 17:06:18
 */
function ct_trck_marvel_410074911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7719);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Historyeternalsdeviantscelestial1611602225
 * Action created: 2021-01-25 00:00:00
 */
function ct_trck_marvel_410098751(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13541);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Historyofravencroftinstitute
 * Action created: 2019-12-31 00:00:00
 */
function ct_trck_marvel_410086739(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10726);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Historyofxmenscene
 * Action created: 2019-05-28 00:00:00
 */
function ct_trck_marvel_410075010(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7779);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hohpreetichhibberinterview
 * Action created: 2024-08-28 14:31:17
 */
function ct_trck_marvel_410125592(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18674);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Holidayfavorites2020
 * Action created: 2020-12-23 00:00:00
 */
function ct_trck_marvel_410098012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13139);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Holidayteamups
 * Action created: 2019-12-09 00:00:00
 */
function ct_trck_marvel_410085393(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10642);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Houseofxspoilers
 * Action created: 2019-07-25 00:00:00
 */
function ct_trck_marvel_410079399(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Howardduck50years
 * Action created: 2022-12-16 16:00:19
 */
function ct_trck_marvel_410112439(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16313);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Howtoreadthemarvelway
 * Action created: 2020-03-20 00:00:00
 */
function ct_trck_marvel_410088189(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11184);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Howtoreadxofswords
 * Action created: 2020-10-19 00:00:00
 */
function ct_trck_marvel_410096712(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hoxfox
 * Action created: 2024-01-04 17:49:04
 */
function ct_trck_marvel_410117112(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17247);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hoxpoxeastereggs
 * Action created: 2024-01-10 13:02:49
 */
function ct_trck_marvel_410117167(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17253);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hoxpoxfuturefight
 * Action created: 2020-03-18 00:00:00
 */
function ct_trck_marvel_410088168(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hulkfamily
 * Action created: 2022-08-12 09:53:28
 */
function ct_trck_marvel_410110745(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15952);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Hulkingwiccan
 * Action created: 2020-08-05 00:00:00
 */
function ct_trck_marvel_410092095(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11784);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Humbertoramosstrangeacademy
 * Action created: 2020-03-05 00:00:00
 */
function ct_trck_marvel_410087947(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11084);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ibancoelloprofile
 * Action created: 2020-12-17 00:00:00
 */
function ct_trck_marvel_410097910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Icemaninfinity
 * Action created: 2022-06-01 14:33:24
 */
function ct_trck_marvel_410109653(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15770);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Illuminati
 * Action created: 2022-05-19 10:12:41
 */
function ct_trck_marvel_410109443(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15743);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Imanfallofx
 * Action created: 2023-09-01 15:39:05
 */
function ct_trck_marvel_410115814(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16983);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Imanvellaniinterview
 * Action created: 2023-08-25 10:07:43
 */
function ct_trck_marvel_410115760(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16966);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Immortalhulkflatline1look
 * Action created: 2021-01-22 00:00:00
 */
function ct_trck_marvel_410098722(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13522);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Immortalxmen
 * Action created: 2021-12-08 00:00:00
 */
function ct_trck_marvel_410106349(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15191);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Immortalxmenign
 * Action created: 2022-12-13 10:48:52
 */
function ct_trck_marvel_410112375(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16304);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Indigenousvoices1
 * Action created: 2020-08-19 00:00:00
 */
function ct_trck_marvel_410092233(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11826);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Infinitedestiniesinfinitystones
 * Action created: 2020-03-18 00:00:00
 */
function ct_trck_marvel_410088167(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Infinity1year
 * Action created: 2022-09-12 13:04:11
 */
function ct_trck_marvel_410111161(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16031);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Infinitycomicshighlights
 * Action created: 2023-10-02 17:07:18
 */
function ct_trck_marvel_410116181(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17043);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Infinitycomicsholiday
 * Action created: 2022-12-20 16:55:36
 */
function ct_trck_marvel_410112549(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16320);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Infinitypawsjasonloo
 * Action created: 2024-04-05 17:43:38
 */
function ct_trck_marvel_410121734(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17546);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Infinitysampler
 * Action created: 2024-03-01 11:38:22
 */
function ct_trck_marvel_410121464(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17366);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Insidespiderman850
 * Action created: 2020-09-03 00:00:00
 */
function ct_trck_marvel_410092430(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11907);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Insidethor7
 * Action created: 2020-08-20 00:00:00
 */
function ct_trck_marvel_410092240(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11828);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Intergalacticclashes
 * Action created: 2019-04-04 00:00:00
 */
function ct_trck_marvel_410072389(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6819);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Invincibleironmantrailer
 * Action created: 2022-11-04 16:18:07
 */
function ct_trck_marvel_410111908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16206);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Invisiblewomansuerichards
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089316(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11225);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ironman2020roboapocalypse
 * Action created: 2020-01-15 00:00:00
 */
function ct_trck_marvel_410086957(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10803);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ironmanchriscantwell
 * Action created: 2022-05-31 17:16:53
 */
function ct_trck_marvel_410109646(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15768);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ironmanemmafrost
 * Action created: 2023-06-20 14:41:47
 */
function ct_trck_marvel_410114992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16828);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ironmanreadinglist
 * Action created: 2020-08-17 00:00:00
 */
function ct_trck_marvel_410092210(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Itsjeffcomicbook
 * Action created: 2022-12-09 15:05:34
 */
function ct_trck_marvel_410112352(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16293);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Itsjeffreturns
 * Action created: 2022-09-09 12:02:42
 */
function ct_trck_marvel_410111143(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16015);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Itsjeffs2
 * Action created: 2022-07-26 14:58:13
 */
function ct_trck_marvel_410110452(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15912);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Jackpotpowers
 * Action created: 2024-01-18 13:42:35
 */
function ct_trck_marvel_410117244(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17266);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Janetvandynewasp
 * Action created: 2023-01-20 14:29:18
 */
function ct_trck_marvel_410112861(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16412);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Jayedidinscottsummers
 * Action created: 2020-08-19 00:00:00
 */
function ct_trck_marvel_410092231(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11825);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Jedmackaybullpenbulletin
 * Action created: 2021-02-02 00:00:00
 */
function ct_trck_marvel_410099033(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13641);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Jefffthelandshark
 * Action created: 2020-12-18 00:00:00
 */
function ct_trck_marvel_410097927(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Jeffweek
 * Action created: 2024-09-23 11:49:01
 */
function ct_trck_marvel_410127952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19154);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Jjabramsspiderman
 * Action created: 2020-03-23 00:00:00
 */
function ct_trck_marvel_410088209(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Jjs3comics
 * Action created: 2019-06-19 00:00:00
 */
function ct_trck_marvel_410076269(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Joeqchristopherpriest
 * Action created: 2020-06-29 00:00:00
 */
function ct_trck_marvel_410090997(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11619);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Johnridleydebut
 * Action created: 2020-10-15 00:00:00
 */
function ct_trck_marvel_410096324(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12165);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Johnwalkerusagent
 * Action created: 2020-10-09 00:00:00
 */
function ct_trck_marvel_410096273(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Jubileebrightenedourday
 * Action created: 2021-02-12 00:00:00
 */
function ct_trck_marvel_410099251(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - July19mu
 * Action created: 2019-07-02 00:00:00
 */
function ct_trck_marvel_410078088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Junenewinmu
 * Action created: 2019-06-03 00:00:00
 */
function ct_trck_marvel_410075328(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Juskomarvelmasterpieces
 * Action created: 2021-07-12 00:00:00
 */
function ct_trck_marvel_410103068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14782);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kahhori
 * Action created: 2024-08-19 13:49:48
 */
function ct_trck_marvel_410124672(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18514);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kamalakhanmarvelhero
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087965(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11090);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kang2023
 * Action created: 2023-01-12 10:15:40
 */
function ct_trck_marvel_410112740(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16376);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Katebishopkellythompson
 * Action created: 2020-12-31 11:30:50
 */
function ct_trck_marvel_410098110(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kellythompsonblackwidow
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087957(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11087);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kellythompsonblackwidow2022
 * Action created: 2022-04-01 09:15:29
 */
function ct_trck_marvel_410108769(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15630);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kellythompsoncm
 * Action created: 2023-06-15 16:18:25
 */
function ct_trck_marvel_410114939(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16821);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Keymomentsblacknight
 * Action created: 2021-02-19 00:00:00
 */
function ct_trck_marvel_410099580(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13900);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kibendinmarch
 * Action created: 2020-12-16 00:00:00
 */
function ct_trck_marvel_410097894(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kingdeadpool
 * Action created: 2019-11-20 00:00:00
 */
function ct_trck_marvel_410085206(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10549);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kinginblack#1
 * Action created: 2020-10-12 00:00:00
 */
function ct_trck_marvel_410096289(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12158);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kinginblackcaptainamerica
 * Action created: 2020-11-04 00:00:00
 */
function ct_trck_marvel_410097154(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kinginblackwrapcover
 * Action created: 2020-10-30 00:00:00
 */
function ct_trck_marvel_410097121(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12244);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Klausjansondaredevil
 * Action created: 2020-04-23 00:00:00
 */
function ct_trck_marvel_410089925(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11356);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Knullarmykib2
 * Action created: 2021-03-29 00:00:00
 */
function ct_trck_marvel_410100996(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14444);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Krakoashiddenhistory
 * Action created: 2020-03-16 00:00:00
 */
function ct_trck_marvel_410088119(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11159);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Kurtbusiekthemarvels
 * Action created: 2021-01-05 00:00:00
 */
function ct_trck_marvel_410098150(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Lilacheneyhistory
 * Action created: 2022-03-30 10:07:51
 */
function ct_trck_marvel_410108722(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15627);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Lizziebraddock
 * Action created: 2023-03-31 10:28:45
 */
function ct_trck_marvel_410113853(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16605);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Lockheedgreatesthits
 * Action created: 2024-09-06 13:36:21
 */
function ct_trck_marvel_410126715(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18875);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Lokihistoryavengers
 * Action created: 2023-02-02 12:20:10
 */
function ct_trck_marvel_410113099(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16463);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Lokiofficialguide
 * Action created: 2023-09-06 11:05:38
 */
function ct_trck_marvel_410115837(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17004);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Longstoryshortsecretinvasion
 * Action created: 2022-12-08 16:10:02
 */
function ct_trck_marvel_410112334(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16289);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Lordsofempyrecelestialmessiah
 * Action created: 2020-07-13 00:00:00
 */
function ct_trck_marvel_410091588(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Loveunlimitedinfinity
 * Action created: 2022-06-09 13:05:21
 */
function ct_trck_marvel_410109783(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15788);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Lunarnewyearwong
 * Action created: 2023-01-20 16:40:55
 */
function ct_trck_marvel_410112873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16413);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Madelynepryor
 * Action created: 2022-05-10 10:51:30
 */
function ct_trck_marvel_410109343(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15724);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Maestrotrailer
 * Action created: 2020-07-16 00:00:00
 */
function ct_trck_marvel_410091724(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11689);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Makingthemarvels
 * Action created: 2021-12-02 00:00:00
 */
function ct_trck_marvel_410106042(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15167);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Manthing
 * Action created: 2022-09-13 17:09:24
 */
function ct_trck_marvel_410111186(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16034);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mariahillhistory
 * Action created: 2023-06-29 10:24:41
 */
function ct_trck_marvel_410115157(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16843);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvel85thdecades
 * Action created: 2024-08-30 17:16:37
 */
function ct_trck_marvel_410125794(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18774);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelanddefjamcollaborate
 * Action created: 2021-02-17 00:00:00
 */
function ct_trck_marvel_410099545(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13861);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelcomics1
 * Action created: 2020-09-08 00:00:00
 */
function ct_trck_marvel_410092453(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelcomics1000look
 * Action created: 2019-08-27 00:00:00
 */
function ct_trck_marvel_410081848(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelmeowandpizzadog1
 * Action created: 2023-03-24 11:34:54
 */
function ct_trck_marvel_410113797(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16592);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelmusthaves
 * Action created: 2024-02-23 11:26:46
 */
function ct_trck_marvel_410121388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17327);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelrivals
 * Action created: 2024-12-16 12:28:40
 */
function ct_trck_marvel_410135392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20634);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelrivalsseason2
 * Action created: 2025-01-21 13:28:34
 */
function ct_trck_marvel_410137532(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21134);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelsageofcomics
 * Action created: 2020-02-21 00:00:00
 */
function ct_trck_marvel_410087637(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11023);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelsvoicesironfistpei
 * Action created: 2023-05-18 10:22:24
 */
function ct_trck_marvel_410114644(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16743);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelsvoicespridesomnus
 * Action created: 2021-05-10 00:00:00
 */
function ct_trck_marvel_410101556(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14573);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelvoicescomunidades
 * Action created: 2021-07-20 00:00:00
 */
function ct_trck_marvel_410103164(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14800);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelvoicesidentity2022
 * Action created: 2022-04-08 10:49:08
 */
function ct_trck_marvel_410108840(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15648);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Marvelwitches
 * Action created: 2024-09-19 10:10:58
 */
function ct_trck_marvel_410127712(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19094);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - May2020digitalonlyreleases
 * Action created: 2020-05-06 00:00:00
 */
function ct_trck_marvel_410090187(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11423);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mcuartofbookvariants
 * Action created: 2024-08-29 14:23:18
 */
function ct_trck_marvel_410125694(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18714);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mcuinspiredcharacters
 * Action created: 2024-12-19 11:32:01
 */
function ct_trck_marvel_410135652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20714);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mcuphase2variants
 * Action created: 2021-12-22 00:00:00
 */
function ct_trck_marvel_410107102(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15226);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetavengersacademy
 * Action created: 2024-08-22 11:39:05
 */
function ct_trck_marvel_410124954(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18554);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetchildrenoftheatom#1
 * Action created: 2020-02-11 00:00:00
 */
function ct_trck_marvel_410087477(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10939);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetechomayalopez
 * Action created: 2019-11-26 00:00:00
 */
function ct_trck_marvel_410085275(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetlifeguard
 * Action created: 2024-10-29 11:17:36
 */
function ct_trck_marvel_410131773(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19794);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetspiderman2099
 * Action created: 2023-05-26 15:40:45
 */
function ct_trck_marvel_410114754(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16765);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetspiderpunk
 * Action created: 2024-03-04 16:01:11
 */
function ct_trck_marvel_410121452(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17403);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meettemper
 * Action created: 2024-09-04 11:43:54
 */
function ct_trck_marvel_410126092(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18794);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetthemutantsuperteam
 * Action created: 2020-02-06 00:00:00
 */
function ct_trck_marvel_410087388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10905);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetthestrangeacademystudents
 * Action created: 2020-03-02 00:00:00
 */
function ct_trck_marvel_410087884(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11074);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Meetthexcutioner
 * Action created: 2024-03-20 16:55:30
 */
function ct_trck_marvel_410121640(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17465);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Megaconfallofx
 * Action created: 2023-04-03 10:44:50
 */
function ct_trck_marvel_410113877(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16613);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mephisto
 * Action created: 2024-09-26 10:32:15
 */
function ct_trck_marvel_410128532(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19234);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mgdd10years
 * Action created: 2025-01-22 16:32:09
 */
function ct_trck_marvel_410137400(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21194);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Midnightsunsbloodhunt
 * Action created: 2024-02-14 13:21:18
 */
function ct_trck_marvel_410117457(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17307);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Midnightsunsseries
 * Action created: 2022-06-16 13:57:30
 */
function ct_trck_marvel_410109970(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15803);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mightyoctegenarians
 * Action created: 2020-08-28 17:18:30
 */
function ct_trck_marvel_410092379(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11881);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Milescarnagefights
 * Action created: 2023-05-04 11:48:16
 */
function ct_trck_marvel_410114421(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16709);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Milesmoralesspiderman#17
 * Action created: 2020-01-22 00:00:00
 */
function ct_trck_marvel_410087099(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10822);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Milesmoralestrailer
 * Action created: 2022-10-28 15:30:43
 */
function ct_trck_marvel_410111799(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16180);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Milesmoralesvariantcovers
 * Action created: 2020-10-22 00:00:00
 */
function ct_trck_marvel_410096935(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12206);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Milespeterteamups
 * Action created: 2020-08-21 00:00:00
 */
function ct_trck_marvel_410092256(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11835);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Milesvariants
 * Action created: 2021-06-23 00:00:00
 */
function ct_trck_marvel_410102877(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14701);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Miracleman
 * Action created: 2022-09-06 09:57:14
 */
function ct_trck_marvel_410111097(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16003);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Miraclemansilverage3
 * Action created: 2022-11-14 09:09:02
 */
function ct_trck_marvel_410111994(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mistersinister
 * Action created: 2022-11-18 13:03:21
 */
function ct_trck_marvel_410112053(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16235);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Modok
 * Action created: 2023-02-08 15:42:56
 */
function ct_trck_marvel_410113221(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16481);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Modokheadgames1
 * Action created: 2020-09-17 00:00:00
 */
function ct_trck_marvel_410092676(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Moiramutanttraitor
 * Action created: 2023-04-06 13:27:53
 */
function ct_trck_marvel_410113917(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16620);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Momokoxmen
 * Action created: 2020-12-18 00:00:00
 */
function ct_trck_marvel_410097950(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Momsinaction
 * Action created: 2023-05-12 17:47:31
 */
function ct_trck_marvel_410114591(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16732);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Monicarambeaubecomingphoton
 * Action created: 2022-12-15 10:11:13
 */
function ct_trck_marvel_410112410(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16308);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Monicarambeauguide
 * Action created: 2023-09-29 09:13:16
 */
function ct_trck_marvel_410116130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Moongirl1firstlook
 * Action created: 2022-10-27 12:24:00
 */
function ct_trck_marvel_410111787(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Moongirlseries
 * Action created: 2022-02-24 12:15:33
 */
function ct_trck_marvel_410108237(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15569);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Moonknighthickmanbachalo
 * Action created: 2022-02-10 00:00:00
 */
function ct_trck_marvel_410107824(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Moonknightresurrection
 * Action created: 2024-07-05 10:24:47
 */
function ct_trck_marvel_410122543(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18053);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Moonknightsmultiverse
 * Action created: 2021-01-20 00:00:00
 */
function ct_trck_marvel_410098422(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13480);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Morbiusbondofblood1look
 * Action created: 2021-01-14 00:00:00
 */
function ct_trck_marvel_410098333(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13423);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Moreunclescroogevariants
 * Action created: 2024-05-03 09:15:57
 */
function ct_trck_marvel_410122031(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17689);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mostjackkirbypages
 * Action created: 2020-08-28 00:00:00
 */
function ct_trck_marvel_410092374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11878);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mpqelsabloodstone
 * Action created: 2020-10-22 00:00:00
 */
function ct_trck_marvel_410096937(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12207);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Msmarvelcaptainmarvel
 * Action created: 2023-09-27 16:02:14
 */
function ct_trck_marvel_410116109(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17035);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Msmarveldeath
 * Action created: 2023-05-18 09:17:14
 */
function ct_trck_marvel_410114641(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16740);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Msmarveleastereggs
 * Action created: 2022-07-29 11:08:51
 */
function ct_trck_marvel_410110504(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15923);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Msmarvelguide
 * Action created: 2023-09-22 09:33:57
 */
function ct_trck_marvel_410116045(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17026);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Msmarvelnewcomic
 * Action created: 2021-06-17 00:00:00
 */
function ct_trck_marvel_410102820(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14688);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Msmarvelxmen
 * Action created: 2023-07-18 11:27:59
 */
function ct_trck_marvel_410115299(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16890);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mu+2020merch
 * Action created: 2020-09-24 00:00:00
 */
function ct_trck_marvel_410092749(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12024);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muannualplusdiscount
 * Action created: 2025-01-15 10:00:10
 */
function ct_trck_marvel_410137092(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21054);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muapril2019
 * Action created: 2019-04-01 00:00:00
 */
function ct_trck_marvel_410071663(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mucybersale
 * Action created: 2024-12-02 14:51:17
 */
function ct_trck_marvel_410134013(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20374);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mudropsavagewolverineinfinitycom1723043929
 * Action created: 2024-08-07 11:18:49
 */
function ct_trck_marvel_410123932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18374);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muearlyreleases
 * Action created: 2020-10-05 00:00:00
 */
function ct_trck_marvel_410092855(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12119);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mueventannouncements
 * Action created: 2023-03-17 11:28:44
 */
function ct_trck_marvel_410113704(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16569);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mufreekinginblack
 * Action created: 2020-11-23 00:00:00
 */
function ct_trck_marvel_410097456(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12459);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mufreewom2022
 * Action created: 2022-03-28 14:04:10
 */
function ct_trck_marvel_410108684(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15621);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muguidetodeadpool
 * Action created: 2019-11-19 00:00:00
 */
function ct_trck_marvel_410085191(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10545);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muhighlights2020
 * Action created: 2020-12-30 00:00:00
 */
function ct_trck_marvel_410098088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mumarch19
 * Action created: 2019-03-01 00:00:00
 */
function ct_trck_marvel_410070214(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mumay2019
 * Action created: 2019-05-02 00:00:00
 */
function ct_trck_marvel_410074120(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Munov19
 * Action created: 2019-11-05 00:00:00
 */
function ct_trck_marvel_410085043(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10483);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muoct19
 * Action created: 2019-10-07 00:00:00
 */
function ct_trck_marvel_410083660(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10183);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muoctober
 * Action created: 2022-10-04 13:10:25
 */
function ct_trck_marvel_410111467(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16096);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mupluskit2024
 * Action created: 2024-08-27 13:47:16
 */
function ct_trck_marvel_410125372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18634);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Murelaunch
 * Action created: 2021-09-09 00:00:00
 */
function ct_trck_marvel_410104431(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14925);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Murelaunchxmu
 * Action created: 2021-09-09 00:00:00
 */
function ct_trck_marvel_410104432(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14926);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mutantempireomnibus
 * Action created: 2019-11-08 00:00:00
 */
function ct_trck_marvel_410085068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10499);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mutantresurrection
 * Action created: 2023-04-12 12:09:47
 */
function ct_trck_marvel_410113978(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16633);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muwaytoread
 * Action created: 2020-11-11 00:00:00
 */
function ct_trck_marvel_410097288(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Muxlivesxdeath
 * Action created: 2022-04-14 14:34:04
 */
function ct_trck_marvel_410108974(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mysterio
 * Action created: 2019-01-16 00:00:00
 */
function ct_trck_marvel_410068051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5399);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Mysticalmutants
 * Action created: 2023-04-21 13:25:53
 */
function ct_trck_marvel_410114115(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Namormutant
 * Action created: 2022-11-16 18:01:18
 */
function ct_trck_marvel_410112030(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16232);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ncbdmay27
 * Action created: 2020-05-27 00:00:00
 */
function ct_trck_marvel_410090369(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11499);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nebula#1cleanslate
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087968(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11093);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nebulacomic
 * Action created: 2019-11-15 00:00:00
 */
function ct_trck_marvel_410085152(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10526);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Needtoknowaboutchampions
 * Action created: 2020-03-12 00:00:00
 */
function ct_trck_marvel_410088040(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11131);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Negativezoneexplained
 * Action created: 2019-11-19 00:00:00
 */
function ct_trck_marvel_410085188(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10543);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nerdythirtyeventannouncement
 * Action created: 2021-02-10 00:00:00
 */
function ct_trck_marvel_410099172(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13782);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newaliencominginmarch
 * Action created: 2020-12-07 00:00:00
 */
function ct_trck_marvel_410097735(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newarcforfantasticfour32
 * Action created: 2021-02-17 00:00:00
 */
function ct_trck_marvel_410099550(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13863);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newblackpantherthisaugust
 * Action created: 2021-05-18 00:00:00
 */
function ct_trck_marvel_410101624(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14592);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newcomicsinmay
 * Action created: 2020-02-14 00:00:00
 */
function ct_trck_marvel_410087526(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10954);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newerawolverine
 * Action created: 2020-02-21 00:00:00
 */
function ct_trck_marvel_410087630(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newfantasticfour
 * Action created: 2022-02-02 00:00:00
 */
function ct_trck_marvel_410107752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15485);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newheroesreborn
 * Action created: 2021-02-05 00:00:00
 */
function ct_trck_marvel_410099092(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13702);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newinmusept19
 * Action created: 2019-09-04 00:00:00
 */
function ct_trck_marvel_410082099(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newmarvelcomicsjune10
 * Action created: 2020-05-12 00:00:00
 */
function ct_trck_marvel_410090242(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11439);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newmsmarvel
 * Action created: 2023-07-14 11:32:46
 */
function ct_trck_marvel_410115282(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16865);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newmutantsxofswords
 * Action created: 2020-09-14 00:00:00
 */
function ct_trck_marvel_410092635(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11979);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newnewwarriors
 * Action created: 2020-03-17 00:00:00
 */
function ct_trck_marvel_410088143(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11166);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newshangchibooks
 * Action created: 2020-03-12 00:00:00
 */
function ct_trck_marvel_410088044(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11133);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newstrangeacademy
 * Action created: 2019-12-05 00:00:00
 */
function ct_trck_marvel_410085354(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newvalkyrie
 * Action created: 2020-10-21 00:00:00
 */
function ct_trck_marvel_410096733(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12204);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newwerewolfbynight
 * Action created: 2020-07-21 00:00:00
 */
function ct_trck_marvel_410091754(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11701);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Newwom1covers
 * Action created: 2021-03-08 00:00:00
 */
function ct_trck_marvel_410099855(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14145);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nextforvenominbeyond
 * Action created: 2020-02-12 00:00:00
 */
function ct_trck_marvel_410087507(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10946);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nicholasscratch
 * Action created: 2024-09-25 14:36:50
 */
function ct_trck_marvel_410128412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19214);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nickfurry
 * Action created: 2023-05-15 15:35:24
 */
function ct_trck_marvel_410114602(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16735);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nineheroesspiderman
 * Action created: 2023-01-12 10:37:51
 */
function ct_trck_marvel_410112741(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nonstopspidey
 * Action created: 2020-02-20 00:00:00
 */
function ct_trck_marvel_410087622(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Noroadhometeam
 * Action created: 2019-02-13 00:00:00
 */
function ct_trck_marvel_410069429(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nyccmetaversevariants
 * Action created: 2020-10-05 00:00:00
 */
function ct_trck_marvel_410092852(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Nycsecrets
 * Action created: 2019-03-21 00:00:00
 */
function ct_trck_marvel_410071270(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6479);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Oneworldunderdoom#3
 * Action created: 2025-01-13 15:22:23
 */
function ct_trck_marvel_410136992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20994);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Oneworldunderdoomryannorthinterv1736520928
 * Action created: 2025-01-10 09:55:28
 */
function ct_trck_marvel_410136872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20954);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Oralhistorysecretinvasion
 * Action created: 2023-07-14 10:21:31
 */
function ct_trck_marvel_410115279(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16863);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Originofkang
 * Action created: 2021-05-14 00:00:00
 */
function ct_trck_marvel_410101601(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14584);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Oswaltjordanfavoritecomics
 * Action created: 2021-05-21 00:00:00
 */
function ct_trck_marvel_410102004(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14605);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Outlawedbattle
 * Action created: 2020-02-21 00:00:00
 */
function ct_trck_marvel_410087633(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11022);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Outlawedspinoffs
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086896(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10782);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Pachecospiderwoman
 * Action created: 2021-01-04 00:00:00
 */
function ct_trck_marvel_410098130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13278);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Pathtoxofswords
 * Action created: 2020-11-16 00:00:00
 */
function ct_trck_marvel_410097371(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Pepperpottspast
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11222);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Peterparkerbecamevenom
 * Action created: 2021-01-19 00:00:00
 */
function ct_trck_marvel_410098397(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13464);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Phoenixforcenexthost
 * Action created: 2020-12-30 00:00:00
 */
function ct_trck_marvel_410098072(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Photon
 * Action created: 2022-08-23 12:31:27
 */
function ct_trck_marvel_410110898(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15969);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Playersinkinginblack
 * Action created: 2020-12-07 00:00:00
 */
function ct_trck_marvel_410097737(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Powersofx#2
 * Action created: 2020-02-18 00:00:00
 */
function ct_trck_marvel_410087575(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Powersofxhistory
 * Action created: 2019-08-01 00:00:00
 */
function ct_trck_marvel_410079789(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8958);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Pox#3
 * Action created: 2020-02-24 00:00:00
 */
function ct_trck_marvel_410087661(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11040);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Predatorjuly
 * Action created: 2022-04-22 12:17:09
 */
function ct_trck_marvel_410109066(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15674);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Previewnew2020comics
 * Action created: 2019-12-24 00:00:00
 */
function ct_trck_marvel_410086695(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10702);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Pridemightymoments
 * Action created: 2021-06-18 00:00:00
 */
function ct_trck_marvel_410102828(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14691);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Professorxmagnetorelationshipexp1715872726
 * Action created: 2024-05-16 11:18:46
 */
function ct_trck_marvel_410122147(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17770);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Psylockeredefined
 * Action created: 2020-08-20 00:00:00
 */
function ct_trck_marvel_410092239(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11827);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Publishingslate2019
 * Action created: 2019-03-25 00:00:00
 */
function ct_trck_marvel_410071409(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Puzzlequestnorthstar
 * Action created: 2020-01-09 00:00:00
 */
function ct_trck_marvel_410086868(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10766);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Quicksilvercomicshistory
 * Action created: 2021-02-24 00:00:00
 */
function ct_trck_marvel_410099636(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13983);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Raidongraymalkinexplainer
 * Action created: 2024-12-11 13:43:30
 */
function ct_trck_marvel_410135152(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20494);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Readbeforeabsolutecarnage
 * Action created: 2020-02-06 00:00:00
 */
function ct_trck_marvel_410087395(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10912);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Readfterspiderwomanondplus
 * Action created: 2020-03-13 00:00:00
 */
function ct_trck_marvel_410088062(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Readupstrangeacademy
 * Action created: 2020-09-04 00:00:00
 */
function ct_trck_marvel_410092447(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11912);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Releaseannouncement
 * Action created: 2020-05-01 00:00:00
 */
function ct_trck_marvel_410090023(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11397);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ririwilliams2020ironheart#1
 * Action created: 2020-01-22 00:00:00
 */
function ct_trck_marvel_410087095(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Riseofemperordoom
 * Action created: 2024-10-17 11:57:48
 */
function ct_trck_marvel_410130652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19594);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Riseofskywalker
 * Action created: 2020-02-21 00:00:00
 */
function ct_trck_marvel_410087631(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Riseofultramankylehiggins
 * Action created: 2021-02-08 00:00:00
 */
function ct_trck_marvel_410099132(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13740);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Rivalsvariants
 * Action created: 2024-11-07 14:23:23
 */
function ct_trck_marvel_410132692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19974);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Rivalsvenom#27
 * Action created: 2020-07-16 00:00:00
 */
function ct_trck_marvel_410091723(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11688);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Roadironman2020
 * Action created: 2020-09-14 00:00:00
 */
function ct_trck_marvel_410092630(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11978);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Roadtoempyrereadinglist
 * Action created: 2020-03-24 00:00:00
 */
function ct_trck_marvel_410089306(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11199);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Roadtoempyrewarners
 * Action created: 2020-02-26 00:00:00
 */
function ct_trck_marvel_410087714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Roadtokibdiscover
 * Action created: 2020-11-30 00:00:00
 */
function ct_trck_marvel_410097529(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Rogues9memorabletransformations
 * Action created: 2020-03-17 00:00:00
 */
function ct_trck_marvel_410088142(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11162);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Roguesmostmemorablemtransformati1580493318
 * Action created: 2020-01-31 00:00:00
 */
function ct_trck_marvel_410087230(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10874);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Roundtablewithxmeneditorial
 * Action created: 2020-01-13 00:00:00
 */
function ct_trck_marvel_410086917(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10799);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Runawaysdocjusticejteam
 * Action created: 2019-12-04 00:00:00
 */
function ct_trck_marvel_410085341(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10604);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Samwilsoncaphomagecovers
 * Action created: 2024-11-08 15:28:01
 */
function ct_trck_marvel_410132792(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19994);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sarapichelli
 * Action created: 2020-03-11 00:00:00
 */
function ct_trck_marvel_410088023(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11125);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Scarletwitch#1
 * Action created: 2024-06-17 09:37:15
 */
function ct_trck_marvel_410122391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17953);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Scarletwitch1firstlook
 * Action created: 2022-11-15 17:33:47
 */
function ct_trck_marvel_410112016(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16230);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Scarletwitch7
 * Action created: 2024-11-01 16:30:13
 */
function ct_trck_marvel_410132152(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19914);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Scarletwitchdarkcounterpart
 * Action created: 2024-04-25 14:08:40
 */
function ct_trck_marvel_410121968(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17653);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Scarletwitchpowers
 * Action created: 2022-05-04 10:51:41
 */
function ct_trck_marvel_410109241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15710);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Scarletwitchscarieststories
 * Action created: 2024-09-06 09:24:56
 */
function ct_trck_marvel_410126672(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18854);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sciencewom
 * Action created: 2020-03-17 00:00:00
 */
function ct_trck_marvel_410088140(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11164);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Scottandcassielang
 * Action created: 2022-11-16 17:14:11
 */
function ct_trck_marvel_410112029(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16231);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Secretwarsexplained
 * Action created: 2022-08-01 09:08:51
 */
function ct_trck_marvel_410110525(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15926);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Secretwarsweirdmashup
 * Action created: 2020-05-19 00:00:00
 */
function ct_trck_marvel_410090310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11483);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sentientplanets
 * Action created: 2022-10-25 17:11:20
 */
function ct_trck_marvel_410111752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16162);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sentinelguide
 * Action created: 2024-04-24 16:30:08
 */
function ct_trck_marvel_410121965(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17652);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sept2020comics
 * Action created: 2020-06-16 00:00:00
 */
function ct_trck_marvel_410090766(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11561);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Shangchi#1cover
 * Action created: 2020-07-27 00:00:00
 */
function ct_trck_marvel_410091835(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11740);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Shangchi1look
 * Action created: 2021-04-21 00:00:00
 */
function ct_trck_marvel_410101330(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14529);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Shehulkcomicseries
 * Action created: 2021-10-18 00:00:00
 */
function ct_trck_marvel_410105263(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15011);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Shehulkdaredevil
 * Action created: 2022-10-07 10:21:13
 */
function ct_trck_marvel_410111493(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16106);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Shehulkempyre4
 * Action created: 2020-02-29 00:00:00
 */
function ct_trck_marvel_410087751(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11069);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Shehulkloves
 * Action created: 2022-09-08 09:25:30
 */
function ct_trck_marvel_410111130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16011);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Shehulkpivitalmoments
 * Action created: 2020-09-22 00:00:00
 */
function ct_trck_marvel_410092723(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Shuriblackpanther
 * Action created: 2022-11-18 15:07:04
 */
function ct_trck_marvel_410112055(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Silkreturnsinmarch
 * Action created: 2020-12-16 00:00:00
 */
function ct_trck_marvel_410097892(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Silversurferguide
 * Action created: 2023-08-23 09:45:33
 */
function ct_trck_marvel_410115728(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16962);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Simonsonsxmenlegends3
 * Action created: 2021-04-27 00:00:00
 */
function ct_trck_marvel_410101400(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14544);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sinsofsinister1eastereggs
 * Action created: 2023-01-25 13:02:20
 */
function ct_trck_marvel_410112919(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16429);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sinsofsinisterfuturekierongillen
 * Action created: 2023-01-23 17:48:45
 */
function ct_trck_marvel_410112908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16423);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sinsofsinistermutations
 * Action created: 2023-04-19 14:07:21
 */
function ct_trck_marvel_410114066(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16650);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sinsofsinisterplan
 * Action created: 2023-01-27 13:17:20
 */
function ct_trck_marvel_410112953(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16435);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sinsofsinisterspark
 * Action created: 2023-03-08 12:15:33
 */
function ct_trck_marvel_410113645(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16549);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sinsofsinistersuit
 * Action created: 2023-02-15 17:40:46
 */
function ct_trck_marvel_410113314(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16504);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Skottieyoungvariants
 * Action created: 2024-03-27 15:11:38
 */
function ct_trck_marvel_410121668(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Smblackcostumevariants
 * Action created: 2024-03-28 15:45:55
 */
function ct_trck_marvel_410121692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Smvariantsimonedimeo
 * Action created: 2025-01-14 15:29:53
 */
function ct_trck_marvel_410137052(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21014);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Solvingforx
 * Action created: 2020-07-08 00:00:00
 */
function ct_trck_marvel_410091542(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderboyseries
 * Action created: 2023-06-27 10:03:28
 */
function ct_trck_marvel_410115108(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16840);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderman1
 * Action created: 2022-08-24 12:52:59
 */
function ct_trck_marvel_410110940(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15972);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderman1pichelli
 * Action created: 2019-09-18 00:00:00
 */
function ct_trck_marvel_410082930(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderman2099
 * Action created: 2019-12-20 00:00:00
 */
function ct_trck_marvel_410085779(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10691);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderman2099darkgenesis
 * Action created: 2023-01-17 17:37:41
 */
function ct_trck_marvel_410112824(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16405);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanandthesymbiote
 * Action created: 2021-02-11 00:00:00
 */
function ct_trck_marvel_410099238(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13804);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanblackcatstrickes2
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089314(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanblacksuit
 * Action created: 2024-07-05 11:28:03
 */
function ct_trck_marvel_410122566(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18054);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanday
 * Action created: 2020-08-03 00:00:00
 */
function ct_trck_marvel_410091930(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11778);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanfamily
 * Action created: 2023-06-07 17:10:40
 */
function ct_trck_marvel_410114864(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16807);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanheroes
 * Action created: 2022-08-03 13:16:41
 */
function ct_trck_marvel_410110550(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15931);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanindia
 * Action created: 2023-06-09 16:38:56
 */
function ct_trck_marvel_410114899(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16811);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanlifestoryannual1
 * Action created: 2021-04-02 00:00:00
 */
function ct_trck_marvel_410101070(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14484);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanmanthing
 * Action created: 2021-01-07 00:00:00
 */
function ct_trck_marvel_410098216(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13338);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermannewcostume
 * Action created: 2020-12-29 00:00:00
 */
function ct_trck_marvel_410098068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanomnibus
 * Action created: 2021-12-17 00:00:00
 */
function ct_trck_marvel_410106455(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15213);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermanquits
 * Action created: 2025-01-10 15:32:54
 */
function ct_trck_marvel_410136912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20974);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidermansstrangestslugfests
 * Action created: 2020-11-24 00:00:00
 */
function ct_trck_marvel_410097472(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12478);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderpunkfoilvariant
 * Action created: 2023-11-30 14:25:56
 */
function ct_trck_marvel_410116852(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17168);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidersociety
 * Action created: 2024-05-17 17:23:59
 */
function ct_trck_marvel_410122187(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17790);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidervenomverse
 * Action created: 2025-01-22 14:36:28
 */
function ct_trck_marvel_410137673(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21174);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderverseunlimited
 * Action created: 2022-08-16 15:39:12
 */
function ct_trck_marvel_410110763(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15956);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderversevariantcovers
 * Action created: 2023-03-27 13:29:28
 */
function ct_trck_marvel_410113813(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16596);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderwomanfoes
 * Action created: 2020-07-14 00:00:00
 */
function ct_trck_marvel_410091702(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11680);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spiderwomanlatest
 * Action created: 2020-09-21 00:00:00
 */
function ct_trck_marvel_410092717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spidey60covers
 * Action created: 2022-01-18 00:00:00
 */
function ct_trck_marvel_410107498(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15384);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spideyhighschool
 * Action created: 2025-01-16 16:21:01
 */
function ct_trck_marvel_410137232(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21094);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spideysgreatestgadgets
 * Action created: 2020-12-24 00:00:00
 */
function ct_trck_marvel_410098020(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spideyvillainsnewcovers
 * Action created: 2021-03-19 00:00:00
 */
function ct_trck_marvel_410100811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14340);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spideywebofspiderman#1
 * Action created: 2020-03-19 00:00:00
 */
function ct_trck_marvel_410088173(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11180);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spoilerfreeempyre
 * Action created: 2020-07-15 00:00:00
 */
function ct_trck_marvel_410091710(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11683);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spoilersthor6
 * Action created: 2020-08-20 00:00:00
 */
function ct_trck_marvel_410092249(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11832);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Spoilersxmen8
 * Action created: 2020-03-11 00:00:00
 */
function ct_trck_marvel_410088034(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11130);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stanfamousfirst
 * Action created: 2022-12-19 17:18:49
 */
function ct_trck_marvel_410112469(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16319);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stanleecameos
 * Action created: 2022-12-09 16:40:46
 */
function ct_trck_marvel_410112358(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16294);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stanleecollaborations
 * Action created: 2022-12-14 16:01:41
 */
function ct_trck_marvel_410112403(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16307);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stansilveragehits
 * Action created: 2022-12-07 15:33:27
 */
function ct_trck_marvel_410112326(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16285);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stansoapbox
 * Action created: 2022-12-19 11:56:44
 */
function ct_trck_marvel_410112461(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Starkquotes
 * Action created: 2020-08-12 00:00:00
 */
function ct_trck_marvel_410092158(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11804);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Starwarsbountyhunters
 * Action created: 2020-10-30 00:00:00
 */
function ct_trck_marvel_410097108(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12241);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Starwarscavanscott
 * Action created: 2021-03-12 00:00:00
 */
function ct_trck_marvel_410100697(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Starwarsfinale
 * Action created: 2024-06-20 13:03:14
 */
function ct_trck_marvel_410122422(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17973);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Starwarsmay4th
 * Action created: 2023-05-04 11:50:37
 */
function ct_trck_marvel_410114422(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16710);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stasislookinside
 * Action created: 2020-10-02 00:00:00
 */
function ct_trck_marvel_410092837(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stevefoxefallofx
 * Action created: 2023-08-17 16:37:15
 */
function ct_trck_marvel_410115670(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16954);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stohlspidermannoir#1
 * Action created: 2020-02-07 00:00:00
 */
function ct_trck_marvel_410087415(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakers
 * Action created: 2022-09-06 14:22:56
 */
function ct_trck_marvel_410111104(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16004);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakers20
 * Action created: 2023-11-20 09:26:50
 */
function ct_trck_marvel_410116725(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17158);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakers2023sketchbook
 * Action created: 2023-02-08 09:38:15
 */
function ct_trck_marvel_410113216(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16478);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersanimal
 * Action created: 2023-07-12 10:50:00
 */
function ct_trck_marvel_410115256(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersartmovementcovers
 * Action created: 2022-12-21 12:46:56
 */
function ct_trck_marvel_410112557(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16321);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersblackpanther25
 * Action created: 2021-02-19 00:00:00
 */
function ct_trck_marvel_410099584(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13901);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakerscapamerica
 * Action created: 2023-08-07 18:21:56
 */
function ct_trck_marvel_410115534(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakerscouplevariantcovers
 * Action created: 2021-09-27 00:00:00
 */
function ct_trck_marvel_410104616(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14961);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersfavorites
 * Action created: 2020-12-16 00:00:00
 */
function ct_trck_marvel_410097889(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersfebvariants
 * Action created: 2022-11-14 13:41:16
 */
function ct_trck_marvel_410112002(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16227);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersmayvariants
 * Action created: 2024-04-02 15:46:40
 */
function ct_trck_marvel_410121724(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17564);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersnewyear
 * Action created: 2023-11-06 11:05:14
 */
function ct_trck_marvel_410116596(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17125);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersprogram2020
 * Action created: 2020-10-05 00:00:00
 */
function ct_trck_marvel_410092857(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12120);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersvariantcovers
 * Action created: 2022-10-20 12:02:21
 */
function ct_trck_marvel_410111634(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16150);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersvariants
 * Action created: 2020-10-15 00:00:00
 */
function ct_trck_marvel_410096347(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12166);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersvariants2022
 * Action created: 2022-04-05 11:32:50
 */
function ct_trck_marvel_410108790(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormbreakersxmen
 * Action created: 2023-05-31 10:05:20
 */
function ct_trck_marvel_410114777(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16784);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormcostumes
 * Action created: 2024-04-18 12:52:34
 */
function ct_trck_marvel_410121916(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17646);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Stormtrailerandmore
 * Action created: 2024-10-02 10:43:11
 */
function ct_trck_marvel_410129014(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19294);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Straczynskioneshots
 * Action created: 2024-10-11 13:28:15
 */
function ct_trck_marvel_410129992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19514);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Strangeacademy3
 * Action created: 2020-09-03 00:00:00
 */
function ct_trck_marvel_410092437(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11910);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Strangeacademyguide
 * Action created: 2022-07-06 10:42:59
 */
function ct_trck_marvel_410110231(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15848);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Strangeacademyskottieyoung
 * Action created: 2022-12-22 14:25:30
 */
function ct_trck_marvel_410112581(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16326);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Strangehulkouts
 * Action created: 2020-11-02 00:00:00
 */
function ct_trck_marvel_410097138(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12259);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Strangestories
 * Action created: 2022-04-28 16:55:29
 */
function ct_trck_marvel_410109152(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15694);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Suestormseries
 * Action created: 2019-04-10 00:00:00
 */
function ct_trck_marvel_410072589(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6878);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Suestormsfantasticfeats
 * Action created: 2020-03-17 00:00:00
 */
function ct_trck_marvel_410088138(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11161);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Summerofsymbiotes
 * Action created: 2023-03-24 13:09:53
 */
function ct_trck_marvel_410113800(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16593);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Superherodadsknow
 * Action created: 2020-07-01 00:00:00
 */
function ct_trck_marvel_410091037(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11625);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Superherojackets
 * Action created: 2020-04-20 00:00:00
 */
function ct_trck_marvel_410089855(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11342);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Supermomsofthemu
 * Action created: 2020-03-11 00:00:00
 */
function ct_trck_marvel_410088024(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11124);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Swahsokaseries
 * Action created: 2024-02-02 16:47:46
 */
function ct_trck_marvel_410117371(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17292);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Swordsman#1
 * Action created: 2020-07-24 00:00:00
 */
function ct_trck_marvel_410091787(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11719);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Sylvielushton
 * Action created: 2021-06-28 00:00:00
 */
function ct_trck_marvel_410102917(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14720);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Symbiotesm:kinginblack1
 * Action created: 2020-10-23 00:00:00
 */
function ct_trck_marvel_410096951(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12210);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tarankillammarveldebut
 * Action created: 2020-01-03 00:00:00
 */
function ct_trck_marvel_410086773(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10747);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tenlokitricks
 * Action created: 2020-12-23 00:00:00
 */
function ct_trck_marvel_410098009(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Terrorsawaitinravencroft
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086882(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10778);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Testkitchen
 * Action created: 2022-08-08 13:12:58
 */
function ct_trck_marvel_410110633(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15939);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Testkitchenavengers
 * Action created: 2022-10-11 10:18:30
 */
function ct_trck_marvel_410111510(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16113);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Testkitchenemmafrost
 * Action created: 2022-09-07 17:16:25
 */
function ct_trck_marvel_410111126(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16009);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Testkitchenhalloween
 * Action created: 2022-10-31 10:00:03
 */
function ct_trck_marvel_410111807(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16183);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Testkitchenthanksgiving
 * Action created: 2022-11-21 14:39:43
 */
function ct_trck_marvel_410112079(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16239);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Thanosquestimportant
 * Action created: 2020-04-16 00:00:00
 */
function ct_trck_marvel_410089798(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11325);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Theavengersashencombine
 * Action created: 2023-04-13 14:29:37
 */
function ct_trck_marvel_410114001(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16636);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Themightyvalkyriesvariantcover
 * Action created: 2021-03-26 00:00:00
 */
function ct_trck_marvel_410100942(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14421);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Thethingtwoinonevariants
 * Action created: 2024-10-03 11:46:12
 */
function ct_trck_marvel_410129372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19334);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Thevariantcovers
 * Action created: 2020-08-06 00:00:00
 */
function ct_trck_marvel_410092106(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11787);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Thisishowdeadpooldies
 * Action created: 2020-01-31 00:00:00
 */
function ct_trck_marvel_410087233(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10876);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Thorheraldsanewageofthunder
 * Action created: 2020-01-02 00:00:00
 */
function ct_trck_marvel_410086760(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10742);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Thorshammer
 * Action created: 2022-04-22 12:16:14
 */
function ct_trck_marvel_410109064(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15673);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Threetimelytitans
 * Action created: 2020-08-28 17:21:59
 */
function ct_trck_marvel_410092380(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11882);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Thunderbolts2022
 * Action created: 2022-07-27 17:46:07
 */
function ct_trck_marvel_410110482(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Thunderboltsdoomstrike
 * Action created: 2024-11-14 15:53:35
 */
function ct_trck_marvel_410133372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20134);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Timelesscomic
 * Action created: 2021-11-03 00:00:00
 */
function ct_trck_marvel_410105483(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15069);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tinihoward
 * Action created: 2021-03-30 00:00:00
 */
function ct_trck_marvel_410101003(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14460);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tommullerevolutionofx
 * Action created: 2020-10-06 00:00:00
 */
function ct_trck_marvel_410092861(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12121);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tomreillysnapshots1
 * Action created: 2020-09-16 00:00:00
 */
function ct_trck_marvel_410092671(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11984);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tonydanielsoutlawedvariantcover
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086881(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tonystarkironman
 * Action created: 2020-02-25 00:00:00
 */
function ct_trck_marvel_410087685(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11042);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Top10scarystories2020
 * Action created: 2020-10-05 00:00:00
 */
function ct_trck_marvel_410092854(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Top10waroftherealmsmoments
 * Action created: 2020-01-23 00:00:00
 */
function ct_trck_marvel_410087125(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10824);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Top5momentsfromxosstasis
 * Action created: 2021-02-01 00:00:00
 */
function ct_trck_marvel_410099022(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13623);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Top9marvelsteamups
 * Action created: 2023-11-15 09:47:06
 */
function ct_trck_marvel_410116685(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17151);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Topteenteams
 * Action created: 2020-04-09 00:00:00
 */
function ct_trck_marvel_410089693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11293);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Torunngronbekkfallofx
 * Action created: 2023-08-23 09:44:21
 */
function ct_trck_marvel_410115727(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16961);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Trickorread2023
 * Action created: 2023-07-10 14:33:51
 */
function ct_trck_marvel_410115242(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16855);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tva#1preview
 * Action created: 2024-11-05 14:36:16
 */
function ct_trck_marvel_410132452(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19954);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tvasdcc24
 * Action created: 2024-07-27 16:34:17
 */
function ct_trck_marvel_410122717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18179);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tvxmenanimatedseriess1p1
 * Action created: 2024-03-14 12:52:53
 */
function ct_trck_marvel_410121579(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17430);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tvxmenanimatedseriess1p2
 * Action created: 2024-03-14 13:00:10
 */
function ct_trck_marvel_410121582(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17446);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tvxmenanimatedseriess1p3
 * Action created: 2024-03-14 13:03:31
 */
function ct_trck_marvel_410121583(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17447);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tvxmenanimatedseriess2
 * Action created: 2024-03-15 09:59:01
 */
function ct_trck_marvel_410121567(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17434);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tvxmenanimatedseriess3
 * Action created: 2024-03-15 10:03:08
 */
function ct_trck_marvel_410121587(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17435);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tvxmenanimatedseriess4
 * Action created: 2024-03-15 10:06:08
 */
function ct_trck_marvel_410121568(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17448);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Tvxmenanimatedseriess5
 * Action created: 2024-03-15 10:08:42
 */
function ct_trck_marvel_410121569(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17449);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ulimiatevariantcovers
 * Action created: 2023-03-23 11:08:04
 */
function ct_trck_marvel_410113780(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16590);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimateblackpanthertease
 * Action created: 2024-02-05 16:36:14
 */
function ct_trck_marvel_410117374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17294);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimatefoilcovers
 * Action created: 2024-10-24 14:31:47
 */
function ct_trck_marvel_410131433(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19734);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimatein2025
 * Action created: 2024-12-17 16:43:13
 */
function ct_trck_marvel_410135518(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20674);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimateinvasion
 * Action created: 2023-02-22 14:35:19
 */
function ct_trck_marvel_410113397(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16529);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimateinvasionhickman
 * Action created: 2023-06-09 10:35:32
 */
function ct_trck_marvel_410114881(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16810);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimateoneyearin
 * Action created: 2024-12-18 14:34:19
 */
function ct_trck_marvel_410135615(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20694);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimatestrailer
 * Action created: 2024-04-17 15:47:08
 */
function ct_trck_marvel_410121845(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17645);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimateuniversenews
 * Action created: 2024-05-20 16:34:12
 */
function ct_trck_marvel_410122180(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17809);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimateuniversesinistersix
 * Action created: 2024-06-14 16:38:57
 */
function ct_trck_marvel_410122390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17952);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultimatewolverine
 * Action created: 2024-10-17 11:27:37
 */
function ct_trck_marvel_410130632(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19574);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultramanday
 * Action created: 2020-07-10 00:00:00
 */
function ct_trck_marvel_410091565(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11664);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultramannewinmarch
 * Action created: 2020-12-21 00:00:00
 */
function ct_trck_marvel_410097976(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ultramanseries
 * Action created: 2020-02-29 00:00:00
 */
function ct_trck_marvel_410087752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11070);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Uncannyavengers
 * Action created: 2023-05-09 13:15:41
 */
function ct_trck_marvel_410114440(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16723);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Uncannyspiderman
 * Action created: 2023-04-14 14:20:10
 */
function ct_trck_marvel_410114012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16640);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Uncannyxmentrailerandmore
 * Action created: 2024-07-03 15:24:18
 */
function ct_trck_marvel_410122540(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Unclescrooge
 * Action created: 2024-02-23 09:58:29
 */
function ct_trck_marvel_410121387(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17346);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Unclescroogevariants
 * Action created: 2024-03-21 13:27:10
 */
function ct_trck_marvel_410121623(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17484);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Underrated80scomics
 * Action created: 2020-04-13 00:00:00
 */
function ct_trck_marvel_410089755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Unforgiven
 * Action created: 2022-08-30 16:11:58
 */
function ct_trck_marvel_410111050(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Unitedstatesofcapamer4
 * Action created: 2021-07-06 00:00:00
 */
function ct_trck_marvel_410102995(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14741);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Unleashed
 * Action created: 2023-05-19 16:00:06
 */
function ct_trck_marvel_410114672(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16749);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Usagent
 * Action created: 2020-08-07 00:00:00
 */
function ct_trck_marvel_410092115(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11789);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Usagent1arrives
 * Action created: 2020-11-03 00:00:00
 */
function ct_trck_marvel_410097139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12260);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Valentinaallegradefontaine
 * Action created: 2021-04-21 00:00:00
 */
function ct_trck_marvel_410101333(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14531);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Valerioschitisword
 * Action created: 2020-12-14 00:00:00
 */
function ct_trck_marvel_410097850(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12879);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Vampires
 * Action created: 2022-10-19 14:38:04
 */
function ct_trck_marvel_410111612(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16145);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Vampirevariants
 * Action created: 2024-01-25 11:28:53
 */
function ct_trck_marvel_410117302(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17276);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Venom32look
 * Action created: 2021-01-07 00:00:00
 */
function ct_trck_marvel_410098217(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13339);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Venomcarnageinfinitycomic
 * Action created: 2021-09-22 00:00:00
 */
function ct_trck_marvel_410104548(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14949);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Venomtheendfirstlook
 * Action created: 2019-12-12 00:00:00
 */
function ct_trck_marvel_410085543(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10653);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Venomwargiarrussovariants
 * Action created: 2024-06-21 14:31:33
 */
function ct_trck_marvel_410122426(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17975);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Victorshade
 * Action created: 2023-09-15 11:17:45
 */
function ct_trck_marvel_410115970(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Visionscarletwitchlovestory
 * Action created: 2021-02-02 00:00:00
 */
function ct_trck_marvel_410099050(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13645);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Visitdrdoom
 * Action created: 2020-12-21 00:00:00
 */
function ct_trck_marvel_410097981(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13099);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Vizmanga
 * Action created: 2024-04-16 11:13:34
 */
function ct_trck_marvel_410121827(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17624);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Vizsmxmentitles
 * Action created: 2024-02-02 11:10:13
 */
function ct_trck_marvel_410117366(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17291);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Voices1blackhistorymonth
 * Action created: 2020-11-16 00:00:00
 */
function ct_trck_marvel_410097377(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12382);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Voicesjustinreynolds
 * Action created: 2022-03-25 15:52:17
 */
function ct_trck_marvel_410108676(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15620);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Voicesmilesinfinity
 * Action created: 2022-09-28 10:11:09
 */
function ct_trck_marvel_410111359(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16068);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Voicespride2023
 * Action created: 2023-06-14 10:33:56
 */
function ct_trck_marvel_410114920(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Voicespridevariants
 * Action created: 2021-05-21 00:00:00
 */
function ct_trck_marvel_410102017(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14607);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wakandascuttingedgetech
 * Action created: 2020-02-12 00:00:00
 */
function ct_trck_marvel_410087490(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10942);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wandaagathahistory
 * Action created: 2023-10-30 10:45:15
 */
function ct_trck_marvel_410116516(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17112);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Warforcosmosexpands
 * Action created: 2020-07-02 00:00:00
 */
function ct_trck_marvel_410091051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11629);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Warhammer40000
 * Action created: 2020-06-25 00:00:00
 */
function ct_trck_marvel_410090908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11605);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Webheadexplainer
 * Action created: 2025-01-15 09:51:26
 */
function ct_trck_marvel_410137072(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21034);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Webofvenom
 * Action created: 2020-10-08 00:00:00
 */
function ct_trck_marvel_410096254(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12130);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wedding
 * Action created: 2023-08-02 15:55:49
 */
function ct_trck_marvel_410115508(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16930);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Werewolfbynight
 * Action created: 2023-10-25 12:46:41
 */
function ct_trck_marvel_410116466(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17106);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Werewolfbynightiscoming
 * Action created: 2020-01-24 00:00:00
 */
function ct_trck_marvel_410087133(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10826);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Werewolfbynightseries
 * Action created: 2024-04-16 15:40:04
 */
function ct_trck_marvel_410121903(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17643);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whatifaliens
 * Action created: 2024-01-29 11:45:03
 */
function ct_trck_marvel_410117314(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17283);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whatifdark
 * Action created: 2023-04-26 17:03:46
 */
function ct_trck_marvel_410114256(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16685);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whatyouneedtoknowbloodhunt
 * Action created: 2024-05-01 14:07:14
 */
function ct_trck_marvel_410122005(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17669);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whoarethethunderbolts
 * Action created: 2020-12-09 00:00:00
 */
function ct_trck_marvel_410097770(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12759);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whoisarnostark
 * Action created: 2020-07-20 00:00:00
 */
function ct_trck_marvel_410091751(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whoisblackpanther
 * Action created: 2020-04-06 00:00:00
 */
function ct_trck_marvel_410089599(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11284);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whoisissahbradley
 * Action created: 2021-03-31 00:00:00
 */
function ct_trck_marvel_410101053(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14481);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whoisknull
 * Action created: 2020-11-24 00:00:00
 */
function ct_trck_marvel_410097475(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12479);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whoismodok
 * Action created: 2021-05-21 00:00:00
 */
function ct_trck_marvel_410102000(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14604);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whoismonicarambeau
 * Action created: 2021-02-17 00:00:00
 */
function ct_trck_marvel_410099537(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Whoisyelenabelova
 * Action created: 2021-07-14 00:00:00
 */
function ct_trck_marvel_410103086(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14784);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Winterguard1
 * Action created: 2021-05-18 00:00:00
 */
function ct_trck_marvel_410101621(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14591);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Witchesroadexplained
 * Action created: 2024-09-18 17:13:30
 */
function ct_trck_marvel_410127652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19074);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverine#50sneakpeek
 * Action created: 2024-04-24 15:36:39
 */
function ct_trck_marvel_410121964(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17651);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverineblackwhiteblood
 * Action created: 2020-08-17 00:00:00
 */
function ct_trck_marvel_410092215(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinecheatingfate
 * Action created: 2022-03-07 11:23:51
 */
function ct_trck_marvel_410108390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15585);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinefromweaponx
 * Action created: 2022-02-22 09:59:20
 */
function ct_trck_marvel_410108193(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15564);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverineoriginbegins
 * Action created: 2022-01-28 00:00:00
 */
function ct_trck_marvel_410107679(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15464);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinepredator
 * Action created: 2023-08-22 10:55:30
 */
function ct_trck_marvel_410115715(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16959);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinerevenger#1variant
 * Action created: 2024-06-04 10:33:33
 */
function ct_trck_marvel_410122318(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17909);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinestopcostumes
 * Action created: 2020-04-14 00:00:00
 */
function ct_trck_marvel_410089764(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11318);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinesuits
 * Action created: 2024-09-05 09:17:42
 */
function ct_trck_marvel_410126392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18834);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinevariantsacrossthemultiv1722868188
 * Action created: 2024-08-05 10:29:48
 */
function ct_trck_marvel_410123712(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18314);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinewanderingyears
 * Action created: 2022-02-07 00:00:00
 */
function ct_trck_marvel_410107783(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15504);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverinewarloveespionage
 * Action created: 2022-02-11 00:00:00
 */
function ct_trck_marvel_410107844(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15543);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wolverineweaponx
 * Action created: 2024-05-08 10:48:03
 */
function ct_trck_marvel_410122092(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17712);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Womaskedansweredkthompson
 * Action created: 2021-09-17 00:00:00
 */
function ct_trck_marvel_410104513(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14943);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Womenmentors
 * Action created: 2020-03-04 00:00:00
 */
function ct_trck_marvel_410087908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11080);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Womenofmarvel
 * Action created: 2022-03-08 12:53:46
 */
function ct_trck_marvel_410108395(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15587);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Womenofwakanda
 * Action created: 2022-11-08 16:55:00
 */
function ct_trck_marvel_410111932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16211);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Womenshistorymonthcovers2023
 * Action created: 2023-01-25 11:58:44
 */
function ct_trck_marvel_410112917(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16428);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Womenshistoryvariants
 * Action created: 2021-02-10 00:00:00
 */
function ct_trck_marvel_410099174(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13783);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Womgurihiruinterview
 * Action created: 2023-03-31 10:42:04
 */
function ct_trck_marvel_410113856(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16608);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Wotrpostcards
 * Action created: 2019-05-17 00:00:00
 */
function ct_trck_marvel_410074708(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Woverinesnikts
 * Action created: 2020-08-24 00:00:00
 */
function ct_trck_marvel_410092296(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11839);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xcrossoverhouseofxpowersofx
 * Action created: 2020-01-09 00:00:00
 */
function ct_trck_marvel_410086862(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10765);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xeventfaq
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8059);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xfactorcostumes
 * Action created: 2020-02-14 00:00:00
 */
function ct_trck_marvel_410087528(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10956);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xlivesdeathsofwolverine
 * Action created: 2021-10-08 00:00:00
 */
function ct_trck_marvel_410105191(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14993);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xliveswolverinecovers
 * Action created: 2021-11-16 00:00:00
 */
function ct_trck_marvel_410105728(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15121);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmen#1trailerandmore
 * Action created: 2024-07-10 10:31:35
 */
function ct_trck_marvel_410122579(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18094);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmen1onmu
 * Action created: 2020-04-20 00:00:00
 */
function ct_trck_marvel_410089836(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11340);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmen35milestone
 * Action created: 2024-03-06 15:14:44
 */
function ct_trck_marvel_410121479(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17424);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmen4seminalmoments
 * Action created: 2020-01-30 00:00:00
 */
function ct_trck_marvel_410087208(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10867);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmen60event
 * Action created: 2023-02-22 13:06:34
 */
function ct_trck_marvel_410113394(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16527);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmen7nomutants
 * Action created: 2020-02-26 00:00:00
 */
function ct_trck_marvel_410087717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11060);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmen97actionfigurecover
 * Action created: 2024-02-15 14:36:46
 */
function ct_trck_marvel_410117466(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17310);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmen97prelude
 * Action created: 2023-12-21 15:52:30
 */
function ct_trck_marvel_410117034(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17206);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenafterxofswords
 * Action created: 2020-12-03 00:00:00
 */
function ct_trck_marvel_410097681(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12638);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenanimateds3
 * Action created: 2020-03-19 00:00:00
 */
function ct_trck_marvel_410088172(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11179);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmencrossover
 * Action created: 2020-02-29 00:00:00
 */
function ct_trck_marvel_410087750(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11068);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmeneditorialteamroundtable
 * Action created: 2020-02-11 00:00:00
 */
function ct_trck_marvel_410087479(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10941);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenfan4cross
 * Action created: 2020-02-18 00:00:00
 */
function ct_trck_marvel_410087582(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10982);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenfromtheashescovers
 * Action created: 2024-05-28 11:56:02
 */
function ct_trck_marvel_410122241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17869);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenfromtheashesera
 * Action created: 2024-04-12 15:48:57
 */
function ct_trck_marvel_410121794(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17589);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenfromtheashesinfinitycomics
 * Action created: 2024-06-05 12:54:40
 */
function ct_trck_marvel_410122326(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17910);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenhelfiregalafashion
 * Action created: 2021-04-30 00:00:00
 */
function ct_trck_marvel_410101451(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14551);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenhellfiregala2022
 * Action created: 2022-03-15 16:56:21
 */
function ct_trck_marvel_410108500(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenhellfiregalafashion2022
 * Action created: 2022-03-17 10:33:42
 */
function ct_trck_marvel_410108535(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15603);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmeninferno
 * Action created: 2021-08-06 00:00:00
 */
function ct_trck_marvel_410103401(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14852);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenkrakoanageyear1
 * Action created: 2024-06-06 15:52:04
 */
function ct_trck_marvel_410122327(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17890);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenkrakoanageyear2
 * Action created: 2024-06-10 09:59:48
 */
function ct_trck_marvel_410122347(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17929);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenkrakoanageyear3
 * Action created: 2024-06-11 10:28:52
 */
function ct_trck_marvel_410122335(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17931);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenkrakoanageyear4
 * Action created: 2024-06-12 09:46:19
 */
function ct_trck_marvel_410122340(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17949);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenkrakoanageyear5
 * Action created: 2024-06-13 09:39:15
 */
function ct_trck_marvel_410122361(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17932);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenlocations
 * Action created: 2024-04-04 09:41:29
 */
function ct_trck_marvel_410121711(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17566);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenmentorapprentice
 * Action created: 2020-03-20 00:00:00
 */
function ct_trck_marvel_410088187(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11183);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenmostfashionable
 * Action created: 2021-06-22 00:00:00
 */
function ct_trck_marvel_410102866(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenmutantkind
 * Action created: 2022-03-11 15:41:32
 */
function ct_trck_marvel_410108446(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15593);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmens4d+
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089323(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11227);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmensword1
 * Action created: 2021-03-15 00:00:00
 */
function ct_trck_marvel_410100720(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14242);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenswords1
 * Action created: 2020-11-06 00:00:00
 */
function ct_trck_marvel_410097197(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenvote2022
 * Action created: 2022-01-10 00:00:00
 */
function ct_trck_marvel_410107373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15343);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenvote2022creators
 * Action created: 2022-01-11 00:00:00
 */
function ct_trck_marvel_410107424(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15347);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenvote2023
 * Action created: 2023-01-31 09:13:07
 */
function ct_trck_marvel_410112989(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16442);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenvotecreators
 * Action created: 2023-02-02 18:55:10
 */
function ct_trck_marvel_410113166(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16468);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenvoteelection
 * Action created: 2023-01-30 16:09:31
 */
function ct_trck_marvel_410112987(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16440);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xmenvoteelectionbegins
 * Action created: 2023-01-31 10:39:42
 */
function ct_trck_marvel_410112990(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16443);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xofswordscovers
 * Action created: 2020-07-16 00:00:00
 */
function ct_trck_marvel_410091725(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11690);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xofswordsfinale
 * Action created: 2020-11-25 00:00:00
 */
function ct_trck_marvel_410097485(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12498);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xofswordspart2
 * Action created: 2020-09-30 00:00:00
 */
function ct_trck_marvel_410092813(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xofswordsrevealsarakko
 * Action created: 2020-11-04 00:00:00
 */
function ct_trck_marvel_410097148(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12261);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xofswordsstatis1
 * Action created: 2020-10-28 00:00:00
 */
function ct_trck_marvel_410097017(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12227);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xofswordsstatistrailer
 * Action created: 2020-10-01 00:00:00
 */
function ct_trck_marvel_410092824(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12081);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xosfullyinmu
 * Action created: 2021-03-01 00:00:00
 */
function ct_trck_marvel_410099744(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14042);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xosinmu
 * Action created: 2020-12-28 00:00:00
 */
function ct_trck_marvel_410098051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xosnearstheend
 * Action created: 2020-11-18 00:00:00
 */
function ct_trck_marvel_410097407(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12398);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Xosspoilers
 * Action created: 2020-11-11 00:00:00
 */
function ct_trck_marvel_410097290(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12318);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Yearinreviewwithkellythompson
 * Action created: 2019-12-30 00:00:00
 */
function ct_trck_marvel_410086735(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10722);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Yonaharveywom
 * Action created: 2020-03-17 00:00:00
 */
function ct_trck_marvel_410088141(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11163);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Yonduyondu
 * Action created: 2020-08-26 00:00:00
 */
function ct_trck_marvel_410092321(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11869);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Youngguns2019
 * Action created: 2019-12-23 00:00:00
 */
function ct_trck_marvel_410086679(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10700);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article - Ziggypig
 * Action created: 2022-08-19 15:36:54
 */
function ct_trck_marvel_410110867(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15965);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article -moonknightfirstofkhonshu#0
 * Action created: 2024-06-26 13:36:02
 */
function ct_trck_marvel_410122460(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17995);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-80thoneshots
 * Action created: 2019-01-28 00:00:00
 */
function ct_trck_marvel_410068928(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-birthkillmonger
 * Action created: 2018-12-05 00:00:00
 */
function ct_trck_marvel_410066049(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-conan5things
 * Action created: 2019-01-03 00:00:00
 */
function ct_trck_marvel_410067255(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-decembermu
 * Action created: 2018-12-03 00:00:00
 */
function ct_trck_marvel_410065912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4601);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-eveewingmarvelteamup
 * Action created: 2019-01-22 00:00:00
 */
function ct_trck_marvel_410068196(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5478);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-fcbd19comic
 * Action created: 2019-02-06 00:00:00
 */
function ct_trck_marvel_410069218(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-holidaycomics2018
 * Action created: 2018-12-20 00:00:00
 */
function ct_trck_marvel_410067069(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4998);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-huntedvariants
 * Action created: 2019-01-08 00:00:00
 */
function ct_trck_marvel_410067528(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-januarynewinmu
 * Action created: 2019-01-02 00:00:00
 */
function ct_trck_marvel_410067216(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-leagueoflegends
 * Action created: 2018-11-28 00:00:00
 */
function ct_trck_marvel_410065860(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4548);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-logancreativeteam
 * Action created: 2018-11-28 00:00:00
 */
function ct_trck_marvel_410065859(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4547);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-newinmufeb19
 * Action created: 2019-02-01 00:00:00
 */
function ct_trck_marvel_410069088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article-voyager
 * Action created: 2019-02-12 00:00:00
 */
function ct_trck_marvel_410069408(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5799);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article: Msmblackcat2
 * Action created: 2020-02-12 00:00:00
 */
function ct_trck_marvel_410087495(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10943);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Article: Xmenvfantasticfour
 * Action created: 2020-02-12 00:00:00
 */
function ct_trck_marvel_410087497(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10944);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Articles - Magicnearlydestroyorsavemu
 * Action created: 2020-03-09 00:00:00
 */
function ct_trck_marvel_410087998(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11119);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Articles - Monicarambeauwom
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087964(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11089);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Btsofcaptainmarveltheend
 * Action created: 2020-01-29 00:00:00
 */
function ct_trck_marvel_410087191(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10859);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Carnageforever
 * Action created: 2021-11-15 00:00:00
 */
function ct_trck_marvel_410105704(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15119);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Agathaharkness
 * Action created: 2021-02-22 00:00:00
 */
function ct_trck_marvel_410099588(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13920);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Armor
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098681(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13513);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Banshee
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098671(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13504);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Boomboom
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098674(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13507);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Cannonball
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098677(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13509);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Dococtopus
 * Action created: 2021-07-29 00:00:00
 */
function ct_trck_marvel_410103287(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14826);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Doctorstrange
 * Action created: 2021-01-27 00:00:00
 */
function ct_trck_marvel_410098912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13561);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Forge
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098673(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13506);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Hankmccoybeast
 * Action created: 2021-03-08 00:00:00
 */
function ct_trck_marvel_410099849(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14141);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Humantorch
 * Action created: 2020-08-10 00:00:00
 */
function ct_trck_marvel_410092139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11800);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Janefoster
 * Action created: 2021-08-30 00:00:00
 */
function ct_trck_marvel_410103982(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14893);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Jessicadrew
 * Action created: 2020-03-17 00:00:00
 */
function ct_trck_marvel_410088139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11165);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Marrow
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098680(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13512);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Meetmagneto
 * Action created: 2020-02-11 00:00:00
 */
function ct_trck_marvel_410087478(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10940);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Polaris
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098672(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13505);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Strongguy
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098679(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13511);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Sunspot
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098678(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13510);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Character - Tempo
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098676(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13508);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Characters - Janefostergoddessof Thunder
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Characters - Kamalakahn
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11221);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Characters - Wandamaximoff
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089308(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11218);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Deathofdaredevil
 * Action created: 2018-09-24 00:00:00
 */
function ct_trck_marvel_410063992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover -  Halloweenmonsters
 * Action created: 2023-10-25 12:52:43
 */
function ct_trck_marvel_410116467(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17107);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover -  Msmarvel
 * Action created: 2023-10-16 10:06:01
 */
function ct_trck_marvel_410116279(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17075);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover -  Scottcassielang
 * Action created: 2023-02-16 17:12:35
 */
function ct_trck_marvel_410113345(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16508);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover -  Valentinesday
 * Action created: 2023-02-10 14:05:12
 */
function ct_trck_marvel_410113238(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16487);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - 2020favorites
 * Action created: 2020-12-29 00:00:00
 */
function ct_trck_marvel_410098048(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - 2022yearinreview
 * Action created: 2023-01-03 09:36:24
 */
function ct_trck_marvel_410112617(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16363);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - 8weirdnewmutants
 * Action created: 2020-08-26 00:00:00
 */
function ct_trck_marvel_410092318(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11866);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Aapidiscover
 * Action created: 2021-05-10 00:00:00
 */
function ct_trck_marvel_410101549(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14568);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Agathaharkness
 * Action created: 2023-08-11 10:54:09
 */
function ct_trck_marvel_410115561(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16945);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Agentcarter
 * Action created: 2021-08-04 00:00:00
 */
function ct_trck_marvel_410103369(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14843);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Alioth
 * Action created: 2021-07-15 00:00:00
 */
function ct_trck_marvel_410103113(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14791);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Alternateff
 * Action created: 2022-09-23 10:14:05
 */
function ct_trck_marvel_410111298(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16051);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Amazingmaryjane
 * Action created: 2020-08-26 17:24:36
 */
function ct_trck_marvel_410092319(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11867);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Antman60years
 * Action created: 2023-01-13 14:51:00
 */
function ct_trck_marvel_410112778(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16383);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Asmgangwarpart1
 * Action created: 2024-03-01 15:40:48
 */
function ct_trck_marvel_410121466(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17385);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Asmlastremains
 * Action created: 2021-02-04 00:00:00
 */
function ct_trck_marvel_410099072(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13681);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Avengersageofkhonshu
 * Action created: 2021-01-19 00:00:00
 */
function ct_trck_marvel_410098349(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13460);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Axejudgmentday
 * Action created: 2022-11-28 09:30:13
 */
function ct_trck_marvel_410112178(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Bestof2021
 * Action created: 2022-01-04 00:00:00
 */
function ct_trck_marvel_410107329(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15303);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Bestsinistersixbattle
 * Action created: 2021-10-15 00:00:00
 */
function ct_trck_marvel_410105242(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15007);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Bishop
 * Action created: 2023-02-24 16:02:33
 */
function ct_trck_marvel_410113442(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16535);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Blackbolthardtime
 * Action created: 2020-08-10 00:00:00
 */
function ct_trck_marvel_410092136(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Blackcatdiscover
 * Action created: 2021-05-10 00:00:00
 */
function ct_trck_marvel_410101552(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14571);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Blackhistorymonth
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098688(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13516);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Blackpantherlonglivetheking
 * Action created: 2020-06-15 00:00:00
 */
function ct_trck_marvel_410090761(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11559);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Blade
 * Action created: 2023-01-20 16:45:20
 */
function ct_trck_marvel_410112874(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16414);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Captainamericasamwilson
 * Action created: 2023-07-03 11:34:21
 */
function ct_trck_marvel_410115203(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16845);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Captainmarvelbrood
 * Action created: 2023-07-18 10:00:06
 */
function ct_trck_marvel_410115294(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16885);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Captainmarvellist
 * Action created: 2020-04-20 00:00:00
 */
function ct_trck_marvel_410089830(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Carnagereigns
 * Action created: 2023-10-02 12:25:51
 */
function ct_trck_marvel_410116155(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17041);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Catchupstories
 * Action created: 2020-10-19 00:00:00
 */
function ct_trck_marvel_410096373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12199);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Childrenoftheatom
 * Action created: 2020-02-06 00:00:00
 */
function ct_trck_marvel_410087389(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10906);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Chrisclaremontdiscover
 * Action created: 2021-05-10 00:00:00
 */
function ct_trck_marvel_410101551(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14570);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Clandestine
 * Action created: 2022-06-16 14:28:36
 */
function ct_trck_marvel_410109971(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15804);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Classicsxmen90
 * Action created: 2022-07-26 10:18:54
 */
function ct_trck_marvel_410110449(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15911);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Clea
 * Action created: 2022-05-16 09:45:59
 */
function ct_trck_marvel_410109375(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15734);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Clintkateteamup
 * Action created: 2021-11-29 00:00:00
 */
function ct_trck_marvel_410105961(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15163);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Cosmicghostrider
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12236);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Createyourownoct2020
 * Action created: 2020-10-22 00:00:00
 */
function ct_trck_marvel_410096929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12205);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Daredevilmustreads
 * Action created: 2024-01-24 15:15:58
 */
function ct_trck_marvel_410117299(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17274);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Darkholdsaga
 * Action created: 2022-04-08 10:55:21
 */
function ct_trck_marvel_410108841(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15649);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Darkphoenixsaga
 * Action created: 2020-04-20 00:00:00
 */
function ct_trck_marvel_410089839(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11341);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Darkweb
 * Action created: 2023-03-24 16:17:11
 */
function ct_trck_marvel_410113806(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16595);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Darthvader6
 * Action created: 2020-09-18 00:00:00
 */
function ct_trck_marvel_410092698(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12002);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Daysoffuturepresent
 * Action created: 2020-02-21 00:00:00
 */
function ct_trck_marvel_410087639(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11024);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Ddbornagain
 * Action created: 2024-01-12 11:45:09
 */
function ct_trck_marvel_410117178(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17256);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Deathdrstrange
 * Action created: 2022-02-03 00:00:00
 */
function ct_trck_marvel_410107757(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15486);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Destinyofx
 * Action created: 2022-09-08 17:28:03
 */
function ct_trck_marvel_410111139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16014);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Destinyofx23
 * Action created: 2023-08-31 16:55:03
 */
function ct_trck_marvel_410115806(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16979);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Devilsreign
 * Action created: 2022-08-10 10:40:28
 */
function ct_trck_marvel_410110718(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15945);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Discoverspidergwen
 * Action created: 2020-10-08 00:00:00
 */
function ct_trck_marvel_410096256(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12131);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Discoverwintersoldier
 * Action created: 2021-03-04 00:00:00
 */
function ct_trck_marvel_410099809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14102);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Discoverwolverine
 * Action created: 2020-08-13 00:00:00
 */
function ct_trck_marvel_410092181(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11812);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Doctorstrange
 * Action created: 2023-05-03 15:02:23
 */
function ct_trck_marvel_410114409(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16706);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Echo
 * Action created: 2021-12-02 00:00:00
 */
function ct_trck_marvel_410106044(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15169);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Editorspicks406
 * Action created: 2020-04-06 00:00:00
 */
function ct_trck_marvel_410089593(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11279);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Editorspicksformarch16
 * Action created: 2020-03-16 00:00:00
 */
function ct_trck_marvel_410088114(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Elektracostumehistory
 * Action created: 2022-04-13 15:42:29
 */
function ct_trck_marvel_410108958(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Empyreevent
 * Action created: 2020-12-15 00:00:00
 */
function ct_trck_marvel_410097831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12902);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Enterthephoenix
 * Action created: 2021-07-09 00:00:00
 */
function ct_trck_marvel_410103044(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14767);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Eternals
 * Action created: 2021-11-04 00:00:00
 */
function ct_trck_marvel_410105495(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15070);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Eternalsdiscover
 * Action created: 2021-04-12 00:00:00
 */
function ct_trck_marvel_410101245(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14506);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Falconandwintersolderspotlight
 * Action created: 2021-02-25 00:00:00
 */
function ct_trck_marvel_410099676(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14003);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Falconwintersoldierhighlights
 * Action created: 2020-08-26 00:00:00
 */
function ct_trck_marvel_410092320(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11868);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Fallofx
 * Action created: 2023-11-22 10:19:40
 */
function ct_trck_marvel_410116759(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17160);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Fanfourorigins
 * Action created: 2020-07-10 00:00:00
 */
function ct_trck_marvel_410091572(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11666);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Fcbd2022
 * Action created: 2022-05-12 10:14:55
 */
function ct_trck_marvel_410109357(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15727);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Gaimaneternals
 * Action created: 2022-01-06 00:00:00
 */
function ct_trck_marvel_410107356(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15323);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Ghostriderjohnnyblaze
 * Action created: 2022-05-26 12:05:42
 */
function ct_trck_marvel_410109596(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Gotg2019
 * Action created: 2020-07-27 00:00:00
 */
function ct_trck_marvel_410091809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Gotgstarthere
 * Action created: 2020-08-03 00:00:00
 */
function ct_trck_marvel_410091929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Hawkeyeseries
 * Action created: 2021-11-16 00:00:00
 */
function ct_trck_marvel_410105727(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15120);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Hellcat
 * Action created: 2023-05-11 11:34:50
 */
function ct_trck_marvel_410114544(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16728);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Hellfiregala
 * Action created: 2023-01-27 13:20:43
 */
function ct_trck_marvel_410112954(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16436);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Hispanicheritage
 * Action created: 2023-09-18 10:55:34
 */
function ct_trck_marvel_410115981(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Hispanicheritage2020
 * Action created: 2020-09-15 00:00:00
 */
function ct_trck_marvel_410092664(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11982);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Historyblackpantherchange
 * Action created: 2022-02-22 09:32:53
 */
function ct_trck_marvel_410108191(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15563);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Historyblackpantherfuture
 * Action created: 2022-03-21 09:32:57
 */
function ct_trck_marvel_410108491(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15607);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Historyblackpantherlegacy
 * Action created: 2022-03-04 11:42:04
 */
function ct_trck_marvel_410108382(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15584);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Historyblackpanthernation
 * Action created: 2022-03-10 10:35:25
 */
function ct_trck_marvel_410108414(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15590);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Historyblackpantherpriest
 * Action created: 2022-02-28 09:33:50
 */
function ct_trck_marvel_410108305(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15576);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Historyhulkpt2
 * Action created: 2022-04-27 19:04:40
 */
function ct_trck_marvel_410109122(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15693);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Holiday2023
 * Action created: 2023-12-12 16:46:16
 */
function ct_trck_marvel_410116923(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17190);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Houseofm
 * Action created: 2023-04-21 16:33:09
 */
function ct_trck_marvel_410114119(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Hulklingwiccanrelationship
 * Action created: 2021-11-01 00:00:00
 */
function ct_trck_marvel_410105447(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15043);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Imanvellani
 * Action created: 2023-12-04 09:57:56
 */
function ct_trck_marvel_410116872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17170);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Insidergraham
 * Action created: 2020-02-18 00:00:00
 */
function ct_trck_marvel_410087578(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10978);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Insiderreadinglist2023
 * Action created: 2023-03-10 11:35:55
 */
function ct_trck_marvel_410113661(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16555);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Insiderreadinglist420
 * Action created: 2020-04-08 00:00:00
 */
function ct_trck_marvel_410089622(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11289);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Insiderreadinglistfeb21
 * Action created: 2021-02-02 00:00:00
 */
function ct_trck_marvel_410099044(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13644);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Insiderreadinglistjan22
 * Action created: 2022-01-25 00:00:00
 */
function ct_trck_marvel_410107619(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15427);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Insiderreadinglistmay2022
 * Action created: 2022-05-23 10:36:36
 */
function ct_trck_marvel_410109491(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15749);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Insiderreadinglistsept22
 * Action created: 2022-09-16 10:32:22
 */
function ct_trck_marvel_410111228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Intergalaticwakanda
 * Action created: 2021-08-10 00:00:00
 */
function ct_trck_marvel_410103755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14856);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Jackendofftaboopicks
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098685(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13515);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Janefostergodofthunder
 * Action created: 2020-10-02 10:25:24
 */
function ct_trck_marvel_410092839(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12099);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Jeangreyemmafrost
 * Action created: 2020-08-17 00:00:00
 */
function ct_trck_marvel_410092209(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Johnwalker
 * Action created: 2021-02-02 15:48:02
 */
function ct_trck_marvel_410099043(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13643);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Kangorigin
 * Action created: 2023-02-02 16:04:32
 */
function ct_trck_marvel_410113107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16467);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Kangtheconquerordiscover
 * Action created: 2021-05-10 00:00:00
 */
function ct_trck_marvel_410101550(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14569);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Katebishop
 * Action created: 2021-11-09 00:00:00
 */
function ct_trck_marvel_410105581(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15105);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Katebishopwestcoast
 * Action created: 2021-12-20 00:00:00
 */
function ct_trck_marvel_410106520(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15216);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Kierongillen
 * Action created: 2023-01-06 17:55:19
 */
function ct_trck_marvel_410112650(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16371);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Killmonger
 * Action created: 2020-06-25 00:00:00
 */
function ct_trck_marvel_410090931(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11608);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Killmonger2021
 * Action created: 2021-09-14 00:00:00
 */
function ct_trck_marvel_410104484(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14939);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Kingpin
 * Action created: 2021-12-15 00:00:00
 */
function ct_trck_marvel_410106447(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15210);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Kingpin24
 * Action created: 2024-01-17 14:54:05
 */
function ct_trck_marvel_410117229(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Knulldiscover
 * Action created: 2021-03-04 00:00:00
 */
function ct_trck_marvel_410099808(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14101);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Lokibesttricksdiscover
 * Action created: 2021-04-16 00:00:00
 */
function ct_trck_marvel_410101300(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14516);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Mantisorigins
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097087(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12235);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marvelmonsters2020
 * Action created: 2020-10-26 00:00:00
 */
function ct_trck_marvel_410096977(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marvelnoir
 * Action created: 2020-08-26 00:00:00
 */
function ct_trck_marvel_410092317(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11865);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marvelnoir2021
 * Action created: 2021-08-25 00:00:00
 */
function ct_trck_marvel_410103945(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14886);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marvelsdragons
 * Action created: 2024-02-02 17:08:00
 */
function ct_trck_marvel_410117372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17293);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marvelsvoices
 * Action created: 2021-06-24 00:00:00
 */
function ct_trck_marvel_410102900(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14705);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marvelsvoices2022
 * Action created: 2022-08-10 10:37:47
 */
function ct_trck_marvel_410110716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15944);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marvelsvoices2023
 * Action created: 2023-11-20 09:20:24
 */
function ct_trck_marvel_410116724(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marveltop10scary
 * Action created: 2023-10-30 10:48:10
 */
function ct_trck_marvel_410116518(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17114);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Marvelzombies
 * Action created: 2021-09-07 00:00:00
 */
function ct_trck_marvel_410104411(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14922);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Maximumcarnage
 * Action created: 2023-08-28 09:45:41
 */
function ct_trck_marvel_410115774(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16967);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Meettheghostriders
 * Action created: 2022-11-18 11:45:18
 */
function ct_trck_marvel_410112052(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16234);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Midnightsons
 * Action created: 2022-10-19 16:22:09
 */
function ct_trck_marvel_410111622(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16149);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Monicarambeau
 * Action created: 2023-03-16 09:32:47
 */
function ct_trck_marvel_410113694(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16568);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Monicarambeauphoton
 * Action created: 2023-11-13 10:00:25
 */
function ct_trck_marvel_410116651(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17147);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Moongirldevildinosaur
 * Action created: 2020-05-27 00:00:00
 */
function ct_trck_marvel_410090384(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11504);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Moonknight
 * Action created: 2022-03-23 17:01:22
 */
function ct_trck_marvel_410108633(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15611);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Moonknightsep22
 * Action created: 2022-09-01 15:36:33
 */
function ct_trck_marvel_410111081(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15983);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Morbius
 * Action created: 2022-04-04 09:18:40
 */
function ct_trck_marvel_410108774(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15633);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Mpq
 * Action created: 2020-06-26 00:00:00
 */
function ct_trck_marvel_410090936(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11610);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Obiwan
 * Action created: 2022-08-10 14:29:18
 */
function ct_trck_marvel_410110724(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15948);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Oldmanuniverse
 * Action created: 2021-10-08 00:00:00
 */
function ct_trck_marvel_410105184(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14991);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Pathtoxofswords
 * Action created: 2020-12-18 00:00:00
 */
function ct_trck_marvel_410097921(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Peggycarter
 * Action created: 2022-06-10 15:48:48
 */
function ct_trck_marvel_410109909(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15793);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Preludefallofx
 * Action created: 2023-10-05 10:19:44
 */
function ct_trck_marvel_410116190(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17050);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Pride2022
 * Action created: 2022-06-02 10:53:03
 */
function ct_trck_marvel_410109657(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15772);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Rachellerosenberg
 * Action created: 2024-02-22 17:47:32
 */
function ct_trck_marvel_410121386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17325);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Ralphmacchiowhatif
 * Action created: 2021-07-29 00:00:00
 */
function ct_trck_marvel_410103296(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14828);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Ravonnarenslayer
 * Action created: 2021-06-18 00:00:00
 */
function ct_trck_marvel_410102832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14693);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Roadreckoningwar
 * Action created: 2022-07-07 16:56:59
 */
function ct_trck_marvel_410110258(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Roadtocapcoldwar
 * Action created: 2023-07-14 10:33:00
 */
function ct_trck_marvel_410115280(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16864);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Roadtocontestofchaos
 * Action created: 2023-08-07 09:22:00
 */
function ct_trck_marvel_410115529(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16933);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Roadtodarkweb
 * Action created: 2022-12-09 14:07:19
 */
function ct_trck_marvel_410112351(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16292);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Roadtojudgmentday
 * Action created: 2022-10-13 15:37:48
 */
function ct_trck_marvel_410111554(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16122);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Roguegambit
 * Action created: 2023-07-10 10:28:48
 */
function ct_trck_marvel_410115236(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16854);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Samwilsondiscover
 * Action created: 2021-04-23 00:00:00
 */
function ct_trck_marvel_410101374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14539);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Secretinvasion
 * Action created: 2023-05-22 10:50:12
 */
function ct_trck_marvel_410114690(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16754);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Shangchi21
 * Action created: 2021-01-04 00:00:00
 */
function ct_trck_marvel_410098128(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Shangchibestmoments
 * Action created: 2022-10-19 16:08:50
 */
function ct_trck_marvel_410111620(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16148);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Sharoncarterdiscover
 * Action created: 2021-03-16 00:00:00
 */
function ct_trck_marvel_410100729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14260);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Shehulkdiscover
 * Action created: 2020-09-18 00:00:00
 */
function ct_trck_marvel_410092692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12000);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Shehulkhits
 * Action created: 2022-04-14 16:31:52
 */
function ct_trck_marvel_410108975(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15661);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Shehulkhits2022
 * Action created: 2022-08-10 10:34:14
 */
function ct_trck_marvel_410110714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15943);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Shuri
 * Action created: 2022-11-14 10:53:24
 */
function ct_trck_marvel_410111997(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16225);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Shuri2023
 * Action created: 2023-09-13 09:33:17
 */
function ct_trck_marvel_410115931(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17015);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Silversurferblack
 * Action created: 2020-05-08 00:00:00
 */
function ct_trck_marvel_410090203(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11426);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Sinsofsinister
 * Action created: 2023-04-28 15:22:54
 */
function ct_trck_marvel_410114344(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Sinsofsinister2023
 * Action created: 2023-07-18 10:03:51
 */
function ct_trck_marvel_410115295(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16886);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Sinsofsinisterprelude
 * Action created: 2022-12-16 17:09:53
 */
function ct_trck_marvel_410112441(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16314);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Skrulls
 * Action created: 2023-06-16 16:19:39
 */
function ct_trck_marvel_410114963(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16826);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spidergwen
 * Action created: 2023-12-11 10:54:49
 */
function ct_trck_marvel_410116904(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17185);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spidermanblacksuit
 * Action created: 2020-08-13 00:00:00
 */
function ct_trck_marvel_410092180(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11811);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spidermanclonesaga
 * Action created: 2022-12-16 14:50:47
 */
function ct_trck_marvel_410112268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16312);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spidermanorigins
 * Action created: 2020-05-15 00:00:00
 */
function ct_trck_marvel_410090270(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11463);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spidermanruns
 * Action created: 2020-03-20 00:00:00
 */
function ct_trck_marvel_410088181(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11181);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spiderverse
 * Action created: 2022-11-07 09:11:24
 */
function ct_trck_marvel_410111911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16207);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spiderverseevent
 * Action created: 2023-04-07 13:49:29
 */
function ct_trck_marvel_410113934(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16625);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spideybeyondamazing
 * Action created: 2022-08-01 10:15:50
 */
function ct_trck_marvel_410110526(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15927);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Spideylastremainsdiscover
 * Action created: 2021-04-05 00:00:00
 */
function ct_trck_marvel_410101076(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14487);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Stanlee
 * Action created: 2023-01-04 15:33:09
 */
function ct_trck_marvel_410112402(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16369);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Stanlee2024
 * Action created: 2023-12-22 11:38:23
 */
function ct_trck_marvel_410117040(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17208);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Startheredeadpool
 * Action created: 2020-05-20 00:00:00
 */
function ct_trck_marvel_410090315(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11484);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Startherethor
 * Action created: 2020-06-05 00:00:00
 */
function ct_trck_marvel_410090459(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11522);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Starwarsdiscover21
 * Action created: 2021-05-03 00:00:00
 */
function ct_trck_marvel_410101464(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14554);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Starwarsmaythe4th
 * Action created: 2020-05-01 00:00:00
 */
function ct_trck_marvel_410090034(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11399);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Starwarstargetvader
 * Action created: 2020-06-12 00:00:00
 */
function ct_trck_marvel_410090630(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11550);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Steliancreateyourown
 * Action created: 2020-11-16 00:00:00
 */
function ct_trck_marvel_410097372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12378);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Tanehisiblackpanther
 * Action created: 2020-04-10 00:00:00
 */
function ct_trck_marvel_410089722(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Taskmaster
 * Action created: 2021-02-02 00:00:00
 */
function ct_trck_marvel_410099042(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13642);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Terryblascreator
 * Action created: 2021-08-26 00:00:00
 */
function ct_trck_marvel_410103962(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14889);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Thanksgiving2020
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097091(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Thanosandgamora
 * Action created: 2020-03-27 00:00:00
 */
function ct_trck_marvel_410089368(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11235);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Themarvels
 * Action created: 2023-08-22 10:31:25
 */
function ct_trck_marvel_410115714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16958);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Themarvels2023
 * Action created: 2023-11-02 10:04:20
 */
function ct_trck_marvel_410116540(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17119);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Thorjanefoster
 * Action created: 2020-07-15 00:00:00
 */
function ct_trck_marvel_410091709(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11682);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Thorjanefoster2022
 * Action created: 2022-06-30 12:22:19
 */
function ct_trck_marvel_410110140(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15831);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Timekeepers
 * Action created: 2021-07-02 00:00:00
 */
function ct_trck_marvel_410102982(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14733);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Tonyemma
 * Action created: 2023-09-22 10:44:09
 */
function ct_trck_marvel_410116047(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17027);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Top5venomcarnagebattles
 * Action created: 2020-03-02 00:00:00
 */
function ct_trck_marvel_410087760(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11073);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Tvadiscover
 * Action created: 2021-06-11 00:00:00
 */
function ct_trck_marvel_410102313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14672);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Uncannyxmen
 * Action created: 2024-03-12 16:58:40
 */
function ct_trck_marvel_410121550(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17443);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Valentinesday
 * Action created: 2022-02-10 15:32:01
 */
function ct_trck_marvel_410107832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15528);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Valentinesday24
 * Action created: 2024-02-26 16:51:57
 */
function ct_trck_marvel_410117395(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17363);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Venombestbattles
 * Action created: 2020-07-06 00:00:00
 */
function ct_trck_marvel_410091088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Venombestbattles2021
 * Action created: 2021-10-21 00:00:00
 */
function ct_trck_marvel_410105283(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15016);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Whatif
 * Action created: 2021-07-15 00:00:00
 */
function ct_trck_marvel_410103114(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14792);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Whatifageofultron
 * Action created: 2021-09-27 00:00:00
 */
function ct_trck_marvel_410104623(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14965);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Whatifcametrue
 * Action created: 2021-09-21 00:00:00
 */
function ct_trck_marvel_410104534(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14947);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Whatsnewinmu
 * Action created: 2020-09-25 00:00:00
 */
function ct_trck_marvel_410092775(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12039);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Wolverine
 * Action created: 2022-01-24 00:00:00
 */
function ct_trck_marvel_410107601(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15423);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Wolverineghostrider
 * Action created: 2023-12-15 12:29:59
 */
function ct_trck_marvel_410116967(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17194);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Wolverinemadripoor
 * Action created: 2022-06-27 09:28:04
 */
function ct_trck_marvel_410110082(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15822);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Womenofmarvel
 * Action created: 2020-03-09 00:00:00
 */
function ct_trck_marvel_410087997(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Womenofmarvel2021
 * Action created: 2021-03-04 00:00:00
 */
function ct_trck_marvel_410099810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14103);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Womenofmarvel2023
 * Action created: 2023-06-26 09:41:17
 */
function ct_trck_marvel_410115095(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16838);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Womenshistorymonth
 * Action created: 2023-03-06 11:23:14
 */
function ct_trck_marvel_410113574(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16545);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Worldwarshehulk
 * Action created: 2022-01-24 00:00:00
 */
function ct_trck_marvel_410107459(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15425);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Xcouples
 * Action created: 2024-02-12 17:15:26
 */
function ct_trck_marvel_410117437(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17305);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Xcutionerssong
 * Action created: 2020-02-13 00:00:00
 */
function ct_trck_marvel_410087512(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10948);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Xfactorseriesspotlight
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097086(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12234);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Xmengodlovesmankills
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097092(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12238);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Xmenmomentthatarehistory
 * Action created: 2020-01-31 00:00:00
 */
function ct_trck_marvel_410087229(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10873);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Xmenstarthere
 * Action created: 2023-05-18 10:32:36
 */
function ct_trck_marvel_410114645(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16744);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Xmenvote2023
 * Action created: 2023-01-31 12:58:40
 */
function ct_trck_marvel_410112993(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16445);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover - Yelenabelova
 * Action created: 2021-12-09 00:00:00
 */
function ct_trck_marvel_410106361(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15194);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discover-avengersnosurrender
 * Action created: 2018-11-19 00:00:00
 */
function ct_trck_marvel_410065786(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Discoverstarthereavengers
 * Action created: 2023-04-14 14:58:45
 */
function ct_trck_marvel_410114014(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16642);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Fantasticfourbeen
 * Action created: 2018-09-12 00:00:00
 */
function ct_trck_marvel_410062910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Gangwarpromo
 * Action created: 2023-10-10 09:48:20
 */
function ct_trck_marvel_410116213(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17063);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Giantsizexmenfantomex#1
 * Action created: 2020-02-06 00:00:00
 */
function ct_trck_marvel_410087393(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10910);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Ironheart-ririwilliams
 * Action created: 2018-11-27 00:00:00
 */
function ct_trck_marvel_410065846(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4545);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Marieseverin
 * Action created: 2018-09-11 00:00:00
 */
function ct_trck_marvel_410062888(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4126);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Marieseverininterview
 * Action created: 2018-09-13 00:00:00
 */
function ct_trck_marvel_410062919(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4145);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Marvelknightsoralhistory
 * Action created: 2019-01-07 00:00:00
 */
function ct_trck_marvel_410067501(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Merryxmen
 * Action created: 2018-11-02 00:00:00
 */
function ct_trck_marvel_410065168(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4419);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Milesmorales
 * Action created: 2018-09-14 00:00:00
 */
function ct_trck_marvel_410062924(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4147);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Muoctober2018
 * Action created: 2018-10-01 00:00:00
 */
function ct_trck_marvel_410064195(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4243);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: November2018
 * Action created: 2018-11-01 00:00:00
 */
function ct_trck_marvel_410065154(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4418);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Peterdavidxmenlegends5
 * Action created: 2021-04-13 00:00:00
 */
function ct_trck_marvel_410101257(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14508);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Reignofxxmen1
 * Action created: 2021-04-16 00:00:00
 */
function ct_trck_marvel_410101299(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14515);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Saturdaymorningvariant
 * Action created: 2023-08-16 17:43:09
 */
function ct_trck_marvel_410115599(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16952);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Shangchi1
 * Action created: 2020-08-28 00:00:00
 */
function ct_trck_marvel_410092371(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Sharoncarterbestmoments
 * Action created: 2021-04-14 00:00:00
 */
function ct_trck_marvel_410101265(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14510);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Social - Muonfacebook
 * Action created: 2020-01-30 14:05:47
 */
function ct_trck_marvel_410087214(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10870);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Social - Muontwitter
 * Action created: 2020-01-30 14:11:30
 */
function ct_trck_marvel_410087215(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10871);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Social - Xmenvote
 * Action created: 2021-01-21 16:57:45
 */
function ct_trck_marvel_410098682(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13514);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Spidergwenspidergeddon
 * Action created: 2018-10-25 00:00:00
 */
function ct_trck_marvel_410064763(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4373);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Swordofconan
 * Action created: 2018-11-16 14:56:44
 */
function ct_trck_marvel__410065752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4495);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Test - Url
 * Action created: 2022-03-25 13:00:51
 */
function ct_trck_marvel_410108666(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Thor2alignsgalactusandgodofthunder
 * Action created: 2020-01-29 00:00:00
 */
function ct_trck_marvel_410087190(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Tldr-deadpool
 * Action created: 2018-11-21 00:00:00
 */
function ct_trck_marvel_410065801(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4533);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Trailer - Strangeacademytrailer2
 * Action created: 2020-01-30 00:00:00
 */
function ct_trck_marvel_410087210(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10868);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Trailers - Xfactor#1
 * Action created: 2020-03-23 00:00:00
 */
function ct_trck_marvel_410089301(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Venom31spoilers
 * Action created: 2020-12-11 00:00:00
 */
function ct_trck_marvel_410097821(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Absolutecarnagetrailer
 * Action created: 2019-07-10 00:00:00
 */
function ct_trck_marvel_410078369(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Adamwarlock101
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073969(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Alientrailer
 * Action created: 2021-02-26 00:00:00
 */
function ct_trck_marvel_410099691(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14022);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Alloutavengers
 * Action created: 2022-07-27 08:49:26
 */
function ct_trck_marvel_410110459(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15915);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Amazingspiderman850
 * Action created: 2020-09-02 00:00:00
 */
function ct_trck_marvel_410092423(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11906);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Amazingspidey75trailer
 * Action created: 2021-09-10 00:00:00
 */
function ct_trck_marvel_410104453(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14933);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Americachavez
 * Action created: 2022-02-28 12:50:42
 */
function ct_trck_marvel_410108310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Americachaveztrailer
 * Action created: 2021-03-01 00:00:00
 */
function ct_trck_marvel_410099739(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14041);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Avengers1trailer
 * Action created: 2023-04-13 14:31:30
 */
function ct_trck_marvel_410114002(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Avengersmechstrike
 * Action created: 2020-12-28 00:00:00
 */
function ct_trck_marvel_410098049(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Avengerstimh
 * Action created: 2019-07-02 00:00:00
 */
function ct_trck_marvel_410078089(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Axetrailer
 * Action created: 2022-06-03 09:20:36
 */
function ct_trck_marvel_410109668(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15776);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Badparents
 * Action created: 2019-07-09 00:00:00
 */
function ct_trck_marvel_410078328(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Baronzemoorigins
 * Action created: 2021-04-05 00:00:00
 */
function ct_trck_marvel_410101075(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14486);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Black Panther1trailer
 * Action created: 2021-09-30 00:00:00
 */
function ct_trck_marvel_410105067(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14968);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Blackpanther23trailer
 * Action created: 2021-01-08 00:00:00
 */
function ct_trck_marvel_410098239(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13341);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Blackpanther25
 * Action created: 2021-05-26 00:00:00
 */
function ct_trck_marvel_410102058(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Bloodhunttrailer
 * Action created: 2024-02-23 09:45:20
 */
function ct_trck_marvel_410121367(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17326);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Bloodline1trailer
 * Action created: 2023-01-31 11:57:47
 */
function ct_trck_marvel_410112992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16444);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Cableanddeadpool
 * Action created: 2021-05-11 00:00:00
 */
function ct_trck_marvel_410101567(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14575);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Captaincarter
 * Action created: 2022-02-07 00:00:00
 */
function ct_trck_marvel_410107785(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15506);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Carnagereignstrailer
 * Action created: 2023-03-31 10:31:49
 */
function ct_trck_marvel_410113854(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16606);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Cfvillastormbreaker
 * Action created: 2023-05-18 09:18:39
 */
function ct_trck_marvel_410114642(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16741);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Chrisallenstormbreaker
 * Action created: 2023-06-14 17:16:31
 */
function ct_trck_marvel_410114929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Comicbookpicks2019
 * Action created: 2019-12-23 00:00:00
 */
function ct_trck_marvel_410085809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Comicstvspot
 * Action created: 2019-08-05 00:00:00
 */
function ct_trck_marvel_410079946(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Comunidadestrailer
 * Action created: 2022-09-27 11:44:43
 */
function ct_trck_marvel_410111327(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16063);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Connycc23asmgang
 * Action created: 2023-10-14 07:36:03
 */
function ct_trck_marvel_410116271(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17070);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Connycc23nextera
 * Action created: 2023-10-16 10:04:50
 */
function ct_trck_marvel_410116278(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17074);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Daredevilprotectorofhellskitchen
 * Action created: 2022-12-19 11:57:48
 */
function ct_trck_marvel_410112462(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16318);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Daredeviltop5costumes
 * Action created: 2023-09-13 14:46:48
 */
function ct_trck_marvel_410115933(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17016);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Dawnofxcomictrailer
 * Action created: 2020-02-11 13:15:25
 */
function ct_trck_marvel_410087476(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Deadpool90s
 * Action created: 2021-05-04 00:00:00
 */
function ct_trck_marvel_410101486(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14559);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Deadpooloftoday
 * Action created: 2021-05-18 00:00:00
 */
function ct_trck_marvel_410101628(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14593);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Demondaystrailer1
 * Action created: 2021-02-04 00:00:00
 */
function ct_trck_marvel_410099073(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13682);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Destinyofx
 * Action created: 2022-02-25 16:36:04
 */
function ct_trck_marvel_410108281(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15574);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Devilsreigntrailer
 * Action created: 2021-10-22 00:00:00
 */
function ct_trck_marvel_410105294(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Doctordoom101
 * Action created: 2020-11-04 00:00:00
 */
function ct_trck_marvel_410097150(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Doctorstrange1trailer
 * Action created: 2023-02-16 11:55:12
 */
function ct_trck_marvel_410113320(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16506);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Elenastormbreaker
 * Action created: 2023-07-06 09:49:59
 */
function ct_trck_marvel_410115212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16850);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Empyrebetrayal
 * Action created: 2020-07-15 00:00:00
 */
function ct_trck_marvel_410091705(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11681);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Empyretrailer
 * Action created: 2020-06-18 00:00:00
 */
function ct_trck_marvel_410090808(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Fftimh
 * Action created: 2019-08-08 00:00:00
 */
function ct_trck_marvel_410080209(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Finaleternals1trailer
 * Action created: 2020-11-24 00:00:00
 */
function ct_trck_marvel_410097476(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12480);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Fivereasonstoreadspiderwoman#1
 * Action created: 2020-03-16 00:00:00
 */
function ct_trck_marvel_410088115(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11158);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Gamora101
 * Action created: 2021-01-22 00:00:00
 */
function ct_trck_marvel_410098723(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Gettoknowkrakoa101
 * Action created: 2020-02-06 00:00:00
 */
function ct_trck_marvel_410087390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10907);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ghostrider1
 * Action created: 2022-02-22 17:21:52
 */
function ct_trck_marvel_410108210(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15567);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ghostrider1trailer
 * Action created: 2019-09-06 00:00:00
 */
function ct_trck_marvel_410082476(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9661);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Giantxmen
 * Action created: 2020-02-24 00:00:00
 */
function ct_trck_marvel_410087657(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Godstrailer
 * Action created: 2023-03-29 11:40:56
 */
function ct_trck_marvel_410113827(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16601);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Gotg13trailer
 * Action created: 2021-03-17 00:00:00
 */
function ct_trck_marvel_410100771(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14283);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Guardiansofthegalaxy1trailer
 * Action created: 2023-03-01 15:10:42
 */
function ct_trck_marvel_410113558(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16542);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Gwenstacy
 * Action created: 2022-06-20 13:22:17
 */
function ct_trck_marvel_410109994(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15812);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Hawkeyekatebishop1trailer
 * Action created: 2021-10-15 00:00:00
 */
function ct_trck_marvel_410105243(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15008);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Historyxmenpt1
 * Action created: 2020-02-18 00:00:00
 */
function ct_trck_marvel_410087581(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10981);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Hulk1trailer
 * Action created: 2021-11-01 00:00:00
 */
function ct_trck_marvel_410105458(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15044);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Hulkvsthortrailer
 * Action created: 2022-03-25 15:51:03
 */
function ct_trck_marvel_410108675(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15619);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Incomingtrailer
 * Action created: 2019-11-15 00:00:00
 */
function ct_trck_marvel_410085156(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10529);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Infernotrailer
 * Action created: 2021-09-02 00:00:00
 */
function ct_trck_marvel_410104032(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ironmanback
 * Action created: 2020-06-12 00:00:00
 */
function ct_trck_marvel_410090629(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11549);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ironmanemmawedding
 * Action created: 2023-08-17 16:54:55
 */
function ct_trck_marvel_410115672(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16955);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Janbazalduastormbreaker
 * Action created: 2023-05-30 16:43:37
 */
function ct_trck_marvel_410114775(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16783);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Janefosterbecomesthor
 * Action created: 2022-05-25 13:22:58
 */
function ct_trck_marvel_410109577(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15755);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Kamalakhan101
 * Action created: 2019-09-16 00:00:00
 */
function ct_trck_marvel_410082831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Kibreturnofthevalkyries1trailer
 * Action created: 2020-11-30 00:00:00
 */
function ct_trck_marvel_410097530(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Kinginblack1trailer
 * Action created: 2020-10-28 00:00:00
 */
function ct_trck_marvel_410097023(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12229);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Kingsizeconantrailer
 * Action created: 2020-11-12 00:00:00
 */
function ct_trck_marvel_410097307(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12339);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Lifefwolverinetrailer
 * Action created: 2022-01-19 00:00:00
 */
function ct_trck_marvel_410107521(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15385);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Longstoryshortarmorwars
 * Action created: 2022-12-22 15:07:14
 */
function ct_trck_marvel_410112583(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16327);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Longstoryshortdeapoolkingofthemons1617047378
 * Action created: 2021-03-29 00:00:00
 */
function ct_trck_marvel_410100995(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14443);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Longstoryshortspiderverse
 * Action created: 2022-10-28 16:51:24
 */
function ct_trck_marvel_410111804(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16181);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Lsssilk
 * Action created: 2021-04-06 00:00:00
 */
function ct_trck_marvel_410101090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14493);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Lssthorandloki
 * Action created: 2020-12-17 00:00:00
 */
function ct_trck_marvel_410097911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Lukecagefirstappearance
 * Action created: 2019-03-21 00:00:00
 */
function ct_trck_marvel_410071271(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6480);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Maestro101
 * Action created: 2020-08-19 00:00:00
 */
function ct_trck_marvel_410092226(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11824);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Maestro1trailer
 * Action created: 2020-12-08 00:00:00
 */
function ct_trck_marvel_410097762(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12739);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Magik1010
 * Action created: 2021-03-18 00:00:00
 */
function ct_trck_marvel_410100793(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14300);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvel101krakoa
 * Action created: 2019-09-03 00:00:00
 */
function ct_trck_marvel_410082056(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9519);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelcomic1000trailer
 * Action created: 2019-08-27 00:00:00
 */
function ct_trck_marvel_410081849(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelhistoryblackwidow
 * Action created: 2019-01-10 00:00:00
 */
function ct_trck_marvel_410067768(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelsvoicesheritagetrailer
 * Action created: 2022-01-12 00:00:00
 */
function ct_trck_marvel_410107428(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15348);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelvoicesavengers#1trailer
 * Action created: 2023-12-05 13:50:41
 */
function ct_trck_marvel_410116883(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17171);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelvoicesidentitiestrailer
 * Action created: 2021-08-24 00:00:00
 */
function ct_trck_marvel_410103918(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14884);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelvoicesidentitytrailer
 * Action created: 2022-05-17 17:12:08
 */
function ct_trck_marvel_410109398(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelvoiceslegacytrailer
 * Action created: 2022-02-15 15:36:04
 */
function ct_trck_marvel_410108085(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15548);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelvoiceslegendstrailer
 * Action created: 2024-01-30 14:51:47
 */
function ct_trck_marvel_410117330(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17287);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelvoicesspiderversetrailer
 * Action created: 2023-04-12 13:39:18
 */
function ct_trck_marvel_410113981(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16634);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Marvelvoicesxmentrailer
 * Action created: 2023-08-16 14:30:35
 */
function ct_trck_marvel_410115595(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16950);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Midnightsunstrailer
 * Action created: 2022-08-11 14:03:59
 */
function ct_trck_marvel_410110741(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15950);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Milesmoralesspiderman25trailer
 * Action created: 2021-03-25 00:00:00
 */
function ct_trck_marvel_410100912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14403);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Monicarambeauphoton
 * Action created: 2022-12-19 11:55:34
 */
function ct_trck_marvel_410112460(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16316);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Msmarvelnewmutanttrailer
 * Action created: 2023-07-23 12:47:37
 */
function ct_trck_marvel_410115392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16913);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Mysterio101
 * Action created: 2019-05-20 00:00:00
 */
function ct_trck_marvel_410074768(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Namor
 * Action created: 2022-08-10 13:10:58
 */
function ct_trck_marvel_410110722(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15946);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Nickleinstormbreaker
 * Action created: 2023-06-22 18:25:02
 */
function ct_trck_marvel_410115068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16835);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Noroadhometrailer
 * Action created: 2019-02-14 00:00:00
 */
function ct_trck_marvel_410069468(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Quicksilver101
 * Action created: 2020-12-21 00:00:00
 */
function ct_trck_marvel_410097979(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Reborntrailer
 * Action created: 2021-01-25 00:00:00
 */
function ct_trck_marvel_410098749(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13540);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ririwilliams
 * Action created: 2022-06-06 09:20:33
 */
function ct_trck_marvel_410109677(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Riseofultramantrailer
 * Action created: 2020-08-12 00:00:00
 */
function ct_trck_marvel_410092169(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11806);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Robliefeldtalksdeadpool
 * Action created: 2021-04-26 00:00:00
 */
function ct_trck_marvel_410101389(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14543);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Rogue101
 * Action created: 2020-12-07 00:00:00
 */
function ct_trck_marvel_410097734(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Sdcccomicsrecap
 * Action created: 2024-07-30 09:15:52
 */
function ct_trck_marvel_410123012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18214);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Secretinvasion
 * Action created: 2022-05-23 12:42:15
 */
function ct_trck_marvel_410109492(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15750);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Secretxmentrailer
 * Action created: 2022-08-29 13:21:34
 */
function ct_trck_marvel_410111035(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15976);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Seminalmoments3
 * Action created: 2019-06-04 00:00:00
 */
function ct_trck_marvel_410075368(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Seminalmoments4
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Shangchi101
 * Action created: 2021-02-12 00:00:00
 */
function ct_trck_marvel_410099253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13821);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Shangchi1trailer
 * Action created: 2020-09-03 00:00:00
 */
function ct_trck_marvel_410092432(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11909);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Shangchitenrings
 * Action created: 2022-06-10 15:27:37
 */
function ct_trck_marvel_410109907(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15791);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Shurimarvel101
 * Action created: 2021-04-05 00:00:00
 */
function ct_trck_marvel_410101080(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14491);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Skottieyoungdeadpoolvsrocket
 * Action created: 2020-01-13 00:00:00
 */
function ct_trck_marvel_410086915(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Spectacularspidermentrailer
 * Action created: 2024-01-19 16:26:11
 */
function ct_trck_marvel_410117263(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17268);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Spidermancritics
 * Action created: 2019-09-20 00:00:00
 */
function ct_trck_marvel_410083093(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9899);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Spidermanfirstappearance
 * Action created: 2019-06-06 00:00:00
 */
function ct_trck_marvel_410075510(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Spiderpunkarmsracetrailer
 * Action created: 2024-01-09 12:33:15
 */
function ct_trck_marvel_410117155(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17250);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Spiderwoman#1
 * Action created: 2020-02-21 00:00:00
 */
function ct_trck_marvel_410087640(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11025);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Strangeacademy
 * Action created: 2020-03-04 00:00:00
 */
function ct_trck_marvel_410087910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11081);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Thanossnaphistory
 * Action created: 2019-05-21 00:00:00
 */
function ct_trck_marvel_410074811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Thehawkeyes
 * Action created: 2022-01-14 00:00:00
 */
function ct_trck_marvel_410107466(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15364);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Titania101
 * Action created: 2020-03-17 00:00:00
 */
function ct_trck_marvel_410088137(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11167);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Todayinhistoryxforce
 * Action created: 2019-06-25 00:00:00
 */
function ct_trck_marvel_410077746(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8261);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Top10womenavengers
 * Action created: 2021-03-22 00:00:00
 */
function ct_trck_marvel_410100831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14363);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Top5loki
 * Action created: 2021-12-03 00:00:00
 */
function ct_trck_marvel_410106053(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15171);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Trailerff32
 * Action created: 2021-04-09 00:00:00
 */
function ct_trck_marvel_410101127(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14503);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Trailervoicespride
 * Action created: 2021-06-22 00:00:00
 */
function ct_trck_marvel_410102864(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Trialofmagnetotrailer
 * Action created: 2021-07-15 00:00:00
 */
function ct_trck_marvel_410103107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14790);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Trialsofultraman1
 * Action created: 2021-02-18 00:00:00
 */
function ct_trck_marvel_410099570(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13881);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ultimateblackpanthertrailer
 * Action created: 2023-12-12 15:39:19
 */
function ct_trck_marvel_410116920(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17188);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ultimateinvasion1trailer
 * Action created: 2023-05-17 11:30:35
 */
function ct_trck_marvel_410114633(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ultimatespidermantrailer
 * Action created: 2023-11-27 11:17:14
 */
function ct_trck_marvel_410116786(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17165);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Ultimatexmentrailer
 * Action created: 2024-02-01 17:39:33
 */
function ct_trck_marvel_410117362(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17290);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Venom101
 * Action created: 2019-08-05 00:00:00
 */
function ct_trck_marvel_410079945(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Venom1trailer
 * Action created: 2021-09-27 00:00:00
 */
function ct_trck_marvel_410104617(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14962);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Visitkrakoa
 * Action created: 2022-01-26 00:00:00
 */
function ct_trck_marvel_410107626(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15444);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Voiceslegacy1trailer
 * Action created: 2021-02-23 00:00:00
 */
function ct_trck_marvel_410099622(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13960);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Whoismoonknight
 * Action created: 2022-03-25 09:51:21
 */
function ct_trck_marvel_410108662(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15616);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Wolverine#1comictrailer
 * Action created: 2020-01-24 00:00:00
 */
function ct_trck_marvel_410087135(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10828);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Wolverinerevenge
 * Action created: 2024-07-27 16:27:43
 */
function ct_trck_marvel_410122733(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18142);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Wolverinerevengeredbandtrailer
 * Action created: 2024-08-21 10:32:21
 */
function ct_trck_marvel_410124872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18535);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Wom2024
 * Action created: 2024-02-29 09:47:37
 */
function ct_trck_marvel_410121443(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17365);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Womenofmarvel1trailer
 * Action created: 2023-03-21 14:22:47
 */
function ct_trck_marvel_410113760(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16584);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Womenofmarveltrailer
 * Action created: 2021-04-20 00:00:00
 */
function ct_trck_marvel_410101319(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Womtrailer
 * Action created: 2022-03-09 09:09:46
 */
function ct_trck_marvel_410108404(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15589);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Wotrtrailer2
 * Action created: 2019-05-13 00:00:00
 */
function ct_trck_marvel_410074450(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7538);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Wouldyoubekreeorskrull
 * Action created: 2020-01-24 00:00:00
 */
function ct_trck_marvel_410087137(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10830);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xfactor20201
 * Action created: 2020-07-29 00:00:00
 */
function ct_trck_marvel_410091891(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11749);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmen#1
 * Action created: 2020-02-18 00:00:00
 */
function ct_trck_marvel_410087583(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10983);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmen1trailer
 * Action created: 2021-06-11 00:00:00
 */
function ct_trck_marvel_410102312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14671);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmen60hickman
 * Action created: 2023-06-12 17:33:11
 */
function ct_trck_marvel_410114907(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16814);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmenfromashestrailer
 * Action created: 2024-07-28 12:19:03
 */
function ct_trck_marvel_410122718(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18180);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmenfromtheashestrailer
 * Action created: 2024-03-14 17:04:22
 */
function ct_trck_marvel_410121564(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17432);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmenhellfiregala2023
 * Action created: 2023-06-13 15:28:07
 */
function ct_trck_marvel_410114912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16815);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmenhistorypart1
 * Action created: 2019-05-22 00:00:00
 */
function ct_trck_marvel_410074910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7718);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmenhistorypart2
 * Action created: 2019-05-28 00:00:00
 */
function ct_trck_marvel_410075028(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmenliving
 * Action created: 2024-11-12 13:49:41
 */
function ct_trck_marvel_410132993(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20094);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmensinsofsinisteralphatrailer
 * Action created: 2022-12-13 10:32:16
 */
function ct_trck_marvel_410112374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16303);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xmentheweddingspecialtrailer
 * Action created: 2024-05-29 14:47:44
 */
function ct_trck_marvel_410122268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17850);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xofswordstrailer
 * Action created: 2020-08-25 00:00:00
 */
function ct_trck_marvel_410092301(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11841);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video - Xofwolverinetrailer
 * Action created: 2021-11-19 00:00:00
 */
function ct_trck_marvel_410105819(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15128);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video Lssphonenixsaga
 * Action created: 2021-04-13 00:00:00
 */
function ct_trck_marvel_410101256(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14507);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video-milesmoralestrailer
 * Action created: 2018-12-13 00:00:00
 */
function ct_trck_marvel_410066892(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4878);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video: Hellfiregalatrailer
 * Action created: 2021-05-03 00:00:00
 */
function ct_trck_marvel_410101471(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14555);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Video: Katebishophawkeye
 * Action created: 2021-04-12 00:00:00
 */
function ct_trck_marvel_410101243(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14505);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Visionorigin
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065200(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Warofrealms
 * Action created: 2018-11-16 00:00:00
 */
function ct_trck_marvel_410065757(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Watch - Hawkeyefreefall#1trailer
 * Action created: 2019-12-31 00:00:00
 */
function ct_trck_marvel_410086738(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10725);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Werewolfbynight1
 * Action created: 2020-10-26 00:00:00
 */
function ct_trck_marvel_410096980(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12219);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Xforce
 * Action created: 2018-09-14 00:00:00
 */
function ct_trck_marvel_410062925(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4148);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Xmengwenstacytaskmasterkib
 * Action created: 2021-04-20 00:00:00
 */
function ct_trck_marvel_410101313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14522);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics: Xmenvotingpage
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098667(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13503);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics:avengersnosurrender
 * Action created: 2017-11-14 00:00:00
 */
function ct_trck_marvel_410057865(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Comics:returnofwolverine
 * Action created: 2018-09-18 00:00:00
 */
function ct_trck_marvel_410063947(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4172);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Competed In The Marvel Puzzle Quest Reality Stone 1625838857
 * Action created: 2021-07-09 09:54:17
 */
function ct_trck_marvel_410103042(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14766);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Competed In Yellow Jacket Tournament
 * Action created: 2021-01-26 20:04:26
 */
function ct_trck_marvel_410098894(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13560);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Completed Beginner Mode In The Masacre And The Mer1531751489
 * Action created: 2018-07-16 10:31:29
 */
function ct_trck_marvel_410061652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3559);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Completed Check Into Marvel Future Fight For 5 Day1542206220
 * Action created: 2018-11-14 09:37:00
 */
function ct_trck_marvel_410065725(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4490);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Completed Download Future Fight
 * Action created: 2018-11-14 09:29:16
 */
function ct_trck_marvel_410065724(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4489);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Completed Heroic Mode In The Masacre And The Mercs1531751503
 * Action created: 2018-07-16 10:31:43
 */
function ct_trck_marvel_410061654(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3560);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Completed Normal Mode In The Masacre And The Mercs1531751456
 * Action created: 2018-07-16 10:30:56
 */
function ct_trck_marvel_410061653(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Conics: Article - Thesilverage19601970
 * Action created: 2020-02-26 00:00:00
 */
function ct_trck_marvel_410087715(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Bestfightscenes
 * Action created: 2018-10-30 00:00:00
 */
function ct_trck_marvel_410064850(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4404);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Character
 * Action created: 2018-10-11 00:00:00
 */
function ct_trck_marvel_410064446(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4301);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Daredevilworld
 * Action created: 2018-10-16 00:00:00
 */
function ct_trck_marvel_410064625(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4326);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Karenpagespoilers
 * Action created: 2018-10-25 00:00:00
 */
function ct_trck_marvel_410064768(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Kingpincharacter
 * Action created: 2018-10-12 00:00:00
 */
function ct_trck_marvel_410064453(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4303);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Marvel101
 * Action created: 2018-10-11 00:00:00
 */
function ct_trck_marvel_410064443(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4299);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Poindexter
 * Action created: 2018-10-11 00:00:00
 */
function ct_trck_marvel_410064447(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4302);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Readingguide
 * Action created: 2018-10-23 00:00:00
 */
function ct_trck_marvel_410064742(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4366);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: S3teasertrailer
 * Action created: 2018-09-20 00:00:00
 */
function ct_trck_marvel_410063972(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4180);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: S3trailer
 * Action created: 2018-10-05 00:00:00
 */
function ct_trck_marvel_410064382(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Season3primer
 * Action created: 2018-10-16 00:00:00
 */
function ct_trck_marvel_410064621(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4325);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Spoilers
 * Action created: 2018-10-24 00:00:00
 */
function ct_trck_marvel_410064756(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4368);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil: Supportthedevil
 * Action created: 2018-10-18 00:00:00
 */
function ct_trck_marvel_410064704(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4328);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Daredevil:s3confessional
 * Action created: 2018-09-11 00:00:00
 */
function ct_trck_marvel_410062887(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4125);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Didjaknowxmen1
 * Action created: 2019-10-16 00:00:00
 */
function ct_trck_marvel_410084197(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10321);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Fivemutants
 * Action created: 2019-10-16 00:00:00
 */
function ct_trck_marvel_410084195(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10319);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Giantsizedxmen
 * Action created: 2019-10-25 00:00:00
 */
function ct_trck_marvel_410084663(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10418);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Launchparty
 * Action created: 2019-10-16 00:00:00
 */
function ct_trck_marvel_410084194(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10318);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Newenemyofxmen
 * Action created: 2019-10-22 00:00:00
 */
function ct_trck_marvel_410084599(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10400);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Newmutants
 * Action created: 2019-10-10 00:00:00
 */
function ct_trck_marvel_410083752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Pox6
 * Action created: 2019-10-14 00:00:00
 */
function ct_trck_marvel_410083855(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10281);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Sdccannouncement
 * Action created: 2019-10-10 00:00:00
 */
function ct_trck_marvel_410083753(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10218);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Xforceprimer
 * Action created: 2019-10-11 00:00:00
 */
function ct_trck_marvel_410083812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10240);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Article - Xmenprimer
 * Action created: 2019-10-15 00:00:00
 */
function ct_trck_marvel_410084160(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Character - Cyclops
 * Action created: 2019-10-14 00:00:00
 */
function ct_trck_marvel_410083853(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10279);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Character - Gambit
 * Action created: 2019-10-25 00:00:00
 */
function ct_trck_marvel_410084666(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10420);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Character - Kittypryde
 * Action created: 2019-10-25 00:00:00
 */
function ct_trck_marvel_410084665(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10419);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Character - Rogue
 * Action created: 2019-10-25 00:00:00
 */
function ct_trck_marvel_410084667(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10421);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Character - Wolverine
 * Action created: 2019-10-11 00:00:00
 */
function ct_trck_marvel_410083811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10239);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Character - Xmen
 * Action created: 2019-10-10 00:00:00
 */
function ct_trck_marvel_410083755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10220);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Discover - Jeangrey
 * Action created: 2019-10-11 00:00:00
 */
function ct_trck_marvel_410083810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10238);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Discover - Storm
 * Action created: 2019-10-11 00:00:00
 */
function ct_trck_marvel_410083809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Discover - Xmen
 * Action created: 2019-10-10 00:00:00
 */
function ct_trck_marvel_410083754(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10219);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Video - Bestofthexmen
 * Action created: 2019-10-17 00:00:00
 */
function ct_trck_marvel_410084208(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dawnofx: Video - Xmen1trailer
 * Action created: 2019-10-15 00:00:00
 */
function ct_trck_marvel_410084167(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Dds3:burnteaser
 * Action created: 2018-09-26 00:00:00
 */
function ct_trck_marvel_410064036(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4209);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Defenders: Video - Nycc 2016 Defenders Unite
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050926(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1253);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: 'x-tra Sized' X-collections Sale
 * Action created: 2017-02-23 18:26:13
 */
function ct_trck_marvel_410053447(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Amazing Spider-man #1
 * Action created: 2018-07-11 14:43:41
 */
function ct_trck_marvel_410061633(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Amazing Spider-man #800
 * Action created: 2018-05-29 10:55:44
 */
function ct_trck_marvel_410060891(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Amazing Spider-man #801
 * Action created: 2018-06-19 14:19:04
 */
function ct_trck_marvel_410061319(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3382);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Amazing Spider-man: Venom Inc. Omega #1
 * Action created: 2018-01-16 14:44:36
 */
function ct_trck_marvel_410058872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Avengers #1
 * Action created: 2018-05-16 11:28:03
 */
function ct_trck_marvel_410060550(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Avengers #2
 * Action created: 2018-05-16 11:27:10
 */
function ct_trck_marvel_410060777(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Avengers #675
 * Action created: 2018-01-02 16:26:42
 */
function ct_trck_marvel_410058753(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2440);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Avengers #680
 * Action created: 2018-02-14 09:55:21
 */
function ct_trck_marvel_410059165(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Avengers672
 * Action created: 2017-10-03 15:32:29
 */
function ct_trck_marvel_410056581(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Black Panther #1
 * Action created: 2018-05-22 14:27:48
 */
function ct_trck_marvel_410060856(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3280);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Cloak And Dagger #1
 * Action created: 2018-06-06 10:00:29
 */
function ct_trck_marvel_410060949(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3327);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Digital Code Redeem - Secret Empire #6
 * Action created: 2017-07-18 11:56:31
 */
function ct_trck_digital_comics_digital_code_redeem_secret_empire_6(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover - Cable & Deadpool
 * Action created: 2017-06-01 00:00:00
 */
function ct_trck_marvel_410055066(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1607);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover - Iron Fist
 * Action created: 2017-02-13 00:00:00
 */
function ct_trck_marvel_410053369(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover - Legion
 * Action created: 2017-02-13 00:00:00
 */
function ct_trck_marvel_410053368(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover - Old Man Logan
 * Action created: 2017-02-13 00:00:00
 */
function ct_trck_marvel_410053370(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1459);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover - Squirrel Girl
 * Action created: 2017-06-01 00:00:00
 */
function ct_trck_marvel_410055063(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1604);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover - Star Lord
 * Action created: 2017-06-01 00:00:00
 */
function ct_trck_marvel_410055064(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1605);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover - Venom
 * Action created: 2017-06-01 00:00:00
 */
function ct_trck_marvel_410055065(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1606);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover- Best Of Ultimate Spider-man
 * Action created: 2017-08-08 00:00:00
 */
function ct_trck_marvel_410055656(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1839);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Discover- Uncanny X-men Must-reads
 * Action created: 2017-08-08 00:00:00
 */
function ct_trck_marvel_410055657(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1840);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Dr. Strange-damnation#1
 * Action created: 2018-02-20 14:17:39
 */
function ct_trck_marvel_410059213(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Extermination #1
 * Action created: 2018-08-14 15:07:48
 */
function ct_trck_marvel_410062577(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Infinity War #1
 * Action created: 2018-07-31 16:14:54
 */
function ct_trck_marvel_410062126(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3682);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Infinity Wars Prime #1
 * Action created: 2018-07-24 17:05:39
 */
function ct_trck_marvel_410062068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Multiple Man #1
 * Action created: 2018-06-26 16:33:17
 */
function ct_trck_marvel_410061386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3446);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: New Issue - Zombies Resurrection #1572469771
 * Action created: 2019-10-30 17:09:31
 */
function ct_trck_marvel_410084927(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: New Mutants: Dead Souls #1
 * Action created: 2018-03-13 12:23:23
 */
function ct_trck_marvel_410059424(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2844);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Peter Parker: Amazing Spider-man #1519830478
 * Action created: 2018-02-28 10:07:58
 */
function ct_trck_marvel_410059308(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Shuri #1
 * Action created: 2018-10-17 10:33:13
 */
function ct_trck_marvel_410064622(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4327);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Spidergwenspiderghost
 * Action created: 2018-10-24 09:32:58
 */
function ct_trck_marvel_410064755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4367);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: The Prox Transmissions
 * Action created: 2018-01-17 18:00:36
 */
function ct_trck_marvel_410058894(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics: Xmenblackemmafrost
 * Action created: 2018-10-31 10:42:04
 */
function ct_trck_marvel_410064851(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4407);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:amazing Spider-man #799
 * Action created: 2018-04-17 14:18:32
 */
function ct_trck_marvel_410060307(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3108);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:captain America #700
 * Action created: 2018-04-10 13:58:49
 */
function ct_trck_marvel_410060244(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3085);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:captain America (2018) #1
 * Action created: 2018-07-03 14:55:54
 */
function ct_trck_marvel_410061581(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3482);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:deadpool #1
 * Action created: 2018-06-05 22:36:51
 */
function ct_trck_marvel_410060946(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3325);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:doctor Strange #383
 * Action created: 2018-01-03 14:50:06
 */
function ct_trck_marvel_410058761(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2443);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:infinity Countdown #1
 * Action created: 2018-03-06 14:04:14
 */
function ct_trck_marvel_410059367(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2785);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:legion #1
 * Action created: 2018-01-24 10:44:44
 */
function ct_trck_marvel_410058991(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2538);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:marvel Two-in-one (2017-) #1
 * Action created: 2017-12-12 16:55:14
 */
function ct_trck_marvel_410058670(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2406);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:rise Of The Black Panther #1
 * Action created: 2018-01-02 16:23:03
 */
function ct_trck_marvel_410058750(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2439);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digital Comics:thor #1(2018)
 * Action created: 2018-06-11 14:13:24
 */
function ct_trck_marvel_410060976(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3342);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Absolutecarnagedirectorscut1
 * Action created: 2019-08-08 10:02:45
 */
function ct_trck_marvel_410080208(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Absolutecarnagescream1
 * Action created: 2019-08-13 13:26:49
 */
function ct_trck_marvel_410080448(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Aero1
 * Action created: 2019-07-01 14:45:05
 */
function ct_trck_marvel_410078037(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8421);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Ageofxmanxtremist
 * Action created: 2019-02-26 16:00:21
 */
function ct_trck_marvel_410070110(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6041);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Amazingmaryjane1
 * Action created: 2019-10-22 12:27:18
 */
function ct_trck_marvel_410084593(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10399);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Amazingspiderman17
 * Action created: 2019-03-12 15:39:50
 */
function ct_trck_marvel_410070613(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6319);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Amazingspiderman19
 * Action created: 2019-04-16 14:24:34
 */
function ct_trck_marvel_410072993(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Amazingspiderman25
 * Action created: 2019-07-09 10:49:15
 */
function ct_trck_marvel_410078308(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Avengers20
 * Action created: 2019-06-25 10:38:40
 */
function ct_trck_marvel_410077747(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8262);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Avengersnoroadhome
 * Action created: 2019-02-12 11:27:47
 */
function ct_trck_marvel_410069388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Blackcat20201
 * Action created: 2020-12-15 09:48:59
 */
function ct_trck_marvel_410097869(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Blackwidow1
 * Action created: 2020-08-26 16:49:42
 */
function ct_trck_marvel_410092311(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11859);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Buyexcaliburvol1
 * Action created: 2020-04-20 14:27:56
 */
function ct_trck_marvel_410089834(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11338);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Buyfalconandwintersoldier#1
 * Action created: 2020-01-30 11:18:12
 */
function ct_trck_marvel_410087206(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10866);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Buymarauderscollection
 * Action created: 2020-04-14 14:52:41
 */
function ct_trck_marvel_410089769(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11320);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Buyrunawaysvol5
 * Action created: 2020-04-20 14:29:53
 */
function ct_trck_marvel_410089835(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11339);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Buywolverine#1
 * Action created: 2020-01-30 11:15:27
 */
function ct_trck_marvel_410087205(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10865);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Buyxmen#6
 * Action created: 2020-01-30 11:11:57
 */
function ct_trck_marvel_410087204(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10864);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Buyxmenfantasticfour#1
 * Action created: 2020-01-30 11:08:47
 */
function ct_trck_marvel_410087203(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10863);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Captainmarvel1
 * Action created: 2019-01-07 11:32:25
 */
function ct_trck_marvel_410067495(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5139);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Conan
 * Action created: 2018-12-31 09:35:23
 */
function ct_trck_marvel_410067189(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Conanaserpentwar1
 * Action created: 2019-12-02 14:54:08
 */
function ct_trck_marvel_410085310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Daredevil20191
 * Action created: 2019-02-05 10:32:44
 */
function ct_trck_marvel_410069168(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Daredevilwomanwithoutfear1
 * Action created: 2022-01-10 11:51:05
 */
function ct_trck_marvel_410107374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15344);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Deadmanlogan1
 * Action created: 2018-11-27 12:32:35
 */
function ct_trck_marvel_410065851(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4546);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Deadpool1
 * Action created: 2019-11-19 16:35:21
 */
function ct_trck_marvel_410085190(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10544);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Deadpooltheend#1
 * Action created: 2020-01-02 15:18:37
 */
function ct_trck_marvel_410086759(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10741);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Empyre1
 * Action created: 2020-07-28 12:55:01
 */
function ct_trck_marvel_410090858(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11744);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Empyre4
 * Action created: 2020-07-28 12:52:00
 */
function ct_trck_marvel_410091862(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11742);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Empyreaftermathavengers1
 * Action created: 2020-08-26 16:56:52
 */
function ct_trck_marvel_410092312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Fantasticfour5
 * Action created: 2018-12-14 12:43:36
 */
function ct_trck_marvel_410066913(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4921);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Fantasticfour6
 * Action created: 2019-01-15 12:06:35
 */
function ct_trck_marvel_410067692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5379);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Fantasticfourantitheses1
 * Action created: 2020-07-28 12:59:31
 */
function ct_trck_marvel_410091865(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11746);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Fortnitezerowar1
 * Action created: 2022-06-07 17:37:54
 */
function ct_trck_marvel_410109716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15782);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Ghostriderdirectorscut1
 * Action created: 2019-10-01 09:50:46
 */
function ct_trck_marvel_410083429(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Ghostspider1
 * Action created: 2019-08-13 14:31:27
 */
function ct_trck_marvel_410080450(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9199);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Guardiansofthegalaxy1
 * Action created: 2019-01-22 15:59:10
 */
function ct_trck_marvel_410068195(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Houseofx1
 * Action created: 2019-07-23 12:43:35
 */
function ct_trck_marvel_410079251(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Immortalhulk18
 * Action created: 2019-05-28 10:25:07
 */
function ct_trck_marvel_410075012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7780);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Incoming1
 * Action created: 2019-12-12 11:37:19
 */
function ct_trck_marvel_410085538(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10650);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Infinitywars6
 * Action created: 2018-12-14 12:44:02
 */
function ct_trck_marvel_410066912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4922);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Ironman1
 * Action created: 2020-08-26 16:57:06
 */
function ct_trck_marvel_410092313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11861);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Ironman2020#1
 * Action created: 2020-01-02 15:14:06
 */
function ct_trck_marvel_410086757(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10740);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Journeytostarwarsriseofskywalkerall1570459972
 * Action created: 2019-10-07 10:52:52
 */
function ct_trck_marvel_410083659(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10182);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Killmonger1
 * Action created: 2018-12-04 16:52:44
 */
function ct_trck_marvel_410066028(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Kinginblack20202
 * Action created: 2020-12-15 09:51:53
 */
function ct_trck_marvel_410097870(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12899);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Kingthor1
 * Action created: 2019-09-12 10:04:06
 */
function ct_trck_marvel_410082689(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Loki1
 * Action created: 2019-07-16 17:28:07
 */
function ct_trck_marvel_410078650(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Maestro1
 * Action created: 2020-07-28 12:56:38
 */
function ct_trck_marvel_410091864(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11745);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Marvelcomics1000
 * Action created: 2019-08-27 11:01:02
 */
function ct_trck_marvel_410081809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9426);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Marvelknights20
 * Action created: 2018-11-06 12:01:43
 */
function ct_trck_marvel_410065227(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4453);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Marvelsspidermancityatwar
 * Action created: 2019-03-19 12:17:40
 */
function ct_trck_marvel_410071148(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Marvelsx2020#1
 * Action created: 2020-01-02 15:12:34
 */
function ct_trck_marvel_410086756(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10739);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Marvelzombiesrespawn1
 * Action created: 2019-10-28 10:23:13
 */
function ct_trck_marvel_410084690(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Newmutants1
 * Action created: 2019-11-05 10:57:13
 */
function ct_trck_marvel_410085041(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10482);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Planetoftheapes20231
 * Action created: 2023-04-04 09:32:53
 */
function ct_trck_digitalcomics_planetoftheapes20231(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16616);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Powersofx1
 * Action created: 2019-07-30 12:31:42
 */
function ct_trck_marvel_410079648(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Savageavengers1
 * Action created: 2019-04-30 12:12:21
 */
function ct_trck_marvel_410073936(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Shangchi1
 * Action created: 2020-08-26 17:00:07
 */
function ct_trck_marvel_410092315(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11863);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Shangchi20214
 * Action created: 2021-09-07 11:43:47
 */
function ct_trck_marvel_410104000(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14920);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Silversurferblackdirectorscut
 * Action created: 2019-06-11 10:14:41
 */
function ct_trck_marvel_410075694(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Spiderman1
 * Action created: 2019-09-17 12:11:36
 */
function ct_trck_marvel_410082889(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Spidermanfarfromhomeprelude
 * Action created: 2019-03-26 10:15:53
 */
function ct_trck_marvel_410071436(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Spidermanspiderverse1
 * Action created: 2018-11-20 11:41:00
 */
function ct_trck_marvel_410065794(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4530);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Starwarsempireascendant1
 * Action created: 2019-12-12 11:21:34
 */
function ct_trck_marvel_410085536(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10648);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Starwarsvaderdarkvisions
 * Action created: 2019-03-06 09:18:04
 */
function ct_trck_marvel_410070388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Strikeforce #1
 * Action created: 2019-09-24 10:45:48
 */
function ct_trck_marvel_410083223(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Symbiotespiderman
 * Action created: 2019-04-09 11:50:19
 */
function ct_trck_marvel_410072553(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Symbiotespiderman2
 * Action created: 2019-05-08 09:49:41
 */
function ct_trck_marvel_410074334(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Symbiotespidermanalienreality
 * Action created: 2019-12-10 16:16:48
 */
function ct_trck_marvel_410085521(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10644);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Thanos
 * Action created: 2019-04-23 09:35:26
 */
function ct_trck_marvel_410073213(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7101);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Thor2020#1
 * Action created: 2020-01-02 09:01:21
 */
function ct_trck_marvel_410086748(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Tonystarkironman13
 * Action created: 2019-06-18 15:41:09
 */
function ct_trck_marvel_410076229(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Venom201831
 * Action created: 2020-12-09 10:04:58
 */
function ct_trck_marvel_410097769(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Venom27
 * Action created: 2020-07-28 12:53:20
 */
function ct_trck_marvel_410091863(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11743);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Warofrealms
 * Action created: 2019-04-02 10:36:13
 */
function ct_trck_marvel_410072277(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6761);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Waroftherealms4
 * Action created: 2019-05-14 11:16:14
 */
function ct_trck_marvel_410074494(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Waroftherealmsstrikeforcelandoftheg1558447761
 * Action created: 2019-05-21 10:09:21
 */
function ct_trck_marvel_410074809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Webofblackwidow1
 * Action created: 2019-09-03 12:15:16
 */
function ct_trck_marvel_410082057(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9520);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Wolverine6
 * Action created: 2020-10-06 16:46:25
 */
function ct_trck_marvel_410092866(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12124);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Wolverineinfinitywatch
 * Action created: 2019-02-19 10:40:29
 */
function ct_trck_marvel_410069872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5921);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Xmanalpha1
 * Action created: 2019-01-29 10:34:27
 */
function ct_trck_marvel_410069008(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Xmen1
 * Action created: 2019-10-14 13:30:02
 */
function ct_trck_marvel_410083852(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10278);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Xmen201916
 * Action created: 2020-12-15 09:55:06
 */
function ct_trck_marvel_410097871(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12900);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics: Xofswordscreation1
 * Action created: 2020-08-26 16:58:37
 */
function ct_trck_marvel_410092314(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11862);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digitalcomics:blackcat
 * Action created: 2019-06-04 09:56:25
 */
function ct_trck_marvel_410075369(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Digtialcomics: Uncannyxmen1
 * Action created: 2018-11-13 16:23:55
 */
function ct_trck_marvel_410065716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4488);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: 2019mustreads
 * Action created: 2019-12-30 00:00:00
 */
function ct_trck_marvel_410086728(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: 2020robotrebellion
 * Action created: 2020-01-06 00:00:00
 */
function ct_trck_marvel_410086788(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: 2099readinglist
 * Action created: 2019-11-04 00:00:00
 */
function ct_trck_marvel_410085011(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10478);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: 80thgoldenage
 * Action created: 2019-01-14 00:00:00
 */
function ct_trck_marvel_410067978(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5358);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: 90shiddengems
 * Action created: 2019-12-12 00:00:00
 */
function ct_trck_marvel_410085537(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10649);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Ageofapocalypse
 * Action created: 2019-10-11 00:00:00
 */
function ct_trck_marvel_410083816(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10241);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Ageofultroncompleteevent
 * Action created: 2019-11-21 00:00:00
 */
function ct_trck_marvel_410085212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10551);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Alewingstop5avengers
 * Action created: 2019-11-11 00:00:00
 */
function ct_trck_marvel_410085088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Article - Marvelhistory4.12
 * Action created: 2019-04-15 00:00:00
 */
function ct_trck_marvel_410072951(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6958);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Avengers: Thechildrenscrusade
 * Action created: 2018-07-31 00:00:00
 */
function ct_trck_marvel_410062117(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3681);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Avengersblockbusterstories
 * Action created: 2019-11-19 00:00:00
 */
function ct_trck_marvel_410085180(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10539);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Avengersskrullkreewar
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068833(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5522);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Avengersvsxmen
 * Action created: 2019-10-18 00:00:00
 */
function ct_trck_marvel_410084237(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10358);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Black Panther
 * Action created: 2018-01-19 00:00:00
 */
function ct_trck_marvel_410058960(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2532);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Blackknight
 * Action created: 2019-09-13 00:00:00
 */
function ct_trck_marvel_410082749(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Captainamericasamwilson
 * Action created: 2019-04-29 00:00:00
 */
function ct_trck_marvel_410073568(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Captainmarvelcaroldanvers
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068839(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5528);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Colleenwing
 * Action created: 2018-08-22 00:00:00
 */
function ct_trck_marvel_410062658(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Daredevilgreatestbattles
 * Action created: 2018-10-11 00:00:00
 */
function ct_trck_marvel_410064444(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4300);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Daredevilmanwithoutfear
 * Action created: 2018-10-11 00:00:00
 */
function ct_trck_marvel_410064442(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Darkphoenixsaga
 * Action created: 2019-05-17 00:00:00
 */
function ct_trck_marvel_410074709(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Deathofmightythor
 * Action created: 2018-11-26 00:00:00
 */
function ct_trck_marvel_410065833(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4542);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Defenders
 * Action created: 2017-08-14 00:00:00
 */
function ct_trck_marvel_410055692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Doctordoom
 * Action created: 2018-08-02 00:00:00
 */
function ct_trck_marvel_410062161(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3700);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Doctorstranges6stragestadventures
 * Action created: 2020-01-30 00:00:00
 */
function ct_trck_marvel_410087201(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10861);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Donnycates
 * Action created: 2019-08-13 00:00:00
 */
function ct_trck_marvel_410080449(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Doomgreatestbattles
 * Action created: 2019-01-10 00:00:00
 */
function ct_trck_marvel_410067749(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5278);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Endgamecountdown
 * Action created: 2019-04-12 00:00:00
 */
function ct_trck_marvel_410072710(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Eternals
 * Action created: 2019-07-15 00:00:00
 */
function ct_trck_marvel_410078551(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Fantasticfour
 * Action created: 2018-08-02 00:00:00
 */
function ct_trck_marvel_410062160(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Favoritewhatifs
 * Action created: 2019-07-26 00:00:00
 */
function ct_trck_marvel_410079490(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8839);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Holidayspecial
 * Action created: 2018-12-14 00:00:00
 */
function ct_trck_marvel_410066911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4920);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Holidaythemedpicks
 * Action created: 2019-12-12 00:00:00
 */
function ct_trck_marvel_410085539(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10651);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Insiderreadinglist
 * Action created: 2019-03-15 00:00:00
 */
function ct_trck_marvel_410070715(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6398);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Insiderreadinglist2
 * Action created: 2019-10-21 00:00:00
 */
function ct_trck_marvel_410084568(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Ironfist
 * Action created: 2018-08-22 00:00:00
 */
function ct_trck_marvel_410062657(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Ironmanvr
 * Action created: 2019-10-07 00:00:00
 */
function ct_trck_marvel_410083658(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10181);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Jahnoylindsay
 * Action created: 2018-08-21 00:00:00
 */
function ct_trck_marvel_410062649(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Jedmackay
 * Action created: 2018-11-13 00:00:00
 */
function ct_trck_marvel_410065707(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4487);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Jonathanhickman
 * Action created: 2019-01-22 00:00:00
 */
function ct_trck_marvel_410068190(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Killraven-warofworlds
 * Action created: 2018-12-31 00:00:00
 */
function ct_trck_marvel_410067188(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Learnabouttheavengers
 * Action created: 2019-11-15 00:00:00
 */
function ct_trck_marvel_410085150(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Libraryofgraphicnovels
 * Action created: 2020-01-13 00:00:00
 */
function ct_trck_marvel_410086914(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Mairghmarvelrising
 * Action created: 2018-10-01 00:00:00
 */
function ct_trck_marvel_410064193(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4242);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Marikotamaki
 * Action created: 2018-10-19 00:00:00
 */
function ct_trck_marvel_410064717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Markwaidavengerstop5
 * Action created: 2019-04-19 00:00:00
 */
function ct_trck_marvel_410073142(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7061);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Marvel80atlasage
 * Action created: 2019-02-01 00:00:00
 */
function ct_trck_marvel_410069090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Marvel90s
 * Action created: 2019-06-07 00:00:00
 */
function ct_trck_marvel_410075591(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7979);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Marveldecades1970s
 * Action created: 2019-03-29 00:00:00
 */
function ct_trck_marvel_410071590(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Marveldecades1980s
 * Action created: 2019-05-06 00:00:00
 */
function ct_trck_marvel_410074248(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7397);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Marveldecadessilverage
 * Action created: 2019-03-04 00:00:00
 */
function ct_trck_marvel_410070229(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Marvelrising
 * Action created: 2018-08-20 00:00:00
 */
function ct_trck_marvel_410062634(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3899);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Marvelspidey
 * Action created: 2018-09-12 00:00:00
 */
function ct_trck_marvel_410062915(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4143);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Mayhem
 * Action created: 2019-03-15 00:00:00
 */
function ct_trck_marvel_410070714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6397);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Milesmorales
 * Action created: 2018-10-05 00:00:00
 */
function ct_trck_marvel_410064380(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4261);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Milesmoralesreadinglist
 * Action created: 2020-02-07 00:00:00
 */
function ct_trck_marvel_410087401(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10913);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Moonknight
 * Action created: 2019-09-06 00:00:00
 */
function ct_trck_marvel_410082474(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Morganlefay
 * Action created: 2019-12-11 00:00:00
 */
function ct_trck_marvel_410085526(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10645);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Msmarvel
 * Action created: 2019-08-26 00:00:00
 */
function ct_trck_marvel_410081729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9397);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Muspiderman
 * Action created: 2019-06-11 12:55:14
 */
function ct_trck_marvel_410075714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8043);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Mysterio
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075713(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8042);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Nadlerthompson
 * Action created: 2019-01-28 00:00:00
 */
function ct_trck_marvel_410068932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5541);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Nightcrawler
 * Action created: 2019-03-06 00:00:00
 */
function ct_trck_marvel_410069489(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Nonoriginalfantasticfour
 * Action created: 2019-01-10 00:00:00
 */
function ct_trck_marvel_410067748(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Pepelarraz
 * Action created: 2018-03-20 00:00:00
 */
function ct_trck_marvel_410059763(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2885);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Professorx
 * Action created: 2019-05-31 00:00:00
 */
function ct_trck_marvel_410075249(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Punishersuiciderun
 * Action created: 2018-12-18 00:00:00
 */
function ct_trck_marvel_410067000(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4962);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Riseofthemidnightsons
 * Action created: 2019-10-28 00:00:00
 */
function ct_trck_marvel_410084689(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Road To Secret Empire
 * Action created: 2017-06-08 00:00:00
 */
function ct_trck_marvel_410055166(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Roadtospidergeddon
 * Action created: 2018-10-12 00:00:00
 */
function ct_trck_marvel_410064454(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4304);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Roadtowarofrealms
 * Action created: 2019-03-29 00:00:00
 */
function ct_trck_marvel_410071589(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Rodreis
 * Action created: 2019-11-12 00:00:00
 */
function ct_trck_marvel_410085112(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10522);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Runawayscharactercloseup
 * Action created: 2019-12-03 00:00:00
 */
function ct_trck_marvel_410085318(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10600);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Secretwars
 * Action created: 2018-08-02 00:00:00
 */
function ct_trck_marvel_410062162(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3701);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Selfcontainedstories
 * Action created: 2019-09-30 00:00:00
 */
function ct_trck_marvel_410083409(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Seminalxmenmoments
 * Action created: 2020-01-24 00:00:00
 */
function ct_trck_marvel_410087136(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10829);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Spidergeddoncompleteevent
 * Action created: 2019-07-08 00:00:00
 */
function ct_trck_marvel_410078288(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Spidermanps4-silversable
 * Action created: 2018-12-14 00:00:00
 */
function ct_trck_marvel_410066910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4919);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Spideybestbattles
 * Action created: 2019-06-11 12:56:11
 */
function ct_trck_marvel_410075715(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8044);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Spideyturfwar
 * Action created: 2018-11-20 00:00:00
 */
function ct_trck_marvel_410065795(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4531);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Spiritsofvenom
 * Action created: 2019-05-13 00:00:00
 */
function ct_trck_marvel_410074451(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7539);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Starthere-fantasticfour
 * Action created: 2019-01-07 00:00:00
 */
function ct_trck_marvel_410067494(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Starthere-hulk
 * Action created: 2018-12-07 00:00:00
 */
function ct_trck_marvel_410066149(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Starthere-thor
 * Action created: 2018-12-03 00:00:00
 */
function ct_trck_marvel_410065910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4599);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Startherecaptainamerica
 * Action created: 2019-06-28 00:00:00
 */
function ct_trck_marvel_410077948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Startherecaptainmarvel
 * Action created: 2019-03-07 00:00:00
 */
function ct_trck_marvel_410070468(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Startheredeadpool
 * Action created: 2019-11-18 00:00:00
 */
function ct_trck_marvel_410085168(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Startherexmen
 * Action created: 2018-11-02 00:00:00
 */
function ct_trck_marvel_410065170(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4421);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Starwarsstarthere
 * Action created: 2019-11-27 00:00:00
 */
function ct_trck_marvel_410085288(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10582);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Storm
 * Action created: 2018-11-12 00:00:00
 */
function ct_trck_marvel_410065275(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4484);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Symbiotehosts
 * Action created: 2019-08-05 00:00:00
 */
function ct_trck_marvel_410079944(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Taskmaster
 * Action created: 2019-12-09 00:00:00
 */
function ct_trck_marvel_410085388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10638);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Teenspiderman
 * Action created: 2019-06-11 12:57:05
 */
function ct_trck_marvel_410075716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8045);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Thanksgivingspecial
 * Action created: 2019-11-25 00:00:00
 */
function ct_trck_marvel_410085250(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Thekree
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068836(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Thelastironfiststory
 * Action created: 2018-08-22 00:00:00
 */
function ct_trck_marvel_410062659(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3939);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Thepunisher
 * Action created: 2018-12-18 00:00:00
 */
function ct_trck_marvel_410066999(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4961);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Theskrulls
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068838(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5527);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Top12rogueandgambitmoments
 * Action created: 2020-01-16 00:00:00
 */
function ct_trck_marvel_410087000(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10809);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Top25mustread
 * Action created: 2019-02-22 00:00:00
 */
function ct_trck_marvel_410069988(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Toppswolverine
 * Action created: 2019-06-21 00:00:00
 */
function ct_trck_marvel_410076328(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Twimurc2000s
 * Action created: 2019-08-12 00:00:00
 */
function ct_trck_marvel_410080332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Typhoidmary
 * Action created: 2018-09-12 00:00:00
 */
function ct_trck_marvel_410062912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4140);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Valentinesday2020
 * Action created: 2020-01-30 00:00:00
 */
function ct_trck_marvel_410087202(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10862);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Vstheuniverse
 * Action created: 2019-09-23 00:00:00
 */
function ct_trck_marvel_410083174(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Weaponx
 * Action created: 2019-02-07 00:00:00
 */
function ct_trck_marvel_410069268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Xmeninfernoevent
 * Action created: 2019-08-29 00:00:00
 */
function ct_trck_marvel_410081928(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Xmenreadinglist
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065210(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4446);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover: Xmenstarthere
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:ant-man
 * Action created: 2018-06-25 00:00:00
 */
function ct_trck_marvel_410061374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:anthonydelcol
 * Action created: 2018-08-14 00:00:00
 */
function ct_trck_marvel_410062575(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3819);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:billfoster-giantman
 * Action created: 2018-04-02 00:00:00
 */
function ct_trck_marvel_410060158(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3043);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:black Order
 * Action created: 2018-04-20 00:00:00
 */
function ct_trck_marvel_410060478(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:blackorder
 * Action created: 2018-01-26 00:00:00
 */
function ct_trck_marvel_410059018(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:blade
 * Action created: 2018-07-09 00:00:00
 */
function ct_trck_marvel_410061628(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:blink
 * Action created: 2018-09-17 00:00:00
 */
function ct_trck_marvel_410063929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4158);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:cable And Deadpool
 * Action created: 2018-05-17 00:00:00
 */
function ct_trck_marvel_410060801(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3259);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:captain America Rebirth
 * Action created: 2018-02-28 00:00:00
 */
function ct_trck_marvel_410059313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2759);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:cloak And Dagger
 * Action created: 2018-05-29 00:00:00
 */
function ct_trck_marvel_410060889(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:cottonmouth
 * Action created: 2018-06-22 00:00:00
 */
function ct_trck_marvel_410061346(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:danslottpt1
 * Action created: 2018-08-27 00:00:00
 */
function ct_trck_marvel_410062719(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3983);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:daredevil-bornagain
 * Action created: 2018-06-27 00:00:00
 */
function ct_trck_marvel_410061387(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3447);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:domino
 * Action created: 2018-01-30 00:00:00
 */
function ct_trck_marvel_410059042(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:doramilaje
 * Action created: 2018-02-05 00:00:00
 */
function ct_trck_marvel_410058708(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2639);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:executioner
 * Action created: 2017-10-30 00:00:00
 */
function ct_trck_marvel_410057443(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:ghost
 * Action created: 2018-03-28 00:00:00
 */
function ct_trck_marvel_410059828(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3001);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:grandmaster
 * Action created: 2017-10-25 00:00:00
 */
function ct_trck_marvel_410057397(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:greengoblin
 * Action created: 2018-04-17 00:00:00
 */
function ct_trck_marvel_410060306(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3107);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:hela
 * Action created: 2017-10-27 00:00:00
 */
function ct_trck_marvel_410057408(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:hellcat
 * Action created: 2018-02-27 00:00:00
 */
function ct_trck_marvel_410059282(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2744);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:holidayspecial
 * Action created: 2017-12-12 00:00:00
 */
function ct_trck_marvel_410058671(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2407);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:hulklegacy
 * Action created: 2017-10-05 00:00:00
 */
function ct_trck_marvel_410056609(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:immortalironfists
 * Action created: 2018-02-05 00:00:00
 */
function ct_trck_marvel_410059092(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2638);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:infinity Stones
 * Action created: 2018-03-27 12:49:25
 */
function ct_trck_marvel_(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:infinity Stones: Final
 * Action created: 2018-03-27 00:00:00
 */
function ct_trck_marvel_410059822(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2999);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:iron Fist
 * Action created: 2017-08-03 00:00:00
 */
function ct_trck_marvel_410055624(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1821);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:ironmanlegacy
 * Action created: 2017-09-25 00:00:00
 */
function ct_trck_marvel_410056351(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:jack Kirby
 * Action created: 2017-08-29 00:00:00
 */
function ct_trck_marvel_410055918(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:jessica Jones
 * Action created: 2017-08-03 00:00:00
 */
function ct_trck_marvel_410055626(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1819);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:killmonger
 * Action created: 2018-01-02 00:00:00
 */
function ct_trck_marvel_410058752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:klaw
 * Action created: 2018-01-03 13:32:27
 */
function ct_trck_marvel_410058759(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2441);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:kree
 * Action created: 2017-12-11 00:00:00
 */
function ct_trck_marvel_410058332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2403);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:kree_skullwar
 * Action created: 2018-02-05 00:00:00
 */
function ct_trck_marvel_410058871(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2640);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:legacy-spiderman
 * Action created: 2017-09-18 00:00:00
 */
function ct_trck_marvel_410056190(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:legion
 * Action created: 2018-01-08 00:00:00
 */
function ct_trck_marvel_410058800(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2460);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:loki
 * Action created: 2017-11-09 00:00:00
 */
function ct_trck_marvel_410057811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:luke Cage
 * Action created: 2017-08-03 00:00:00
 */
function ct_trck_marvel_410055625(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:medusa
 * Action created: 2017-09-12 00:00:00
 */
function ct_trck_marvel_410056018(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:misty Knight
 * Action created: 2018-06-20 00:00:00
 */
function ct_trck_marvel_410061325(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3397);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:mutantmassacre
 * Action created: 2018-09-04 00:00:00
 */
function ct_trck_marvel_410062815(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4059);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:odin
 * Action created: 2018-06-05 00:00:00
 */
function ct_trck_marvel_410060947(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3326);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:panther's Rage
 * Action created: 2018-03-06 00:00:00
 */
function ct_trck_marvel_410059366(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2784);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:planethulk
 * Action created: 2017-11-01 00:00:00
 */
function ct_trck_marvel_410057438(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2207);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:rainbowrowell
 * Action created: 2017-11-29 00:00:00
 */
function ct_trck_marvel_410058272(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2318);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:rhino
 * Action created: 2018-09-10 00:00:00
 */
function ct_trck_marvel_410062875(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:rogue
 * Action created: 2018-05-08 00:00:00
 */
function ct_trck_marvel_410060742(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:runaways
 * Action created: 2017-11-27 00:00:00
 */
function ct_trck_marvel_410057828(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:shatterstar
 * Action created: 2018-04-09 00:00:00
 */
function ct_trck_marvel_410060241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3084);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:sif
 * Action created: 2018-06-12 00:00:00
 */
function ct_trck_marvel_410060979(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3343);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:spider-man
 * Action created: 2018-09-17 00:00:00
 */
function ct_trck_marvel_410063928(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:starwars
 * Action created: 2017-12-11 00:00:00
 */
function ct_trck_marvel_410058315(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2404);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:thorlegacy
 * Action created: 2017-10-16 00:00:00
 */
function ct_trck_marvel_410056768(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:valentinesday
 * Action created: 2018-02-14 00:00:00
 */
function ct_trck_marvel_410059166(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2678);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:venominc
 * Action created: 2018-07-25 00:00:00
 */
function ct_trck_marvel_410062070(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3638);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:wasp
 * Action created: 2018-06-26 00:00:00
 */
function ct_trck_marvel_410061379(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3439);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:wolverine:longnight
 * Action created: 2018-03-13 00:00:00
 */
function ct_trck_marvel_410059426(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2845);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Discover:x-couples
 * Action created: 2018-06-19 00:00:00
 */
function ct_trck_marvel_410061317(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3381);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Doctor Strange: Web Content - Marvel Universe Wiki
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049881(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Doctor Strange: Web Content - Reading List
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049888(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1024);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Doctor Strange: Web Content - Red Carpet Live Stream
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049882(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ems: Msmarvelbonus
 * Action created: 2018-08-27 00:00:00
 */
function ct_trck_marvel_410062720(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3984);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ems: Patriotbonus
 * Action created: 2018-09-04 00:00:00
 */
function ct_trck_marvel_410062822(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4061);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ems: Spidergwenbonus
 * Action created: 2018-08-28 00:00:00
 */
function ct_trck_marvel_410062752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ems: Squirrelgirlbonus
 * Action created: 2018-09-04 00:00:00
 */
function ct_trck_marvel_410062821(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4060);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Emsbonus:americachavez
 * Action created: 2018-09-24 00:00:00
 */
function ct_trck_marvel_410064007(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4204);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Emsbonus:captainmarvel
 * Action created: 2018-09-28 00:00:00
 */
function ct_trck_marvel_410064107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4222);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Emsbonus:exile
 * Action created: 2018-09-28 00:00:00
 */
function ct_trck_marvel_410064112(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Emsbonus:hala
 * Action created: 2018-09-28 00:00:00
 */
function ct_trck_marvel_410064106(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4221);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Emsbonus:infernorising
 * Action created: 2018-09-19 00:00:00
 */
function ct_trck_marvel_410063969(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Emsbonus:risingquake
 * Action created: 2018-09-17 00:00:00
 */
function ct_trck_marvel_410063931(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4160);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Enter Your Digital Comics Redeem Code
 * Action created: 2016-06-15 10:40:28
 */
function ct_trck_marvel_410049807(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Evergreen:video-earths Mightiest
 * Action created: 2018-03-08 00:00:00
 */
function ct_trck_marvel_410059388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Extras- Shooting Am&w- Shrinking Car Chase
 * Action created: 2018-07-31 00:00:00
 */
function ct_trck_marvel_410062116(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3680);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Extras: Deathofthanos Trailer
 * Action created: 2018-08-06 00:00:00
 */
function ct_trck_marvel_410062331(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3718);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fantasticfour: 50yearsofff
 * Action created: 2018-08-09 00:00:00
 */
function ct_trck_marvel_410062526(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fantasticfour: Characterpage
 * Action created: 2018-08-02 00:00:00
 */
function ct_trck_marvel_410062163(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3702);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fantasticfour: Danslottpromise
 * Action created: 2018-08-08 00:00:00
 */
function ct_trck_marvel_410062516(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fantasticfour: Emstombreevort
 * Action created: 2018-08-02 00:00:00
 */
function ct_trck_marvel_410062165(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3704);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fantasticfour: Etuyancystreet
 * Action created: 2018-08-02 00:00:00
 */
function ct_trck_marvel_410062164(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3703);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fantasticfour: Fantasticintroductions
 * Action created: 2018-08-13 00:00:00
 */
function ct_trck_marvel_410062556(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3805);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fantasticfour: Returnoffftrailer
 * Action created: 2018-08-07 00:00:00
 */
function ct_trck_marvel_410062350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fantasticfour: Tldrffinhumans
 * Action created: 2018-08-08 00:00:00
 */
function ct_trck_marvel_410062515(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Article - Comicstoread
 * Action created: 2019-06-28 00:00:00
 */
function ct_trck_marvel_410077929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8358);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Article - Hottoys
 * Action created: 2019-06-25 00:00:00
 */
function ct_trck_marvel_410077742(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Article - Jonwatts
 * Action created: 2019-07-02 00:00:00
 */
function ct_trck_marvel_410078069(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Article - Mysteriofacts
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075708(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Article - Mysteriolook
 * Action created: 2019-07-10 00:00:00
 */
function ct_trck_marvel_410078370(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Article - Mysteriompq
 * Action created: 2019-07-09 00:00:00
 */
function ct_trck_marvel_410078312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8539);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Article - Spidermanswingsthrougheurope
 * Action created: 2019-07-01 00:00:00
 */
function ct_trck_marvel_410078033(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Article -ps4suits
 * Action created: 2019-07-02 00:00:00
 */
function ct_trck_marvel_410078070(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Livestream
 * Action created: 2019-06-20 00:00:00
 */
function ct_trck_marvel_410076288(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Bestmoments
 * Action created: 2019-06-27 00:00:00
 */
function ct_trck_marvel_410077869(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Castems
 * Action created: 2019-07-01 00:00:00
 */
function ct_trck_marvel_410078034(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8418);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Jakegyllenhaal
 * Action created: 2019-06-27 00:00:00
 */
function ct_trck_marvel_410077872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8340);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Marvelbecomingmysterio
 * Action created: 2019-07-09 00:00:00
 */
function ct_trck_marvel_410078311(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8538);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Marvelgames
 * Action created: 2019-06-25 00:00:00
 */
function ct_trck_marvel_410077743(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Peterparker101
 * Action created: 2019-06-24 00:00:00
 */
function ct_trck_marvel_410076391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8238);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Spidermanquickdraw
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075711(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8040);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Tomholland
 * Action created: 2019-06-27 00:00:00
 */
function ct_trck_marvel_410077870(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8338);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Top10costumes
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075712(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8041);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ffh: Video - Zendaya
 * Action created: 2019-06-27 00:00:00
 */
function ct_trck_marvel_410077871(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8339);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Find Out How We Arrived At Absolute Carnage
 * Action created: 2019-08-07 00:00:00
 */
function ct_trck_marvel_410080149(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Fortnite Welcomes Venom
 * Action created: 2020-12-02 00:00:00
 */
function ct_trck_marvel_410097659(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Amazingspiderman794
 * Action created: 2020-04-06 14:34:45
 */
function ct_trck_marvel_410089595(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11281);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Avengers2018#1
 * Action created: 2020-04-02 12:14:05
 */
function ct_trck_marvel_410089438(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11259);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Blackpanter2016#1
 * Action created: 2020-04-06 14:34:12
 */
function ct_trck_marvel_410089594(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11280);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Blackwidow2016#1
 * Action created: 2020-04-06 14:35:29
 */
function ct_trck_marvel_410089597(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11283);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Captainamerica2018#1
 * Action created: 2020-04-21 13:11:22
 */
function ct_trck_marvel_410089871(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11346);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Fantasticfour1961#232
 * Action created: 2020-04-21 13:12:44
 */
function ct_trck_marvel_410089874(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11347);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Incrediblehulk1999#92
 * Action created: 2020-04-21 13:11:02
 */
function ct_trck_marvel_410089872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11345);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Msmarvel2014#1
 * Action created: 2020-04-21 13:10:40
 */
function ct_trck_marvel_410089873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11344);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Freedigitalcomic: Uncannyxmen1963
 * Action created: 2020-04-06 14:35:07
 */
function ct_trck_marvel_410089596(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11282);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Funko & Target Latest: Article - Merchfunkotarget
 * Action created: 2022-05-25 09:33:59
 */
function ct_trck_marvel_410109565(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15754);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Game: Article - Hydrafuturefight
 * Action created: 2020-02-13 00:00:00
 */
function ct_trck_marvel_410087514(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10949);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Game: Article - Marvelsnapnegasonicteenagewarhead
 * Action created: 2023-03-29 10:09:34
 */
function ct_trck_marvel_410113824(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16600);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Game: Article: Mpqkarnak
 * Action created: 2020-02-13 00:00:00
 */
function ct_trck_marvel_410087517(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10950);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    games visit the marvel games news
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049137(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 864);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - 2ndavengerswartable
 * Action created: 2020-07-15 00:00:00
 */
function ct_trck_marvel_410091712(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11685);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - A4ingames
 * Action created: 2019-04-19 00:00:00
 */
function ct_trck_marvel_410073141(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7060);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Aapiheritage
 * Action created: 2023-05-15 13:40:56
 */
function ct_trck_marvel_410114597(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16733);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Airwalker
 * Action created: 2020-08-13 00:00:00
 */
function ct_trck_marvel_410092177(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11809);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Antmaninfortnite
 * Action created: 2021-03-08 00:00:00
 */
function ct_trck_marvel_410099853(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14143);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Aprilgamesnews
 * Action created: 2023-04-28 10:46:21
 */
function ct_trck_marvel_410114327(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16694);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Arcade1upannounce
 * Action created: 2020-06-15 00:00:00
 */
function ct_trck_marvel_410090757(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Arcadecabinetse3
 * Action created: 2019-06-13 00:00:00
 */
function ct_trck_marvel_410075830(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8078);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Asianpacificheritagemonth
 * Action created: 2021-05-04 00:00:00
 */
function ct_trck_marvel_410101483(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengersaim
 * Action created: 2020-08-21 00:00:00
 */
function ct_trck_marvel_410092261(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11836);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengersannouncement
 * Action created: 2019-05-29 00:00:00
 */
function ct_trck_marvel_410075088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengersblackwidowspotlight
 * Action created: 2019-09-26 00:00:00
 */
function ct_trck_marvel_410083295(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengersgamekatebishop
 * Action created: 2020-09-01 00:00:00
 */
function ct_trck_marvel_410092411(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengershulk
 * Action created: 2019-09-09 00:00:00
 */
function ct_trck_marvel_410082530(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengershulkoutfit
 * Action created: 2019-09-12 00:00:00
 */
function ct_trck_marvel_410082708(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengerskatebishop
 * Action created: 2020-11-19 00:00:00
 */
function ct_trck_marvel_410097412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12418);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengersps5
 * Action created: 2020-06-23 00:00:00
 */
function ct_trck_marvel_410090873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11599);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengersredroomtakeover
 * Action created: 2021-05-20 00:00:00
 */
function ct_trck_marvel_410101986(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengerstachyonanomaly
 * Action created: 2021-04-22 00:00:00
 */
function ct_trck_marvel_410101348(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14532);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengersupdate
 * Action created: 2021-11-11 00:00:00
 */
function ct_trck_marvel_410105647(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15111);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Avengersweekwartable
 * Action created: 2020-09-02 00:00:00
 */
function ct_trck_marvel_410092415(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11902);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Battlelinessoundtrack
 * Action created: 2019-05-28 00:00:00
 */
function ct_trck_marvel_410075009(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7778);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Battlelinesultron
 * Action created: 2019-03-28 00:00:00
 */
function ct_trck_marvel_410071512(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6619);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Bestmoments2022
 * Action created: 2022-12-27 13:34:01
 */
function ct_trck_marvel_410112597(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16343);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Bestmoments2023
 * Action created: 2023-12-27 18:09:34
 */
function ct_trck_marvel_410117059(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Blackcatmpq
 * Action created: 2019-06-19 00:00:00
 */
function ct_trck_marvel_410076270(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8139);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Blackorder326
 * Action created: 2020-02-19 00:00:00
 */
function ct_trck_marvel_410087585(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Bpgamename
 * Action created: 2023-07-10 09:52:27
 */
function ct_trck_marvel_410115235(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16853);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Capinfortnite
 * Action created: 2020-07-06 00:00:00
 */
function ct_trck_marvel_410091089(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11638);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Captainmarvelswitch
 * Action created: 2019-02-14 00:00:00
 */
function ct_trck_marvel_410069448(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Celebratehispanicheritage
 * Action created: 2021-09-15 00:00:00
 */
function ct_trck_marvel_410104499(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14940);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Coc8years
 * Action created: 2022-12-07 14:04:08
 */
function ct_trck_marvel_410112325(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16284);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocblackcatscorpion
 * Action created: 2022-04-06 09:09:53
 */
function ct_trck_marvel_410108810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15641);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocdragonman
 * Action created: 2020-08-27 00:00:00
 */
function ct_trck_marvel_410092324(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11872);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocguardian
 * Action created: 2020-07-09 00:00:00
 */
function ct_trck_marvel_410091559(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11662);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Coclongshot
 * Action created: 2020-02-13 00:00:00
 */
function ct_trck_marvel_410087521(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10952);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocmoleman
 * Action created: 2020-03-12 00:00:00
 */
function ct_trck_marvel_410088042(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11132);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocredguardian
 * Action created: 2020-05-28 00:00:00
 */
function ct_trck_marvel_410090398(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11507);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocsasquatch
 * Action created: 2020-07-23 00:00:00
 */
function ct_trck_marvel_410091777(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocsdcc
 * Action created: 2024-07-19 14:39:38
 */
function ct_trck_marvel_410122652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18153);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocsquirrelgirltippytoe
 * Action created: 2020-01-08 00:00:00
 */
function ct_trck_marvel_410086841(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10763);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocsummonerchoicevote
 * Action created: 2024-01-24 10:39:20
 */
function ct_trck_marvel_410117296(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17272);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocsummonerschoice2023vote
 * Action created: 2023-01-12 17:38:25
 */
function ct_trck_marvel_410112746(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16380);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocv36.3
 * Action created: 2022-10-03 13:08:42
 */
function ct_trck_marvel_410111462(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16093);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Cocv41release
 * Action created: 2023-07-18 10:23:25
 */
function ct_trck_marvel_410115298(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16889);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Comicconnectionbhm
 * Action created: 2021-02-26 00:00:00
 */
function ct_trck_marvel_410099693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14023);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Comicconnectionmodok
 * Action created: 2020-07-01 00:00:00
 */
function ct_trck_marvel_410091028(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11623);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Comicconnectionthetinkerer
 * Action created: 2020-11-17 00:00:00
 */
function ct_trck_marvel_410097391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12384);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Comicredgoblin
 * Action created: 2020-11-05 00:00:00
 */
function ct_trck_marvel_410097159(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12265);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Conmsm2hallh
 * Action created: 2023-07-06 15:44:31
 */
function ct_trck_marvel_410115214(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16851);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Crystaldynamicsavengers
 * Action created: 2019-06-25 00:00:00
 */
function ct_trck_marvel_410077751(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - D23livestream
 * Action created: 2022-08-15 13:33:43
 */
function ct_trck_marvel_410110752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15955);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Darkavengersmff
 * Action created: 2020-12-02 00:00:00
 */
function ct_trck_marvel_410097658(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Deadpoolinfortnite
 * Action created: 2020-04-03 00:00:00
 */
function ct_trck_marvel_410089454(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11262);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Drvoodooff
 * Action created: 2019-10-24 00:00:00
 */
function ct_trck_marvel_410084653(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Duelmobilegame
 * Action created: 2020-07-31 00:00:00
 */
function ct_trck_marvel_410091911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Eacollab
 * Action created: 2022-10-31 14:31:08
 */
function ct_trck_marvel_410111821(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16184);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fan4ultimatealliance
 * Action created: 2020-03-26 00:00:00
 */
function ct_trck_marvel_410089342(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11230);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fantasticfourgames
 * Action created: 2019-01-09 00:00:00
 */
function ct_trck_marvel_410067694(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Favoritegamesofthedecade
 * Action created: 2019-12-27 00:00:00
 */
function ct_trck_marvel_410086708(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10709);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Februarygamesnews
 * Action created: 2023-02-24 15:54:36
 */
function ct_trck_marvel_410113440(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16533);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ffnineanniversary
 * Action created: 2024-04-12 09:14:32
 */
function ct_trck_marvel_410121809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17586);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ffv930update
 * Action created: 2023-08-31 10:57:58
 */
function ct_trck_marvel_410115802(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16975);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fifa23
 * Action created: 2022-08-19 11:56:58
 */
function ct_trck_marvel_410110860(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15963);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitedarkphoenix
 * Action created: 2021-11-12 00:00:00
 */
function ct_trck_marvel_410105672(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15113);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitegambitrogue
 * Action created: 2022-02-25 08:59:47
 */
function ct_trck_marvel_410108253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15571);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitegamoracup
 * Action created: 2021-08-11 00:00:00
 */
function ct_trck_marvel_410103765(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitegreengoblin
 * Action created: 2022-01-28 00:00:00
 */
function ct_trck_marvel_410107677(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15463);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortniteloki
 * Action created: 2021-07-01 00:00:00
 */
function ct_trck_marvel_410102972(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14730);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitemaryjane
 * Action created: 2022-03-24 09:45:19
 */
function ct_trck_marvel_410108655(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15612);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitemilespiderman2099
 * Action created: 2023-05-23 15:08:44
 */
function ct_trck_marvel_410114712(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitenewcharacters
 * Action created: 2020-04-17 00:00:00
 */
function ct_trck_marvel_410089809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11327);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitenickfury
 * Action created: 2021-11-29 00:00:00
 */
function ct_trck_marvel_410105967(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15165);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitescarletwitch
 * Action created: 2022-05-13 12:59:24
 */
function ct_trck_marvel_410109368(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15731);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitethanoscup
 * Action created: 2021-06-21 00:00:00
 */
function ct_trck_marvel_410102847(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14694);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitethor
 * Action created: 2022-07-11 14:40:45
 */
function ct_trck_marvel_410110297(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15862);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Fortnitetwohawkeyes
 * Action created: 2022-01-21 00:00:00
 */
function ct_trck_marvel_410107570(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15404);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Futerfightsymbiotes
 * Action created: 2020-10-28 00:00:00
 */
function ct_trck_marvel_410097018(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12228);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Futurefightatlas
 * Action created: 2019-05-09 00:00:00
 */
function ct_trck_marvel_410074368(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Futurefightupdate
 * Action created: 2020-08-12 00:00:00
 */
function ct_trck_marvel_410092168(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11805);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Futurefightv900guardians
 * Action created: 2023-05-04 11:43:39
 */
function ct_trck_marvel_410114419(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16707);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Futurerevolution
 * Action created: 2020-03-02 00:00:00
 */
function ct_trck_marvel_410087759(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11072);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gameinformer
 * Action created: 2019-05-09 00:00:00
 */
function ct_trck_marvel_410074403(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7499);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gamenewsaug23
 * Action created: 2023-08-23 09:50:20
 */
function ct_trck_marvel_410115731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16965);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gamenewsjul23
 * Action created: 2023-07-31 12:16:23
 */
function ct_trck_marvel_410115470(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16927);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gamesconnectionwolverine
 * Action created: 2020-10-06 00:00:00
 */
function ct_trck_marvel_410092867(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12125);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gamesconnectionwolverinedaken
 * Action created: 2020-08-14 00:00:00
 */
function ct_trck_marvel_410092200(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11815);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gamespridemonth
 * Action created: 2021-06-07 00:00:00
 */
function ct_trck_marvel_410102263(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14664);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Globalaccessibilityawareness
 * Action created: 2023-05-18 14:41:01
 */
function ct_trck_marvel_410114647(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16745);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotg1yearanniversary
 * Action created: 2022-10-26 16:31:58
 */
function ct_trck_marvel_410111770(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16166);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgaskedansweredwom
 * Action created: 2021-10-29 00:00:00
 */
function ct_trck_marvel_410105386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15023);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgcomicconnection
 * Action created: 2021-11-04 00:00:00
 */
function ct_trck_marvel_410105499(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15071);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgcosmocloseup
 * Action created: 2021-10-07 00:00:00
 */
function ct_trck_marvel_410105174(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14987);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotggameawardwin
 * Action created: 2021-12-10 00:00:00
 */
function ct_trck_marvel_410106387(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotggamora
 * Action created: 2021-11-10 00:00:00
 */
function ct_trck_marvel_410105614(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15106);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgladyhellbender
 * Action created: 2021-08-09 00:00:00
 */
function ct_trck_marvel_410103406(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14853);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotglaunchtrailer
 * Action created: 2021-10-12 00:00:00
 */
function ct_trck_marvel_410105204(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgmfrnominations
 * Action created: 2021-11-23 00:00:00
 */
function ct_trck_marvel_410105877(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15144);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgmotioncapture
 * Action created: 2022-03-14 16:04:34
 */
function ct_trck_marvel_410108482(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15595);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgmusicvideo
 * Action created: 2021-10-08 00:00:00
 */
function ct_trck_marvel_410105181(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14990);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgprequelbook
 * Action created: 2021-06-16 00:00:00
 */
function ct_trck_marvel_410102801(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14685);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgrelease
 * Action created: 2021-10-26 00:00:00
 */
function ct_trck_marvel_410105301(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgsoundtrack
 * Action created: 2022-04-08 14:55:45
 */
function ct_trck_marvel_410108846(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15650);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgtrailer
 * Action created: 2021-06-14 00:00:00
 */
function ct_trck_marvel_410102323(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14675);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Gotgtvspot
 * Action created: 2021-10-20 00:00:00
 */
function ct_trck_marvel_410105274(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15014);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Halloween
 * Action created: 2022-10-19 14:42:12
 */
function ct_trck_marvel_410111614(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16147);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Havokmpq
 * Action created: 2020-02-28 00:00:00
 */
function ct_trck_marvel_410087734(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11063);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Immortalhulk
 * Action created: 2020-04-02 00:00:00
 */
function ct_trck_marvel_410089440(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11260);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Inhumansteaminstrikeforce
 * Action created: 2020-01-29 00:00:00
 */
function ct_trck_marvel_410087189(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Invisiblewomancoc
 * Action created: 2019-06-28 00:00:00
 */
function ct_trck_marvel_410077928(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ironmandevelopment
 * Action created: 2022-09-20 11:51:44
 */
function ct_trck_marvel_410111271(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16043);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ironmanpsvr
 * Action created: 2019-03-26 00:00:00
 */
function ct_trck_marvel_410071437(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ironmanpsvrtodate
 * Action created: 2020-06-29 00:00:00
 */
function ct_trck_marvel_410090978(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ironmanvr
 * Action created: 2022-10-11 13:42:05
 */
function ct_trck_marvel_410111518(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16115);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ironmanvrnowavailable
 * Action created: 2022-11-03 10:38:55
 */
function ct_trck_marvel_410111870(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16199);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Johnmulaneyasspiderham
 * Action created: 2020-12-01 00:00:00
 */
function ct_trck_marvel_410097633(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Julywartable
 * Action created: 2020-07-31 00:00:00
 */
function ct_trck_marvel_410091915(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11759);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - June23news
 * Action created: 2023-06-30 14:00:35
 */
function ct_trck_marvel_410115201(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16844);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Latestironmanvr
 * Action created: 2020-07-01 00:00:00
 */
function ct_trck_marvel_410091045(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11628);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Legoems
 * Action created: 2019-02-05 00:00:00
 */
function ct_trck_marvel_410069192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Legospideyshorts
 * Action created: 2019-07-26 00:00:00
 */
function ct_trck_marvel_410079488(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Legosuperheroswitch
 * Action created: 2021-08-09 00:00:00
 */
function ct_trck_marvel_410103414(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14855);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Letsplaylivecocblackwidow
 * Action created: 2020-05-14 00:00:00
 */
function ct_trck_marvel_410090256(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Letsplaylivemsf
 * Action created: 2020-06-12 00:00:00
 */
function ct_trck_marvel_410090631(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11551);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Letsplaylivestreammff
 * Action created: 2020-05-27 00:00:00
 */
function ct_trck_marvel_410090383(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11503);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Lunasnowthirdsingle
 * Action created: 2020-12-17 00:00:00
 */
function ct_trck_marvel_410097900(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marchgamesnews
 * Action created: 2023-04-03 10:38:58
 */
function ct_trck_marvel_410113873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16610);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marcsumerak
 * Action created: 2019-07-25 00:00:00
 */
function ct_trck_marvel_410079397(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mariahill4star
 * Action created: 2020-03-12 00:00:00
 */
function ct_trck_marvel_410088052(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11135);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelavengersmightythor
 * Action created: 2022-07-05 14:51:00
 */
function ct_trck_marvel_410110223(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15844);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelavengerspreorder
 * Action created: 2020-02-13 00:00:00
 */
function ct_trck_marvel_410087511(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10947);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelcapcomlaunch
 * Action created: 2024-09-12 12:48:19
 */
function ct_trck_marvel_410127173(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18934);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelconnectionapocalypse
 * Action created: 2020-05-11 00:00:00
 */
function ct_trck_marvel_410090231(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelconnectionblackorder
 * Action created: 2020-04-30 00:00:00
 */
function ct_trck_marvel_410090006(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11387);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelconnectiongotg
 * Action created: 2020-05-22 00:00:00
 */
function ct_trck_marvel_410090334(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11490);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelfortnite4
 * Action created: 2020-08-27 00:00:00
 */
function ct_trck_marvel_410092326(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11874);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelmultiversetabletoprpg
 * Action created: 2021-06-06 00:00:00
 */
function ct_trck_marvel_410102142(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelmysticmayhem
 * Action created: 2025-01-08 15:58:35
 */
function ct_trck_marvel_410136772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20914);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelrivalsannouncement
 * Action created: 2024-03-27 15:16:21
 */
function ct_trck_marvel_410121667(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelrivalsdecnews
 * Action created: 2024-11-21 10:30:26
 */
function ct_trck_marvel_410133794(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20254);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelrivalsjeffspray
 * Action created: 2024-12-16 12:19:23
 */
function ct_trck_marvel_410135373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20614);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelrivalsseason1
 * Action created: 2025-01-07 09:24:07
 */
function ct_trck_marvel_410136512(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20894);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelrivalsxmmrpg
 * Action created: 2024-12-16 14:41:48
 */
function ct_trck_marvel_410135414(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20654);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelrivalsxsnap
 * Action created: 2024-12-12 14:47:03
 */
function ct_trck_marvel_410135252(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20554);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsavengers
 * Action created: 2019-10-30 00:00:00
 */
function ct_trck_marvel_410084931(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsbladeartfirstlook
 * Action created: 2023-12-15 12:39:41
 */
function ct_trck_marvel_410116968(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17195);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsbladegame
 * Action created: 2023-12-11 10:37:49
 */
function ct_trck_marvel_410116902(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17183);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapamazingspiderseason
 * Action created: 2024-09-04 15:00:32
 */
function ct_trck_marvel_410126181(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18814);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapanimals
 * Action created: 2023-04-05 13:08:45
 */
function ct_trck_marvel_410113909(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16619);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapavengersvsxmen
 * Action created: 2024-03-13 10:31:17
 */
function ct_trck_marvel_410121535(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17444);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapbarwithnoname
 * Action created: 2023-03-22 14:01:08
 */
function ct_trck_marvel_410113770(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16587);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapbestmobilegame
 * Action created: 2022-12-09 10:43:14
 */
function ct_trck_marvel_410112346(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16291);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapblackorder
 * Action created: 2024-02-09 15:36:31
 */
function ct_trck_marvel_410117430(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17302);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapblinkexiles
 * Action created: 2024-05-16 13:30:07
 */
function ct_trck_marvel_410122136(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17789);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapbuilddeck
 * Action created: 2022-10-26 17:17:25
 */
function ct_trck_marvel_410111771(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16167);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapcelestials
 * Action created: 2024-06-13 12:29:09
 */
function ct_trck_marvel_410122384(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17951);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapdaysoffuturepast
 * Action created: 2023-03-07 14:11:46
 */
function ct_trck_marvel_410113641(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16547);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapdaysoffuturepastexplain1678390128
 * Action created: 2023-03-09 14:28:48
 */
function ct_trck_marvel_410113654(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16553);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnaphellfiregala
 * Action created: 2023-12-11 10:51:46
 */
function ct_trck_marvel_410116903(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17184);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapheromusicvideo
 * Action created: 2022-12-08 13:21:22
 */
function ct_trck_marvel_410112332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16287);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnaphowardduck
 * Action created: 2023-05-17 11:33:22
 */
function ct_trck_marvel_410114634(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapironlad
 * Action created: 2023-05-10 13:55:54
 */
function ct_trck_marvel_410114536(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16724);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapjeff
 * Action created: 2023-04-19 12:40:46
 */
function ct_trck_marvel_410114064(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16648);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnaplaunch
 * Action created: 2022-10-18 13:50:45
 */
function ct_trck_marvel_410111586(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16143);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnaplovestories
 * Action created: 2023-02-14 11:44:40
 */
function ct_trck_marvel_410113263(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16492);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapmastermold
 * Action created: 2023-03-15 12:37:34
 */
function ct_trck_marvel_410113686(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16565);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapmodok
 * Action created: 2023-02-22 14:33:41
 */
function ct_trck_marvel_410113396(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16528);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnappowercosmic
 * Action created: 2022-11-28 17:07:30
 */
function ct_trck_marvel_410112196(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16267);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapquantumrealm
 * Action created: 2023-02-07 13:24:05
 */
function ct_trck_marvel_410113206(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnaprock
 * Action created: 2023-04-03 10:40:52
 */
function ct_trck_marvel_410113874(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16611);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnaps2planet Hulk
 * Action created: 2024-01-03 17:28:01
 */
function ct_trck_marvel_410117105(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17246);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapsavageland
 * Action created: 2023-01-03 16:50:43
 */
function ct_trck_marvel_410112630(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16365);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapsnowguard
 * Action created: 2023-04-12 12:08:13
 */
function ct_trck_marvel_410113977(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16632);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapstaffshares
 * Action created: 2022-10-31 16:41:42
 */
function ct_trck_marvel_410111829(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16189);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapstature
 * Action created: 2023-03-01 15:08:12
 */
function ct_trck_marvel_410113557(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16541);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapstegron
 * Action created: 2023-04-26 12:08:39
 */
function ct_trck_marvel_410114241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16684);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapthunderbolts
 * Action created: 2024-04-04 09:50:30
 */
function ct_trck_marvel_410121712(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17567);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapvenom
 * Action created: 2024-10-08 15:50:46
 */
function ct_trck_marvel_410129752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19434);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapwhitetiger
 * Action created: 2023-02-15 14:52:14
 */
function ct_trck_marvel_410113310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16503);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelsnapyoungavengers
 * Action created: 2024-08-09 12:19:57
 */
function ct_trck_marvel_410124212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18394);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelstrikeforce6years
 * Action created: 2024-03-05 11:36:26
 */
function ct_trck_marvel_410121475(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17423);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Marvelstrikeforcezombies
 * Action created: 2024-10-22 13:37:57
 */
function ct_trck_marvel_410131093(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19694);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - May23news
 * Action created: 2023-05-26 10:44:49
 */
function ct_trck_marvel_410114746(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16763);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mccocfifthanniversary
 * Action created: 2019-12-16 00:00:00
 */
function ct_trck_marvel_410085611(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10678);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocblackwidow
 * Action created: 2020-05-14 00:00:00
 */
function ct_trck_marvel_410090259(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11459);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcochitmonkey
 * Action created: 2020-06-25 00:00:00
 */
function ct_trck_marvel_410090925(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11606);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcochulkimmortal
 * Action created: 2020-11-12 00:00:00
 */
function ct_trck_marvel_410097313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12340);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocjubilee
 * Action created: 2021-01-14 00:00:00
 */
function ct_trck_marvel_410098332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13422);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocmangog
 * Action created: 2021-03-11 00:00:00
 */
function ct_trck_marvel_410100676(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14203);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocmrnegative
 * Action created: 2021-05-27 00:00:00
 */
function ct_trck_marvel_410102074(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14621);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocmysterio
 * Action created: 2019-07-26 00:00:00
 */
function ct_trck_marvel_410079489(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8838);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocnamor
 * Action created: 2019-06-19 00:00:00
 */
function ct_trck_marvel_410076268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocodin
 * Action created: 2021-03-25 00:00:00
 */
function ct_trck_marvel_410100910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14401);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocpsychoman
 * Action created: 2021-02-11 00:00:00
 */
function ct_trck_marvel_410099232(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13801);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocpyramidx
 * Action created: 2020-04-22 00:00:00
 */
function ct_trck_marvel_410089910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11352);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocshangchi
 * Action created: 2021-05-13 00:00:00
 */
function ct_trck_marvel_410101592(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14583);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocsilvercenturion
 * Action created: 2021-04-29 00:00:00
 */
function ct_trck_marvel_410101420(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14548);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocspiderham
 * Action created: 2020-12-09 00:00:00
 */
function ct_trck_marvel_410097772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12761);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocstryfe
 * Action created: 2021-01-29 00:00:00
 */
function ct_trck_marvel_410098968(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13600);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocsuperskrull
 * Action created: 2021-02-25 00:00:00
 */
function ct_trck_marvel_410099675(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14002);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcoctigra
 * Action created: 2020-06-11 00:00:00
 */
function ct_trck_marvel_410090624(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11546);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocweek1preview
 * Action created: 2019-07-31 00:00:00
 */
function ct_trck_marvel_410079729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocweek2preview
 * Action created: 2019-08-07 00:00:00
 */
function ct_trck_marvel_410080152(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9059);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocweek3preview
 * Action created: 2019-08-13 00:00:00
 */
function ct_trck_marvel_410080429(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocweek4preview
 * Action created: 2019-08-21 00:00:00
 */
function ct_trck_marvel_410081528(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocweek4recap
 * Action created: 2019-08-23 00:00:00
 */
function ct_trck_marvel_410081657(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9378);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocweek6players
 * Action created: 2019-09-03 00:00:00
 */
function ct_trck_marvel_410082058(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9521);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mcocweek9players
 * Action created: 2019-09-24 00:00:00
 */
function ct_trck_marvel_410083237(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mffloki
 * Action created: 2023-11-27 11:06:42
 */
function ct_trck_marvel_410116783(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17163);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mfflunasnowsong
 * Action created: 2021-10-01 00:00:00
 */
function ct_trck_marvel_410105107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14969);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mffyelenaredguard
 * Action created: 2020-04-22 00:00:00
 */
function ct_trck_marvel_410089909(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11351);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mfrappstore
 * Action created: 2021-12-03 00:00:00
 */
function ct_trck_marvel_410106050(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15170);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mfrdormammu
 * Action created: 2021-09-29 00:00:00
 */
function ct_trck_marvel_410105004(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14966);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mfreternals
 * Action created: 2021-11-03 00:00:00
 */
function ct_trck_marvel_410105482(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15068);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Midnightsunannouncement
 * Action created: 2021-08-25 00:00:00
 */
function ct_trck_marvel_410103944(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14885);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Midnightsunslivestream
 * Action created: 2022-10-26 13:16:10
 */
function ct_trck_marvel_410111758(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16164);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Midnightsunsnewreleasedate
 * Action created: 2022-09-09 17:18:12
 */
function ct_trck_marvel_410111149(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Midnightsunsoneyear
 * Action created: 2023-12-21 17:52:15
 */
function ct_trck_marvel_410117035(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17207);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Midnightsunspreorder
 * Action created: 2022-06-09 15:10:36
 */
function ct_trck_marvel_410109844(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15790);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Midnightsunsps4
 * Action created: 2023-05-12 13:42:52
 */
function ct_trck_marvel_410114573(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16730);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Milesmoralesvinylsoundtrack
 * Action created: 2020-12-09 00:00:00
 */
function ct_trck_marvel_410097771(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12760);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Milesmorealescompanionbooks
 * Action created: 2020-10-07 00:00:00
 */
function ct_trck_marvel_410096237(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12126);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgdeadpool
 * Action created: 2024-03-11 15:28:43
 */
function ct_trck_marvel_410121539(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17428);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgdeveloperupdate
 * Action created: 2024-01-29 17:09:24
 */
function ct_trck_marvel_410117325(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17285);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgdevupdate3
 * Action created: 2023-07-31 12:14:49
 */
function ct_trck_marvel_410115469(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16926);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpggencon24
 * Action created: 2024-07-16 13:20:15
 */
function ct_trck_marvel_410122642(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18114);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgglasscannonspecial
 * Action created: 2024-02-07 13:11:51
 */
function ct_trck_marvel_410117394(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgonsale
 * Action created: 2023-08-02 15:57:10
 */
function ct_trck_marvel_410115509(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16931);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgspiderverse
 * Action created: 2023-07-12 10:51:53
 */
function ct_trck_marvel_410115257(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgupdate4
 * Action created: 2023-11-15 09:49:20
 */
function ct_trck_marvel_410116686(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17153);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgxmenexpansion
 * Action created: 2023-01-30 16:57:07
 */
function ct_trck_marvel_410112988(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16441);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mmrpgxmengenconupdate
 * Action created: 2024-06-14 12:37:35
 */
function ct_trck_marvel_410122386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17933);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mocomabaripanther
 * Action created: 2021-04-15 00:00:00
 */
function ct_trck_marvel_410101285(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14513);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mojococ
 * Action created: 2020-02-28 00:00:00
 */
function ct_trck_marvel_410087733(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11062);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Moonknightfortnite
 * Action created: 2022-04-21 09:12:33
 */
function ct_trck_marvel_410109048(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15672);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Moralesonplaystation
 * Action created: 2020-09-16 00:00:00
 */
function ct_trck_marvel_410092674(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11986);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Moralestracksuit
 * Action created: 2020-09-30 00:00:00
 */
function ct_trck_marvel_410092815(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12078);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Morefortnite
 * Action created: 2020-12-22 00:00:00
 */
function ct_trck_marvel_410097992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpq6years
 * Action created: 2019-09-30 00:00:00
 */
function ct_trck_marvel_410083421(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpq7anniversary
 * Action created: 2020-10-01 00:00:00
 */
function ct_trck_marvel_410092823(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12080);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpq9thanniversary
 * Action created: 2022-09-29 14:54:15
 */
function ct_trck_marvel_410111424(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16085);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqabigailbrand
 * Action created: 2022-01-13 00:00:00
 */
function ct_trck_marvel_410107449(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15352);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqadamwarlock
 * Action created: 2020-12-17 00:00:00
 */
function ct_trck_marvel_410097912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqalligatorloki
 * Action created: 2021-08-12 00:00:00
 */
function ct_trck_marvel_410103776(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14859);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqantivenom
 * Action created: 2020-07-30 00:00:00
 */
function ct_trck_marvel_410091899(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqapocalypse
 * Action created: 2020-05-07 00:00:00
 */
function ct_trck_marvel_410090192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11425);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqarcade
 * Action created: 2022-10-21 13:27:42
 */
function ct_trck_marvel_410111703(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16154);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqauntmay
 * Action created: 2024-04-04 15:48:49
 */
function ct_trck_marvel_410121730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17545);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqbeastageofapocalypse
 * Action created: 2021-02-25 00:00:00
 */
function ct_trck_marvel_410099673(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14001);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqbigwheel
 * Action created: 2021-12-17 00:00:00
 */
function ct_trck_marvel_410106456(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15214);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqblob
 * Action created: 2021-10-07 00:00:00
 */
function ct_trck_marvel_410105175(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14988);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqcaptainamericaworthy
 * Action created: 2019-09-19 00:00:00
 */
function ct_trck_marvel_410083046(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqcharactervote
 * Action created: 2022-01-14 00:00:00
 */
function ct_trck_marvel_410107462(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15363);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqchasm
 * Action created: 2022-07-28 12:39:32
 */
function ct_trck_marvel_410110489(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15919);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqclea
 * Action created: 2023-03-31 10:36:32
 */
function ct_trck_marvel_410113855(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16607);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqcolossusphoenixfive
 * Action created: 2021-03-11 00:00:00
 */
function ct_trck_marvel_410100675(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14202);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqcrystal
 * Action created: 2022-03-10 15:59:35
 */
function ct_trck_marvel_410108425(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15592);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqcyclopsphoenixfive
 * Action created: 2021-02-11 00:00:00
 */
function ct_trck_marvel_410099233(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13802);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqdeathlok
 * Action created: 2022-11-03 17:36:48
 */
function ct_trck_marvel_410111877(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16201);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqdococt
 * Action created: 2021-12-29 09:46:59
 */
function ct_trck_marvel_410107268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqdoctordoom
 * Action created: 2024-04-18 15:43:20
 */
function ct_trck_marvel_410121850(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17647);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqdoop
 * Action created: 2022-10-06 14:12:28
 */
function ct_trck_marvel_410111489(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16103);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqecho
 * Action created: 2021-12-02 00:00:00
 */
function ct_trck_marvel_410106043(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15168);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqelektra
 * Action created: 2022-02-10 00:00:00
 */
function ct_trck_marvel_410107831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15526);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqemmafrost
 * Action created: 2022-09-22 14:43:34
 */
function ct_trck_marvel_410111294(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16049);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqgamora
 * Action created: 2021-10-14 00:00:00
 */
function ct_trck_marvel_410105238(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15005);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqgargantos
 * Action created: 2022-05-05 18:21:53
 */
function ct_trck_marvel_410109257(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15714);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqgertrudeyorkes
 * Action created: 2022-03-24 13:10:33
 */
function ct_trck_marvel_410108656(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15613);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqgorr
 * Action created: 2022-07-14 16:17:45
 */
function ct_trck_marvel_410110334(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15871);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqhighevolutionary
 * Action created: 2023-05-04 11:45:36
 */
function ct_trck_marvel_410114420(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16708);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqhulkling
 * Action created: 2022-06-16 15:05:12
 */
function ct_trck_marvel_410109974(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15805);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqhumantorch
 * Action created: 2023-04-20 12:19:46
 */
function ct_trck_marvel_410114084(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16656);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqhydrastomper
 * Action created: 2021-09-09 00:00:00
 */
function ct_trck_marvel_410104433(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14927);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqikaris
 * Action created: 2021-11-04 00:00:00
 */
function ct_trck_marvel_410105500(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15072);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqjeff
 * Action created: 2023-04-06 13:44:16
 */
function ct_trck_marvel_410113920(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16623);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqkamalakhan
 * Action created: 2022-06-02 12:03:44
 */
function ct_trck_marvel_410109658(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15773);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqkillmonger
 * Action created: 2020-07-02 00:00:00
 */
function ct_trck_marvel_410091064(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11631);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqknullkib
 * Action created: 2021-05-06 00:00:00
 */
function ct_trck_marvel_410101524(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14564);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqlegion
 * Action created: 2020-06-19 00:00:00
 */
function ct_trck_marvel_410090818(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11582);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqlizard
 * Action created: 2021-05-20 00:00:00
 */
function ct_trck_marvel_410101987(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14599);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmagneto
 * Action created: 2020-11-19 00:00:00
 */
function ct_trck_marvel_410097414(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12419);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmantis
 * Action created: 2021-06-17 00:00:00
 */
function ct_trck_marvel_410102821(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14689);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmelindamay
 * Action created: 2022-01-27 00:00:00
 */
function ct_trck_marvel_410107659(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15447);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmightythor
 * Action created: 2022-07-01 09:01:23
 */
function ct_trck_marvel_410110160(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15833);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmistersinister
 * Action created: 2020-01-30 00:00:00
 */
function ct_trck_marvel_410087213(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10869);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmistyknight
 * Action created: 2020-07-16 00:00:00
 */
function ct_trck_marvel_410091721(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11686);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmoondragon
 * Action created: 2023-06-16 10:55:12
 */
function ct_trck_marvel_410114952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16825);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmoonknight
 * Action created: 2022-04-08 10:13:40
 */
function ct_trck_marvel_410108839(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15647);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmorbius
 * Action created: 2021-03-25 00:00:00
 */
function ct_trck_marvel_410100911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14402);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqmrnegative
 * Action created: 2023-08-10 17:30:57
 */
function ct_trck_marvel_410115553(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16943);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqnamora
 * Action created: 2022-12-02 11:00:40
 */
function ct_trck_marvel_410112263(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16275);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqodin
 * Action created: 2021-07-29 00:00:00
 */
function ct_trck_marvel_410103299(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14830);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqonslaught
 * Action created: 2020-06-04 00:00:00
 */
function ct_trck_marvel_410090450(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11520);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqpeniparker
 * Action created: 2023-09-07 12:23:07
 */
function ct_trck_marvel_410115857(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17006);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqphylavell
 * Action created: 2024-03-07 09:02:54
 */
function ct_trck_marvel_410121486(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17425);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqpolaris
 * Action created: 2020-08-27 00:00:00
 */
function ct_trck_marvel_410092325(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11873);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqpoll
 * Action created: 2024-12-12 14:22:52
 */
function ct_trck_marvel_410135232(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20534);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqpuck
 * Action created: 2022-05-19 14:33:10
 */
function ct_trck_marvel_410109451(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15746);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqrambeau
 * Action created: 2021-04-22 00:00:00
 */
function ct_trck_marvel_410101350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14533);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqreptil
 * Action created: 2022-09-08 16:32:18
 */
function ct_trck_marvel_410111137(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16013);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqrhino
 * Action created: 2022-02-24 16:14:34
 */
function ct_trck_marvel_410108244(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15570);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqronin
 * Action created: 2019-05-02 00:00:00
 */
function ct_trck_marvel_410074111(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqsamuraidaken
 * Action created: 2020-08-13 00:00:00
 */
function ct_trck_marvel_410092175(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11808);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqscarletwitch
 * Action created: 2021-04-08 00:00:00
 */
function ct_trck_marvel_410101106(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14496);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqscorpionclassic
 * Action created: 2020-12-03 00:00:00
 */
function ct_trck_marvel_410097683(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12639);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqsebastianshaw
 * Action created: 2024-03-21 13:34:38
 */
function ct_trck_marvel_410121643(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17485);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqsersi
 * Action created: 2021-11-19 00:00:00
 */
function ct_trck_marvel_410105817(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15127);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqshangchiorigin
 * Action created: 2021-08-26 00:00:00
 */
function ct_trck_marvel_410103965(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14890);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqshehulk
 * Action created: 2022-08-18 13:20:50
 */
function ct_trck_marvel_410110840(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15959);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqshehulkimmortal
 * Action created: 2022-08-25 10:56:47
 */
function ct_trck_marvel_410110953(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15974);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqsilversamurai
 * Action created: 2023-04-03 17:07:15
 */
function ct_trck_marvel_410113891(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16615);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqsilversamuraiharada
 * Action created: 2023-07-13 15:54:24
 */
function ct_trck_marvel_410115270(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16861);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqspidermanoscorp
 * Action created: 2022-08-12 09:47:47
 */
function ct_trck_marvel_410110744(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15951);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqsuperskrull
 * Action created: 2020-04-09 00:00:00
 */
function ct_trck_marvel_410089706(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11296);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqthehulk
 * Action created: 2020-03-26 00:00:00
 */
function ct_trck_marvel_410089343(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11231);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqultron
 * Action created: 2021-09-27 00:00:00
 */
function ct_trck_marvel_410104618(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14963);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqyelenabelova
 * Action created: 2020-04-22 00:00:00
 */
function ct_trck_marvel_410089911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11353);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Mpqyellowjacket
 * Action created: 2021-01-14 00:00:00
 */
function ct_trck_marvel_410098331(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13421);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfblackcat
 * Action created: 2023-08-31 13:28:34
 */
function ct_trck_marvel_410115804(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfcorvus
 * Action created: 2020-04-22 00:00:00
 */
function ct_trck_marvel_410089891(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11350);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfjuggernaut
 * Action created: 2023-10-31 14:44:44
 */
function ct_trck_marvel_410116525(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfmarvels
 * Action created: 2023-11-09 14:44:00
 */
function ct_trck_marvel_410116636(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17143);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfpoolparty
 * Action created: 2024-07-25 11:01:01
 */
function ct_trck_marvel_410122693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18176);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfroninmockingbird
 * Action created: 2023-09-26 11:45:26
 */
function ct_trck_marvel_410116090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17034);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfspidersociety
 * Action created: 2024-04-19 12:46:34
 */
function ct_trck_marvel_410121855(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17648);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msftaskmaster
 * Action created: 2020-05-05 00:00:00
 */
function ct_trck_marvel_410090177(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11421);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfv74
 * Action created: 2023-09-20 14:22:06
 */
function ct_trck_marvel_410116003(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17025);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msfxmen97wolverine
 * Action created: 2024-05-17 12:28:02
 */
function ct_trck_marvel_410122174(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17771);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2aarondavis
 * Action created: 2023-11-29 11:58:56
 */
function ct_trck_marvel_410116836(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17167);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2antivenomsuit
 * Action created: 2024-02-13 15:48:31
 */
function ct_trck_marvel_410117442(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17306);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2available
 * Action created: 2023-10-20 10:03:37
 */
function ct_trck_marvel_410116353(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17085);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2billrosemann
 * Action created: 2023-10-24 12:51:30
 */
function ct_trck_marvel_410116398(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17105);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2blackcat
 * Action created: 2023-12-12 13:49:13
 */
function ct_trck_marvel_410116918(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17187);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2blacksuit
 * Action created: 2024-02-06 12:30:38
 */
function ct_trck_marvel_410117376(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17296);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2burningquestions
 * Action created: 2023-11-09 15:29:05
 */
function ct_trck_marvel_410116637(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17144);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2character
 * Action created: 2023-10-10 11:38:59
 */
function ct_trck_marvel_410116216(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17064);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2creators
 * Action created: 2023-10-06 09:37:16
 */
function ct_trck_marvel_410116200(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17053);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2creatortocreator
 * Action created: 2024-02-01 12:38:05
 */
function ct_trck_marvel_410117358(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17289);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2diceawards
 * Action created: 2024-01-24 17:47:42
 */
function ct_trck_marvel_410117301(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17275);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2event
 * Action created: 2023-09-15 14:32:41
 */
function ct_trck_marvel_410115973(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2gameawards
 * Action created: 2023-11-15 09:49:04
 */
function ct_trck_marvel_410116687(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17152);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2gankelee
 * Action created: 2023-12-05 16:19:26
 */
function ct_trck_marvel_410116885(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17173);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2haileycooper
 * Action created: 2024-01-02 13:18:01
 */
function ct_trck_marvel_410117098(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17243);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2lizard
 * Action created: 2023-10-31 14:43:35
 */
function ct_trck_marvel_410116524(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17116);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2milesmorales
 * Action created: 2023-10-11 11:47:09
 */
function ct_trck_marvel_410116221(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17065);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2mysterio
 * Action created: 2024-01-03 09:16:15
 */
function ct_trck_marvel_410117099(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17244);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2needtoknow
 * Action created: 2023-10-13 09:59:33
 */
function ct_trck_marvel_410116252(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17067);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2newtrailer
 * Action created: 2023-10-16 10:08:30
 */
function ct_trck_marvel_410116281(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2newyork
 * Action created: 2023-09-22 12:07:46
 */
function ct_trck_marvel_410116050(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17028);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2normanosborn
 * Action created: 2023-12-19 15:58:01
 */
function ct_trck_marvel_410117006(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17203);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2peterparker
 * Action created: 2023-10-03 15:31:27
 */
function ct_trck_marvel_410116184(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17046);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2preorder
 * Action created: 2023-06-16 10:54:01
 */
function ct_trck_marvel_410114951(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16824);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2ps5fall2023
 * Action created: 2022-12-15 12:51:56
 */
function ct_trck_marvel_410112411(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16309);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2releasedate
 * Action created: 2023-06-08 16:37:00
 */
function ct_trck_marvel_410114873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16808);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2riomorales
 * Action created: 2023-11-21 16:01:39
 */
function ct_trck_marvel_410116756(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17159);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2rosemann2
 * Action created: 2023-10-30 10:46:35
 */
function ct_trck_marvel_410116517(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17113);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2sandman
 * Action created: 2023-10-18 16:45:54
 */
function ct_trck_marvel_410116334(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17082);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2soundtrack
 * Action created: 2023-09-15 18:08:18
 */
function ct_trck_marvel_410115979(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2spidersuits
 * Action created: 2023-10-27 13:03:05
 */
function ct_trck_marvel_410116505(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17110);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2storytrailer
 * Action created: 2023-07-21 11:31:23
 */
function ct_trck_marvel_410115387(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16908);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2update
 * Action created: 2024-02-22 09:44:05
 */
function ct_trck_marvel_410121361(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17344);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2venom
 * Action created: 2023-10-19 16:37:21
 */
function ct_trck_marvel_410116349(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17083);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2venom24
 * Action created: 2024-01-23 11:07:20
 */
function ct_trck_marvel_410117278(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17270);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2venomtrailer
 * Action created: 2023-10-03 09:12:38
 */
function ct_trck_marvel_410116182(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17044);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msm2wraith
 * Action created: 2024-01-09 12:42:38
 */
function ct_trck_marvel_410117156(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17251);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msmjoinsplaystationnow
 * Action created: 2020-04-07 00:00:00
 */
function ct_trck_marvel_410089628(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11287);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msmmmholidayrecipes
 * Action created: 2023-01-03 17:26:54
 */
function ct_trck_marvel_410112580(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16366);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msmmmpc
 * Action created: 2022-09-23 11:26:35
 */
function ct_trck_marvel_410111299(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16052);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msmmmpcavailable
 * Action created: 2022-11-18 15:05:07
 */
function ct_trck_marvel_410112054(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16236);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msmmmpcnovember
 * Action created: 2022-10-13 11:18:32
 */
function ct_trck_marvel_410111545(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16119);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Msmmmwhatweknow
 * Action created: 2020-06-18 00:00:00
 */
function ct_trck_marvel_410090811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Muamarvelknights
 * Action created: 2019-09-30 00:00:00
 */
function ct_trck_marvel_410083416(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10000);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Newcostumesultimatealliance3
 * Action created: 2020-01-30 00:00:00
 */
function ct_trck_marvel_410087199(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Newplayathome
 * Action created: 2020-09-08 00:00:00
 */
function ct_trck_marvel_410092455(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11919);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Nintendoe3
 * Action created: 2019-06-07 00:00:00
 */
function ct_trck_marvel_410075590(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7978);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Pepperpottsmpq
 * Action created: 2019-05-15 00:00:00
 */
function ct_trck_marvel_410074568(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Playathome
 * Action created: 2020-03-30 00:00:00
 */
function ct_trck_marvel_410089393(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11238);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Playathomept2
 * Action created: 2020-04-17 00:00:00
 */
function ct_trck_marvel_410089821(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11329);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Playathomept3
 * Action created: 2020-05-04 00:00:00
 */
function ct_trck_marvel_410090159(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Playathomept4
 * Action created: 2020-05-15 00:00:00
 */
function ct_trck_marvel_410090285(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11464);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Playathomept5
 * Action created: 2020-06-01 00:00:00
 */
function ct_trck_marvel_410090421(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Playathomept6
 * Action created: 2020-06-15 00:00:00
 */
function ct_trck_marvel_410090755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Playathomept7
 * Action created: 2020-06-29 00:00:00
 */
function ct_trck_marvel_410090979(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Psvrbundle
 * Action created: 2020-05-22 00:00:00
 */
function ct_trck_marvel_410090333(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11489);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Puzzlequestmodok
 * Action created: 2019-11-22 00:00:00
 */
function ct_trck_marvel_410085222(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10559);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Puzzlequestpoll
 * Action created: 2024-01-29 11:47:19
 */
function ct_trck_marvel_410117309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17284);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Realmofchampsprereg
 * Action created: 2020-10-23 00:00:00
 */
function ct_trck_marvel_410096958(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12211);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Riotgameslux
 * Action created: 2019-04-24 00:00:00
 */
function ct_trck_marvel_410073309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Riseofhydraannounce
 * Action created: 2024-03-20 12:59:08
 */
function ct_trck_marvel_410121639(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17464);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rivalsconsoleannouncement
 * Action created: 2024-05-31 09:18:02
 */
function ct_trck_marvel_410122277(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17851);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rivalslaunchdate
 * Action created: 2024-08-21 09:39:41
 */
function ct_trck_marvel_410124832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18534);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rivalspsylockecharacterreveal
 * Action created: 2024-09-24 13:59:04
 */
function ct_trck_marvel_410128212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19174);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rpg1.3update
 * Action created: 2022-11-21 14:38:01
 */
function ct_trck_marvel_410112078(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16238);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rpgdeveloperupdate1
 * Action created: 2023-04-19 14:08:59
 */
function ct_trck_marvel_410114067(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16651);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rpgdeveloperupdate2
 * Action created: 2023-05-26 10:46:32
 */
function ct_trck_marvel_410114747(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16764);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rpglanding Page
 * Action created: 2022-04-20 09:25:16
 */
function ct_trck_marvel_410109017(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15669);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rpglaunch
 * Action created: 2022-04-20 12:37:18
 */
function ct_trck_marvel_410109025(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15670);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Rpgrulebook
 * Action created: 2022-08-22 13:16:05
 */
function ct_trck_marvel_410110882(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15967);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Showdownweek2
 * Action created: 2020-09-01 00:00:00
 */
function ct_trck_marvel_410092403(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Skydanceproject
 * Action created: 2022-09-09 17:19:12
 */
function ct_trck_marvel_410111150(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapbloodstoneseason
 * Action created: 2023-10-04 14:26:45
 */
function ct_trck_marvel_410116187(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17047);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapconquestmode
 * Action created: 2023-06-13 15:46:15
 */
function ct_trck_marvel_410114914(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapecho
 * Action created: 2023-07-20 10:10:04
 */
function ct_trck_marvel_410115360(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16904);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snaphighevolutionary
 * Action created: 2023-05-25 09:43:19
 */
function ct_trck_marvel_410114730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16762);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapjapanseason
 * Action created: 2023-08-08 14:11:15
 */
function ct_trck_marvel_410115538(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapjeangrey
 * Action created: 2023-07-12 16:08:02
 */
function ct_trck_marvel_410115263(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16859);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapladydeathstrike
 * Action created: 2023-08-16 14:31:49
 */
function ct_trck_marvel_410115596(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16951);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snaplaunchdate
 * Action created: 2022-09-09 17:15:35
 */
function ct_trck_marvel_410111147(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snaplegion
 * Action created: 2023-07-27 08:38:22
 */
function ct_trck_marvel_410115446(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snaplivingtribunal
 * Action created: 2023-05-31 13:41:20
 */
function ct_trck_marvel_410114784(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16785);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snaplokiseason
 * Action created: 2023-09-05 15:36:58
 */
function ct_trck_marvel_410115824(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17003);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapmarvelsseason
 * Action created: 2023-11-08 16:20:53
 */
function ct_trck_marvel_410116608(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17126);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapmirage
 * Action created: 2023-08-02 13:10:20
 */
function ct_trck_marvel_410115503(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16929);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snappc
 * Action created: 2023-08-22 16:30:35
 */
function ct_trck_marvel_410115725(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16960);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapphoenix
 * Action created: 2023-07-05 15:18:57
 */
function ct_trck_marvel_410115211(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16849);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapsilk
 * Action created: 2023-06-14 14:49:57
 */
function ct_trck_marvel_410114926(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16819);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapsilversamurai
 * Action created: 2023-08-30 14:15:27
 */
function ct_trck_marvel_410115795(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16972);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapspiderham
 * Action created: 2023-06-21 12:28:33
 */
function ct_trck_marvel_410115000(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16830);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapspiderman2099
 * Action created: 2023-06-28 16:28:34
 */
function ct_trck_marvel_410115132(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16841);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapspiderversusseason
 * Action created: 2023-06-07 12:51:44
 */
function ct_trck_marvel_410114861(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16805);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapstarter
 * Action created: 2023-10-18 13:36:01
 */
function ct_trck_marvel_410116332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17081);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Snapx23
 * Action created: 2023-08-23 09:49:11
 */
function ct_trck_marvel_410115730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16964);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Spiderman2099mpq
 * Action created: 2019-10-11 00:00:00
 */
function ct_trck_marvel_410083832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Spidermanjoinsplaystation
 * Action created: 2020-04-07 18:48:08
 */
function ct_trck_marvel_410089629(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11288);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Spidermanremastered
 * Action created: 2022-07-20 12:54:56
 */
function ct_trck_marvel_410110360(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15888);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Spidermanremasteredlaunch
 * Action created: 2022-08-12 13:42:06
 */
function ct_trck_marvel_410110746(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15953);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Spidermanscriptbook
 * Action created: 2019-12-19 00:00:00
 */
function ct_trck_marvel_410085764(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10689);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Spidermanthecat
 * Action created: 2020-10-16 00:00:00
 */
function ct_trck_marvel_410096361(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Stormmpq
 * Action created: 2019-06-06 00:00:00
 */
function ct_trck_marvel_410075528(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Storyavengersgame
 * Action created: 2019-11-08 00:00:00
 */
function ct_trck_marvel_410085069(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10500);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Strikeforceguardians
 * Action created: 2023-05-18 14:44:19
 */
function ct_trck_marvel_410114648(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16746);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Summershow2020
 * Action created: 2020-07-27 00:00:00
 */
function ct_trck_marvel_410091812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11739);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Taskmasteravengers
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075691(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Terraxcoc
 * Action created: 2020-03-26 00:00:00
 */
function ct_trck_marvel_410089332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11229);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Thanosmpq
 * Action created: 2019-04-19 00:00:00
 */
function ct_trck_marvel_410073140(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7059);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Theskykyrin
 * Action created: 2019-11-11 00:00:00
 */
function ct_trck_marvel_410085093(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10519);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ultimatealliance3blackorder
 * Action created: 2019-04-17 00:00:00
 */
function ct_trck_marvel_410073031(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6998);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ultimatealliance3theblackorder
 * Action created: 2019-12-31 00:00:00
 */
function ct_trck_marvel_410086740(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10727);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ultimatealliancedlc
 * Action created: 2019-08-21 00:00:00
 */
function ct_trck_marvel_410081549(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Ultimatealliancetips
 * Action created: 2019-07-15 00:00:00
 */
function ct_trck_marvel_410078575(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Wartablehawkeye
 * Action created: 2020-07-29 00:00:00
 */
function ct_trck_marvel_410091888(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11750);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Week7players
 * Action created: 2019-09-10 00:00:00
 */
function ct_trck_marvel_410082572(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Week8players
 * Action created: 2019-09-17 00:00:00
 */
function ct_trck_marvel_410082890(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9838);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Worldofheroesannounce
 * Action created: 2022-09-09 17:16:37
 */
function ct_trck_marvel_410111148(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article - Xforcedeadpool
 * Action created: 2020-04-21 00:00:00
 */
function ct_trck_marvel_410089882(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11349);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article -mcocweek5players
 * Action created: 2019-08-28 00:00:00
 */
function ct_trck_marvel_410081912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article- Midnightsunsavailablenow
 * Action created: 2022-12-02 13:10:27
 */
function ct_trck_marvel_410112266(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16278);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article- Midnightsunsdaywalker
 * Action created: 2022-11-22 13:51:52
 */
function ct_trck_marvel_410112130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16243);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article- Midnightsunsnicominoru
 * Action created: 2022-11-28 15:53:38
 */
function ct_trck_marvel_410112191(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16266);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article-mcoc4anniversary
 * Action created: 2018-12-11 00:00:00
 */
function ct_trck_marvel_410066834(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article-nintendomarvel
 * Action created: 2018-12-07 00:00:00
 */
function ct_trck_marvel_410066128(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4718);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Article-ps4comics
 * Action created: 2018-12-18 00:00:00
 */
function ct_trck_marvel_410066993(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Articles - Avengersprequelnovelandartbook
 * Action created: 2019-12-09 00:00:00
 */
function ct_trck_marvel_410085390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10639);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Articles - Puzzlequestbetaraybill
 * Action created: 2019-12-05 00:00:00
 */
function ct_trck_marvel_410085359(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10620);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Articles - Sorcerersupreme
 * Action created: 2020-04-09 00:00:00
 */
function ct_trck_marvel_410089698(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11295);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Battlelines
 * Action created: 2018-10-05 00:00:00
 */
function ct_trck_marvel_410064381(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4262);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Battlelinestips
 * Action created: 2018-10-25 00:00:00
 */
function ct_trck_marvel_410064764(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4374);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Becomingadvancedspidey
 * Action created: 2018-11-09 00:00:00
 */
function ct_trck_marvel_410065258(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Futurefight-crescentupdate
 * Action created: 2018-11-27 00:00:00
 */
function ct_trck_marvel_410065845(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4544);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Futurefightkorean
 * Action created: 2018-11-16 00:00:00
 */
function ct_trck_marvel_410065744(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4493);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Letsplayps4
 * Action created: 2018-11-27 00:00:00
 */
function ct_trck_marvel_410065844(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4543);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Marvel Battle Lines
 * Action created: 2018-10-05 15:00:14
 */
function ct_trck_marvel_410060920(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Marvelspideymrnegative
 * Action created: 2018-09-28 00:00:00
 */
function ct_trck_marvel_410064082(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Marvelspideyturfwarsdlc
 * Action created: 2018-11-20 00:00:00
 */
function ct_trck_marvel_410065790(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4526);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Marvelspideyvillians
 * Action created: 2018-09-20 00:00:00
 */
function ct_trck_marvel_410063971(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4179);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Marvelvoicesspidey
 * Action created: 2018-08-31 00:00:00
 */
function ct_trck_marvel_410062784(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Mpqturns5
 * Action created: 2018-10-02 00:00:00
 */
function ct_trck_marvel_410064205(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4245);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Msmmilesmoralesannounce
 * Action created: 2020-06-11 00:00:00
 */
function ct_trck_marvel_410090627(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11548);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Newspideysuits
 * Action created: 2018-10-18 00:00:00
 */
function ct_trck_marvel_410064705(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4329);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Nickfolesletsplay
 * Action created: 2018-09-07 00:00:00
 */
function ct_trck_marvel_410062855(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4100);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Spider-mantips
 * Action created: 2018-09-07 00:00:00
 */
function ct_trck_marvel_410062857(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4101);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Spideyreviews
 * Action created: 2018-09-06 00:00:00
 */
function ct_trck_marvel_410062849(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Theheist
 * Action created: 2018-10-22 00:00:00
 */
function ct_trck_marvel_410064737(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4363);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Turfwars
 * Action created: 2018-11-16 00:00:00
 */
function ct_trck_marvel_410065743(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4500);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Adaye3trailer
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Airwalker101
 * Action created: 2020-08-25 00:00:00
 */
function ct_trck_marvel_410092298(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11840);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Apocalypse101
 * Action created: 2020-09-24 00:00:00
 */
function ct_trck_marvel_410092754(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12026);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengersblackpantherexpansiontraile1623677329
 * Action created: 2021-06-14 00:00:00
 */
function ct_trck_marvel_410102324(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14676);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengersgameironman
 * Action created: 2020-09-01 00:00:00
 */
function ct_trck_marvel_410092413(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11900);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengersgameplay
 * Action created: 2019-08-20 00:00:00
 */
function ct_trck_marvel_410081470(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengersironmanspotlight
 * Action created: 2019-09-16 00:00:00
 */
function ct_trck_marvel_410082830(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengerslaunchtrailer
 * Action created: 2020-08-24 00:00:00
 */
function ct_trck_marvel_410092294(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11838);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengersletsplayharmroom
 * Action created: 2022-01-19 00:00:00
 */
function ct_trck_marvel_410107551(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15386);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengersmuliplayergearcustomization
 * Action created: 2020-11-30 00:00:00
 */
function ct_trck_marvel_410097620(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12538);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengersnextgenforps5
 * Action created: 2021-03-18 00:00:00
 */
function ct_trck_marvel_410100798(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14304);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengersprojectteaser
 * Action created: 2019-06-06 00:00:00
 */
function ct_trck_marvel_410075531(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7960);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Avengerswakanda
 * Action created: 2021-08-12 00:00:00
 */
function ct_trck_marvel_410103750(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14861);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Behindthescenesironman
 * Action created: 2019-10-16 00:00:00
 */
function ct_trck_marvel_410084188(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Betaavengers
 * Action created: 2020-07-29 00:00:00
 */
function ct_trck_marvel_410091892(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11751);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Blackordere3trailer
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Blackpantherwarforwakandatrailer
 * Action created: 2021-03-18 00:00:00
 */
function ct_trck_marvel_410100797(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14303);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Btsironmanvr
 * Action created: 2020-06-11 00:00:00
 */
function ct_trck_marvel_410090616(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11542);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Capcomaccoladestrailer
 * Action created: 2024-11-25 09:36:43
 */
function ct_trck_marvel_410133992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20314);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Captainamericasecretempireoutfit
 * Action created: 2019-09-06 00:00:00
 */
function ct_trck_marvel_410082469(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Chanceperdomo
 * Action created: 2019-05-28 00:00:00
 */
function ct_trck_marvel_410075029(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Chrisdistafanoletsplay
 * Action created: 2019-04-11 00:00:00
 */
function ct_trck_marvel_410072654(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6919);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Coc101kraven
 * Action created: 2021-12-23 00:00:00
 */
function ct_trck_marvel_410107203(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15245);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Coc10years
 * Action created: 2024-10-21 13:04:20
 */
function ct_trck_marvel_410130973(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19654);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocchampionrevealaug
 * Action created: 2023-08-09 13:09:15
 */
function ct_trck_marvel_410115544(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16941);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocchampionsareforever
 * Action created: 2020-12-11 00:00:00
 */
function ct_trck_marvel_410097823(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocseaoftroublestrailer
 * Action created: 2022-11-07 17:45:04
 */
function ct_trck_marvel_410111920(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16210);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocsepttrailer
 * Action created: 2023-09-01 10:38:11
 */
function ct_trck_marvel_410115809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16980);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocsersi101
 * Action created: 2021-11-19 00:00:00
 */
function ct_trck_marvel_410105832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15129);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocshindig
 * Action created: 2021-12-13 00:00:00
 */
function ct_trck_marvel_410106410(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15203);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocsummonerschoice
 * Action created: 2021-12-20 00:00:00
 */
function ct_trck_marvel_410106523(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15218);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocsummonershowdown2021
 * Action created: 2021-06-28 00:00:00
 */
function ct_trck_marvel_410102927(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14723);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Cocsummonershowdownlivestream
 * Action created: 2019-07-31 00:00:00
 */
function ct_trck_marvel_410079401(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Connycc23coc
 * Action created: 2023-10-14 07:37:40
 */
function ct_trck_marvel_410116272(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17071);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Contestofchampions9yrs
 * Action created: 2023-12-12 11:25:52
 */
function ct_trck_marvel_410116914(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17186);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Corvusglaive101
 * Action created: 2020-10-08 00:00:00
 */
function ct_trck_marvel_410096252(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12128);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Danielslossletsplay
 * Action created: 2019-05-13 00:00:00
 */
function ct_trck_marvel_410074449(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Dimensionsofheroes
 * Action created: 2019-09-05 00:00:00
 */
function ct_trck_marvel_410082453(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Doommpq
 * Action created: 2019-01-16 00:00:00
 */
function ct_trck_marvel_410068050(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5398);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - E3avengersfanreaction
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075728(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Ems80thavengers
 * Action created: 2019-08-29 00:00:00
 */
function ct_trck_marvel_410081935(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9479);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Fflet'splay
 * Action created: 2019-01-09 00:00:00
 */
function ct_trck_marvel_410067731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Fflunasnowsingle
 * Action created: 2023-08-09 10:11:37
 */
function ct_trck_marvel_410115542(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16939);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Fifa23heroes
 * Action created: 2022-11-30 11:30:58
 */
function ct_trck_marvel_410112235(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16271);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Fortnitewolverine
 * Action created: 2020-10-01 00:00:00
 */
function ct_trck_marvel_410092819(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12079);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Futurefightquantumaniaupdate
 * Action created: 2023-02-16 11:53:40
 */
function ct_trck_marvel_410113319(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16505);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Futurefightsinistersyndicate
 * Action created: 2023-03-23 11:05:52
 */
function ct_trck_marvel_410113779(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16589);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Futurefightv870update
 * Action created: 2023-01-13 12:21:48
 */
function ct_trck_marvel_410112763(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16381);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Futurerevolutionbtsorchestra
 * Action created: 2021-08-26 00:00:00
 */
function ct_trck_marvel_410103948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14887);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Futurerevolutionexclusivelook
 * Action created: 2021-07-28 00:00:00
 */
function ct_trck_marvel_410103267(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14822);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Futurerevolutiontrailer
 * Action created: 2021-06-30 00:00:00
 */
function ct_trck_marvel_410102955(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14725);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Gotgdothethingtrailer
 * Action created: 2021-12-17 00:00:00
 */
function ct_trck_marvel_410106454(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15212);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Gotggameplay
 * Action created: 2021-06-14 00:00:00
 */
function ct_trck_marvel_410102326(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14678);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Gotggrandunifierrakertrailer
 * Action created: 2021-08-26 00:00:00
 */
function ct_trck_marvel_410103949(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14888);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Gotgstory
 * Action created: 2022-10-27 12:25:54
 */
function ct_trck_marvel_410111788(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Gotgstorytrailer
 * Action created: 2021-09-09 00:00:00
 */
function ct_trck_marvel_410104445(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14931);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Hawkeyeavengerstrailer
 * Action created: 2021-02-16 00:00:00
 */
function ct_trck_marvel_410099290(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13841);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Ironmanoriginalsin
 * Action created: 2019-09-19 00:00:00
 */
function ct_trck_marvel_410083047(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9878);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Ironmansdccletsplay
 * Action created: 2019-08-12 00:00:00
 */
function ct_trck_marvel_410080390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Ironmanvrghostfromthepast
 * Action created: 2020-06-29 00:00:00
 */
function ct_trck_marvel_410090998(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11620);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Ironmanvrsuitup
 * Action created: 2020-06-16 00:00:00
 */
function ct_trck_marvel_410090767(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11562);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Ironmanvrtonybts
 * Action created: 2020-06-24 00:00:00
 */
function ct_trck_marvel_410090899(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11601);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Kamalakhanprofile
 * Action created: 2019-10-11 00:00:00
 */
function ct_trck_marvel_410083833(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Legoletsplay
 * Action created: 2019-04-04 00:00:00
 */
function ct_trck_marvel_410072368(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Legomarvel
 * Action created: 2019-03-12 00:00:00
 */
function ct_trck_marvel_410070614(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6320);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Letsplayfunches
 * Action created: 2019-02-19 00:00:00
 */
function ct_trck_marvel_410069873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5922);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Letsplaylucasbrothers
 * Action created: 2019-02-07 00:00:00
 */
function ct_trck_marvel_410069250(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Letsplaymikelawrence
 * Action created: 2019-07-01 00:00:00
 */
function ct_trck_marvel_410078035(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8419);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Letsplaymsfbw
 * Action created: 2021-07-14 00:00:00
 */
function ct_trck_marvel_410103091(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14787);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelrivalsbts
 * Action created: 2024-12-09 09:30:44
 */
function ct_trck_marvel_410134912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20454);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelrivalslaunchtrailer
 * Action created: 2024-12-03 15:31:13
 */
function ct_trck_marvel_410134534(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20395);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelrivalsmoonknightcharacterreve1731352830
 * Action created: 2024-11-11 14:20:30
 */
function ct_trck_marvel_410132893(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20054);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelsavengerscoopwarzone
 * Action created: 2020-06-24 00:00:00
 */
function ct_trck_marvel_410090901(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11603);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelsavengersgameplay
 * Action created: 2020-06-24 00:00:00
 */
function ct_trck_marvel_410090902(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11604);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelsavengersmodok
 * Action created: 2020-06-24 00:00:00
 */
function ct_trck_marvel_410090900(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11602);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelsavengersreassemble
 * Action created: 2020-05-27 00:00:00
 */
function ct_trck_marvel_410090381(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11502);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelsavengersthor
 * Action created: 2019-10-02 00:00:00
 */
function ct_trck_marvel_410083470(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10059);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelsnapbattlemode
 * Action created: 2023-01-31 13:53:52
 */
function ct_trck_marvel_410112994(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16446);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelsnapguardians
 * Action created: 2023-05-02 13:26:28
 */
function ct_trck_marvel_410114391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16700);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelsnaptrailer
 * Action created: 2022-10-14 13:00:01
 */
function ct_trck_marvel_410111563(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16124);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelspiderman2reveal
 * Action created: 2021-09-09 00:00:00
 */
function ct_trck_marvel_410104444(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14930);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Marvelvcapcomtrailer
 * Action created: 2024-06-18 12:31:38
 */
function ct_trck_marvel_410122403(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17954);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocbestofweek5
 * Action created: 2019-09-03 00:00:00
 */
function ct_trck_marvel_410082055(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9518);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocweek1
 * Action created: 2019-08-01 00:00:00
 */
function ct_trck_marvel_410079790(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8959);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocweek2winner
 * Action created: 2019-08-08 00:00:00
 */
function ct_trck_marvel_410080248(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocweek6winner
 * Action created: 2019-09-06 00:00:00
 */
function ct_trck_marvel_410082470(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocweek7recap
 * Action created: 2019-09-12 00:00:00
 */
function ct_trck_marvel_410082709(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9778);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocweek7winner
 * Action created: 2019-09-13 00:00:00
 */
function ct_trck_marvel_410082748(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocweek8recap
 * Action created: 2019-09-19 00:00:00
 */
function ct_trck_marvel_410083048(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9879);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocweek8winner
 * Action created: 2019-09-20 00:00:00
 */
function ct_trck_marvel_410083091(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mcocweek9recap
 * Action created: 2019-09-27 00:00:00
 */
function ct_trck_marvel_410083308(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mfrscarletwitch
 * Action created: 2022-05-11 14:24:41
 */
function ct_trck_marvel_410109347(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15725);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Midnightsunlaunchtrailer
 * Action created: 2022-11-29 14:21:29
 */
function ct_trck_marvel_410112219(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16269);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Midnightsunsbloodstorm
 * Action created: 2023-05-02 13:27:57
 */
function ct_trck_marvel_410114392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16701);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Midnightsunsd23
 * Action created: 2022-09-12 10:27:48
 */
function ct_trck_marvel_410111158(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16029);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Midnightsunsdeadpooltrailer
 * Action created: 2023-01-25 17:55:08
 */
function ct_trck_marvel_410112932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16431);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Midnightsunsgameplayreveal
 * Action created: 2021-09-01 00:00:00
 */
function ct_trck_marvel_410104029(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14896);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Midnightsunshellonwheels
 * Action created: 2022-11-15 14:36:35
 */
function ct_trck_marvel_410112011(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16229);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Midnightsunsmorbius
 * Action created: 2023-03-21 14:24:29
 */
function ct_trck_marvel_410113762(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16585);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Midnightsunsseasonpasstrailer
 * Action created: 2022-10-28 12:48:26
 */
function ct_trck_marvel_410111798(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16179);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Milesmoralesgametrailer
 * Action created: 2020-11-09 00:00:00
 */
function ct_trck_marvel_410097240(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Milesmoralestvad
 * Action created: 2020-11-05 00:00:00
 */
function ct_trck_marvel_410097165(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12266);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mmrpgtrailer
 * Action created: 2022-10-04 13:36:57
 */
function ct_trck_marvel_410111468(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Mroctrailerorigins
 * Action created: 2020-12-04 00:00:00
 */
function ct_trck_marvel_410097719(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Msfletsplayeternals
 * Action created: 2021-11-10 00:00:00
 */
function ct_trck_marvel_410105623(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15109);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Msfletsplayshangchi
 * Action created: 2021-09-08 00:00:00
 */
function ct_trck_marvel_410104420(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14923);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Msm2gameplay
 * Action created: 2023-05-25 08:23:53
 */
function ct_trck_marvel_410114729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16761);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Msm2suitreveal
 * Action created: 2023-10-13 09:58:28
 */
function ct_trck_marvel_410116251(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17066);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Msmmmfamilybts
 * Action created: 2020-11-23 00:00:00
 */
function ct_trck_marvel_410097455(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Msmremastered
 * Action created: 2022-06-03 09:19:34
 */
function ct_trck_marvel_410109667(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15775);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Photomodemilesmorales
 * Action created: 2020-11-13 00:00:00
 */
function ct_trck_marvel_410097355(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12359);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Realmofchampionstrailer
 * Action created: 2020-12-16 00:00:00
 */
function ct_trck_marvel_410097891(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Rivalsdoomtrailer
 * Action created: 2024-07-25 20:59:40
 */
function ct_trck_marvel_410122670(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18140);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Rivalshela
 * Action created: 2024-05-08 14:25:56
 */
function ct_trck_marvel_410122110(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17714);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Rivalsjefftrailer
 * Action created: 2024-07-26 13:37:36
 */
function ct_trck_marvel_410122731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Rivalstokyo2099
 * Action created: 2024-05-06 13:33:04
 */
function ct_trck_marvel_410122043(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17710);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Rivalstokyo2099spiderislands
 * Action created: 2024-06-24 11:36:01
 */
function ct_trck_marvel_410122441(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17993);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Rivalsyggsgard
 * Action created: 2024-05-06 13:31:26
 */
function ct_trck_marvel_410122063(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17709);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Sdccgamesrecap
 * Action created: 2024-07-29 11:39:06
 */
function ct_trck_marvel_410122754(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18194);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Snapannounce
 * Action created: 2022-05-19 13:05:06
 */
function ct_trck_marvel_410109445(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15744);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Spiderham101
 * Action created: 2020-12-14 00:00:00
 */
function ct_trck_marvel_410097832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Spiderversesuitreveal
 * Action created: 2020-10-30 00:00:00
 */
function ct_trck_marvel_410097107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12240);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Starkindustriesfortnite
 * Action created: 2020-09-10 00:00:00
 */
function ct_trck_marvel_410092568(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Summonershowdown20qualifiers
 * Action created: 2020-08-17 00:00:00
 */
function ct_trck_marvel_410092211(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11819);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Superiorseminarhulk
 * Action created: 2020-09-02 00:00:00
 */
function ct_trck_marvel_410092420(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11904);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Thewintersoldiernarrativetrailer
 * Action created: 2022-11-23 11:41:21
 */
function ct_trck_marvel_410112143(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16249);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Toptechironmanvr
 * Action created: 2020-06-30 00:00:00
 */
function ct_trck_marvel_410091012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11621);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Ua3dlc2trailer
 * Action created: 2019-12-16 00:00:00
 */
function ct_trck_marvel_410085610(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Wolverineannouncement
 * Action created: 2021-09-09 00:00:00
 */
function ct_trck_marvel_410104446(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14932);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video - Xmenmagentomua3
 * Action created: 2019-05-23 00:00:00
 */
function ct_trck_marvel_410074952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video- Marvelsavengerspt2
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097098(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12239);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video-letsplaybillburr
 * Action created: 2018-12-11 00:00:00
 */
function ct_trck_marvel_410066835(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video-nintendomarvel
 * Action created: 2018-12-07 00:00:00
 */
function ct_trck_marvel_410066129(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video-silverliningsfacts
 * Action created: 2018-12-21 00:00:00
 */
function ct_trck_marvel_410067088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video-spideyps4silverliningdlc
 * Action created: 2018-12-13 00:00:00
 */
function ct_trck_marvel_410066891(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video-womenofmarvelps4
 * Action created: 2018-11-29 00:00:00
 */
function ct_trck_marvel_410065868(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games: Video: Mcoccosmicghostrider101
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097073(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12230);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games:btsstrikeforce
 * Action created: 2018-09-10 00:00:00
 */
function ct_trck_marvel_410062882(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4124);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games:msfgameplay
 * Action created: 2018-08-20 00:00:00
 */
function ct_trck_marvel_410062632(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games:spider-mangameplay
 * Action created: 2018-08-14 00:00:00
 */
function ct_trck_marvel_410062574(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Games:thisweekinmarvelgames
 * Action created: 2018-07-27 00:00:00
 */
function ct_trck_marvel_410060192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gaming:upperdeckbattlerealms
 * Action created: 2018-02-23 11:25:18
 */
function ct_trck_marvel_410059235(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2718);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Get To Know Luke Cage
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050277(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gifted:s2innercircle
 * Action created: 2018-09-12 00:00:00
 */
function ct_trck_marvel_410062914(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4142);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gifted:s2mutantunderground
 * Action created: 2018-09-12 00:00:00
 */
function ct_trck_marvel_410062913(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4141);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gotg 2: Video - Extended Big Game Spot
 * Action created: 2017-04-05 00:00:00
 */
function ct_trck_marvel_410054023(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gotg 2: Video - Sneak Peek
 * Action created: 2017-04-05 00:00:00
 */
function ct_trck_marvel_410054021(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1521);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gotg 2: Video - Teaser Trailer
 * Action created: 2017-04-05 00:00:00
 */
function ct_trck_marvel_410054022(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1522);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gotg 2: Video - Trailer 3
 * Action created: 2017-04-05 00:00:00
 */
function ct_trck_marvel_410054026(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1526);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gotg 2: Video - Tv Spot 1
 * Action created: 2017-04-05 00:00:00
 */
function ct_trck_marvel_410054024(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gotg 2: Video - Tv Spot 2
 * Action created: 2017-04-05 00:00:00
 */
function ct_trck_marvel_410054025(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Gotg: Article - Summer 2017 Opening
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050922(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1250);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Halloween: Article - Marvelzombieshistory
 * Action created: 2019-10-31 14:40:16
 */
function ct_trck_marvel_410084969(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10462);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Halloween: Article - Mcocmanthing
 * Action created: 2019-10-28 00:00:00
 */
function ct_trck_marvel_410084692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10440);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Halloween: Article - Mistressesofevil
 * Action created: 2019-10-28 00:00:00
 */
function ct_trck_marvel_410084691(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10439);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Halloween: Article - Msfghostrider
 * Action created: 2019-10-18 00:00:00
 */
function ct_trck_marvel_410084228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Halloween: Article - Scarycharacters
 * Action created: 2019-10-30 00:00:00
 */
function ct_trck_marvel_410084940(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10460);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Halloween: Article - Scarystories
 * Action created: 2019-10-30 23:07:50
 */
function ct_trck_marvel_410084939(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10459);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Halloween: Article - Symbiotepumpkins
 * Action created: 2019-10-14 00:00:00
 */
function ct_trck_marvel_410083854(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10280);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Https://www.marvel.com/articles/tv-shows/oscar-isa1648161170
 * Action created: 2022-03-24 18:32:50
 */
function ct_trck_marvel_410108660(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15614);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Hubpage:marvelholidayhq
 * Action created: 2017-11-30 00:00:00
 */
function ct_trck_marvel_410058288(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2319);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Incoming: Article - 9burningquestionsafterincoming
 * Action created: 2019-12-26 00:00:00
 */
function ct_trck_marvel_410086700(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10706);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Incoming: Article - D23incomingannouncement
 * Action created: 2019-12-17 00:00:00
 */
function ct_trck_marvel_410085729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10683);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Incoming: Article - Didjaknowincoming
 * Action created: 2019-12-24 00:00:00
 */
function ct_trck_marvel_410086694(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10701);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Incoming: Article - Incomingsneakpeek
 * Action created: 2019-12-17 00:00:00
 */
function ct_trck_marvel_410085728(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10682);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Incoming: Article - Tombrevoortincoming
 * Action created: 2019-12-17 00:00:00
 */
function ct_trck_marvel_410085727(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10681);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Incoming: Video - Empyreredactedtrailer
 * Action created: 2019-12-17 00:00:00
 */
function ct_trck_marvel_410085731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10685);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Incoming: Video - Everythingaboutincoming
 * Action created: 2019-12-23 00:00:00
 */
function ct_trck_marvel_410085810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Incoming: Video - Pulllistincoming
 * Action created: 2019-12-17 00:00:00
 */
function ct_trck_marvel_410085730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10684);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Infinity War:tvspot
 * Action created: 2018-03-27 00:00:00
 */
function ct_trck_marvel_410059825(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3000);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Infinitywar: Livestream-chrishemsworth/kevinfeige
 * Action created: 2018-04-24 00:00:00
 */
function ct_trck_marvel_410060511(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3167);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Infinitywar: Livestream-elizabetholsen
 * Action created: 2018-04-24 00:00:00
 */
function ct_trck_marvel_410060508(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3165);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Infinitywar: Livestream-stanlee
 * Action created: 2018-04-24 00:00:00
 */
function ct_trck_marvel_410060509(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3164);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Infinitywar: Livestream-tomholland
 * Action created: 2018-04-24 00:00:00
 */
function ct_trck_marvel_410060510(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3166);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Infinitywar: Worldpremierecoverage
 * Action created: 2018-04-20 00:00:00
 */
function ct_trck_marvel_410060480(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Infinitywar:family
 * Action created: 2018-04-13 00:00:00
 */
function ct_trck_marvel_410060266(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3090);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Infinitywar:officialtrailer
 * Action created: 2017-11-29 00:00:00
 */
function ct_trck_marvel_410058271(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Iron Fist: Article - Release Date Announcement
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050925(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1252);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironfist: 5toread
 * Action created: 2018-09-13 00:00:00
 */
function ct_trck_marvel_410062920(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4146);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironfist: Betrayals
 * Action created: 2018-09-12 00:00:00
 */
function ct_trck_marvel_410062911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4139);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironfist: Meatballs
 * Action created: 2018-09-14 09:59:18
 */
function ct_trck_marvel_410062926(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4149);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironfist: Reviews
 * Action created: 2018-09-07 00:00:00
 */
function ct_trck_marvel_410062862(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4102);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironfist: Stunts
 * Action created: 2018-09-27 00:00:00
 */
function ct_trck_marvel_410064043(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4210);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironfist: Trailer2
 * Action created: 2018-08-30 00:00:00
 */
function ct_trck_marvel_410062775(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironfist:colleenwing101
 * Action created: 2018-09-19 00:00:00
 */
function ct_trck_marvel_410063968(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironfists2:officialtrailer
 * Action created: 2018-08-16 00:00:00
 */
function ct_trck_marvel_410062602(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3859);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironman: Article - Arnostarkironman2020
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10770);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironman: Article - Danslottchristosgageteamup
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086876(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10773);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironman: Character - Gettoknowpepperpotts
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086878(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10775);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironman: Character - Gettoknowririwilliams
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086879(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10776);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironman: Character - Gettoknowtonystark
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086875(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10772);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironman: Charcter - Gettoknowwarmachine
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086877(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10774);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironman: Video - Ironman2020comictrailer
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10769);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Ironman: Video - Tonystarkcharacter101
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086874(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10771);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Jessicajones:marvel101-jerihogarth
 * Action created: 2018-03-02 00:00:00
 */
function ct_trck_marvel_410059328(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2761);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Jessicajones:marvel101-liveaction
 * Action created: 2018-02-15 00:00:00
 */
function ct_trck_marvel_410059173(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2681);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Jessicajones:marvel101-liveaction2
 * Action created: 2018-03-13 00:00:00
 */
function ct_trck_marvel_410059423(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2843);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Jessicajones:s2trailer
 * Action created: 2018-02-20 12:30:31
 */
function ct_trck_marvel_410059107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest - Article - Merchmcucharacterencylopedia
 * Action created: 2024-04-15 10:23:55
 */
function ct_trck_marvel_410121836(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17623);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest : Article - Fawsimagesep3
 * Action created: 2021-04-02 00:00:00
 */
function ct_trck_marvel_410101067(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14483);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Conc2e2schedule
 * Action created: 2022-08-05 13:56:42
 */
function ct_trck_marvel_410110590(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Conccxp22antmanspeciallook
 * Action created: 2022-12-01 17:21:56
 */
function ct_trck_marvel_410112259(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16274);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Conccxp22guardians3trailer
 * Action created: 2022-12-01 17:20:25
 */
function ct_trck_marvel_410112258(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16273);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Cond23lineup
 * Action created: 2022-08-02 14:02:30
 */
function ct_trck_marvel_410110531(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15930);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Cond23livestreams
 * Action created: 2022-09-07 12:08:55
 */
function ct_trck_marvel_410111122(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16005);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Cond23studiosbooth
 * Action created: 2022-09-07 14:56:12
 */
function ct_trck_marvel_410111124(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16007);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Cond23studiosnews
 * Action created: 2022-09-10 16:31:22
 */
function ct_trck_marvel_410111153(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16024);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Condragonconcosplay
 * Action created: 2022-09-16 10:46:09
 */
function ct_trck_marvel_410111231(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16039);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Connycc22bestcosplay
 * Action created: 2022-10-26 10:31:29
 */
function ct_trck_marvel_410111754(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16163);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Connycc22boothschedule
 * Action created: 2022-10-04 12:07:01
 */
function ct_trck_marvel_410111466(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16095);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Connycc22day1recap
 * Action created: 2022-10-07 08:26:04
 */
function ct_trck_marvel_410111490(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16104);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Connycc22day2recap
 * Action created: 2022-10-07 19:36:54
 */
function ct_trck_marvel_410111496(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16108);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Connycc22day3recap
 * Action created: 2022-10-09 07:36:20
 */
function ct_trck_marvel_410111498(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16110);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Connycc23panels
 * Action created: 2022-09-14 09:31:37
 */
function ct_trck_marvel_410111192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16035);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Consdccanimation
 * Action created: 2022-07-22 16:08:43
 */
function ct_trck_marvel_410110408(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Consdccday1recap
 * Action created: 2022-07-22 10:41:33
 */
function ct_trck_marvel_410110394(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15892);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Consdccday2recap
 * Action created: 2022-07-23 10:48:31
 */
function ct_trck_marvel_410110409(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Consdccday3recap
 * Action created: 2022-07-24 09:57:40
 */
function ct_trck_marvel_410110414(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15902);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Consdccday4recap
 * Action created: 2022-07-25 09:26:08
 */
function ct_trck_marvel_410110416(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15904);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Consdccunveil
 * Action created: 2022-07-19 16:46:14
 */
function ct_trck_marvel_410110354(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15885);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Consdccwatchlive
 * Action created: 2022-07-14 15:20:18
 */
function ct_trck_marvel_410110329(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15870);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generalcomicconspiderman
 * Action created: 2022-06-20 11:46:59
 */
function ct_trck_marvel_410109993(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15810);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generaldefenderssagaauction
 * Action created: 2022-12-15 12:54:07
 */
function ct_trck_marvel_410112412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16310);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generaldefenderssagaauctionbidd1673547522
 * Action created: 2023-01-12 13:18:42
 */
function ct_trck_marvel_410112742(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16378);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generallegomastersthanksgiving
 * Action created: 2022-11-22 16:38:14
 */
function ct_trck_marvel_410112134(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16245);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generalmarvelmissionhalloween
 * Action created: 2022-11-08 16:57:17
 */
function ct_trck_marvel_410111933(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16212);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generalmilb
 * Action created: 2022-10-07 10:18:08
 */
function ct_trck_marvel_410111492(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16105);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generalnyplspidermancard
 * Action created: 2022-10-04 09:53:54
 */
function ct_trck_marvel_410111465(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16094);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generalsdccpanel
 * Action created: 2022-07-08 12:59:37
 */
function ct_trck_marvel_410110266(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15859);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generalspidermanbeyondamazing
 * Action created: 2022-07-07 12:01:49
 */
function ct_trck_marvel_410110244(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15854);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generalstanleequips
 * Action created: 2022-12-21 15:38:14
 */
function ct_trck_marvel_410112569(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16324);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Generaltestkitchentortarecipe
 * Action created: 2022-08-09 13:12:11
 */
function ct_trck_marvel_410110695(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15940);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merch100%softpins
 * Action created: 2022-10-21 13:30:45
 */
function ct_trck_marvel_410111704(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16155);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Mercharizonasuperlxr
 * Action created: 2022-09-27 14:27:17
 */
function ct_trck_marvel_410111340(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16065);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchblackpantherlegacy
 * Action created: 2022-07-19 13:38:23
 */
function ct_trck_marvel_410110350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15883);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchblackpanthermmh
 * Action created: 2022-11-04 16:13:21
 */
function ct_trck_marvel_410111906(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16204);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchblackpanthershurimmh
 * Action created: 2022-11-21 16:55:37
 */
function ct_trck_marvel_410112084(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16241);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchchroniclemarvelmazes
 * Action created: 2022-10-04 15:36:31
 */
function ct_trck_marvel_410111473(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16099);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchd23
 * Action created: 2022-09-07 17:14:39
 */
function ct_trck_marvel_410111125(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16008);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchdcshoesdeadpool
 * Action created: 2022-11-01 12:28:35
 */
function ct_trck_marvel_410111833(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16192);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchebikogrootcollection
 * Action created: 2023-01-19 13:17:18
 */
function ct_trck_marvel_410112843(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16409);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Mercheternalsbook
 * Action created: 2022-08-09 14:42:54
 */
function ct_trck_marvel_410110702(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15942);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchfallmmh
 * Action created: 2022-09-29 13:15:43
 */
function ct_trck_marvel_410111420(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16084);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchfantastic460yearscomic
 * Action created: 2022-10-25 11:20:23
 */
function ct_trck_marvel_410111745(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16159);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchfantasticfourfullcircle
 * Action created: 2022-09-07 12:13:31
 */
function ct_trck_marvel_410111123(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16006);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchfootlockerdiadoraxmencolle1674147563
 * Action created: 2023-01-19 11:59:23
 */
function ct_trck_marvel_410112841(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16407);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchfunkoblacklight
 * Action created: 2022-07-25 15:54:19
 */
function ct_trck_marvel_410110429(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15908);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchfunkoguardians3
 * Action created: 2023-01-18 13:00:14
 */
function ct_trck_marvel_410112831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16406);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchfunkoloki
 * Action created: 2022-06-27 09:44:31
 */
function ct_trck_marvel_410110083(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15823);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchfunkosdcc
 * Action created: 2022-06-17 14:29:10
 */
function ct_trck_marvel_410109988(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15808);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchgrootmmh
 * Action created: 2022-08-12 13:49:41
 */
function ct_trck_marvel_410110747(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15954);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchguardiansholidayspecialfun1666725053
 * Action created: 2022-10-25 15:10:53
 */
function ct_trck_marvel_410111751(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16161);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchhgg2022coffeetablebooks
 * Action created: 2022-11-23 11:37:36
 */
function ct_trck_marvel_410112141(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16247);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchhgg2022cybermonday
 * Action created: 2022-11-28 15:49:12
 */
function ct_trck_marvel_410112189(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchhgg2022funkoloungefly
 * Action created: 2022-12-02 13:08:39
 */
function ct_trck_marvel_410112265(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchhgg2022hostfavorites
 * Action created: 2022-12-15 15:49:50
 */
function ct_trck_marvel_410112426(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16311);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchhgg2022spiderman
 * Action created: 2022-11-29 14:19:18
 */
function ct_trck_marvel_410112218(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16268);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchhgg2022stockxblackpanther
 * Action created: 2022-11-23 11:39:25
 */
function ct_trck_marvel_410112142(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16248);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchhgg2022tshirts
 * Action created: 2022-12-06 16:37:21
 */
function ct_trck_marvel_410112293(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16283);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchholidaygiftguide2022
 * Action created: 2022-11-21 16:50:41
 */
function ct_trck_marvel_410112083(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16240);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchinfinityrelics
 * Action created: 2022-09-14 14:20:02
 */
function ct_trck_marvel_410111198(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16036);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchlegoblackpantherbust
 * Action created: 2022-11-01 14:07:05
 */
function ct_trck_marvel_410111834(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16193);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchlegohulkbuster
 * Action created: 2022-11-09 17:58:34
 */
function ct_trck_marvel_410111954(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16215);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchlidshats
 * Action created: 2022-11-17 11:02:19
 */
function ct_trck_marvel_410112031(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16233);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchlokibook
 * Action created: 2022-11-22 16:40:18
 */
function ct_trck_marvel_410112135(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16246);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchmsmarvelmmhep4
 * Action created: 2022-07-01 12:51:12
 */
function ct_trck_marvel_410110162(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15834);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchmsmarvelmmhep5
 * Action created: 2022-07-07 12:11:29
 */
function ct_trck_marvel_410110250(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15855);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchmsmarvelmmhep6
 * Action created: 2022-07-15 13:03:30
 */
function ct_trck_marvel_410110337(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15872);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchmsmarvelreaderguide
 * Action created: 2022-07-08 14:23:44
 */
function ct_trck_marvel_410110272(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchoctober22
 * Action created: 2022-10-03 13:06:10
 */
function ct_trck_marvel_410111461(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16092);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchoracledeck
 * Action created: 2022-10-04 15:34:08
 */
function ct_trck_marvel_410111472(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchpenguinblackpanther
 * Action created: 2022-09-20 15:17:46
 */
function ct_trck_marvel_410111278(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16044);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchpenguincaptainamerica
 * Action created: 2022-09-27 13:53:48
 */
function ct_trck_marvel_410111332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16064);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchsecretreversemanga
 * Action created: 2022-06-22 09:37:42
 */
function ct_trck_marvel_410110025(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15815);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchselectsfunkopops
 * Action created: 2022-10-31 15:21:33
 */
function ct_trck_marvel_410111824(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16185);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchshehulkmmhep1
 * Action created: 2022-08-19 13:08:00
 */
function ct_trck_marvel_410110864(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15964);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchshehulkmmhep3
 * Action created: 2022-09-02 12:51:34
 */
function ct_trck_marvel_410111093(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15985);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchshehulkmmhep4
 * Action created: 2022-09-09 13:01:42
 */
function ct_trck_marvel_410111145(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16016);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchspidermanbeyondamazing
 * Action created: 2022-08-01 14:05:41
 */
function ct_trck_marvel_410110527(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15928);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchstockxmmh
 * Action created: 2022-07-25 16:43:03
 */
function ct_trck_marvel_410110433(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15910);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchtargetblackpanther
 * Action created: 2022-09-28 09:55:40
 */
function ct_trck_marvel_410111358(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16067);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchthormmh
 * Action created: 2022-07-08 15:25:37
 */
function ct_trck_marvel_410110283(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15861);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchtitanspiderman60yearsbook
 * Action created: 2022-12-22 11:31:01
 */
function ct_trck_marvel_410112579(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16325);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchtoyawards
 * Action created: 2022-09-21 15:21:54
 */
function ct_trck_marvel_410111283(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16047);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Merchwakandacookbook
 * Action created: 2022-12-05 16:20:11
 */
function ct_trck_marvel_410112284(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16282);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieantmannewtrailer
 * Action created: 2023-01-10 09:28:31
 */
function ct_trck_marvel_410112659(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16373);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieantmanticketsonsale
 * Action created: 2023-01-17 11:25:54
 */
function ct_trck_marvel_410112786(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16403);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieantmantrailer
 * Action created: 2022-10-24 12:42:07
 */
function ct_trck_marvel_410111736(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16158);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviearmorwarstheatricalrelease
 * Action created: 2022-09-30 09:29:32
 */
function ct_trck_marvel_410111439(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16086);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpanther2livestream
 * Action created: 2022-10-20 15:23:29
 */
function ct_trck_marvel_410111638(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16151);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpantherdisneyplus
 * Action created: 2023-01-04 12:44:21
 */
function ct_trck_marvel_410112631(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16367);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpanthernext
 * Action created: 2022-11-14 16:40:11
 */
function ct_trck_marvel_410112006(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16228);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpantherposters
 * Action created: 2022-10-11 12:14:00
 */
function ct_trck_marvel_410111515(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16114);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpantherrihanna
 * Action created: 2022-10-26 14:27:24
 */
function ct_trck_marvel_410111760(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16165);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpantherrihannamusicvi1666990586
 * Action created: 2022-10-28 16:56:26
 */
function ct_trck_marvel_410111805(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16182);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpantherriri
 * Action created: 2022-11-09 16:41:19
 */
function ct_trck_marvel_410111950(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16213);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpanthersoundtrack
 * Action created: 2022-11-02 14:54:43
 */
function ct_trck_marvel_410111861(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16196);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpanthersoundtracklist1667577070
 * Action created: 2022-11-04 11:51:10
 */
function ct_trck_marvel_410111901(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16203);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpanthertrailer
 * Action created: 2022-10-03 09:28:42
 */
function ct_trck_marvel_410111457(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16089);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieblackpantherwakandamovesfo1667860919
 * Action created: 2022-11-07 17:41:59
 */
function ct_trck_marvel_410111919(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16209);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviedeadpool3
 * Action created: 2022-09-27 18:02:41
 */
function ct_trck_marvel_410111346(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16066);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviedrstrangebts
 * Action created: 2022-09-02 12:40:47
 */
function ct_trck_marvel_410111092(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15984);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviedrstrangedarkhold
 * Action created: 2022-07-07 09:47:41
 */
function ct_trck_marvel_410110240(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15852);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviedrstrangedreamwalking
 * Action created: 2022-07-06 10:05:22
 */
function ct_trck_marvel_410110229(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15847);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieironmannationalfilmregistr1671040510
 * Action created: 2022-12-14 12:55:10
 */
function ct_trck_marvel_410112398(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16306);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviesblackpanthernamor
 * Action created: 2022-11-04 16:15:39
 */
function ct_trck_marvel_410111907(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16205);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviespidermannwhextendeddigita1666128629
 * Action created: 2022-10-18 17:30:29
 */
function ct_trck_marvel_410111597(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16144);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviespidermanreturntheater
 * Action created: 2022-08-23 11:04:45
 */
function ct_trck_marvel_410110895(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15968);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviespidermanspiderversetraile1670956221
 * Action created: 2022-12-13 13:30:21
 */
function ct_trck_marvel_410112377(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16305);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviesstanleecameos
 * Action created: 2022-12-21 12:49:27
 */
function ct_trck_marvel_410112558(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16322);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviethorassembled
 * Action created: 2022-09-08 15:40:53
 */
function ct_trck_marvel_410111135(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16012);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviethordisney+
 * Action created: 2022-08-22 09:41:28
 */
function ct_trck_marvel_410110872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15966);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviethorfeaturette
 * Action created: 2022-06-21 13:15:55
 */
function ct_trck_marvel_410110017(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15814);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviethorfeaturettelegacy
 * Action created: 2022-06-27 18:10:06
 */
function ct_trck_marvel_410110104(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15825);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Moviethorredcarpet
 * Action created: 2022-06-17 10:19:32
 */
function ct_trck_marvel_410109982(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15806);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Movieyir22mcu
 * Action created: 2022-12-28 12:28:28
 */
function ct_trck_marvel_410112600(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16344);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Parksachulk
 * Action created: 2022-09-22 14:45:12
 */
function ct_trck_marvel_410111295(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16050);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Parksacshangchi
 * Action created: 2022-06-17 14:34:30
 */
function ct_trck_marvel_410109989(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15809);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Parkscruisequantumencounter
 * Action created: 2022-06-29 12:40:36
 */
function ct_trck_marvel_410110120(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15827);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Parksdclblackpanther
 * Action created: 2022-11-30 11:27:06
 */
function ct_trck_marvel_410112234(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16270);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Parksdcldayatsea2023
 * Action created: 2022-11-03 10:36:23
 */
function ct_trck_marvel_410111869(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Parksdlpavengerspowerthenight
 * Action created: 2023-01-10 11:14:00
 */
function ct_trck_marvel_410112660(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16374);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Parksgotgholidayremix
 * Action created: 2022-11-22 13:56:55
 */
function ct_trck_marvel_410112131(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16244);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Parksmightythor
 * Action created: 2022-07-11 15:29:18
 */
function ct_trck_marvel_410110307(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15864);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Podcastblackpanther
 * Action created: 2022-11-01 10:47:28
 */
function ct_trck_marvel_410111832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16191);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Podcastblackpantherlistennow
 * Action created: 2022-11-04 11:44:16
 */
function ct_trck_marvel_410111900(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16202);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Podcastwakandaforevernewtrailer
 * Action created: 2023-01-04 14:07:31
 */
function ct_trck_marvel_410112635(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16368);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Podcastwastelandersdoom
 * Action created: 2022-09-12 13:09:00
 */
function ct_trck_marvel_410111162(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16032);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Podcastwomwinter2022
 * Action created: 2022-11-03 11:31:23
 */
function ct_trck_marvel_410111871(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16200);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvdisney+deadpool
 * Action created: 2022-07-21 20:06:41
 */
function ct_trck_marvel_410110392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15891);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvdisney+timeline
 * Action created: 2022-06-23 14:33:08
 */
function ct_trck_marvel_410110060(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvgotgholidaysoundtrack
 * Action created: 2022-12-08 14:46:15
 */
function ct_trck_marvel_410112333(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16288);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvgrootdisney+
 * Action created: 2022-08-10 13:51:37
 */
function ct_trck_marvel_410110723(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15947);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvgroottrailer
 * Action created: 2022-07-22 15:35:55
 */
function ct_trck_marvel_410110407(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15896);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvguardiansholidayspecialtraile1666724935
 * Action created: 2022-10-25 15:08:55
 */
function ct_trck_marvel_410111750(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16160);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvmoongirlcast
 * Action created: 2022-07-21 19:03:02
 */
function ct_trck_marvel_410110391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15889);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvmoongirlfebruary
 * Action created: 2022-09-12 09:50:22
 */
function ct_trck_marvel_410111154(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16025);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvmoongirlmusicvideo
 * Action created: 2022-11-14 12:29:57
 */
function ct_trck_marvel_410112000(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16226);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvmoongirlofficialtrailer
 * Action created: 2023-01-13 13:02:44
 */
function ct_trck_marvel_410112764(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16382);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvmoongirlsneakpeek
 * Action created: 2023-01-03 13:11:12
 */
function ct_trck_marvel_410112618(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16364);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvmsmarvelbtsphotos
 * Action created: 2022-07-19 13:38:55
 */
function ct_trck_marvel_410110346(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15884);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvmsmarveldna
 * Action created: 2022-07-13 10:02:17
 */
function ct_trck_marvel_410110316(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15867);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvmsmarvelwomsana
 * Action created: 2022-06-30 15:29:18
 */
function ct_trck_marvel_410110154(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15832);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvsecretinvasion
 * Action created: 2022-09-10 15:05:14
 */
function ct_trck_marvel_410111152(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16023);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvshehulkdaredevilreturn
 * Action created: 2022-10-19 14:39:53
 */
function ct_trck_marvel_410111613(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16146);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvshehulkposters
 * Action created: 2022-08-11 12:25:22
 */
function ct_trck_marvel_410110740(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15949);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvshehulkthursdays
 * Action created: 2022-08-03 13:18:44
 */
function ct_trck_marvel_410110551(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15932);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvstanleedocumentary
 * Action created: 2022-12-28 13:14:20
 */
function ct_trck_marvel_410112602(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16346);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvwerewolfbynight
 * Action created: 2022-09-10 14:57:51
 */
function ct_trck_marvel_410111151(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16022);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvwerewolfbynightdarkmcu
 * Action created: 2022-10-12 13:19:27
 */
function ct_trck_marvel_410111537(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvwerewolfbynightdisney+
 * Action created: 2022-10-07 15:17:25
 */
function ct_trck_marvel_410111494(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16107);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvwerewolfbynightfeaturette
 * Action created: 2022-09-30 15:46:50
 */
function ct_trck_marvel_410111454(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16088);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvxmen97
 * Action created: 2022-10-31 15:33:07
 */
function ct_trck_marvel_410111827(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16188);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvxmentastopmoments
 * Action created: 2022-10-31 15:30:45
 */
function ct_trck_marvel_410111826(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16187);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Article - Tvyir22disneyplus
 * Action created: 2022-12-28 12:31:41
 */
function ct_trck_marvel_410112601(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16345);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Cond23marvelminute
 * Action created: 2022-09-13 09:32:33
 */
function ct_trck_marvel_410111173(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16033);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Cond23stars
 * Action created: 2022-09-12 10:25:20
 */
function ct_trck_marvel_410111157(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16028);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Cond23studiosannouncements
 * Action created: 2022-09-12 10:18:21
 */
function ct_trck_marvel_410111155(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16026);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Cond23studiospavilion
 * Action created: 2022-09-09 13:35:40
 */
function ct_trck_marvel_410111146(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Connycc22bestof
 * Action created: 2022-10-24 11:19:49
 */
function ct_trck_marvel_410111503(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Connycc22day4recap
 * Action created: 2022-10-10 09:34:43
 */
function ct_trck_marvel_410111502(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16111);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Consdccanimation
 * Action created: 2022-07-23 10:51:47
 */
function ct_trck_marvel_410110411(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15900);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Consdccday1best
 * Action created: 2022-07-22 10:45:23
 */
function ct_trck_marvel_410110395(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15893);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Consdccday2best
 * Action created: 2022-07-23 10:49:58
 */
function ct_trck_marvel_410110410(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15899);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Consdccday3best
 * Action created: 2022-07-24 09:58:49
 */
function ct_trck_marvel_410110415(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15903);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Consdccday4best
 * Action created: 2022-07-25 09:31:52
 */
function ct_trck_marvel_410110417(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15905);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Consdccmarvelbooth
 * Action created: 2022-07-22 10:56:00
 */
function ct_trck_marvel_410110396(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15894);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Consdccstudioshallh
 * Action created: 2022-07-25 16:04:16
 */
function ct_trck_marvel_410110413(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15909);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Conspideyccimuseum
 * Action created: 2022-07-21 20:06:16
 */
function ct_trck_marvel_410110393(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15890);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Generalbeyondamazingexhibition
 * Action created: 2022-10-05 13:39:13
 */
function ct_trck_marvel_410111485(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16101);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Generallongstoryshortsecretinvasi1670537525
 * Action created: 2022-12-08 17:12:05
 */
function ct_trck_marvel_410112335(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16290);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Generalmarvelminutenycc22
 * Action created: 2022-10-03 13:03:34
 */
function ct_trck_marvel_410111460(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16091);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Generalspidermansensational
 * Action created: 2022-08-24 09:29:47
 */
function ct_trck_marvel_410110923(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15971);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Generaltop7pymheroes
 * Action created: 2023-01-19 13:42:03
 */
function ct_trck_marvel_410112844(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16410);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Merchjadavehicles
 * Action created: 2023-01-12 13:21:34
 */
function ct_trck_marvel_410112743(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16379);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieantmanmarvelminute
 * Action created: 2023-01-17 16:16:22
 */
function ct_trck_marvel_410112822(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16404);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieblackpantherredcarpetbeachle1666881187
 * Action created: 2022-10-27 10:33:07
 */
function ct_trck_marvel_410111779(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16174);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieblackpantherredcarpetbest
 * Action created: 2022-10-27 10:20:17
 */
function ct_trck_marvel_410111774(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16169);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieblackpantherredcarpetcoel
 * Action created: 2022-10-27 10:30:49
 */
function ct_trck_marvel_410111778(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16173);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieblackpantherredcarpetcoogler
 * Action created: 2022-10-27 10:25:40
 */
function ct_trck_marvel_410111776(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16171);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieblackpantherredcarpetduke
 * Action created: 2022-10-27 10:27:17
 */
function ct_trck_marvel_410111777(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16172);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieblackpantherredcarpetfeige
 * Action created: 2022-10-27 10:22:40
 */
function ct_trck_marvel_410111775(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16170);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieblackpantherredcarpetguriraa1666881457
 * Action created: 2022-10-27 10:37:37
 */
function ct_trck_marvel_410111781(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16176);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Movieblackpantherredcarpetthorne
 * Action created: 2022-10-27 10:35:09
 */
function ct_trck_marvel_410111780(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16175);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviedrstrangevisdev
 * Action created: 2022-06-27 10:22:02
 */
function ct_trck_marvel_410110084(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15824);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviedrstrangevisdevwanda
 * Action created: 2022-06-29 13:40:20
 */
function ct_trck_marvel_410110122(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15829);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviesblackpanthermarvelminute
 * Action created: 2022-11-07 13:04:41
 */
function ct_trck_marvel_410111917(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16208);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviesblackpanthernamorwarriors
 * Action created: 2022-12-21 15:36:21
 */
function ct_trck_marvel_410112568(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16323);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethor101
 * Action created: 2022-07-05 10:58:47
 */
function ct_trck_marvel_410110221(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15843);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethor101gorr
 * Action created: 2022-07-07 15:06:20
 */
function ct_trck_marvel_410110255(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15856);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethor101mightythor
 * Action created: 2022-07-05 15:10:16
 */
function ct_trck_marvel_410110224(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15845);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethor101valkyrie
 * Action created: 2022-07-07 09:50:39
 */
function ct_trck_marvel_410110241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15853);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethorcast
 * Action created: 2022-07-08 11:00:35
 */
function ct_trck_marvel_410110263(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethorgoatsvfx
 * Action created: 2022-08-03 15:41:27
 */
function ct_trck_marvel_410110556(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15935);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethorredcarpetbest
 * Action created: 2022-06-24 09:31:33
 */
function ct_trck_marvel_410110071(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethorredcarpetfeige
 * Action created: 2022-06-24 09:37:35
 */
function ct_trck_marvel_410110075(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15821);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethorredcarpethemsworth
 * Action created: 2022-06-24 09:33:40
 */
function ct_trck_marvel_410110073(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15819);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Moviethorredcarpetportman
 * Action created: 2022-06-24 09:35:42
 */
function ct_trck_marvel_410110074(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Parksacd23
 * Action created: 2022-09-12 10:22:30
 */
function ct_trck_marvel_410111156(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16027);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Podcastwastelanderstrailer
 * Action created: 2022-12-05 11:53:28
 */
function ct_trck_marvel_410112282(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16280);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Tvgotgholidaymarvelminute
 * Action created: 2022-12-05 13:56:11
 */
function ct_trck_marvel_410112283(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16281);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Tvmsmarveldesign
 * Action created: 2022-08-04 14:24:54
 */
function ct_trck_marvel_410110571(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15936);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Tvshehulkaskmarvel
 * Action created: 2022-08-31 13:37:34
 */
function ct_trck_marvel_410111061(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15979);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:  Video - Tvshehulkredcarpetbest
 * Action created: 2022-08-18 17:00:47
 */
function ct_trck_marvel_410110843(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15960);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: 2018-giftguide
 * Action created: 2018-11-20 12:56:06
 */
function ct_trck_marvel_410065796(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4532);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 10takeawaysfromblackwidowtrailer
 * Action created: 2019-12-05 00:00:00
 */
function ct_trck_marvel_410085360(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10621);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 10thingswandavision
 * Action created: 2021-01-11 00:00:00
 */
function ct_trck_marvel_410098270(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13362);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 10yearsofblackwidow
 * Action created: 2020-01-14 00:00:00
 */
function ct_trck_marvel_410086926(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10802);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 2020debutfortheeternals
 * Action created: 2020-01-16 00:00:00
 */
function ct_trck_marvel_410086980(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10808);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 2020giftguide
 * Action created: 2020-11-18 00:00:00
 */
function ct_trck_marvel_410097405(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12397);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 2020holidaygiftguide
 * Action created: 2020-12-02 00:00:00
 */
function ct_trck_marvel_410097648(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 2020visionshirts
 * Action created: 2020-01-10 00:00:00
 */
function ct_trck_marvel_410086885(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10780);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 2020webbyawards
 * Action created: 2020-04-30 00:00:00
 */
function ct_trck_marvel_410090003(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11385);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 2021webbyawardsnomination
 * Action created: 2021-04-20 00:00:00
 */
function ct_trck_marvel_410101324(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14528);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 2021webbyawardswins
 * Action created: 2021-05-18 00:00:00
 */
function ct_trck_marvel_410101959(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14594);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 3 Years Of Mpq
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050924(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1251);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 3000tour
 * Action created: 2019-07-24 00:00:00
 */
function ct_trck_marvel_410079349(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 616amazingartisans
 * Action created: 2020-12-07 00:00:00
 */
function ct_trck_marvel_410097736(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 616danslott
 * Action created: 2020-12-22 00:00:00
 */
function ct_trck_marvel_410098003(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 616directors
 * Action created: 2019-10-22 00:00:00
 */
function ct_trck_marvel_410084591(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10398);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 616trailer
 * Action created: 2020-09-29 00:00:00
 */
function ct_trck_marvel_410092802(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 616watchalongwithpaulscheer
 * Action created: 2020-11-24 00:00:00
 */
function ct_trck_marvel_410097478(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12481);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - 616womcomics
 * Action created: 2020-12-04 00:00:00
 */
function ct_trck_marvel_410097714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - A4digital
 * Action created: 2019-06-26 00:00:00
 */
function ct_trck_marvel_410077769(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8317);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - A4digitalrelease
 * Action created: 2019-08-01 00:00:00
 */
function ct_trck_marvel_410079788(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - A4rerelease
 * Action created: 2019-06-25 00:00:00
 */
function ct_trck_marvel_410077745(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8260);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - A4spotmoments
 * Action created: 2019-04-03 00:00:00
 */
function ct_trck_marvel_410072331(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Aconytebooks
 * Action created: 2020-07-28 00:00:00
 */
function ct_trck_marvel_410091866(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11747);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Aconytespring2022
 * Action created: 2021-11-03 00:00:00
 */
function ct_trck_marvel_410105474(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15065);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Addiasdon
 * Action created: 2020-08-05 00:00:00
 */
function ct_trck_marvel_410092093(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11782);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Adidasmarvelsoccercleats
 * Action created: 2021-04-15 00:00:00
 */
function ct_trck_marvel_410101289(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14514);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Agathaharknessthemesong
 * Action created: 2021-02-24 00:00:00
 */
function ct_trck_marvel_410099630(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13980);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Agentsofshieldseason7firstlook
 * Action created: 2019-12-26 00:00:00
 */
function ct_trck_marvel_410086696(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10703);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Antmanwaspbtsphotos
 * Action created: 2020-08-18 00:00:00
 */
function ct_trck_marvel_410092222(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11822);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Antmanwaspdisneyplus
 * Action created: 2020-07-01 00:00:00
 */
function ct_trck_marvel_410091035(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11624);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Askansweredjessdurham
 * Action created: 2021-04-23 00:00:00
 */
function ct_trck_marvel_410101362(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14536);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Askansweredkristenandersonlopez
 * Action created: 2021-03-12 00:00:00
 */
function ct_trck_marvel_410100695(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14222);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Askedandansweredtinihoward
 * Action created: 2021-05-07 00:00:00
 */
function ct_trck_marvel_410101531(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14566);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Askedandansweredwandavision
 * Action created: 2021-01-19 00:00:00
 */
function ct_trck_marvel_410098390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13461);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Askwomsophiecampbell
 * Action created: 2021-04-09 00:00:00
 */
function ct_trck_marvel_410101115(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14500);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Assembledannouncement
 * Action created: 2021-02-16 00:00:00
 */
function ct_trck_marvel_410099289(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13840);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengerscampuscostumes
 * Action created: 2021-05-06 00:00:00
 */
function ct_trck_marvel_410101525(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14565);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengerscampusjuly18
 * Action created: 2020-03-11 00:00:00
 */
function ct_trck_marvel_410088031(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11128);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengerscampusmerch
 * Action created: 2020-03-11 00:00:00
 */
function ct_trck_marvel_410088032(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11129);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengerscampusunveiled
 * Action created: 2019-08-23 00:00:00
 */
function ct_trck_marvel_410081628(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengersendgamesag
 * Action created: 2020-01-21 00:00:00
 */
function ct_trck_marvel_410087074(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengersfeaturettechrisevans
 * Action created: 2019-03-26 00:00:00
 */
function ct_trck_marvel_410071453(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6583);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengersmeetshakespeare
 * Action created: 2021-03-23 00:00:00
 */
function ct_trck_marvel_410100869(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14381);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengerspinball
 * Action created: 2020-09-02 00:00:00
 */
function ct_trck_marvel_410092414(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11901);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Avengethefallenposters
 * Action created: 2019-03-26 00:00:00
 */
function ct_trck_marvel_410071450(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6582);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Babygrootmissionrecap
 * Action created: 2020-07-01 00:00:00
 */
function ct_trck_marvel_410091039(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11626);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Battleroyale2020
 * Action created: 2020-05-04 00:00:00
 */
function ct_trck_marvel_410090160(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11418);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Battleroyale2020finale
 * Action created: 2020-05-26 00:00:00
 */
function ct_trck_marvel_410090359(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Battleroyale2020winner
 * Action created: 2020-05-28 00:00:00
 */
function ct_trck_marvel_410090395(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11506);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Behindthemaskdisney+
 * Action created: 2021-01-19 00:00:00
 */
function ct_trck_marvel_410098395(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13463);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Bewardtheflerken
 * Action created: 2020-07-02 00:00:00
 */
function ct_trck_marvel_410091052(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11630);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackpanther2
 * Action created: 2020-12-10 00:00:00
 */
function ct_trck_marvel_410097818(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12804);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackpanthergrammy
 * Action created: 2019-02-12 00:00:00
 */
function ct_trck_marvel_410069389(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackwidowbiggamespot
 * Action created: 2020-02-02 00:00:00
 */
function ct_trck_marvel_410087248(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackwidowebook
 * Action created: 2020-05-18 00:00:00
 */
function ct_trck_marvel_410090292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackwidowfinaltrailer
 * Action created: 2020-03-09 00:00:00
 */
function ct_trck_marvel_410087992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackwidowlegendsfigures
 * Action created: 2020-01-23 00:00:00
 */
function ct_trck_marvel_410087117(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10823);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackwidowmay21
 * Action created: 2020-09-23 00:00:00
 */
function ct_trck_marvel_410092740(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12023);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackwidownewdate
 * Action created: 2020-04-03 00:00:00
 */
function ct_trck_marvel_410089459(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackwidownowinjuly
 * Action created: 2021-03-23 00:00:00
 */
function ct_trck_marvel_410100875(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14382);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Blackwidowspeciallook
 * Action created: 2021-06-03 00:00:00
 */
function ct_trck_marvel_410102123(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14643);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Bookofthevishantithisfall
 * Action created: 2021-03-23 00:00:00
 */
function ct_trck_marvel_410100868(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14380);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Briancrosby
 * Action created: 2020-04-08 00:00:00
 */
function ct_trck_marvel_410089682(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11292);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Bringingshangchitothebigscreen
 * Action created: 2021-04-20 00:00:00
 */
function ct_trck_marvel_410101321(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Bruteforce616
 * Action created: 2020-12-24 00:00:00
 */
function ct_trck_marvel_410098024(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13158);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Btsspidermanattraction
 * Action created: 2020-03-11 00:00:00
 */
function ct_trck_marvel_410088030(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11127);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Btswandavision
 * Action created: 2021-01-15 00:00:00
 */
function ct_trck_marvel_410098350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13440);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Buybookgivebook
 * Action created: 2021-05-20 00:00:00
 */
function ct_trck_marvel_410101988(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14600);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - C2e2merch
 * Action created: 2020-02-25 00:00:00
 */
function ct_trck_marvel_410087684(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11041);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - C2e2panels2020
 * Action created: 2020-01-22 00:00:00
 */
function ct_trck_marvel_410087096(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10821);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - C2e2schedule
 * Action created: 2020-02-26 00:00:00
 */
function ct_trck_marvel_410087716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11059);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Caplooksmcu
 * Action created: 2020-07-22 00:00:00
 */
function ct_trck_marvel_410091763(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11705);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Captop10costumes
 * Action created: 2020-07-06 00:00:00
 */
function ct_trck_marvel_410091091(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11639);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Catchupwithwandamaximoff
 * Action created: 2021-01-12 00:00:00
 */
function ct_trck_marvel_410098292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13382);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Celebratingstanleespecial
 * Action created: 2019-12-04 00:00:00
 */
function ct_trck_marvel_410085338(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10602);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Celebratingwompodcast
 * Action created: 2020-03-09 00:00:00
 */
function ct_trck_marvel_410088001(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11120);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Chloezhaoeternals
 * Action created: 2021-04-28 00:00:00
 */
function ct_trck_marvel_410101419(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14547);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Civilregimespiderverse
 * Action created: 2024-11-25 09:39:24
 */
function ct_trck_marvel_410134012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20334);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Claremontmarvelmadereveal
 * Action created: 2020-10-27 00:00:00
 */
function ct_trck_marvel_410096993(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12225);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Cloakanddaggers2firstlook
 * Action created: 2019-02-19 00:00:00
 */
function ct_trck_marvel_410069869(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Cloakanddaggers2premieredate
 * Action created: 2019-02-05 00:00:00
 */
function ct_trck_marvel_410069193(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Conbestof23
 * Action created: 2023-07-25 09:18:37
 */
function ct_trck_marvel_410115401(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16915);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Conboothtour
 * Action created: 2023-07-20 17:20:40
 */
function ct_trck_marvel_410115376(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16905);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Conc2e223schedule
 * Action created: 2023-03-28 14:27:49
 */
function ct_trck_marvel_410113822(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16599);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Conmarvellive23
 * Action created: 2023-07-20 10:01:02
 */
function ct_trck_marvel_410115358(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16903);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Conmegacon23schedule
 * Action created: 2023-03-29 12:38:04
 */
function ct_trck_marvel_410113828(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16602);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Connycc2023
 * Action created: 2023-09-29 15:54:12
 */
function ct_trck_marvel_410116138(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Connycc2024news
 * Action created: 2024-10-21 10:36:01
 */
function ct_trck_marvel_410130934(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19634);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Connycc2024schedule
 * Action created: 2024-09-18 10:37:03
 */
function ct_trck_marvel_410127552(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19054);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Connycc2024spideycosplay
 * Action created: 2024-10-24 09:36:06
 */
function ct_trck_marvel_410131372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19714);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Connycc23day1
 * Action created: 2023-10-13 10:00:53
 */
function ct_trck_marvel_410116253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17068);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Connycc23panel
 * Action created: 2023-09-07 12:33:55
 */
function ct_trck_marvel_410115858(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17007);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Connycc24boothschedule
 * Action created: 2024-10-15 13:25:58
 */
function ct_trck_marvel_410130254(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19554);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdcc2023
 * Action created: 2023-07-14 16:00:01
 */
function ct_trck_marvel_410115285(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16866);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdcc2023panels
 * Action created: 2023-07-03 16:43:20
 */
function ct_trck_marvel_410115207(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16847);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdcc2024booth
 * Action created: 2024-07-25 10:51:14
 */
function ct_trck_marvel_410122692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18139);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdcc23cosplay
 * Action created: 2023-07-22 11:02:11
 */
function ct_trck_marvel_410115389(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16910);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdcc23day1
 * Action created: 2023-07-21 11:29:43
 */
function ct_trck_marvel_410115386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16907);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdcc23day2
 * Action created: 2023-07-22 10:55:50
 */
function ct_trck_marvel_410115388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16909);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdcc23day3
 * Action created: 2023-07-23 11:42:30
 */
function ct_trck_marvel_410115390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16911);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdcc24blindal
 * Action created: 2024-07-19 15:04:02
 */
function ct_trck_marvel_410122653(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18135);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Consdccheruniverse
 * Action created: 2022-08-01 16:12:30
 */
function ct_trck_marvel_410110528(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15929);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Conversationhearts
 * Action created: 2019-02-11 00:00:00
 */
function ct_trck_marvel_410069376(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5778);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Cookingwithdeadpool
 * Action created: 2020-11-20 00:00:00
 */
function ct_trck_marvel_410097433(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - D+mcusnacks
 * Action created: 2020-12-09 00:00:00
 */
function ct_trck_marvel_410097775(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12762);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - D23brazilrecap
 * Action created: 2024-11-12 13:45:10
 */
function ct_trck_marvel_410133033(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20075);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - D23expo2019
 * Action created: 2019-07-24 00:00:00
 */
function ct_trck_marvel_410079348(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - D23fantasticworldscelebration
 * Action created: 2020-11-09 00:00:00
 */
function ct_trck_marvel_410097245(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - D23recap
 * Action created: 2019-08-26 00:00:00
 */
function ct_trck_marvel_410081731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9398);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Daisyjohnsonidentities
 * Action created: 2020-08-21 00:00:00
 */
function ct_trck_marvel_410092254(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11833);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Damagecontrol7
 * Action created: 2019-10-18 00:00:00
 */
function ct_trck_marvel_410084238(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10359);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Deadpoolhead
 * Action created: 2020-06-24 00:00:00
 */
function ct_trck_marvel_410090897(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11600);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Deadpoolvalentines21
 * Action created: 2021-02-08 00:00:00
 */
function ct_trck_marvel_410099135(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13742);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Debrajoruppwandavision
 * Action created: 2021-01-22 00:00:00
 */
function ct_trck_marvel_410098714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13521);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Declassifiedonsiriusxm
 * Action created: 2020-12-08 00:00:00
 */
function ct_trck_marvel_410097759(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Diamondtoystaskmaster
 * Action created: 2020-06-22 00:00:00
 */
function ct_trck_marvel_410090862(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Didjaknowauntmaydocock
 * Action created: 2020-06-03 00:00:00
 */
function ct_trck_marvel_410090440(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11518);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Disneyhotelnewyorkopening
 * Action created: 2021-05-17 00:00:00
 */
function ct_trck_marvel_410101604(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14585);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Disneylandafterdark
 * Action created: 2019-03-07 00:00:00
 */
function ct_trck_marvel_410070448(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Disneymovieinsiders
 * Action created: 2019-09-05 00:00:00
 */
function ct_trck_marvel_410082449(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Disneyplusmay
 * Action created: 2020-05-01 00:00:00
 */
function ct_trck_marvel_410090033(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11398);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Dousie
 * Action created: 2020-07-24 00:00:00
 */
function ct_trck_marvel_410091788(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11720);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Dragonconcosplay
 * Action created: 2019-09-11 00:00:00
 */
function ct_trck_marvel_410082641(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9739);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawblackwidow
 * Action created: 2020-05-06 00:00:00
 */
function ct_trck_marvel_410090185(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11422);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawcaptainamerica
 * Action created: 2020-03-30 00:00:00
 */
function ct_trck_marvel_410089388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawcaptainamericawillsilney
 * Action created: 2020-05-19 00:00:00
 */
function ct_trck_marvel_410090307(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11481);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawcaptainmarvel
 * Action created: 2020-04-28 00:00:00
 */
function ct_trck_marvel_410089982(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11380);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawcyclops
 * Action created: 2020-04-21 00:00:00
 */
function ct_trck_marvel_410089878(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11348);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawdeadpool
 * Action created: 2020-04-14 00:00:00
 */
function ct_trck_marvel_410089766(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11319);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawironman
 * Action created: 2020-05-12 00:00:00
 */
function ct_trck_marvel_410090241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawspiderman
 * Action created: 2020-03-27 00:00:00
 */
function ct_trck_marvel_410089369(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11236);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drawwolverine
 * Action created: 2020-04-08 00:00:00
 */
function ct_trck_marvel_410089680(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11291);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drstrange2
 * Action created: 2020-12-10 00:00:00
 */
function ct_trck_marvel_410097816(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12802);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Drstrangethorreleasedates
 * Action created: 2020-04-27 00:00:00
 */
function ct_trck_marvel_410089973(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Eattheuniboxlunch
 * Action created: 2020-07-20 00:00:00
 */
function ct_trck_marvel_410091750(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Eattheuniversebook
 * Action created: 2020-03-05 00:00:00
 */
function ct_trck_marvel_410087953(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11086);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Echochoctawfeaturette
 * Action created: 2024-01-03 16:28:05
 */
function ct_trck_marvel_410117103(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17245);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Echowilsonfiskreturns
 * Action created: 2024-01-10 09:31:58
 */
function ct_trck_marvel_410117164(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17252);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Elizabethhenstridgedirects
 * Action created: 2020-07-20 00:00:00
 */
function ct_trck_marvel_410091752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Emmafrosttutorial
 * Action created: 2020-10-20 00:00:00
 */
function ct_trck_marvel_410096724(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12201);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Endgamegetsbaftavesnoms
 * Action created: 2020-01-07 00:00:00
 */
function ct_trck_marvel_410086819(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10761);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Endgamehasbro
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072273(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Endgamenominatedforcriticschoice
 * Action created: 2019-12-09 00:00:00
 */
function ct_trck_marvel_410085389(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Endgameondisney+
 * Action created: 2019-11-06 00:00:00
 */
function ct_trck_marvel_410085055(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10485);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Endgametickets
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072275(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6759);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Espnmarvelarenaofheroes
 * Action created: 2021-04-23 00:00:00
 */
function ct_trck_marvel_410101367(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Eternalsarlandingpage
 * Action created: 2021-10-26 00:00:00
 */
function ct_trck_marvel_410105308(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15022);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Eternalsposter
 * Action created: 2021-05-24 00:00:00
 */
function ct_trck_marvel_410102025(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14609);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Eternalsteaser
 * Action created: 2021-05-24 00:00:00
 */
function ct_trck_marvel_410102024(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14608);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Etucookbook
 * Action created: 2020-07-28 00:00:00
 */
function ct_trck_marvel_410091867(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11748);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Evansruddvariety
 * Action created: 2020-06-26 00:00:00
 */
function ct_trck_marvel_410090935(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11609);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Everythingforrunawaysseason3
 * Action created: 2019-12-12 00:00:00
 */
function ct_trck_marvel_410085548(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10656);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Ewcoverscarjo
 * Action created: 2020-03-10 00:00:00
 */
function ct_trck_marvel_410088019(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11122);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Ewwandavision
 * Action created: 2020-11-10 00:00:00
 */
function ct_trck_marvel_410097252(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12300);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Exclusivea4posters
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072289(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6778);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Extinctionkey
 * Action created: 2020-09-15 00:00:00
 */
function ct_trck_marvel_410092653(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11980);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Falconandwandadates
 * Action created: 2020-02-07 00:00:00
 */
function ct_trck_marvel_410087414(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Falconwintersoldersuperbowltrail1612743078
 * Action created: 2021-02-07 00:00:00
 */
function ct_trck_marvel_410099108(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13720);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Falconwintersoldier
 * Action created: 2020-12-10 00:00:00
 */
function ct_trck_marvel_410097812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12799);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Falconwintersoldiercharacterpost1615221607
 * Action created: 2021-03-08 00:00:00
 */
function ct_trck_marvel_410099851(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14142);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Falconwintersoldierstarts
 * Action created: 2019-11-04 00:00:00
 */
function ct_trck_marvel_410085035(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10481);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Falconxbox
 * Action created: 2021-03-18 00:00:00
 */
function ct_trck_marvel_410100794(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14301);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fansreacttorunawaysseason3
 * Action created: 2019-12-27 00:00:00
 */
function ct_trck_marvel_410086705(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10707);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Farfromhomestandout
 * Action created: 2019-01-15 00:00:00
 */
function ct_trck_marvel_410068009(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5380);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Favoritesfromep4
 * Action created: 2021-02-01 00:00:00
 */
function ct_trck_marvel_410099015(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13621);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawscostarslove
 * Action created: 2021-05-03 00:00:00
 */
function ct_trck_marvel_410101472(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14556);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsendcredittrack
 * Action created: 2021-03-26 00:00:00
 */
function ct_trck_marvel_410100940(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14420);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsintel1
 * Action created: 2021-03-22 00:00:00
 */
function ct_trck_marvel_410100830(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14362);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsintel2
 * Action created: 2021-03-29 00:00:00
 */
function ct_trck_marvel_410100990(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14441);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsintel3
 * Action created: 2021-04-05 00:00:00
 */
function ct_trck_marvel_410101077(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14488);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsintel4
 * Action created: 2021-04-12 00:00:00
 */
function ct_trck_marvel_410101240(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14504);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsintel5
 * Action created: 2021-04-19 00:00:00
 */
function ct_trck_marvel_410101308(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14519);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsintel6
 * Action created: 2021-04-26 00:00:00
 */
function ct_trck_marvel_410101387(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14541);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsmadripoor
 * Action created: 2021-04-07 00:00:00
 */
function ct_trck_marvel_410101100(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14495);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawspressconference
 * Action created: 2021-03-17 00:00:00
 */
function ct_trck_marvel_410100768(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14280);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsprimerbuckybarnes
 * Action created: 2021-03-12 00:00:00
 */
function ct_trck_marvel_410100698(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14224);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fawsstarsonstunts
 * Action created: 2021-05-04 00:00:00
 */
function ct_trck_marvel_410101485(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Ffhdigital
 * Action created: 2019-10-02 00:00:00
 */
function ct_trck_marvel_410083471(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10060);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Ffhposters
 * Action created: 2019-03-25 00:00:00
 */
function ct_trck_marvel_410071419(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Fitzsimmonsromance
 * Action created: 2020-08-13 00:00:00
 */
function ct_trck_marvel_410092182(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11813);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Foodbevsatavengerscampus
 * Action created: 2020-03-11 00:00:00
 */
function ct_trck_marvel_410088029(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11126);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Franklininstituteexhibition
 * Action created: 2019-04-17 00:00:00
 */
function ct_trck_marvel_410073028(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Freecomicbooks
 * Action created: 2020-04-02 00:00:00
 */
function ct_trck_marvel_410089439(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Funkoshollywoodstore
 * Action created: 2019-11-19 00:00:00
 */
function ct_trck_marvel_410085181(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10540);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Funkovirtualcon2021
 * Action created: 2021-03-04 00:00:00
 */
function ct_trck_marvel_410099789(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14100);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Futureavengers
 * Action created: 2020-02-25 00:00:00
 */
function ct_trck_marvel_410087687(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11043);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Futureavengersdisney+
 * Action created: 2020-02-28 00:00:00
 */
function ct_trck_marvel_410087749(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11067);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Gamerversecollection
 * Action created: 2020-09-03 00:00:00
 */
function ct_trck_marvel_410092431(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11908);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Gearadidasstark
 * Action created: 2021-04-08 00:00:00
 */
function ct_trck_marvel_410101107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - General2022webbynoms
 * Action created: 2022-04-07 10:49:00
 */
function ct_trck_marvel_410108825(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15644);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - General2022webbywins
 * Action created: 2022-04-26 14:48:48
 */
function ct_trck_marvel_410109096(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15687);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Generalavengers60celebration
 * Action created: 2023-02-09 15:27:45
 */
function ct_trck_marvel_410113231(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16484);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Generald23hellfiregala
 * Action created: 2023-05-23 09:43:20
 */
function ct_trck_marvel_410114702(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Generalfavreauhollywoodstar
 * Action created: 2023-02-14 11:46:21
 */
function ct_trck_marvel_410113264(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16493);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Generalmarvelmovelaunch
 * Action created: 2023-08-30 10:32:13
 */
function ct_trck_marvel_410115789(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16971);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Generalmhqappavailable
 * Action created: 2023-05-18 10:18:40
 */
function ct_trck_marvel_410114643(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16742);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Generalmhqmechasaurs
 * Action created: 2023-03-08 12:18:00
 */
function ct_trck_marvel_410113646(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16550);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Generalnflcrossover
 * Action created: 2023-08-07 09:31:45
 */
function ct_trck_marvel_410115531(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16935);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Generalspideyexhibit
 * Action created: 2022-04-04 09:27:34
 */
function ct_trck_marvel_410108775(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15634);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Ghostridermakeup
 * Action created: 2020-10-13 00:00:00
 */
function ct_trck_marvel_410096303(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12161);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Goodbyemaos
 * Action created: 2020-08-11 00:00:00
 */
function ct_trck_marvel_410092152(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11803);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Googlesearch2019
 * Action created: 2019-12-20 00:00:00
 */
function ct_trck_marvel_410085780(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10692);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Gotgcosmicrewind
 * Action created: 2019-09-16 00:00:00
 */
function ct_trck_marvel_410082832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9819);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Gotgcosmicrewind2
 * Action created: 2020-11-20 00:00:00
 */
function ct_trck_marvel_410097432(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Gotgnewmix
 * Action created: 2020-04-21 00:00:00
 */
function ct_trck_marvel_410089863(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11343);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Grootholidaygiftguide
 * Action created: 2020-12-15 00:00:00
 */
function ct_trck_marvel_410097880(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12903);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Helstromcast
 * Action created: 2019-10-09 00:00:00
 */
function ct_trck_marvel_410083739(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Helstromghostridertv
 * Action created: 2019-05-01 00:00:00
 */
function ct_trck_marvel_410074048(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Herozodiacforlunarnewyear
 * Action created: 2020-01-24 00:00:00
 */
function ct_trck_marvel_410087139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10831);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Holidaygiftguidegenerationheroes
 * Action created: 2019-11-22 00:00:00
 */
function ct_trck_marvel_410085220(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Holidayvideocallbackgrounds
 * Action created: 2020-12-09 00:00:00
 */
function ct_trck_marvel_410097774(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12763);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Howmarvelstudioscreatedthemcu
 * Action created: 2021-05-17 00:00:00
 */
function ct_trck_marvel_410101613(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14589);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Howtodrawlivestream
 * Action created: 2020-09-25 00:00:00
 */
function ct_trck_marvel_410092768(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Hulkhandshistory
 * Action created: 2020-09-22 00:00:00
 */
function ct_trck_marvel_410092721(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Hulkhotwheels
 * Action created: 2020-07-16 00:00:00
 */
function ct_trck_marvel_410091722(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11687);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Iconiccomicsmcumoments
 * Action created: 2020-10-26 00:00:00
 */
function ct_trck_marvel_410096981(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12218);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Independentbooksellers
 * Action created: 2020-04-27 00:00:00
 */
function ct_trck_marvel_410089978(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11378);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Infinitysagaconcerthollywoodbowl
 * Action created: 2024-08-15 15:29:38
 */
function ct_trck_marvel_410124435(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18494);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Interactivegroot
 * Action created: 2020-11-13 00:00:00
 */
function ct_trck_marvel_410097348(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Investordayroundup
 * Action created: 2020-12-10 00:00:00
 */
function ct_trck_marvel_410097810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Ironman3xmasfilm
 * Action created: 2019-12-19 00:00:00
 */
function ct_trck_marvel_410085763(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10688);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Ironmanarmorinmcu
 * Action created: 2020-08-18 00:00:00
 */
function ct_trck_marvel_410092221(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11821);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Jackkirby102
 * Action created: 2019-08-27 00:00:00
 */
function ct_trck_marvel_410081810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9427);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Jeffthelandsharkxmas
 * Action created: 2023-12-20 12:46:56
 */
function ct_trck_marvel_410117015(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17205);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Jephloebletter
 * Action created: 2019-02-19 00:00:00
 */
function ct_trck_marvel_410069870(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5919);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Jessicajoness3
 * Action created: 2019-05-28 00:00:00
 */
function ct_trck_marvel_410075030(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7799);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Jimmywoo
 * Action created: 2020-09-11 00:00:00
 */
function ct_trck_marvel_410092613(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Jjnewcharacters
 * Action created: 2019-06-13 00:00:00
 */
function ct_trck_marvel_410075829(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Jjrefreshers1
 * Action created: 2019-06-07 00:00:00
 */
function ct_trck_marvel_410075589(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Jjrefreshers2
 * Action created: 2019-06-11 00:00:00
 */
function ct_trck_marvel_410075690(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Joeqhealthcareart
 * Action created: 2020-04-15 00:00:00
 */
function ct_trck_marvel_410089786(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11323);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Joeqmorninwarmup1
 * Action created: 2020-03-31 00:00:00
 */
function ct_trck_marvel_410089401(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11242);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Julialouisdreyfusfaws
 * Action created: 2021-04-19 00:00:00
 */
function ct_trck_marvel_410101309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14520);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Justinhammer
 * Action created: 2020-09-16 00:00:00
 */
function ct_trck_marvel_410092670(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11983);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Katdenningsinterview
 * Action created: 2021-02-23 00:00:00
 */
function ct_trck_marvel_410099620(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13941);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Kathrynhahnaskedanswered
 * Action created: 2021-03-05 00:00:00
 */
function ct_trck_marvel_410099842(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14120);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Kevinfeigeanthonymackievariety
 * Action created: 2021-03-09 00:00:00
 */
function ct_trck_marvel_410100646(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14162);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Learntodrawgroot
 * Action created: 2020-04-02 00:00:00
 */
function ct_trck_marvel_410089443(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11261);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Learntodrawhulkbuster
 * Action created: 2020-08-14 00:00:00
 */
function ct_trck_marvel_410092201(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11816);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Learntodrawnamor
 * Action created: 2020-08-18 00:00:00
 */
function ct_trck_marvel_410092223(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11823);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Legendsond+
 * Action created: 2021-01-08 00:00:00
 */
function ct_trck_marvel_410098237(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13340);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Legobuildironmanart
 * Action created: 2020-07-01 00:00:00
 */
function ct_trck_marvel_410091042(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11627);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Liquidxmenjersey
 * Action created: 2020-02-28 00:00:00
 */
function ct_trck_marvel_410087740(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11064);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Liveauctionpunisher
 * Action created: 2020-02-28 00:00:00
 */
function ct_trck_marvel_410087745(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11066);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Loki
 * Action created: 2020-12-10 00:00:00
 */
function ct_trck_marvel_410097814(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12800);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Lokibtsfeaturette
 * Action created: 2021-06-02 00:00:00
 */
function ct_trck_marvel_410102112(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14641);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Lokinewinfotrailer
 * Action created: 2021-04-05 00:00:00
 */
function ct_trck_marvel_410101074(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14485);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Lokinewpremieredate
 * Action created: 2021-05-05 00:00:00
 */
function ct_trck_marvel_410101513(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14561);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Lokipremieredate
 * Action created: 2021-02-24 00:00:00
 */
function ct_trck_marvel_410099634(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13981);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Lokitricks
 * Action created: 2020-04-08 00:00:00
 */
function ct_trck_marvel_410089679(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11290);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Lokiwatchpartywednesday
 * Action created: 2021-05-12 00:00:00
 */
function ct_trck_marvel_410101583(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Madamewebfeaturette
 * Action created: 2024-01-18 17:33:05
 */
function ct_trck_marvel_410117249(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17267);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maosdarrenbarnet
 * Action created: 2020-05-14 00:00:00
 */
function ct_trck_marvel_410090261(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11461);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maosfinalmission
 * Action created: 2020-04-24 00:00:00
 */
function ct_trck_marvel_410089948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11358);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maospattonoswalt
 * Action created: 2020-05-14 00:00:00
 */
function ct_trck_marvel_410090260(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11460);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maoss7envergjokaj
 * Action created: 2020-06-22 00:00:00
 */
function ct_trck_marvel_410090861(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maoss7ep4
 * Action created: 2020-06-17 00:00:00
 */
function ct_trck_marvel_410090772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maoss7koenig
 * Action created: 2020-06-11 00:00:00
 */
function ct_trck_marvel_410090618(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11543);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maoss7noir
 * Action created: 2020-06-11 00:00:00
 */
function ct_trck_marvel_410090625(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11547);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maoss7primer
 * Action created: 2020-05-28 00:00:00
 */
function ct_trck_marvel_410090390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11505);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maoss7timethread
 * Action created: 2020-06-03 00:00:00
 */
function ct_trck_marvel_410090446(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11519);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Maosseason6recap
 * Action created: 2019-08-05 00:00:00
 */
function ct_trck_marvel_410079947(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvel616available
 * Action created: 2020-11-20 00:00:00
 */
function ct_trck_marvel_410097436(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12439);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvel616panel
 * Action created: 2020-07-24 00:00:00
 */
function ct_trck_marvel_410091789(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11721);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvel81birthday
 * Action created: 2020-08-26 00:00:00
 */
function ct_trck_marvel_410092322(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11870);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelandamazon
 * Action created: 2020-03-30 00:00:00
 */
function ct_trck_marvel_410089398(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11240);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelandtomsshoes
 * Action created: 2020-02-03 00:00:00
 */
function ct_trck_marvel_410087253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10899);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelathome
 * Action created: 2020-04-30 00:00:00
 */
function ct_trck_marvel_410090004(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11386);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelbirthdaytreats
 * Action created: 2020-08-28 00:00:00
 */
function ct_trck_marvel_410092378(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11880);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveld232024
 * Action created: 2024-08-12 09:37:44
 */
function ct_trck_marvel_410124292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18414);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveld23activities
 * Action created: 2019-08-22 00:00:00
 */
function ct_trck_marvel_410081608(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveldeclassifiedpodcastisfree
 * Action created: 2021-03-09 00:00:00
 */
function ct_trck_marvel_410099870(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14160);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveldisney+launch
 * Action created: 2019-10-14 00:00:00
 */
function ct_trck_marvel_410083851(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveldisney+news
 * Action created: 2019-04-12 00:00:00
 */
function ct_trck_marvel_410072731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6940);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvellearningapps
 * Action created: 2020-08-26 00:00:00
 */
function ct_trck_marvel_410092304(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvellegendsannouncement
 * Action created: 2020-12-15 00:00:00
 */
function ct_trck_marvel_410097868(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelmadeannounce
 * Action created: 2020-07-14 00:00:00
 */
function ct_trck_marvel_410091701(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11679);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelmissioncapmarvel
 * Action created: 2020-06-18 00:00:00
 */
function ct_trck_marvel_410090815(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11581);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelmissionhellfiregala
 * Action created: 2021-06-10 00:00:00
 */
function ct_trck_marvel_410102297(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14669);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelmissionrecapironheart
 * Action created: 2021-03-02 00:00:00
 */
function ct_trck_marvel_410099748(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14060);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelmissionstormbreaker
 * Action created: 2021-07-22 00:00:00
 */
function ct_trck_marvel_410103207(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14803);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelmissionthor
 * Action created: 2020-05-15 00:00:00
 */
function ct_trck_marvel_410090264(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11462);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelmusthaves
 * Action created: 2021-01-12 00:00:00
 */
function ct_trck_marvel_410098290(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13380);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelmusthaves7
 * Action created: 2021-02-22 00:00:00
 */
function ct_trck_marvel_410099597(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13921);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelpanelcc@home
 * Action created: 2020-07-06 00:00:00
 */
function ct_trck_marvel_410091096(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11640);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvels80thsummer
 * Action created: 2019-08-13 00:00:00
 */
function ct_trck_marvel_410080428(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvels80yearsbook
 * Action created: 2020-11-23 00:00:00
 */
function ct_trck_marvel_410097458(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12460);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelsiriuslaunch
 * Action created: 2020-11-19 00:00:00
 */
function ct_trck_marvel_410097409(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelspodcastannounement
 * Action created: 2019-08-14 00:00:00
 */
function ct_trck_marvel_410080527(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9266);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveltalesmsmarvel
 * Action created: 2020-06-17 00:00:00
 */
function ct_trck_marvel_410090776(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveltoughmudder
 * Action created: 2020-10-06 00:00:00
 */
function ct_trck_marvel_410092862(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12122);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveltvprops
 * Action created: 2019-03-21 00:00:00
 */
function ct_trck_marvel_410071268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marveluniversesuperheroesfrankli1554215487
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072274(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Marvelvoices#1
 * Action created: 2020-02-05 00:00:00
 */
function ct_trck_marvel_410087383(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10901);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mcumomentsfawsfinale
 * Action created: 2021-04-22 00:00:00
 */
function ct_trck_marvel_410101356(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14534);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Meetagentmobius
 * Action created: 2021-05-17 00:00:00
 */
function ct_trck_marvel_410101605(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14586);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Meetmodokfamily
 * Action created: 2021-05-21 00:00:00
 */
function ct_trck_marvel_410102014(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14606);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Meetthecastofmodok
 * Action created: 2020-01-21 00:00:00
 */
function ct_trck_marvel_410087070(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merch100percentsoft
 * Action created: 2022-02-22 17:19:45
 */
function ct_trck_marvel_410108209(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15566);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merch100softsdcc2023
 * Action created: 2023-07-17 16:37:53
 */
function ct_trck_marvel_410115292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16884);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchabramspreschool
 * Action created: 2021-08-03 00:00:00
 */
function ct_trck_marvel_410103357(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14842);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchabramssuperherosjourney
 * Action created: 2023-02-03 10:58:18
 */
function ct_trck_marvel_410113171(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16470);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchabramsvaluestamps
 * Action created: 2023-03-28 13:31:22
 */
function ct_trck_marvel_410113820(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchaconythemultiversemission
 * Action created: 2022-02-07 00:00:00
 */
function ct_trck_marvel_410107782(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15503);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchadidasgotg
 * Action created: 2021-12-16 00:00:00
 */
function ct_trck_marvel_410106451(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15211);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchadidasmsm2
 * Action created: 2023-10-02 16:38:21
 */
function ct_trck_marvel_410116180(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17042);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchalexrossfffullcircle
 * Action created: 2021-12-14 00:00:00
 */
function ct_trck_marvel_410106429(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15206);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchantmanmmh
 * Action created: 2023-02-13 15:15:46
 */
function ct_trck_marvel_410113253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16490);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchartofdpw
 * Action created: 2024-08-30 11:26:59
 */
function ct_trck_marvel_410125699(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18754);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchartofryanm
 * Action created: 2024-02-16 11:13:20
 */
function ct_trck_marvel_410117474(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17311);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchartoftlat
 * Action created: 2023-09-08 12:39:51
 */
function ct_trck_marvel_410115873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17009);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchartofwhatifvol1
 * Action created: 2024-04-10 16:26:41
 */
function ct_trck_marvel_410121786(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17603);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchartofwintersoliderbook
 * Action created: 2024-11-21 09:32:28
 */
function ct_trck_marvel_410133792(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20214);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchaugbooks
 * Action created: 2023-08-14 10:41:31
 */
function ct_trck_marvel_410115569(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16947);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchavengers60
 * Action created: 2023-06-12 10:35:17
 */
function ct_trck_marvel_410114903(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16813);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchavengers:thefirst60yearsboo1719841408
 * Action created: 2024-07-01 09:43:28
 */
function ct_trck_marvel_410122507(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18033);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchavengersanthology
 * Action created: 2022-06-21 09:21:41
 */
function ct_trck_marvel_410110011(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15813);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchavengersartofbook
 * Action created: 2024-07-22 16:34:02
 */
function ct_trck_marvel_410122675(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchavengersbio
 * Action created: 2023-07-14 16:13:16
 */
function ct_trck_marvel_410115286(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16867);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchbacktoschoolmusthaves
 * Action created: 2024-08-02 09:47:52
 */
function ct_trck_marvel_410123532(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18274);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchblackpantherbook
 * Action created: 2022-09-01 13:27:52
 */
function ct_trck_marvel_410111078(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15982);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchblackwidowartbook
 * Action created: 2023-01-26 16:36:30
 */
function ct_trck_marvel_410112948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16434);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchbookmakingmcu
 * Action created: 2021-09-14 00:00:00
 */
function ct_trck_marvel_410104467(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchbookmapbymap
 * Action created: 2021-09-13 00:00:00
 */
function ct_trck_marvel_410104462(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14936);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchbooksapril
 * Action created: 2023-04-14 14:17:33
 */
function ct_trck_marvel_410114011(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16639);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchbooksuperheroblack
 * Action created: 2022-03-02 14:15:32
 */
function ct_trck_marvel_410108358(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15582);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchbp2book
 * Action created: 2023-10-30 16:38:30
 */
function ct_trck_marvel_410116523(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17115);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchbpwfbook
 * Action created: 2024-02-27 14:33:59
 */
function ct_trck_marvel_410121427(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17364);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchbw
 * Action created: 2021-07-09 00:00:00
 */
function ct_trck_marvel_410103051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14768);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchcapfirst80yearsbook
 * Action created: 2021-07-13 00:00:00
 */
function ct_trck_marvel_410103080(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14783);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchclovermarvelartofbooks
 * Action created: 2023-04-25 15:54:06
 */
function ct_trck_marvel_410114201(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16663);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchdeadpoolmusthaves
 * Action created: 2024-04-01 15:40:57
 */
function ct_trck_marvel_410121699(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17563);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchdkmcuofficialtimeline
 * Action created: 2023-01-26 13:51:47
 */
function ct_trck_marvel_410112938(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16432);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchdoctorstrangecumberbatchbts
 * Action created: 2023-02-10 13:45:35
 */
function ct_trck_marvel_410113237(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16486);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchdoramilaje
 * Action created: 2022-05-10 09:09:40
 */
function ct_trck_marvel_410109286(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15723);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchdozencousinsseasoning
 * Action created: 2023-02-01 14:11:14
 */
function ct_trck_marvel_410113016(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16449);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchdpwolverinebtsbook
 * Action created: 2024-08-02 15:10:53
 */
function ct_trck_marvel_410123652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18294);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchdrstrange
 * Action created: 2022-05-20 15:56:00
 */
function ct_trck_marvel_410109490(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15748);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchearthday2023
 * Action created: 2023-04-14 14:21:48
 */
function ct_trck_marvel_410114013(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16641);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchecho
 * Action created: 2024-01-16 16:11:44
 */
function ct_trck_marvel_410117214(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfantagraphicsatlascomics
 * Action created: 2023-04-26 12:06:49
 */
function ct_trck_marvel_410114240(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16683);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfawsbook
 * Action created: 2021-12-22 00:00:00
 */
function ct_trck_marvel_410106901(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfffullcircle
 * Action created: 2024-04-17 12:51:17
 */
function ct_trck_marvel_410121911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17644);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfoliospiderman
 * Action created: 2021-10-12 00:00:00
 */
function ct_trck_marvel_410105213(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14999);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfunkofair2022
 * Action created: 2022-02-22 10:05:41
 */
function ct_trck_marvel_410108194(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15565);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfunkofair2023
 * Action created: 2023-01-25 17:32:12
 */
function ct_trck_marvel_410112926(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16430);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfunkoguardians3
 * Action created: 2023-05-10 15:00:13
 */
function ct_trck_marvel_410114539(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16727);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfunkoguardians3rocket
 * Action created: 2023-02-14 11:48:28
 */
function ct_trck_marvel_410113265(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16494);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfunkomoongirl
 * Action created: 2023-02-08 15:44:31
 */
function ct_trck_marvel_410113222(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16482);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfunkon2021
 * Action created: 2021-08-05 00:00:00
 */
function ct_trck_marvel_410103378(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14846);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchfunkospiderverse
 * Action created: 2023-02-21 13:35:26
 */
function ct_trck_marvel_410113388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16526);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchgalaxyspacemusthaves
 * Action created: 2024-05-03 09:35:49
 */
function ct_trck_marvel_410122032(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17690);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchgroot
 * Action created: 2023-09-11 09:28:35
 */
function ct_trck_marvel_410115893(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17010);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchgrootearthdaymusthaves
 * Action created: 2024-04-26 10:12:16
 */
function ct_trck_marvel_410121983(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17654);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchguardians3unboxing
 * Action created: 2023-05-02 16:28:58
 */
function ct_trck_marvel_410114401(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16703);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchgunnaroptiks
 * Action created: 2022-05-19 13:21:42
 */
function ct_trck_marvel_410109448(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15745);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchhasbrolegendsspiderverse
 * Action created: 2023-03-29 16:35:15
 */
function ct_trck_marvel_410113839(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16603);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchhasbrosdcc2023
 * Action created: 2023-07-13 17:12:56
 */
function ct_trck_marvel_410115274(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16862);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchhaslabsgiantman
 * Action created: 2023-09-08 12:30:15
 */
function ct_trck_marvel_410115872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17008);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchhawkeyebookpugh
 * Action created: 2023-05-02 16:24:42
 */
function ct_trck_marvel_410114399(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16702);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchhellofreshguardians
 * Action created: 2023-04-11 09:46:36
 */
function ct_trck_marvel_410113946(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16630);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchheroholiday2023
 * Action created: 2023-11-27 13:51:45
 */
function ct_trck_marvel_410116791(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17166);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchholidayguide2023
 * Action created: 2023-11-27 11:10:20
 */
function ct_trck_marvel_410116785(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17164);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchholidayguidesubsapps2023
 * Action created: 2023-12-07 15:15:46
 */
function ct_trck_marvel_410116893(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17174);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchholidayspideygift2021
 * Action created: 2021-12-13 00:00:00
 */
function ct_trck_marvel_410106417(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15205);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchholidaysubs2021
 * Action created: 2021-12-08 00:00:00
 */
function ct_trck_marvel_410106340(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15190);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchironman2theartofthemovie
 * Action created: 2024-02-22 11:35:32
 */
function ct_trck_marvel_410121363(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17345);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchjessicajonesbook
 * Action created: 2024-02-06 11:12:28
 */
function ct_trck_marvel_410117375(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17295);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchkithmarvels85th
 * Action created: 2024-08-06 16:26:23
 */
function ct_trck_marvel_410123872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18334);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchlegoduploapp
 * Action created: 2021-12-09 00:00:00
 */
function ct_trck_marvel_410106356(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15193);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchlegostarlordhelmet
 * Action created: 2023-03-20 15:42:41
 */
function ct_trck_marvel_410113746(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16583);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchloki
 * Action created: 2023-10-03 15:30:16
 */
function ct_trck_marvel_410116183(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17045);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchlokibook
 * Action created: 2023-12-01 16:19:16
 */
function ct_trck_marvel_410116870(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17169);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchlokiep5
 * Action created: 2021-07-08 00:00:00
 */
function ct_trck_marvel_410103035(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14763);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchlokiep6
 * Action created: 2021-07-16 00:00:00
 */
function ct_trck_marvel_410103125(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14793);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchlustyandelspidermanstreetwe1717161952
 * Action created: 2024-05-31 09:25:52
 */
function ct_trck_marvel_410122247(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17852);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmarvelbigbookoffun
 * Action created: 2022-01-25 00:00:00
 */
function ct_trck_marvel_410107617(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15426);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmarvelbydesignbook
 * Action created: 2021-10-08 00:00:00
 */
function ct_trck_marvel_410105186(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14992);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmarvelcosplay
 * Action created: 2023-11-08 16:21:58
 */
function ct_trck_marvel_410116609(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17127);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmarvelfit
 * Action created: 2023-09-01 11:20:00
 */
function ct_trck_marvel_410115810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16981);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmarvellegendsguardians
 * Action created: 2023-02-21 13:26:49
 */
function ct_trck_marvel_410113386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmarvelmechstrikehunters
 * Action created: 2022-02-17 10:06:48
 */
function ct_trck_marvel_410108164(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15552);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmarvelmovethemarvels
 * Action created: 2023-09-25 10:51:58
 */
function ct_trck_marvel_410116058(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17031);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmarvelslegends
 * Action created: 2023-06-06 15:30:44
 */
function ct_trck_marvel_410114851(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16804);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmcutimeline
 * Action created: 2023-10-24 12:27:30
 */
function ct_trck_marvel_410116397(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17104);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhdeadpool
 * Action created: 2023-03-31 15:05:07
 */
function ct_trck_marvel_410113861(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16609);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhdplus
 * Action created: 2021-11-12 00:00:00
 */
function ct_trck_marvel_410105678(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15115);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhguardians
 * Action created: 2023-04-06 13:41:38
 */
function ct_trck_marvel_410113919(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16622);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhguardians3
 * Action created: 2023-05-01 14:44:37
 */
function ct_trck_marvel_410114372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhhawkeyeep1
 * Action created: 2021-11-29 00:00:00
 */
function ct_trck_marvel_410105965(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15164);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhhawkeyeep3
 * Action created: 2021-12-03 00:00:00
 */
function ct_trck_marvel_410106054(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15172);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhhawkeyeep4
 * Action created: 2021-12-10 00:00:00
 */
function ct_trck_marvel_410106386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhloki
 * Action created: 2021-06-08 00:00:00
 */
function ct_trck_marvel_410102268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14665);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhlokiep2
 * Action created: 2021-06-18 00:00:00
 */
function ct_trck_marvel_410102831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14692);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhspiderman
 * Action created: 2023-04-21 13:27:54
 */
function ct_trck_marvel_410114116(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhspiderverse
 * Action created: 2023-05-31 17:11:15
 */
function ct_trck_marvel_410114792(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16786);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhwhatifep1
 * Action created: 2021-08-13 00:00:00
 */
function ct_trck_marvel_410103814(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14863);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhwhatifep4
 * Action created: 2021-09-03 00:00:00
 */
function ct_trck_marvel_410104058(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14899);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhwhatifep5
 * Action created: 2021-09-10 00:00:00
 */
function ct_trck_marvel_410104454(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14934);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhwhatifep6
 * Action created: 2021-09-17 00:00:00
 */
function ct_trck_marvel_410104521(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14944);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhwhatifep7
 * Action created: 2021-09-27 00:00:00
 */
function ct_trck_marvel_410104615(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14960);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhwhatifep8
 * Action created: 2021-10-01 00:00:00
 */
function ct_trck_marvel_410105108(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14970);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmmhwhatifep9
 * Action created: 2021-10-08 00:00:00
 */
function ct_trck_marvel_410105192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14994);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoonknightep1
 * Action created: 2022-04-01 13:11:17
 */
function ct_trck_marvel_410108772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15632);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoonknightep2
 * Action created: 2022-04-08 14:56:58
 */
function ct_trck_marvel_410108847(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15651);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoonknightep3
 * Action created: 2022-04-15 13:10:34
 */
function ct_trck_marvel_410108983(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15663);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoonknightep4
 * Action created: 2022-04-20 09:08:06
 */
function ct_trck_marvel_410109016(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15668);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoonknightep5
 * Action created: 2022-04-29 12:35:04
 */
function ct_trck_marvel_410109188(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoonknightep6
 * Action created: 2022-05-05 13:48:12
 */
function ct_trck_marvel_410109247(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15713);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoonknightmusthaves
 * Action created: 2022-04-22 12:43:41
 */
function ct_trck_marvel_410109067(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15675);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoonknighttshirt
 * Action created: 2022-04-06 14:32:42
 */
function ct_trck_marvel_410108819(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15642);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmoviethemarvels
 * Action created: 2023-11-08 16:23:32
 */
function ct_trck_marvel_410116610(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17128);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmsmarvelep1
 * Action created: 2022-06-10 15:28:51
 */
function ct_trck_marvel_410109908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15792);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmsmarvelhasbro
 * Action created: 2022-06-01 12:45:12
 */
function ct_trck_marvel_410109652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15769);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmsmarvelmmh
 * Action created: 2022-06-17 13:29:28
 */
function ct_trck_marvel_410109987(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15807);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmultiversefunko
 * Action created: 2022-03-02 09:44:40
 */
function ct_trck_marvel_410108350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15581);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthaves85
 * Action created: 2024-08-29 09:42:02
 */
function ct_trck_marvel_410125652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18694);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesagatha
 * Action created: 2024-09-20 09:32:06
 */
function ct_trck_marvel_410127812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19114);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesagatha2
 * Action created: 2024-11-01 14:36:45
 */
function ct_trck_marvel_410132112(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19874);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesbestof2024
 * Action created: 2024-12-30 11:06:31
 */
function ct_trck_marvel_410136212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20814);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesdeadpool&wolverine
 * Action created: 2024-11-12 10:22:44
 */
function ct_trck_marvel_410132992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20074);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesfall
 * Action created: 2024-09-13 15:06:09
 */
function ct_trck_marvel_410127253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18974);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthaveshalloweencostumes
 * Action created: 2024-10-11 09:35:37
 */
function ct_trck_marvel_410129972(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19494);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesholiday
 * Action created: 2024-11-15 09:32:22
 */
function ct_trck_marvel_410133392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20154);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesholidaygifts
 * Action created: 2024-12-06 09:25:49
 */
function ct_trck_marvel_410134792(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20434);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesholidays
 * Action created: 2024-11-22 09:49:13
 */
function ct_trck_marvel_410133934(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20274);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesmagicalhalloween
 * Action created: 2024-10-04 09:58:51
 */
function ct_trck_marvel_410129533(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19354);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesmovienight
 * Action created: 2024-12-20 13:27:22
 */
function ct_trck_marvel_410135792(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20754);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesofficialsm
 * Action created: 2025-01-10 10:02:47
 */
function ct_trck_marvel_410136892(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20955);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesstaffpicks
 * Action created: 2024-12-13 09:41:00
 */
function ct_trck_marvel_410135352(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20574);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchmusthavesvenom
 * Action created: 2024-10-25 09:36:03
 */
function ct_trck_marvel_410131553(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19754);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchoctbooks
 * Action created: 2023-11-01 09:25:19
 */
function ct_trck_marvel_410116528(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchpenguinclassicsonsale
 * Action created: 2022-06-15 18:24:38
 */
function ct_trck_marvel_410109950(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15802);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchprclassics
 * Action created: 2021-10-14 00:00:00
 */
function ct_trck_marvel_410105240(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15006);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchpride2023
 * Action created: 2023-05-15 15:33:18
 */
function ct_trck_marvel_410114601(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16734);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchprokolaunch
 * Action created: 2023-05-23 09:42:03
 */
function ct_trck_marvel_410114701(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16756);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchpropstorepunisher
 * Action created: 2021-11-19 00:00:00
 */
function ct_trck_marvel_410105816(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15126);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchsamcapamericaanthology
 * Action created: 2025-01-06 14:08:23
 */
function ct_trck_marvel_410136492(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20874);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchscottlangmemoir
 * Action created: 2023-08-15 17:48:12
 */
function ct_trck_marvel_410115582(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16949);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchscripttopage
 * Action created: 2022-03-23 10:24:54
 */
function ct_trck_marvel_410108612(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15609);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchsecretinvasionskrulls
 * Action created: 2023-07-31 12:11:56
 */
function ct_trck_marvel_410115467(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16924);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchsep2023books
 * Action created: 2023-09-22 15:17:19
 */
function ct_trck_marvel_410116055(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17030);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchshangchibook
 * Action created: 2023-02-28 16:38:27
 */
function ct_trck_marvel_410113516(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16539);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchshangchilego
 * Action created: 2021-07-12 00:00:00
 */
function ct_trck_marvel_410103065(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14781);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchshehulkmmhep2
 * Action created: 2022-08-26 13:37:45
 */
function ct_trck_marvel_410110977(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15975);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchshehulkmmhep5
 * Action created: 2022-09-16 14:16:33
 */
function ct_trck_marvel_410111244(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16040);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchshehulkmmhep6
 * Action created: 2022-09-23 17:02:44
 */
function ct_trck_marvel_410111312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16054);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchshehulkmmhep7
 * Action created: 2022-09-30 12:56:14
 */
function ct_trck_marvel_410111453(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16087);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchshehulkmmhep8
 * Action created: 2022-10-08 07:39:16
 */
function ct_trck_marvel_410111497(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16109);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchshehulkmmhep9
 * Action created: 2022-10-14 12:27:33
 */
function ct_trck_marvel_410111561(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16123);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchsmartpopdeclassified
 * Action created: 2023-03-31 10:23:26
 */
function ct_trck_marvel_410113852(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16604);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchsmasvbook
 * Action created: 2023-07-03 11:48:37
 */
function ct_trck_marvel_410115204(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16846);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspidermanmusthaves
 * Action created: 2024-06-21 09:37:59
 */
function ct_trck_marvel_410122436(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17974);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspidermannwh
 * Action created: 2021-07-02 00:00:00
 */
function ct_trck_marvel_410102976(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14732);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspidermanstoriesmmh
 * Action created: 2022-10-14 15:04:58
 */
function ct_trck_marvel_410111564(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16126);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspiderversebooks
 * Action created: 2023-06-09 17:36:41
 */
function ct_trck_marvel_410114900(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16812);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspideybio
 * Action created: 2022-03-28 15:25:50
 */
function ct_trck_marvel_410108688(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15622);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspideycookbook
 * Action created: 2024-07-02 14:33:30
 */
function ct_trck_marvel_410122510(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18036);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspideydaymusthaves
 * Action created: 2024-08-01 10:17:49
 */
function ct_trck_marvel_410123412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18254);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspringessentials
 * Action created: 2024-03-01 13:45:49
 */
function ct_trck_marvel_410121465(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17384);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchspringmusthaves
 * Action created: 2024-04-12 09:28:32
 */
function ct_trck_marvel_410121810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17588);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchstudiosbook
 * Action created: 2021-10-21 00:00:00
 */
function ct_trck_marvel_410105280(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15015);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchsuspendedreynolds
 * Action created: 2023-05-19 16:02:27
 */
function ct_trck_marvel_410114673(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16750);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchswarovski
 * Action created: 2024-04-12 09:20:44
 */
function ct_trck_marvel_410121792(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17587);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtargetnikkolassmith
 * Action created: 2023-01-20 14:26:58
 */
function ct_trck_marvel_410112858(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16411);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtarotcards
 * Action created: 2023-09-28 12:07:57
 */
function ct_trck_marvel_410116115(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17036);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtaschenspiderman
 * Action created: 2021-12-07 00:00:00
 */
function ct_trck_marvel_410106331(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15187);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchthortheartofthemovie
 * Action created: 2024-04-03 17:07:32
 */
function ct_trck_marvel_410121729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17565);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtitancap
 * Action created: 2023-09-12 17:37:07
 */
function ct_trck_marvel_410115929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17013);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtitanmidnightsunsbook
 * Action created: 2023-04-18 14:31:14
 */
function ct_trck_marvel_410114059(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16646);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtitanspidermannwhspecialhol1677004431
 * Action created: 2023-02-21 13:33:51
 */
function ct_trck_marvel_410113387(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtriviacrack
 * Action created: 2022-01-27 00:00:00
 */
function ct_trck_marvel_410107645(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15445);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtvlokis2
 * Action created: 2023-10-30 10:44:05
 */
function ct_trck_marvel_410116515(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17111);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchtvlokiscifi
 * Action created: 2023-11-03 12:24:04
 */
function ct_trck_marvel_410116586(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17122);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchuncannyxmentradingcards
 * Action created: 2022-02-10 00:00:00
 */
function ct_trck_marvel_410107830(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchvevedigitalcomics
 * Action created: 2021-08-24 00:00:00
 */
function ct_trck_marvel_410103914(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14882);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchveveffmighty
 * Action created: 2021-08-27 00:00:00
 */
function ct_trck_marvel_410103974(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14891);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchvevemarvelmightyscap
 * Action created: 2021-08-13 00:00:00
 */
function ct_trck_marvel_410103812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14862);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchvevenycc21
 * Action created: 2021-10-05 00:00:00
 */
function ct_trck_marvel_410105149(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14982);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchvevespiderman
 * Action created: 2021-08-06 00:00:00
 */
function ct_trck_marvel_410103397(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14850);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchvevetwoaddldrops
 * Action created: 2021-08-30 00:00:00
 */
function ct_trck_marvel_410104005(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14894);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchvillainoustwistedambitions
 * Action created: 2023-01-24 10:08:37
 */
function ct_trck_marvel_410112911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16426);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchwhatifartofbook
 * Action created: 2024-08-27 17:05:17
 */
function ct_trck_marvel_410125314(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18654);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchwhatiffunkolego
 * Action created: 2021-07-08 00:00:00
 */
function ct_trck_marvel_410103036(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14764);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchwhatifmarvellegends
 * Action created: 2021-07-29 00:00:00
 */
function ct_trck_marvel_410103298(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14829);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchwhatifvenombook
 * Action created: 2024-05-07 13:53:57
 */
function ct_trck_marvel_410122061(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17729);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchwombook
 * Action created: 2021-07-26 00:00:00
 */
function ct_trck_marvel_410103229(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchwomensdaymusthaves
 * Action created: 2024-03-08 14:13:57
 */
function ct_trck_marvel_410121494(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17426);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchworldofepiwakandadolls
 * Action created: 2023-03-22 15:48:19
 */
function ct_trck_marvel_410113771(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16588);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchxmen60
 * Action created: 2023-03-17 11:38:38
 */
function ct_trck_marvel_410113705(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16570);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchxmen97figures
 * Action created: 2023-12-14 10:24:32
 */
function ct_trck_marvel_410116946(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17193);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Merchxmen97tradingcards
 * Action created: 2024-04-10 10:13:35
 */
function ct_trck_marvel_410121798(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17584);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mhqavengerssuperheroesassemble
 * Action created: 2024-08-23 10:55:47
 */
function ct_trck_marvel_410125092(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18594);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Milesmoralesfunkopops
 * Action created: 2021-01-22 00:00:00
 */
function ct_trck_marvel_410098713(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13520);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Missioncapshield
 * Action created: 2020-04-24 00:00:00
 */
function ct_trck_marvel_410089939(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Missionrecapinfinitygautlent
 * Action created: 2021-01-21 00:00:00
 */
function ct_trck_marvel_410098653(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13502);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Missionrecappumpkins20
 * Action created: 2020-10-21 00:00:00
 */
function ct_trck_marvel_410096732(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12203);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Missminutesloki
 * Action created: 2021-05-19 00:00:00
 */
function ct_trck_marvel_410101967(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14595);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhagatha
 * Action created: 2021-02-25 00:00:00
 */
function ct_trck_marvel_410099668(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14000);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhfaws1
 * Action created: 2021-03-15 00:00:00
 */
function ct_trck_marvel_410100717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14241);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhfaws3
 * Action created: 2021-04-06 00:00:00
 */
function ct_trck_marvel_410101089(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14492);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhfaws5
 * Action created: 2021-04-19 00:00:00
 */
function ct_trck_marvel_410101312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14521);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhfaws6
 * Action created: 2021-04-26 00:00:00
 */
function ct_trck_marvel_410101386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14540);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhjohnwalker
 * Action created: 2021-03-29 00:00:00
 */
function ct_trck_marvel_410100992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14442);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhlokiears
 * Action created: 2021-05-24 00:00:00
 */
function ct_trck_marvel_410102030(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14610);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhscarletwitch
 * Action created: 2021-03-10 00:00:00
 */
function ct_trck_marvel_410100652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14180);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhwandavisionep8
 * Action created: 2021-03-01 00:00:00
 */
function ct_trck_marvel_410099738(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14040);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mmhwomenofwestview
 * Action created: 2021-05-17 00:00:00
 */
function ct_trck_marvel_410101608(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14588);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Modoktradingcards
 * Action created: 2021-05-12 00:00:00
 */
function ct_trck_marvel_410101580(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Modoktrailer
 * Action created: 2021-04-21 00:00:00
 */
function ct_trck_marvel_410101331(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14530);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moebiusxmarvel
 * Action created: 2020-03-30 00:00:00
 */
function ct_trck_marvel_410089395(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11239);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mokokpremieresinmay
 * Action created: 2021-02-25 00:00:00
 */
function ct_trck_marvel_410099680(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14005);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Momentsfromwandavisionfinale
 * Action created: 2021-03-08 00:00:00
 */
function ct_trck_marvel_410099854(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14144);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Morelithosmmclaremontbundle
 * Action created: 2020-11-11 00:00:00
 */
function ct_trck_marvel_410097294(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12320);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movie2024release
 * Action created: 2023-11-10 09:45:52
 */
function ct_trck_marvel_410116646(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17145);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieantman3disneyplus
 * Action created: 2023-04-27 11:24:22
 */
function ct_trck_marvel_410114268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16687);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieantman3nowstreaming
 * Action created: 2023-05-17 13:08:36
 */
function ct_trck_marvel_410114638(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16739);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieantmancreatingkang
 * Action created: 2023-02-28 13:06:42
 */
function ct_trck_marvel_410113500(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16538);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieantmandigitalbluray
 * Action created: 2023-04-06 13:40:06
 */
function ct_trck_marvel_410113918(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16621);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieantmanfatherdaughter
 * Action created: 2023-02-21 11:08:20
 */
function ct_trck_marvel_410113363(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieantmanharperobrian
 * Action created: 2023-03-03 15:30:54
 */
function ct_trck_marvel_410113572(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16544);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieantmanmodok
 * Action created: 2023-03-01 11:46:29
 */
function ct_trck_marvel_410113554(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16540);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieantmanredcarpetpremiere
 * Action created: 2023-01-30 13:06:15
 */
function ct_trck_marvel_410112981(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16439);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieblackpantherassembled
 * Action created: 2023-02-08 14:47:29
 */
function ct_trck_marvel_410113217(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16479);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieblackpantherdisneyplusdigit1675278774
 * Action created: 2023-02-01 14:12:54
 */
function ct_trck_marvel_410113017(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16450);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieblackwidowfeaturette
 * Action created: 2021-06-11 00:00:00
 */
function ct_trck_marvel_410102316(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14674);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieblackwidowflorencepugh
 * Action created: 2021-06-15 00:00:00
 */
function ct_trck_marvel_410102779(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14681);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieblackwidowflorencepughmcu
 * Action created: 2021-06-30 00:00:00
 */
function ct_trck_marvel_410102938(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14727);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieblackwidowjourney
 * Action created: 2021-06-15 00:00:00
 */
function ct_trck_marvel_410102778(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14680);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieblackwidowlegacy
 * Action created: 2021-10-07 00:00:00
 */
function ct_trck_marvel_410105176(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14989);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieblackwidowsacrifice
 * Action created: 2021-06-29 00:00:00
 */
function ct_trck_marvel_410102937(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14724);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviecabnwphoto
 * Action created: 2023-06-06 09:10:31
 */
function ct_trck_marvel_410114850(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16803);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviecapmarvelandcomicscapmarvel
 * Action created: 2020-10-13 00:00:00
 */
function ct_trck_marvel_410096298(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12159);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedeadpoolandwolverinedigital
 * Action created: 2024-10-01 14:25:23
 */
function ct_trck_marvel_410128932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19274);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedeadpoolandwolverineteaser
 * Action created: 2024-02-12 10:10:25
 */
function ct_trck_marvel_410117434(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17304);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedeadpoolwolverineofficialtr1713793331
 * Action created: 2024-04-22 09:42:11
 */
function ct_trck_marvel_410121922(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17649);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedoctorstrangechavez
 * Action created: 2022-04-27 11:36:07
 */
function ct_trck_marvel_410109103(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15691);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedogpool
 * Action created: 2024-07-27 16:07:59
 */
function ct_trck_marvel_410122716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18141);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedpwsoundtrack
 * Action created: 2024-07-18 16:34:13
 */
function ct_trck_marvel_410122646(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18134);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangecharacterposters
 * Action created: 2022-04-11 14:29:11
 */
function ct_trck_marvel_410108904(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15652);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangechristine
 * Action created: 2022-05-18 13:54:08
 */
function ct_trck_marvel_410109420(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15741);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangedisney+
 * Action created: 2022-06-02 12:09:30
 */
function ct_trck_marvel_410109660(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15774);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangedonna
 * Action created: 2022-05-18 13:52:59
 */
function ct_trck_marvel_410109419(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15740);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangeempire
 * Action created: 2022-02-15 16:51:36
 */
function ct_trck_marvel_410108087(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15550);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangefeaturette
 * Action created: 2022-04-11 15:34:06
 */
function ct_trck_marvel_410108905(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15653);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangeposters
 * Action created: 2022-04-06 14:33:49
 */
function ct_trck_marvel_410108820(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15643);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangesamraimi
 * Action created: 2022-04-26 09:37:32
 */
function ct_trck_marvel_410109086(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15684);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangeswreturn
 * Action created: 2022-04-29 12:12:09
 */
function ct_trck_marvel_410109186(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangeteaser
 * Action created: 2021-12-22 00:00:00
 */
function ct_trck_marvel_410106941(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15224);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangetrailer
 * Action created: 2022-02-13 18:25:59
 */
function ct_trck_marvel_410107937(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15545);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangetvspot
 * Action created: 2022-04-04 09:32:22
 */
function ct_trck_marvel_410108776(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15635);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangewom
 * Action created: 2022-05-13 12:57:57
 */
function ct_trck_marvel_410109367(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15730);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviedrstrangewong
 * Action created: 2022-07-29 09:05:02
 */
function ct_trck_marvel_410110501(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15922);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieeternalschloezhao
 * Action created: 2021-11-05 00:00:00
 */
function ct_trck_marvel_410105526(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15084);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieeternalsdplus
 * Action created: 2021-12-10 00:00:00
 */
function ct_trck_marvel_410106383(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15195);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieeternalseros
 * Action created: 2021-11-19 00:00:00
 */
function ct_trck_marvel_410105815(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15125);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieeternalsfeaturetteposter
 * Action created: 2021-10-11 00:00:00
 */
function ct_trck_marvel_410105202(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14996);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieeternalshomerelease
 * Action created: 2022-02-15 15:34:50
 */
function ct_trck_marvel_410108084(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15547);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieeternalsilm
 * Action created: 2022-01-13 00:00:00
 */
function ct_trck_marvel_410107447(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15351);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieeternalsneedtoknow
 * Action created: 2021-11-05 00:00:00
 */
function ct_trck_marvel_410105522(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15083);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieeternalssalmahayek
 * Action created: 2021-10-12 00:00:00
 */
function ct_trck_marvel_410105205(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14998);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieffcastreveal
 * Action created: 2024-02-14 14:22:41
 */
function ct_trck_marvel_410117458(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17308);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviegotg3bluray
 * Action created: 2023-06-22 14:49:22
 */
function ct_trck_marvel_410115064(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16833);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviegotg3trailer
 * Action created: 2023-02-12 19:55:16
 */
function ct_trck_marvel_410113242(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16488);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieguardians3characterposters
 * Action created: 2023-04-05 12:27:29
 */
function ct_trck_marvel_410113908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieguardians3fightscene
 * Action created: 2023-05-19 16:04:51
 */
function ct_trck_marvel_410114674(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16751);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieguardians3legacyfeaturette
 * Action created: 2023-04-19 14:05:42
 */
function ct_trck_marvel_410114065(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16649);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieguardians3redcarpet
 * Action created: 2023-04-20 11:47:44
 */
function ct_trck_marvel_410114081(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16653);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieguardiansgunnrocket
 * Action created: 2023-04-27 10:11:04
 */
function ct_trck_marvel_410114267(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16686);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieguardianslegends
 * Action created: 2023-05-03 14:58:02
 */
function ct_trck_marvel_410114408(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16705);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieguardianssaldanainterview
 * Action created: 2023-05-12 15:29:35
 */
function ct_trck_marvel_410114587(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16731);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieguardiansworldtour
 * Action created: 2023-04-25 15:51:21
 */
function ct_trck_marvel_410114200(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16662);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviehulkdisney+
 * Action created: 2023-06-16 10:52:45
 */
function ct_trck_marvel_410114950(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16823);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieironmanfeigefavreau
 * Action created: 2023-05-24 16:24:38
 */
function ct_trck_marvel_410114726(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16759);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemarvelsimax
 * Action created: 2023-09-13 09:14:51
 */
function ct_trck_marvel_410115930(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17014);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemarvelsjourney
 * Action created: 2023-08-31 13:23:38
 */
function ct_trck_marvel_410115803(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16976);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemarvelsopening
 * Action created: 2023-11-13 12:06:57
 */
function ct_trck_marvel_410116652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17148);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemarvelsposters
 * Action created: 2023-10-16 10:03:17
 */
function ct_trck_marvel_410116277(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17073);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemarvelsteaser
 * Action created: 2023-04-11 09:38:03
 */
function ct_trck_marvel_410113945(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16629);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemarvelstotalfilm
 * Action created: 2023-08-10 14:28:37
 */
function ct_trck_marvel_410115551(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16942);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemarvelstrailer
 * Action created: 2023-07-21 11:26:50
 */
function ct_trck_marvel_410115385(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16906);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemorbiusleto
 * Action created: 2022-02-25 13:07:10
 */
function ct_trck_marvel_410108266(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15573);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemorbiusstainremoval
 * Action created: 2022-04-01 09:16:43
 */
function ct_trck_marvel_410108770(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15631);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemorbiustrailer
 * Action created: 2022-02-28 09:23:33
 */
function ct_trck_marvel_410108304(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15575);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviemorbiusuniverse
 * Action created: 2022-03-22 09:57:55
 */
function ct_trck_marvel_410108603(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15608);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviesbestof2024mcu
 * Action created: 2024-12-30 13:51:39
 */
function ct_trck_marvel_410136213(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20834);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviesdcchallh
 * Action created: 2022-07-24 09:51:22
 */
function ct_trck_marvel_410110412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15901);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieseternalstrailer
 * Action created: 2021-08-24 00:00:00
 */
function ct_trck_marvel_410103913(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14881);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchibenkingsley
 * Action created: 2021-09-09 00:00:00
 */
function ct_trck_marvel_410104436(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14929);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchicastfeaturette
 * Action created: 2021-08-05 00:00:00
 */
function ct_trck_marvel_410103392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14848);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchicharacterposter
 * Action created: 2021-08-05 00:00:00
 */
function ct_trck_marvel_410103379(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14847);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchiendcredits
 * Action created: 2021-09-07 00:00:00
 */
function ct_trck_marvel_410104410(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14921);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchifeaturette
 * Action created: 2021-07-30 00:00:00
 */
function ct_trck_marvel_410103300(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14831);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchineedtoknow
 * Action created: 2021-09-03 00:00:00
 */
function ct_trck_marvel_410104054(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchioscarnom
 * Action created: 2022-02-08 00:00:00
 */
function ct_trck_marvel_410107797(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15509);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchirunit
 * Action created: 2021-08-12 00:00:00
 */
function ct_trck_marvel_410103779(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14860);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchitrailer
 * Action created: 2021-06-28 00:00:00
 */
function ct_trck_marvel_410102918(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14721);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieshangchitrailer2
 * Action created: 2021-07-28 00:00:00
 */
function ct_trck_marvel_410103268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14823);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviesmasvdirectors
 * Action created: 2023-06-02 17:37:56
 */
function ct_trck_marvel_410114828(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16788);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviesmcutimeline
 * Action created: 2024-12-12 10:02:34
 */
function ct_trck_marvel_410135213(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20514);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespidermannwhposter
 * Action created: 2021-11-15 00:00:00
 */
function ct_trck_marvel_410105702(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespidermannwhspecial
 * Action created: 2023-01-26 13:54:20
 */
function ct_trck_marvel_410112940(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16433);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespidermannwhtrailer
 * Action created: 2021-11-17 00:00:00
 */
function ct_trck_marvel_410105731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15122);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespiderversethespot
 * Action created: 2022-06-13 10:17:08
 */
function ct_trck_marvel_410109914(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15794);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespiderversetrailer
 * Action created: 2023-04-04 09:53:07
 */
function ct_trck_marvel_410113896(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespideynowayposter
 * Action created: 2021-11-08 00:00:00
 */
function ct_trck_marvel_410105561(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15103);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespideynwhelectro
 * Action created: 2021-12-20 00:00:00
 */
function ct_trck_marvel_410106519(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15215);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespideynwhhomerelease
 * Action created: 2022-02-23 14:30:19
 */
function ct_trck_marvel_410108224(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15568);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespideynwhspillsecrets
 * Action created: 2022-01-27 00:00:00
 */
function ct_trck_marvel_410107658(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15446);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespideynwhtomzendaya
 * Action created: 2021-12-22 00:00:00
 */
function ct_trck_marvel_410106881(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15222);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespideynwhvillainposter
 * Action created: 2021-12-06 00:00:00
 */
function ct_trck_marvel_410106302(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15184);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviespideyspiderversefirstlook
 * Action created: 2021-12-06 00:00:00
 */
function ct_trck_marvel_410106301(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15183);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviesshangchifeaturette
 * Action created: 2021-08-16 13:38:59
 */
function ct_trck_marvel_ctactivityid(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14864);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviesspideynowayhometeaser
 * Action created: 2021-08-24 00:00:00
 */
function ct_trck_marvel_410103912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14880);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviethemarvelsreleasedate
 * Action created: 2023-02-17 12:25:39
 */
function ct_trck_marvel_410113364(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16509);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviethorcharacter
 * Action created: 2022-06-13 11:15:01
 */
function ct_trck_marvel_410109916(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15796);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviethorlatspecial
 * Action created: 2023-09-19 10:45:09
 */
function ct_trck_marvel_410115997(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17024);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviethorlovethunderportman
 * Action created: 2022-04-21 09:10:12
 */
function ct_trck_marvel_410109047(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15671);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviethorlovethunderteaser
 * Action created: 2022-04-18 10:16:49
 */
function ct_trck_marvel_410108996(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15666);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviethortrailerposter
 * Action created: 2022-05-24 09:15:18
 */
function ct_trck_marvel_410109552(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15752);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Moviethunderboltstrailer
 * Action created: 2024-09-23 10:32:09
 */
function ct_trck_marvel_410127912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19134);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movietvmcutimeline
 * Action created: 2024-02-09 17:06:42
 */
function ct_trck_marvel_410117431(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17303);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieupdatedrelease
 * Action created: 2022-04-29 16:16:17
 */
function ct_trck_marvel_410109204(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15702);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieupdatedreleases
 * Action created: 2021-10-18 00:00:00
 */
function ct_trck_marvel_410105262(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15010);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movieupdaterelease
 * Action created: 2023-06-13 15:42:37
 */
function ct_trck_marvel_410114913(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16816);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Movievenomthelastdancetrailer
 * Action created: 2024-09-12 15:40:20
 */
function ct_trck_marvel_410127192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18954);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Msmarvel
 * Action created: 2020-12-10 00:00:00
 */
function ct_trck_marvel_410097815(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12801);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Muholidaysale
 * Action created: 2024-12-10 15:22:15
 */
function ct_trck_marvel_410134973(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20474);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Musthaveswandavisionhalloween
 * Action created: 2021-02-18 00:00:00
 */
function ct_trck_marvel_410099569(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13880);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mustread91120
 * Action created: 2020-09-08 00:00:00
 */
function ct_trck_marvel_410092457(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11920);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mvl616d+
 * Action created: 2020-07-22 00:00:00
 */
function ct_trck_marvel_410091766(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11707);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Mycaptainamerica
 * Action created: 2020-08-03 00:00:00
 */
function ct_trck_marvel_410092068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11779);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Natashaandyelenarelationship
 * Action created: 2021-05-17 00:00:00
 */
function ct_trck_marvel_410101606(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14587);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newblackwidowposters
 * Action created: 2021-05-10 00:00:00
 */
function ct_trck_marvel_410101554(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14572);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newblackwidowproducts
 * Action created: 2020-01-17 00:00:00
 */
function ct_trck_marvel_410087013(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10812);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newcapmerchforfaws
 * Action created: 2021-04-27 00:00:00
 */
function ct_trck_marvel_410101407(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14545);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newdisney+shows2020
 * Action created: 2020-01-02 00:00:00
 */
function ct_trck_marvel_410086763(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10744);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newdisneylandparis
 * Action created: 2019-09-11 00:00:00
 */
function ct_trck_marvel_410082640(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newkatebishopkellythompson
 * Action created: 2020-12-31 00:00:00
 */
function ct_trck_marvel_410098111(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newlokiposter
 * Action created: 2021-05-12 00:00:00
 */
function ct_trck_marvel_410101579(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newlokiposters
 * Action created: 2021-05-26 00:00:00
 */
function ct_trck_marvel_410102053(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14616);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newlokispot505
 * Action created: 2021-05-05 00:00:00
 */
function ct_trck_marvel_410101519(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14562);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newmerchattarget
 * Action created: 2021-03-25 00:00:00
 */
function ct_trck_marvel_410100909(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14400);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newshopmarvel
 * Action created: 2020-07-17 00:00:00
 */
function ct_trck_marvel_410091743(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11691);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newspideyaddias
 * Action created: 2021-05-25 00:00:00
 */
function ct_trck_marvel_410102041(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14614);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newspideymerch
 * Action created: 2020-11-13 00:00:00
 */
function ct_trck_marvel_410097354(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12358);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newvenomfunkos
 * Action created: 2021-05-11 00:00:00
 */
function ct_trck_marvel_410101563(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14574);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Newwakandaseriescomingtod+
 * Action created: 2021-02-01 00:00:00
 */
function ct_trck_marvel_410099021(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13622);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Nonfictiondisney+
 * Action created: 2019-04-10 00:00:00
 */
function ct_trck_marvel_410072608(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Novelelsabloodstonebequest
 * Action created: 2021-03-03 00:00:00
 */
function ct_trck_marvel_410099770(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14081);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Nycc19funkos
 * Action created: 2019-09-05 00:00:00
 */
function ct_trck_marvel_410082448(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Nycc19panel
 * Action created: 2019-09-04 00:00:00
 */
function ct_trck_marvel_410082130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Nyccmetaverse
 * Action created: 2020-09-24 00:00:00
 */
function ct_trck_marvel_410092755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12027);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Nyplbestbooks2019
 * Action created: 2019-12-20 00:00:00
 */
function ct_trck_marvel_410085782(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10694);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Offendersintro
 * Action created: 2019-02-11 00:00:00
 */
function ct_trck_marvel_410069375(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Olympiansavengers
 * Action created: 2020-09-18 00:00:00
 */
function ct_trck_marvel_410092693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12001);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Oscarhighlights
 * Action created: 2019-02-26 00:00:00
 */
function ct_trck_marvel_410070088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Oscarissacmoonknight
 * Action created: 2021-05-27 00:00:00
 */
function ct_trck_marvel_410102071(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14619);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parks7thingsavengerscampus
 * Action created: 2021-06-16 00:00:00
 */
function ct_trck_marvel_410102803(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14687);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksacamerica
 * Action created: 2022-04-28 16:57:08
 */
function ct_trck_marvel_410109153(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15695);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksacfury
 * Action created: 2023-06-21 17:07:59
 */
function ct_trck_marvel_410115058(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16831);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksackang
 * Action created: 2023-02-17 13:49:04
 */
function ct_trck_marvel_410113369(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16511);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksacloki
 * Action created: 2023-10-06 09:35:11
 */
function ct_trck_marvel_410116199(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17052);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksacshangchi
 * Action created: 2021-09-03 00:00:00
 */
function ct_trck_marvel_410104059(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14900);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksacwomlomboy
 * Action created: 2023-04-27 16:22:14
 */
function ct_trck_marvel_410114307(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16689);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksartofmarvelopen
 * Action created: 2021-06-22 00:00:00
 */
function ct_trck_marvel_410102865(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksavengerscampus2021
 * Action created: 2021-04-08 00:00:00
 */
function ct_trck_marvel_410101108(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14498);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksavengerscampusdetails
 * Action created: 2021-06-06 00:00:00
 */
function ct_trck_marvel_410102144(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14662);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksavengerscampushistory
 * Action created: 2021-06-06 00:00:00
 */
function ct_trck_marvel_410102143(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14661);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksavengerscampuspeek
 * Action created: 2021-04-08 00:00:00
 */
function ct_trck_marvel_410101109(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14499);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksavengerscampuspymkitchen
 * Action created: 2021-07-22 00:00:00
 */
function ct_trck_marvel_410103208(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14804);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksbpac
 * Action created: 2022-11-14 09:10:13
 */
function ct_trck_marvel_410111995(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16224);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parkscapworldofcolorone
 * Action created: 2023-01-27 15:38:51
 */
function ct_trck_marvel_410112956(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parkscruisediningexperience
 * Action created: 2021-07-08 00:00:00
 */
function ct_trck_marvel_410103028(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14760);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksdayatseacruise
 * Action created: 2022-01-26 00:00:00
 */
function ct_trck_marvel_410107625(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15443);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksdcamoongirl
 * Action created: 2023-02-09 14:22:27
 */
function ct_trck_marvel_410113230(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16483);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksdcarogersmusical
 * Action created: 2023-04-10 12:02:03
 */
function ct_trck_marvel_410113942(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16627);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksdclmarveldayatsea2024
 * Action created: 2023-02-02 12:29:01
 */
function ct_trck_marvel_410113101(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16465);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksdclmarveldayatseacharacters
 * Action created: 2023-04-17 16:26:56
 */
function ct_trck_marvel_410114035(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16643);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksdclmarveldayatseafood
 * Action created: 2023-04-13 14:27:10
 */
function ct_trck_marvel_410114000(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16635);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksdlpwomenofmarvelexhibition
 * Action created: 2023-03-08 12:20:19
 */
function ct_trck_marvel_410113647(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16551);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksdlrogersthemusical
 * Action created: 2023-02-23 13:43:37
 */
function ct_trck_marvel_410113417(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16531);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parkseternals
 * Action created: 2021-11-05 00:00:00
 */
function ct_trck_marvel_410105527(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15086);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksgotgcelestial
 * Action created: 2022-04-15 17:01:30
 */
function ct_trck_marvel_410108992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15664);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksgotgfirstlook
 * Action created: 2022-04-27 18:15:06
 */
function ct_trck_marvel_410109121(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15692);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksgotgneedtoknow
 * Action created: 2022-05-05 11:42:32
 */
function ct_trck_marvel_410109243(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15711);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksgotgopening
 * Action created: 2021-09-30 00:00:00
 */
function ct_trck_marvel_410105060(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14967);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksgotgopeningdate
 * Action created: 2022-04-04 09:36:34
 */
function ct_trck_marvel_410108777(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15636);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksgotgpavilion
 * Action created: 2022-06-07 10:35:24
 */
function ct_trck_marvel_410109705(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15780);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksgotgstarjumper
 * Action created: 2022-03-03 09:13:40
 */
function ct_trck_marvel_410108373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15583);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksgotgwalkthrough
 * Action created: 2022-05-26 16:19:14
 */
function ct_trck_marvel_410109602(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15759);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parkshawkeye
 * Action created: 2021-11-24 00:00:00
 */
function ct_trck_marvel_410105882(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15149);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksheroicphotowall
 * Action created: 2021-06-14 00:00:00
 */
function ct_trck_marvel_410102772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14679);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksmoonknight
 * Action created: 2022-03-31 10:28:16
 */
function ct_trck_marvel_410108747(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15629);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksmrknight
 * Action created: 2022-04-08 10:11:10
 */
function ct_trck_marvel_410108837(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15645);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksmsmarvel
 * Action created: 2022-06-08 14:02:13
 */
function ct_trck_marvel_410109722(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15786);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksnewvehicle
 * Action created: 2023-09-11 09:38:43
 */
function ct_trck_marvel_410115894(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17011);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksparisac
 * Action created: 2022-05-24 15:01:50
 */
function ct_trck_marvel_410109557(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15753);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksspidermansuit
 * Action created: 2019-03-22 00:00:00
 */
function ct_trck_marvel_410071328(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksstanleeplaque
 * Action created: 2022-02-28 17:02:29
 */
function ct_trck_marvel_410108325(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Parksswac
 * Action created: 2022-05-06 11:05:03
 */
function ct_trck_marvel_410109259(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15716);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Patrioticfunkostarget
 * Action created: 2021-05-20 00:00:00
 */
function ct_trck_marvel_410101982(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Paulbettanytwovisions
 * Action created: 2021-03-05 00:00:00
 */
function ct_trck_marvel_410099843(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14121);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Paulbettanywvinterview
 * Action created: 2021-02-10 00:00:00
 */
function ct_trck_marvel_410099171(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13781);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Pepperceo
 * Action created: 2020-04-17 00:00:00
 */
function ct_trck_marvel_410089815(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11328);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Phase4rollouteternals
 * Action created: 2021-05-03 00:00:00
 */
function ct_trck_marvel_410101461(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14552);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Pietroonwandavision
 * Action created: 2021-02-08 00:00:00
 */
function ct_trck_marvel_410099133(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13741);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Podcasthistoryofmarvelcomics
 * Action created: 2022-01-31 00:00:00
 */
function ct_trck_marvel_410107704(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15483);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Podcastmarvelvoicess4
 * Action created: 2021-06-21 00:00:00
 */
function ct_trck_marvel_410102849(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14696);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Podcastoldmanhawkeye
 * Action created: 2021-09-21 00:00:00
 */
function ct_trck_marvel_410104532(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14946);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Podcastsquirrelgirllaunch
 * Action created: 2022-04-18 09:34:20
 */
function ct_trck_marvel_410108995(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15665);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Podcasttownhall
 * Action created: 2021-05-20 00:00:00
 */
function ct_trck_marvel_410101996(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14603);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Podcastwastelandersblackwidow
 * Action created: 2021-12-20 00:00:00
 */
function ct_trck_marvel_410106521(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Podcastwastelanderwolverine
 * Action created: 2022-06-13 11:14:02
 */
function ct_trck_marvel_410109915(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15795);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Posterscaptainmarvel
 * Action created: 2019-01-16 00:00:00
 */
function ct_trck_marvel_410068052(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5400);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Postmatesdeadpool
 * Action created: 2021-04-01 00:00:00
 */
function ct_trck_marvel_410101054(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14482);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Pratthollandonward
 * Action created: 2020-02-19 00:00:00
 */
function ct_trck_marvel_410087602(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10998);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Pridemonthmerch21
 * Action created: 2021-05-03 00:00:00
 */
function ct_trck_marvel_410101462(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14553);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Randallparkinterview
 * Action created: 2021-02-17 00:00:00
 */
function ct_trck_marvel_410099548(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13862);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Recapblackwidowbites
 * Action created: 2020-07-15 00:00:00
 */
function ct_trck_marvel_410091711(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11684);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Recapeyeofagamotto
 * Action created: 2020-09-10 00:00:00
 */
function ct_trck_marvel_410092592(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Recapprofxcerebrohelmet
 * Action created: 2020-10-07 00:00:00
 */
function ct_trck_marvel_410096238(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12127);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Rememberinggerryalanguilan
 * Action created: 2020-01-02 00:00:00
 */
function ct_trck_marvel_410086761(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10743);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Reservationshotelnyparis
 * Action created: 2019-11-05 00:00:00
 */
function ct_trck_marvel_410085049(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10484);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Retrotoysattarget
 * Action created: 2020-11-17 00:00:00
 */
function ct_trck_marvel_410097390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12383);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Rockloveblackwidow
 * Action created: 2020-07-08 00:00:00
 */
function ct_trck_marvel_410091540(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawayscastcelebratesstanlee
 * Action created: 2019-12-17 00:00:00
 */
function ct_trck_marvel_410085726(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10680);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawayscastlookingforward
 * Action created: 2019-12-16 00:00:00
 */
function ct_trck_marvel_410085613(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10679);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysconnections
 * Action created: 2019-01-07 00:00:00
 */
function ct_trck_marvel_410067502(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5158);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysgertmollysisters
 * Action created: 2020-01-24 00:00:00
 */
function ct_trck_marvel_410087128(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10825);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysguidetola
 * Action created: 2020-01-13 00:00:00
 */
function ct_trck_marvel_410086921(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10800);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawayshurleyinterview
 * Action created: 2019-12-11 00:00:00
 */
function ct_trck_marvel_410085532(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10647);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysmeetcloakanddagger
 * Action created: 2019-12-09 00:00:00
 */
function ct_trck_marvel_410085392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10640);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysprimerthepride
 * Action created: 2019-12-10 00:00:00
 */
function ct_trck_marvel_410085518(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10643);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawayss3announcement
 * Action created: 2019-03-26 00:00:00
 */
function ct_trck_marvel_410071434(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawayss3songs
 * Action created: 2019-12-18 00:00:00
 */
function ct_trck_marvel_410085740(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10686);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysseason3poster
 * Action created: 2019-11-15 00:00:00
 */
function ct_trck_marvel_410085155(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10528);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysseason3preview
 * Action created: 2019-12-05 00:00:00
 */
function ct_trck_marvel_410085358(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10619);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysseason3primer
 * Action created: 2019-12-06 00:00:00
 */
function ct_trck_marvel_410085366(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10623);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Runawaysseason3psoter
 * Action created: 2019-09-30 00:00:00
 */
function ct_trck_marvel_410083417(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10001);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Rundisney5k
 * Action created: 2019-03-29 00:00:00
 */
function ct_trck_marvel_410071591(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Ruthecarterstaronhollywoodwalkof1614303592
 * Action created: 2021-02-25 00:00:00
 */
function ct_trck_marvel_410099681(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14006);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Scaryvideobackgrounds
 * Action created: 2020-10-02 00:00:00
 */
function ct_trck_marvel_410092838(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Sdcc24schedule
 * Action created: 2024-07-16 10:30:43
 */
function ct_trck_marvel_410122639(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18113);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Sdccathome2021
 * Action created: 2021-07-22 00:00:00
 */
function ct_trck_marvel_410103212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14805);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Sdcclineup
 * Action created: 2019-07-01 00:00:00
 */
function ct_trck_marvel_410078036(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8420);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Sdcclookback
 * Action created: 2020-07-24 00:00:00
 */
function ct_trck_marvel_410091790(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11722);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Secretwarsd+
 * Action created: 2019-12-05 00:00:00
 */
function ct_trck_marvel_410085355(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shadowsaftershow
 * Action created: 2019-03-28 00:00:00
 */
function ct_trck_marvel_410071516(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shadowsmayhem
 * Action created: 2019-05-01 00:00:00
 */
function ct_trck_marvel_410074049(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7338);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shadowss2primer
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072276(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6760);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shangchiteaser
 * Action created: 2021-04-19 00:00:00
 */
function ct_trck_marvel_410101307(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14518);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shangechiwrapsproduction
 * Action created: 2020-10-30 00:00:00
 */
function ct_trck_marvel_410097116(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12243);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Sharoncarterasthepowerbroker
 * Action created: 2021-04-26 00:00:00
 */
function ct_trck_marvel_410101388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14542);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shehulk
 * Action created: 2020-12-10 00:00:00
 */
function ct_trck_marvel_410097817(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12803);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shieldauction
 * Action created: 2020-08-04 00:00:00
 */
function ct_trck_marvel_410092078(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11780);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shieldauctionopen
 * Action created: 2020-10-08 00:00:00
 */
function ct_trck_marvel_410096253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12129);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shieldfinalseason
 * Action created: 2020-04-14 00:00:00
 */
function ct_trck_marvel_410089772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11321);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shieldvshydra
 * Action created: 2020-08-11 00:00:00
 */
function ct_trck_marvel_410092148(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11802);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shopdisneymarvelmania
 * Action created: 2020-10-06 00:00:00
 */
function ct_trck_marvel_410092864(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12123);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shopmarvel91720
 * Action created: 2020-09-17 00:00:00
 */
function ct_trck_marvel_410092682(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11999);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shopmarvelhalloween
 * Action created: 2020-10-16 00:00:00
 */
function ct_trck_marvel_410096372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12179);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shopmarvellatest
 * Action created: 2020-08-13 00:00:00
 */
function ct_trck_marvel_410092183(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11814);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shopsdcc
 * Action created: 2020-07-24 00:00:00
 */
function ct_trck_marvel_410091791(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11723);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Shutterstock
 * Action created: 2022-11-22 12:34:22
 */
function ct_trck_marvel_410112123(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16242);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Simuliusharesshangchimerch
 * Action created: 2021-04-20 00:00:00
 */
function ct_trck_marvel_410101322(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14526);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Sinistersubstitute
 * Action created: 2021-01-04 00:00:00
 */
function ct_trck_marvel_410098131(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13279);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Siriusxmannouncement
 * Action created: 2019-10-22 00:00:00
 */
function ct_trck_marvel_410084590(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10397);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Skottieyoungstrangeacademy
 * Action created: 2020-02-07 00:00:00
 */
function ct_trck_marvel_410087425(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10920);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Sousareturnstoshield
 * Action created: 2020-04-16 00:00:00
 */
function ct_trck_marvel_410089801(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11326);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Spiderhamhotdogs
 * Action created: 2019-09-23 00:00:00
 */
function ct_trck_marvel_410083182(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Spidermamnowayhomeannounce
 * Action created: 2021-02-24 00:00:00
 */
function ct_trck_marvel_410099635(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13982);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Spidermanmacysthanksgivingparade
 * Action created: 2024-09-30 10:11:24
 */
function ct_trck_marvel_410128792(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19254);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Spidermanposterbook
 * Action created: 2020-07-21 00:00:00
 */
function ct_trck_marvel_410091755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11702);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Spiderversedifficultshot
 * Action created: 2021-04-23 00:00:00
 */
function ct_trck_marvel_410101372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14538);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Spiderversesequel
 * Action created: 2019-11-04 00:00:00
 */
function ct_trck_marvel_410085008(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Spookyspirit
 * Action created: 2019-10-29 00:00:00
 */
function ct_trck_marvel_410084919(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10441);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Stanleeofficevisit
 * Action created: 2019-09-06 00:00:00
 */
function ct_trck_marvel_410082471(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Storyboards
 * Action created: 2020-07-20 00:00:00
 */
function ct_trck_marvel_410091753(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11700);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Storyboardsdisney+
 * Action created: 2019-07-15 00:00:00
 */
function ct_trck_marvel_410078577(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8639);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Storyboardstrailer
 * Action created: 2020-07-22 00:00:00
 */
function ct_trck_marvel_410091762(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11704);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Studiosdropsfinalfawstrailer
 * Action created: 2021-03-15 00:00:00
 */
function ct_trck_marvel_410100716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14240);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Superherosondisneywish
 * Action created: 2021-04-29 00:00:00
 */
function ct_trck_marvel_410101433(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14550);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Superiorspidermanarc
 * Action created: 2019-09-13 00:00:00
 */
function ct_trck_marvel_410082761(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9799);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Supportcomics
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089324(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11228);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Taikathorwatchparty
 * Action created: 2020-04-09 00:00:00
 */
function ct_trck_marvel_410089697(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11294);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Teyonahparrisaskedanswered
 * Action created: 2021-02-26 00:00:00
 */
function ct_trck_marvel_410099689(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Teyonahparrisinterview
 * Action created: 2021-02-22 00:00:00
 */
function ct_trck_marvel_410099598(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13922);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Teyonahparriswandavision
 * Action created: 2020-11-11 00:00:00
 */
function ct_trck_marvel_410097293(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12319);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Thanossightings
 * Action created: 2020-09-15 00:00:00
 */
function ct_trck_marvel_410092662(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11981);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Thewolverined+
 * Action created: 2020-09-01 00:00:00
 */
function ct_trck_marvel_410092412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11899);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Thingsfromthebwtrailer
 * Action created: 2020-03-10 00:00:00
 */
function ct_trck_marvel_410088018(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11121);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Thorlovethunderwraps
 * Action created: 2021-06-02 00:00:00
 */
function ct_trck_marvel_410102111(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14640);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Thorredemption
 * Action created: 2020-08-05 00:00:00
 */
function ct_trck_marvel_410092094(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11783);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Timetravelshield
 * Action created: 2020-07-10 00:00:00
 */
function ct_trck_marvel_410091563(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11663);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tomhiddlestonmemorableloki
 * Action created: 2021-05-25 00:00:00
 */
function ct_trck_marvel_410102039(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14613);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tomhiddlestonrecap
 * Action created: 2021-05-20 00:00:00
 */
function ct_trck_marvel_410101993(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14602);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tomhiddlestonreflects
 * Action created: 2021-05-25 00:00:00
 */
function ct_trck_marvel_410102036(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14612);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Top6deanoru
 * Action created: 2020-02-13 00:00:00
 */
function ct_trck_marvel_410087520(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10951);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Toppstradingcards
 * Action created: 2019-05-22 00:00:00
 */
function ct_trck_marvel_410074890(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Toyfair2019
 * Action created: 2019-02-20 00:00:00
 */
function ct_trck_marvel_410069911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Toyfair2020
 * Action created: 2020-02-24 00:00:00
 */
function ct_trck_marvel_410087660(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11039);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tragicavastarr
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097084(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12233);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tributetoshuri
 * Action created: 2020-04-10 00:00:00
 */
function ct_trck_marvel_410089719(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tv2021emmynoms
 * Action created: 2021-07-14 00:00:00
 */
function ct_trck_marvel_410103090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14786);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvagathaallalong70s
 * Action created: 2024-10-04 16:32:54
 */
function ct_trck_marvel_410129552(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19374);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvagathaallalongcostumes
 * Action created: 2024-10-07 14:05:44
 */
function ct_trck_marvel_410129574(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19394);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvagathaallalongfinalebreakdown
 * Action created: 2024-11-04 14:36:30
 */
function ct_trck_marvel_410132312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19934);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvagathaallalongjacinterview
 * Action created: 2024-09-25 11:23:41
 */
function ct_trck_marvel_410128373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19194);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvagathaallalongkathyrnhahninter1726513228
 * Action created: 2024-09-16 15:00:28
 */
function ct_trck_marvel_410127313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18994);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvagathaallalongtrials
 * Action created: 2024-10-29 17:23:51
 */
function ct_trck_marvel_410131852(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19814);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvagathatrailerandmore
 * Action created: 2024-07-08 14:36:31
 */
function ct_trck_marvel_410122593(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18074);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvagathawiccan
 * Action created: 2024-10-21 14:15:31
 */
function ct_trck_marvel_410130995(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19674);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvcrossover
 * Action created: 2019-08-01 00:00:00
 */
function ct_trck_marvel_410079791(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8960);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvdardeviltrailerandmore
 * Action created: 2025-01-15 11:22:46
 */
function ct_trck_marvel_410137112(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 21074);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvdaredevilpodcast
 * Action created: 2024-11-13 14:44:52
 */
function ct_trck_marvel_410133094(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20114);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvdisneyplusday
 * Action created: 2021-09-22 00:00:00
 */
function ct_trck_marvel_410104541(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14948);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvdisneyplusdaynews
 * Action created: 2021-11-12 00:00:00
 */
function ct_trck_marvel_410105680(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15116);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvdisneyplusdaystudios
 * Action created: 2021-11-12 00:00:00
 */
function ct_trck_marvel_410105683(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvdisneyplusimax
 * Action created: 2021-11-08 00:00:00
 */
function ct_trck_marvel_410105562(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15104);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvdisneyplusimax2
 * Action created: 2021-11-10 00:00:00
 */
function ct_trck_marvel_410105620(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15108);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvechodirector
 * Action created: 2023-11-03 14:42:11
 */
function ct_trck_marvel_410116588(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17124);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvechoproduction
 * Action created: 2022-05-17 11:05:34
 */
function ct_trck_marvel_410109389(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvechotrailer
 * Action created: 2023-11-03 14:38:47
 */
function ct_trck_marvel_410116587(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17123);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvfriendlyneighboorhoodsmtrailer
 * Action created: 2024-12-30 10:57:31
 */
function ct_trck_marvel_410136192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20794);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvgrootseason2
 * Action created: 2023-09-06 16:40:39
 */
function ct_trck_marvel_410115842(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17005);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyechristmas
 * Action created: 2021-11-24 00:00:00
 */
function ct_trck_marvel_410105881(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15148);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyeep1recap
 * Action created: 2021-11-24 00:00:00
 */
function ct_trck_marvel_410105879(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15146);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyeep2recap
 * Action created: 2021-11-24 00:00:00
 */
function ct_trck_marvel_410105880(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15147);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyeep3recap
 * Action created: 2021-12-02 00:00:00
 */
function ct_trck_marvel_410106025(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15166);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyeep4recap
 * Action created: 2021-12-08 00:00:00
 */
function ct_trck_marvel_410106339(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15189);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyeep5recap
 * Action created: 2021-12-15 00:00:00
 */
function ct_trck_marvel_410106436(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15208);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyeep6recap
 * Action created: 2021-12-23 00:00:00
 */
function ct_trck_marvel_410107194(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15243);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyemusical
 * Action created: 2021-11-10 00:00:00
 */
function ct_trck_marvel_410105616(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15107);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyepartnerevolution
 * Action created: 2021-12-23 00:00:00
 */
function ct_trck_marvel_410107195(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15244);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyepremieredate
 * Action created: 2021-07-29 00:00:00
 */
function ct_trck_marvel_410103290(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14827);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyeteamup
 * Action created: 2021-11-03 00:00:00
 */
function ct_trck_marvel_410105481(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15067);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyetrailerposter
 * Action created: 2021-09-13 00:00:00
 */
function ct_trck_marvel_410104459(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14935);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyetwoeps
 * Action created: 2021-10-14 00:00:00
 */
function ct_trck_marvel_410105232(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15003);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhawkeyeyelena
 * Action created: 2021-12-20 00:00:00
 */
function ct_trck_marvel_410106524(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15219);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhitmonkey
 * Action created: 2021-09-20 00:00:00
 */
function ct_trck_marvel_410104524(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14945);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhitmonkeyhulu
 * Action created: 2021-11-23 00:00:00
 */
function ct_trck_marvel_410105875(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15143);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhitmonkeys2trailer
 * Action created: 2024-06-27 11:32:39
 */
function ct_trck_marvel_410122497(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17996);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvhitmonkeyseason2
 * Action created: 2023-02-02 13:16:14
 */
function ct_trck_marvel_410113102(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16466);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tviamgrootposter
 * Action created: 2022-06-06 09:21:51
 */
function ct_trck_marvel_410109678(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15778);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tviamgroots2
 * Action created: 2023-08-07 09:28:55
 */
function ct_trck_marvel_410115530(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16934);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvimsmarvelavengercon
 * Action created: 2022-06-08 09:16:42
 */
function ct_trck_marvel_410109717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15783);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvimsmarvelep1recap
 * Action created: 2022-06-08 09:17:43
 */
function ct_trck_marvel_410109718(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15784);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvliveactiondisneyplus
 * Action created: 2022-03-01 11:14:59
 */
function ct_trck_marvel_410108338(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokicliffhanger
 * Action created: 2021-07-15 00:00:00
 */
function ct_trck_marvel_410103105(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14788);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokiechopremieredates
 * Action created: 2023-05-17 11:27:58
 */
function ct_trck_marvel_410114631(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16736);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokiep1recap
 * Action created: 2021-06-11 00:00:00
 */
function ct_trck_marvel_410102308(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14670);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokiep2recap
 * Action created: 2021-06-16 00:00:00
 */
function ct_trck_marvel_410102800(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14684);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokiep3recap
 * Action created: 2021-06-23 00:00:00
 */
function ct_trck_marvel_410102883(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14702);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokiep4recap
 * Action created: 2021-06-30 00:00:00
 */
function ct_trck_marvel_410102956(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14726);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokiep5recap
 * Action created: 2021-07-07 00:00:00
 */
function ct_trck_marvel_410103004(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14742);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokiep6recap
 * Action created: 2021-07-14 00:00:00
 */
function ct_trck_marvel_410103087(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14785);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokimcdonalds
 * Action created: 2023-08-30 17:35:41
 */
function ct_trck_marvel_410115800(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16974);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokimeetotherlokis
 * Action created: 2021-07-07 00:00:00
 */
function ct_trck_marvel_410103005(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14743);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokimeetsylvie
 * Action created: 2021-06-24 00:00:00
 */
function ct_trck_marvel_410102892(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14703);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokimobiusfriendship
 * Action created: 2021-06-16 00:00:00
 */
function ct_trck_marvel_410102799(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14683);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokirenslayerfeaturette
 * Action created: 2021-06-11 00:00:00
 */
function ct_trck_marvel_410102315(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14673);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2ending
 * Action created: 2023-11-13 12:12:48
 */
function ct_trck_marvel_410116653(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17149);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2ep6
 * Action created: 2023-11-10 13:24:16
 */
function ct_trck_marvel_410116648(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17146);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2eps56
 * Action created: 2023-10-27 13:00:04
 */
function ct_trck_marvel_410116503(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17108);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2family
 * Action created: 2023-10-06 09:33:53
 */
function ct_trck_marvel_410116198(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17051);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2featurette
 * Action created: 2023-09-18 12:06:31
 */
function ct_trck_marvel_410115983(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17022);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2missminutes
 * Action created: 2023-10-20 09:00:08
 */
function ct_trck_marvel_410116352(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17084);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2obworkspace
 * Action created: 2023-11-03 12:20:45
 */
function ct_trck_marvel_410116585(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17121);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2sylvie
 * Action created: 2023-10-13 10:02:03
 */
function ct_trck_marvel_410116254(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17069);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2throughtheyears
 * Action created: 2023-09-25 15:29:18
 */
function ct_trck_marvel_410116075(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17032);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokis2trailer
 * Action created: 2023-07-31 12:10:27
 */
function ct_trck_marvel_410115466(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16923);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokiseason2
 * Action created: 2021-07-15 00:00:00
 */
function ct_trck_marvel_410103106(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14789);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvlokivariantposter
 * Action created: 2021-06-21 00:00:00
 */
function ct_trck_marvel_410102848(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14695);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmarvelwheeloffortune
 * Action created: 2024-03-18 16:23:09
 */
function ct_trck_marvel_410121594(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17483);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmcuspooky
 * Action created: 2023-10-24 12:26:13
 */
function ct_trck_marvel_410116396(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17103);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmen97newagefeaturette
 * Action created: 2024-03-13 16:47:50
 */
function ct_trck_marvel_410121559(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17445);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmgdd2announcement
 * Action created: 2023-12-13 13:53:25
 */
function ct_trck_marvel_410116932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17191);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmhqlegoavengerscodered
 * Action created: 2024-03-18 12:54:50
 */
function ct_trck_marvel_410121573(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17463);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmhqspiderman
 * Action created: 2024-02-09 11:54:36
 */
function ct_trck_marvel_410117426(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17300);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoongirlcharacters
 * Action created: 2022-02-07 00:00:00
 */
function ct_trck_marvel_410107786(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15507);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoongirldisneyplus
 * Action created: 2023-02-16 11:56:43
 */
function ct_trck_marvel_410113321(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16507);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoongirlsmulders
 * Action created: 2023-04-28 15:19:47
 */
function ct_trck_marvel_410114343(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16696);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoongirlteaser
 * Action created: 2021-12-15 00:00:00
 */
function ct_trck_marvel_410106446(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15209);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoongirlwatchnow
 * Action created: 2023-02-10 11:38:21
 */
function ct_trck_marvel_410113236(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16485);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightambiguousending
 * Action created: 2022-05-04 09:39:46
 */
function ct_trck_marvel_410109240(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15709);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightbiggame
 * Action created: 2022-02-13 19:13:44
 */
function ct_trck_marvel_410107938(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15546);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightcontactlens
 * Action created: 2022-03-17 14:12:24
 */
function ct_trck_marvel_410108538(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15604);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightempire
 * Action created: 2022-02-11 16:42:46
 */
function ct_trck_marvel_410107933(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15544);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightempireinterview
 * Action created: 2022-02-15 16:32:50
 */
function ct_trck_marvel_410108086(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15549);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightep1recap
 * Action created: 2022-03-30 10:11:19
 */
function ct_trck_marvel_410108723(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15628);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightep2recap
 * Action created: 2022-04-06 09:08:37
 */
function ct_trck_marvel_410108808(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15640);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightep3recap
 * Action created: 2022-04-13 09:05:25
 */
function ct_trck_marvel_410108948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15655);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightep5recap
 * Action created: 2022-04-27 09:19:34
 */
function ct_trck_marvel_410109099(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15689);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightep6recap
 * Action created: 2022-05-04 09:38:40
 */
function ct_trck_marvel_410109239(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15708);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightfeaturette
 * Action created: 2022-03-10 10:59:56
 */
function ct_trck_marvel_410108418(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15591);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightfeaturette2
 * Action created: 2022-03-25 09:37:14
 */
function ct_trck_marvel_410108661(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15615);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknighthawke
 * Action created: 2022-04-13 09:16:49
 */
function ct_trck_marvel_410108949(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15656);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightmarcsteve
 * Action created: 2022-04-27 09:20:53
 */
function ct_trck_marvel_410109100(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15690);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightneedtoknow
 * Action created: 2022-03-29 18:17:07
 */
function ct_trck_marvel_410108716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15626);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightnewposter
 * Action created: 2022-03-01 09:17:52
 */
function ct_trck_marvel_410108335(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightpremiere
 * Action created: 2022-03-23 14:29:27
 */
function ct_trck_marvel_410108613(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15610);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightspectormrknight
 * Action created: 2022-04-06 09:08:16
 */
function ct_trck_marvel_410108809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15639);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknighttrailer
 * Action created: 2022-01-18 00:00:00
 */
function ct_trck_marvel_410107490(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15383);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoonknightwaitingroom
 * Action created: 2022-03-25 10:02:11
 */
function ct_trck_marvel_410108663(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmoviestudioslookahead
 * Action created: 2024-10-30 12:00:27
 */
function ct_trck_marvel_410131952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19834);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmpowerdisneyplus
 * Action created: 2023-03-08 09:17:00
 */
function ct_trck_marvel_410113644(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16548);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvelavengercon2
 * Action created: 2022-06-09 14:16:03
 */
function ct_trck_marvel_410109843(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15789);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvelemmy
 * Action created: 2023-12-07 15:29:44
 */
function ct_trck_marvel_410116894(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17175);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvelep2recap
 * Action created: 2022-06-15 10:03:54
 */
function ct_trck_marvel_410109941(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15801);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvelep3recap
 * Action created: 2022-06-22 09:40:27
 */
function ct_trck_marvel_410110026(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15816);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvelep4recap
 * Action created: 2022-06-29 07:58:52
 */
function ct_trck_marvel_410110117(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15826);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvelep5recap
 * Action created: 2022-07-06 09:59:01
 */
function ct_trck_marvel_410110228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15846);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvelep6recap
 * Action created: 2022-07-13 09:58:38
 */
function ct_trck_marvel_410110315(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15866);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvelfeaturette
 * Action created: 2022-05-19 14:45:20
 */
function ct_trck_marvel_410109454(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15747);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarvellaunchdate
 * Action created: 2022-03-15 10:10:45
 */
function ct_trck_marvel_410108484(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15596);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvmsmarveltca
 * Action created: 2023-08-07 18:20:55
 */
function ct_trck_marvel_410115533(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16936);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvs1bluray
 * Action created: 2023-08-21 10:55:21
 */
function ct_trck_marvel_410115702(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsahaf3announcement
 * Action created: 2023-12-05 16:07:14
 */
function ct_trck_marvel_410116884(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17172);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsahafdisneyjrlivetour
 * Action created: 2024-05-13 10:29:13
 */
function ct_trck_marvel_410122124(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17749);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasioncharacterposters
 * Action created: 2023-05-22 09:56:30
 */
function ct_trck_marvel_410114689(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16753);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasioncode
 * Action created: 2023-06-08 16:39:53
 */
function ct_trck_marvel_410114874(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16809);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasionhill
 * Action created: 2023-06-25 08:40:17
 */
function ct_trck_marvel_410115087(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16836);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasionjackson
 * Action created: 2023-06-21 09:20:37
 */
function ct_trck_marvel_410114998(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16829);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasionmoviestowatch
 * Action created: 2023-06-16 10:51:38
 */
function ct_trck_marvel_410114949(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16822);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasionnewtrailer
 * Action created: 2023-07-17 16:23:35
 */
function ct_trck_marvel_410115291(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16883);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasionposters2
 * Action created: 2023-06-07 15:30:46
 */
function ct_trck_marvel_410114862(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16806);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasionrhodey
 * Action created: 2023-07-12 10:47:32
 */
function ct_trck_marvel_410115255(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16856);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasionskrullmance
 * Action created: 2023-07-05 09:34:58
 */
function ct_trck_marvel_410115209(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16848);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsecretinvasiontrailer
 * Action created: 2023-04-03 10:47:12
 */
function ct_trck_marvel_410113878(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16614);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep1recap
 * Action created: 2022-08-18 09:25:38
 */
function ct_trck_marvel_410110836(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15958);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep2recap
 * Action created: 2022-08-25 09:37:32
 */
function ct_trck_marvel_410110952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15973);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep3recap
 * Action created: 2022-09-01 09:39:42
 */
function ct_trck_marvel_410111075(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15981);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep4recap
 * Action created: 2022-09-08 09:21:22
 */
function ct_trck_marvel_410111129(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16010);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep5recap
 * Action created: 2022-09-15 09:16:32
 */
function ct_trck_marvel_410111205(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep6recap
 * Action created: 2022-09-22 09:14:10
 */
function ct_trck_marvel_410111290(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16048);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep7recap
 * Action created: 2022-09-29 09:19:06
 */
function ct_trck_marvel_410111417(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16083);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep8recap
 * Action created: 2022-10-06 07:58:33
 */
function ct_trck_marvel_410111486(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16102);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkep9recap
 * Action created: 2022-10-13 09:42:50
 */
function ct_trck_marvel_410111543(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkfeaturette
 * Action created: 2022-07-27 14:00:04
 */
function ct_trck_marvel_410110474(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15916);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvshehulkfirsttrailer
 * Action created: 2022-05-17 18:43:14
 */
function ct_trck_marvel_410109399(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15739);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvsignaturesound
 * Action created: 2024-07-01 14:47:11
 */
function ct_trck_marvel_410122522(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18034);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvspidermandisneyplus
 * Action created: 2023-04-20 13:05:41
 */
function ct_trck_marvel_410114087(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvspideyfriendscontest
 * Action created: 2021-07-02 00:00:00
 */
function ct_trck_marvel_410102983(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14734);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvspideyfriendspremiere
 * Action created: 2021-06-16 00:00:00
 */
function ct_trck_marvel_410102802(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14686);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvspideyfriendss2
 * Action created: 2022-04-29 16:14:01
 */
function ct_trck_marvel_410109203(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15700);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvspideyfriendsthemesong
 * Action created: 2021-06-08 00:00:00
 */
function ct_trck_marvel_410102270(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14666);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvstanleedisneyplusjune
 * Action created: 2023-04-18 13:28:37
 */
function ct_trck_marvel_410114058(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16645);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvvoicesrisingwakandaforever
 * Action created: 2023-02-28 13:03:28
 */
function ct_trck_marvel_410113499(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwerewoflbynightcolor
 * Action created: 2023-09-29 15:59:51
 */
function ct_trck_marvel_410116139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17039);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatif3trailer
 * Action created: 2024-11-11 13:25:26
 */
function ct_trck_marvel_410132914(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20034);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifapplevisionpro
 * Action created: 2024-05-08 11:36:19
 */
function ct_trck_marvel_410122107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17713);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifapplevisionprotrailer
 * Action created: 2024-05-23 09:36:25
 */
function ct_trck_marvel_410122230(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17830);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifclip
 * Action created: 2021-08-04 00:00:00
 */
function ct_trck_marvel_410103372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14844);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatiffeaturette
 * Action created: 2021-08-04 00:00:00
 */
function ct_trck_marvel_410103374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14845);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifkahhori
 * Action created: 2023-03-09 14:23:20
 */
function ct_trck_marvel_410113653(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16552);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifmidseasonsneakpeek
 * Action created: 2021-09-14 00:00:00
 */
function ct_trck_marvel_410104463(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifneedtoknow
 * Action created: 2021-08-11 00:00:00
 */
function ct_trck_marvel_410103758(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifposter
 * Action created: 2021-07-28 00:00:00
 */
function ct_trck_marvel_410103285(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14825);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifs2director
 * Action created: 2024-01-31 11:32:56
 */
function ct_trck_marvel_410117335(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17288);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvwhatifs2trailer
 * Action created: 2023-11-15 12:26:53
 */
function ct_trck_marvel_410116688(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17154);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvxmen97ameliavidal
 * Action created: 2024-02-22 09:52:56
 */
function ct_trck_marvel_410121362(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17324);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvxmen97characterposters
 * Action created: 2024-03-12 09:51:31
 */
function ct_trck_marvel_410121544(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17429);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Tvxmen97trailer
 * Action created: 2024-02-15 09:16:53
 */
function ct_trck_marvel_410117461(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17309);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Twimromancecomics
 * Action created: 2019-02-11 00:00:00
 */
function ct_trck_marvel_410069352(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Twitchlaunch
 * Action created: 2020-06-16 00:00:00
 */
function ct_trck_marvel_410090769(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11563);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Unofficialofficialxmenanimatedtr1603992324
 * Action created: 2020-10-29 00:00:00
 */
function ct_trck_marvel_410097081(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12232);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Updatedstudiosrelease2020
 * Action created: 2020-04-06 00:00:00
 */
function ct_trck_marvel_410089484(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11278);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Valentinesgear20
 * Action created: 2020-02-12 00:00:00
 */
function ct_trck_marvel_410087498(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10945);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Variantsc2e2
 * Action created: 2019-03-21 00:00:00
 */
function ct_trck_marvel_410071269(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6478);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Venomcarnageatshopdisney
 * Action created: 2020-11-04 00:00:00
 */
function ct_trck_marvel_410097149(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12262);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Venomlegendsrelease
 * Action created: 2020-02-04 00:00:00
 */
function ct_trck_marvel_410087372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10900);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Vevecollectible
 * Action created: 2021-06-24 00:00:00
 */
function ct_trck_marvel_410102899(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14704);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Vevecomicsapplaunch
 * Action created: 2024-03-14 17:27:36
 */
function ct_trck_marvel_410121565(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17433);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Victoriaalonso
 * Action created: 2020-10-14 00:00:00
 */
function ct_trck_marvel_410096310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12163);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Videobackgrounds1
 * Action created: 2020-04-03 00:00:00
 */
function ct_trck_marvel_410089455(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Vintagemarvelart
 * Action created: 2020-03-31 00:00:00
 */
function ct_trck_marvel_410089400(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11241);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Vintagemarvelart2
 * Action created: 2020-04-01 00:00:00
 */
function ct_trck_marvel_410089432(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Visionwhereweleftoff
 * Action created: 2021-01-13 00:00:00
 */
function ct_trck_marvel_410098309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13400);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionep5images
 * Action created: 2021-02-05 00:00:00
 */
function ct_trck_marvel_410099088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13700);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionepisode3moments
 * Action created: 2021-01-25 00:00:00
 */
function ct_trck_marvel_410098752(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13542);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionepisode4images
 * Action created: 2021-01-29 00:00:00
 */
function ct_trck_marvel_410098969(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13601);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionfinal
 * Action created: 2020-12-10 00:00:00
 */
function ct_trck_marvel_410097811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12798);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionlaunchevent
 * Action created: 2021-01-14 00:00:00
 */
function ct_trck_marvel_410098329(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13420);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionlullaby
 * Action created: 2021-01-28 00:00:00
 */
function ct_trck_marvel_410098948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionmattshakeman
 * Action created: 2021-03-09 00:00:00
 */
function ct_trck_marvel_410099875(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14161);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionoriginalsoundtrack
 * Action created: 2021-01-22 00:00:00
 */
function ct_trck_marvel_410098726(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionphotosep1
 * Action created: 2021-01-15 00:00:00
 */
function ct_trck_marvel_410098353(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13441);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionphotosep2
 * Action created: 2021-01-15 00:00:00
 */
function ct_trck_marvel_410098354(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13442);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionposter
 * Action created: 2020-12-04 00:00:00
 */
function ct_trck_marvel_410097721(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wandavisionpremieredate
 * Action created: 2020-11-12 00:00:00
 */
function ct_trck_marvel_410097306(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12338);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wankandatechwewant
 * Action created: 2020-11-16 00:00:00
 */
function ct_trck_marvel_410097373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12379);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wastelanderspodcastannounce
 * Action created: 2021-05-18 00:00:00
 */
function ct_trck_marvel_410101619(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14590);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Webby2020winner
 * Action created: 2020-05-19 00:00:00
 */
function ct_trck_marvel_410090309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11482);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Webbyawardnominations
 * Action created: 2024-04-12 17:47:42
 */
function ct_trck_marvel_410121816(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17590);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Webbyawards2019
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072288(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6779);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Webslingersupdate
 * Action created: 2021-01-19 00:00:00
 */
function ct_trck_marvel_410098391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13462);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Whereweleftoffwithsamwilson
 * Action created: 2021-03-11 00:00:00
 */
function ct_trck_marvel_410100669(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14200);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Wieldtheshieldapp
 * Action created: 2021-04-20 00:00:00
 */
function ct_trck_marvel_410101323(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14527);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Womaskedanswerednye2021
 * Action created: 2021-12-29 09:42:41
 */
function ct_trck_marvel_410107269(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Womenofmarvelholiday
 * Action created: 2019-12-09 00:00:00
 */
function ct_trck_marvel_410085394(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10641);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Worldartdaybooks
 * Action created: 2020-04-15 00:00:00
 */
function ct_trck_marvel_410089789(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11324);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Xaviersinstitutenovel
 * Action created: 2020-09-23 00:00:00
 */
function ct_trck_marvel_410092737(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Xmenanimatedseries
 * Action created: 2020-10-23 00:00:00
 */
function ct_trck_marvel_410096948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12209);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Xmendisneyplus
 * Action created: 2020-06-30 00:00:00
 */
function ct_trck_marvel_410091015(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11622);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Xmenfilm20years
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074493(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Xmenunited
 * Action created: 2020-10-01 00:00:00
 */
function ct_trck_marvel_410092825(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12082);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Yearinreview2019
 * Action created: 2019-12-23 00:00:00
 */
function ct_trck_marvel_410085808(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article - Yoobiebacktoschool
 * Action created: 2021-04-13 00:00:00
 */
function ct_trck_marvel_410101259(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14509);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article -merchpenguinclassic
 * Action created: 2022-03-17 14:26:58
 */
function ct_trck_marvel_410108539(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15605);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article -merchspideypanelbypanel
 * Action created: 2022-03-08 15:10:31
 */
function ct_trck_marvel_410108397(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15588);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article -moviesgotgsecret
 * Action created: 2022-03-08 11:39:06
 */
function ct_trck_marvel_410108394(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15586);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article -parksacrogersmusical
 * Action created: 2023-06-29 10:21:42
 */
function ct_trck_marvel_410115156(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16842);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-avengersdisneyparks
 * Action created: 2018-12-10 00:00:00
 */
function ct_trck_marvel_410066237(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-blackpanthergoldenglobes
 * Action created: 2018-12-06 00:00:00
 */
function ct_trck_marvel_410066112(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-brielarsontraining
 * Action created: 2019-01-08 00:00:00
 */
function ct_trck_marvel_410067530(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5179);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-captainmarvelfunko
 * Action created: 2018-11-30 00:00:00
 */
function ct_trck_marvel_410065898(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-captainmarvelposter
 * Action created: 2018-12-03 00:00:00
 */
function ct_trck_marvel_410065909(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-captainmarveltrailer2
 * Action created: 2018-12-04 00:00:00
 */
function ct_trck_marvel_410065928(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-endgameposter
 * Action created: 2018-12-07 00:00:00
 */
function ct_trck_marvel_410066148(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-maosseason7
 * Action created: 2018-11-19 00:00:00
 */
function ct_trck_marvel_410065787(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4524);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-oscarnominations
 * Action created: 2019-01-22 00:00:00
 */
function ct_trck_marvel_410068197(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5479);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-punishers2announcement
 * Action created: 2018-12-12 00:00:00
 */
function ct_trck_marvel_410066876(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-spiderversedirectors
 * Action created: 2018-12-14 00:00:00
 */
function ct_trck_marvel_410066909(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-spiderverseinfographic
 * Action created: 2018-11-29 00:00:00
 */
function ct_trck_marvel_410065869(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-standoutmomentsendgame
 * Action created: 2018-12-10 00:00:00
 */
function ct_trck_marvel_410066228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-ticketscaptainmarvel
 * Action created: 2019-01-08 00:00:00
 */
function ct_trck_marvel_410067529(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-wgwspidey
 * Action created: 2019-01-28 00:00:00
 */
function ct_trck_marvel_410067693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5558);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Article-worldsgreatestweekannouncement
 * Action created: 2018-12-05 00:00:00
 */
function ct_trck_marvel_410066052(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Askmarveldonnycates
 * Action created: 2018-11-12 00:00:00
 */
function ct_trck_marvel_410065279(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4485);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Battleroyale-finals
 * Action created: 2018-11-30 00:00:00
 */
function ct_trck_marvel_410065899(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Battleroyale-quarterfinals
 * Action created: 2018-11-21 00:00:00
 */
function ct_trck_marvel_410065802(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4534);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Battleroyale-winner
 * Action created: 2018-12-05 00:00:00
 */
function ct_trck_marvel_410066050(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Battleroyale2018
 * Action created: 2018-11-06 00:00:00
 */
function ct_trck_marvel_410065228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4454);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Capmarveltrailer
 * Action created: 2018-09-18 00:00:00
 */
function ct_trck_marvel_410063935(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4161);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Captainmarvel - Digital Release
 * Action created: 2019-05-10 00:00:00
 */
function ct_trck_marvel_410074413(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7519);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Captainmarvel - Infographic
 * Action created: 2019-03-11 00:00:00
 */
function ct_trck_marvel_410070558(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Captainmarveldisneyland
 * Action created: 2018-11-16 00:00:00
 */
function ct_trck_marvel_410065756(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4496);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Captainmarvelupdate
 * Action created: 2018-09-12 00:00:00
 */
function ct_trck_marvel_410062909(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Character - Gettoknowbuckybarnes
 * Action created: 2021-03-22 00:00:00
 */
function ct_trck_marvel_410100828(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14360);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Character - Gettoknowsamwilson
 * Action created: 2021-03-22 00:00:00
 */
function ct_trck_marvel_410100829(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14361);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Character - Thor
 * Action created: 2021-11-23 00:00:00
 */
function ct_trck_marvel_410105878(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15145);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Constellations
 * Action created: 2018-10-30 00:00:00
 */
function ct_trck_marvel_410064849(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4403);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Endgamelivestream
 * Action created: 2019-04-18 00:00:00
 */
function ct_trck_marvel_410073110(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7037);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Endgametrailer2
 * Action created: 2019-03-14 00:00:00
 */
function ct_trck_marvel_410070648(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Halloweencomics
 * Action created: 2018-10-31 00:00:00
 */
function ct_trck_marvel_410065147(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4406);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Jackkirby
 * Action created: 2018-10-12 00:00:00
 */
function ct_trck_marvel_410064455(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4305);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Jackkirbykreatures
 * Action created: 2018-08-28 00:00:00
 */
function ct_trck_marvel_410062753(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3998);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Marvel80thlandingpage
 * Action created: 2019-05-09 00:00:00
 */
function ct_trck_marvel_410074401(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Marvelmasterworks
 * Action created: 2018-11-19 00:00:00
 */
function ct_trck_marvel_410065750(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4525);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Marvelrisingquickdraw
 * Action created: 2018-11-02 00:00:00
 */
function ct_trck_marvel_410065169(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4420);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Mcu10
 * Action created: 2018-09-11 00:00:00
 */
function ct_trck_marvel_410062892(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4127);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Moviecabnvtrailerandmore
 * Action created: 2024-07-12 09:37:51
 */
function ct_trck_marvel_410122586(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Historycomicsblackpanther
 * Action created: 2022-02-09 17:22:06
 */
function ct_trck_marvel_410107817(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15523);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Marveldeclassified
 * Action created: 2021-04-09 00:00:00
 */
function ct_trck_marvel_410101116(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14501);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Marvelmethod
 * Action created: 2021-04-09 00:00:00
 */
function ct_trck_marvel_410101117(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14502);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Marvelspulllist
 * Action created: 2019-12-13 00:00:00
 */
function ct_trck_marvel_410085576(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Marvelsvoices
 * Action created: 2020-03-27 00:00:00
 */
function ct_trck_marvel_410087948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11234);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Officialmarvel
 * Action created: 2024-06-25 15:33:08
 */
function ct_trck_marvel_410122456(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17994);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Oldmanstarlord
 * Action created: 2021-06-03 00:00:00
 */
function ct_trck_marvel_410102120(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14642);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Thisweekinmarvel
 * Action created: 2019-12-13 00:00:00
 */
function ct_trck_marvel_410085574(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Unbeatablesquirrelgirl
 * Action created: 2022-04-26 09:36:11
 */
function ct_trck_marvel_410109085(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15683);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Wakandaforever
 * Action created: 2022-11-03 10:06:37
 */
function ct_trck_marvel_410111868(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Wastelanders
 * Action created: 2022-12-05 11:41:19
 */
function ct_trck_marvel_410112281(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16279);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Wastelandersblackwidow
 * Action created: 2021-12-22 00:00:00
 */
function ct_trck_marvel_410107021(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15225);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Wastelandersdoom
 * Action created: 2022-09-12 11:37:40
 */
function ct_trck_marvel_410111160(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16030);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Wastelandershawkeye
 * Action created: 2021-10-08 00:00:00
 */
function ct_trck_marvel_410105193(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14995);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Wastelanderswolverine
 * Action created: 2022-06-13 11:17:25
 */
function ct_trck_marvel_410109917(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Womc2e22020
 * Action created: 2020-03-12 00:00:00
 */
function ct_trck_marvel_410088051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11134);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Podcast - Womenofmarvel
 * Action created: 2019-12-13 00:00:00
 */
function ct_trck_marvel_410085577(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Poweroffire
 * Action created: 2018-11-07 00:00:00
 */
function ct_trck_marvel_410065237(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4455);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Sixarmspiderman
 * Action created: 2018-11-01 00:00:00
 */
function ct_trck_marvel_410065153(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Spiderverseextendedsneak
 * Action created: 2018-11-09 00:00:00
 */
function ct_trck_marvel_410065253(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4456);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Spiderverseposters
 * Action created: 2018-11-16 00:00:00
 */
function ct_trck_marvel_410065758(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4499);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Tltseason2
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065217(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4451);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Top10vampires
 * Action created: 2018-10-31 00:00:00
 */
function ct_trck_marvel_410065145(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4405);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Trailers - Guardiansofthegalaxy#1
 * Action created: 2020-01-22 00:00:00
 */
function ct_trck_marvel_410087088(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10819);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Umevariants
 * Action created: 2018-10-22 00:00:00
 */
function ct_trck_marvel_410064738(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4364);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video -  D23maos
 * Action created: 2019-08-26 00:00:00
 */
function ct_trck_marvel_410081732(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9399);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - 80thpaneld23
 * Action created: 2019-09-10 00:00:00
 */
function ct_trck_marvel_410082573(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9718);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Antmanhankpym101
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089317(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11226);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Askmarvelmackiestan
 * Action created: 2021-04-05 00:00:00
 */
function ct_trck_marvel_410101079(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14490);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Askmarvelrunawayss3
 * Action created: 2019-12-20 00:00:00
 */
function ct_trck_marvel_410085777(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10690);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Assembledfaws
 * Action created: 2021-04-29 00:00:00
 */
function ct_trck_marvel_410101423(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14549);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Assembledthemakingofwandavision
 * Action created: 2021-03-12 00:00:00
 */
function ct_trck_marvel_410100690(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14220);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Avengersdamagecontrol
 * Action created: 2019-10-10 00:00:00
 */
function ct_trck_marvel_410083756(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10221);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Avengersgametrailer
 * Action created: 2020-08-27 00:00:00
 */
function ct_trck_marvel_410092328(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11875);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Becomingdaredevil
 * Action created: 2020-12-21 00:00:00
 */
function ct_trck_marvel_410097982(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13100);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Behindthemaskclip1
 * Action created: 2021-02-10 00:00:00
 */
function ct_trck_marvel_410099168(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13780);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Behindthemasktrailer
 * Action created: 2021-02-02 00:00:00
 */
function ct_trck_marvel_410099034(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13640);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Bestofdarkphoenix
 * Action created: 2019-06-05 00:00:00
 */
function ct_trck_marvel_410075428(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Blackwidowfeaturette
 * Action created: 2021-04-28 00:00:00
 */
function ct_trck_marvel_410101416(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14546);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Blackwidowfirsttrailer
 * Action created: 2019-12-03 00:00:00
 */
function ct_trck_marvel_410085317(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10599);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Borlestoryboards
 * Action created: 2020-08-06 00:00:00
 */
function ct_trck_marvel_410092105(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11786);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - C&ds2firsttrailer
 * Action created: 2019-02-19 00:00:00
 */
function ct_trck_marvel_410069871(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5920);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Captainamerica101
 * Action created: 2020-04-28 00:00:00
 */
function ct_trck_marvel_410089979(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11379);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Captainmarveltldr
 * Action created: 2019-09-17 00:00:00
 */
function ct_trck_marvel_410082898(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9840);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Celebratingstanlee
 * Action created: 2019-12-18 00:00:00
 */
function ct_trck_marvel_410085748(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10687);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Comicbookstorestoryboards
 * Action created: 2020-11-05 00:00:00
 */
function ct_trck_marvel_410097169(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12269);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Connycc23best
 * Action created: 2023-10-16 16:59:38
 */
function ct_trck_marvel_410116286(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17079);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Connycc23cosplay
 * Action created: 2023-10-16 10:01:59
 */
function ct_trck_marvel_410116276(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17072);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Connycclivestream2022
 * Action created: 2022-10-03 12:08:00
 */
function ct_trck_marvel_410111458(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16090);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - D23studios
 * Action created: 2019-08-26 00:00:00
 */
function ct_trck_marvel_410081733(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9400);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Diyarcreactor
 * Action created: 2020-05-27 00:00:00
 */
function ct_trck_marvel_410090380(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11501);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Doramilajefawsfeaturette
 * Action created: 2021-04-15 00:00:00
 */
function ct_trck_marvel_410101284(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14512);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Eattheuniverselavendarvolauvent
 * Action created: 2019-11-20 00:00:00
 */
function ct_trck_marvel_410085204(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10548);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Echoddmayafight
 * Action created: 2024-01-29 17:17:41
 */
function ct_trck_marvel_410117326(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17286);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Echolaunchevent
 * Action created: 2024-01-10 16:40:49
 */
function ct_trck_marvel_410117170(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17254);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Empyreteasertrailer
 * Action created: 2019-12-30 00:00:00
 */
function ct_trck_marvel_410086732(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10721);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Endgamesuperbowl
 * Action created: 2019-02-04 00:00:00
 */
function ct_trck_marvel_410069129(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Falconthroughoutthemcu
 * Action created: 2021-03-10 00:00:00
 */
function ct_trck_marvel_410100657(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14181);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Farfromhometeaser
 * Action created: 2019-01-15 00:00:00
 */
function ct_trck_marvel_410067989(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5378);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Fassbenderpremiere
 * Action created: 2019-06-05 00:00:00
 */
function ct_trck_marvel_410075430(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7919);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Favoritemarvelcouple
 * Action created: 2019-11-27 00:00:00
 */
function ct_trck_marvel_410085295(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10583);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Fawscasttalk
 * Action created: 2021-03-18 00:00:00
 */
function ct_trck_marvel_410100801(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14321);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Fawsfeaturette
 * Action created: 2021-03-22 00:00:00
 */
function ct_trck_marvel_410100832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14364);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Fawslaunchevent
 * Action created: 2021-03-18 00:00:00
 */
function ct_trck_marvel_410100796(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14302);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Fawswyattrussell
 * Action created: 2021-04-16 00:00:00
 */
function ct_trck_marvel_410101301(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Felizsulkinanswerrunawaysquestions
 * Action created: 2019-12-12 00:00:00
 */
function ct_trck_marvel_410085544(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10654);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Funkoblackwidow
 * Action created: 2020-04-29 00:00:00
 */
function ct_trck_marvel_410089997(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11383);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Generalmarvelminutemarvelsnap
 * Action created: 2023-03-13 14:44:45
 */
function ct_trck_marvel_410113669(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16564);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Generalmarvelmove
 * Action created: 2023-04-18 09:39:06
 */
function ct_trck_marvel_410114057(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16644);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Generalmhqapppreorder
 * Action created: 2023-02-23 13:41:24
 */
function ct_trck_marvel_410113416(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16530);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Generalstarlordcostumes
 * Action created: 2023-04-10 12:05:22
 */
function ct_trck_marvel_410113943(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16628);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Guillotine101
 * Action created: 2020-07-22 00:00:00
 */
function ct_trck_marvel_410091764(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11706);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Gwenstacy101
 * Action created: 2020-10-16 00:00:00
 */
function ct_trck_marvel_410096359(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Hellcat101
 * Action created: 2019-02-07 00:00:00
 */
function ct_trck_marvel_410069251(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Howtodrawmechbp
 * Action created: 2021-09-16 00:00:00
 */
function ct_trck_marvel_410104508(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14942);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Howtodrawtaskmaster
 * Action created: 2021-07-08 00:00:00
 */
function ct_trck_marvel_410103029(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14761);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Jadenimreadymusicvideo
 * Action created: 2020-11-16 00:00:00
 */
function ct_trck_marvel_410097375(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12381);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Janefoster101
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089315(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11224);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Jjtrailers3
 * Action created: 2019-06-06 00:00:00
 */
function ct_trck_marvel_410075530(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7959);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Journeythroughhistory
 * Action created: 2019-09-04 00:00:00
 */
function ct_trck_marvel_410082090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Legendsfalconwintersoldiertrailer
 * Action created: 2021-03-08 00:00:00
 */
function ct_trck_marvel_410099848(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14140);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Legomarvelsdcc
 * Action created: 2024-07-26 11:58:59
 */
function ct_trck_marvel_410122714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Letsplayheadsup
 * Action created: 2020-04-07 00:00:00
 */
function ct_trck_marvel_410089616(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11286);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Lokiofficialtrailer
 * Action created: 2021-04-06 00:00:00
 */
function ct_trck_marvel_410101096(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14494);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Lokiowenwilson
 * Action created: 2021-06-07 00:00:00
 */
function ct_trck_marvel_410102145(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14663);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Longstoryshortdocockspidey
 * Action created: 2020-12-03 00:00:00
 */
function ct_trck_marvel_410097673(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Lupitanyongoinsidetheactorsstudio
 * Action created: 2019-12-13 00:00:00
 */
function ct_trck_marvel_410085578(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10660);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Mackiestanbtsfaws
 * Action created: 2021-03-11 00:00:00
 */
function ct_trck_marvel_410100671(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14201);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Makemeaherodiana
 * Action created: 2019-11-19 00:00:00
 */
function ct_trck_marvel_410085182(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10541);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Makemeaherowwp
 * Action created: 2021-08-06 00:00:00
 */
function ct_trck_marvel_410103400(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14851);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Makemeaherowwp2
 * Action created: 2021-09-09 00:00:00
 */
function ct_trck_marvel_410104435(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14928);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Maoss7sneakpeek
 * Action created: 2020-05-19 00:00:00
 */
function ct_trck_marvel_410090306(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11480);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Maoss7trailer
 * Action created: 2020-04-28 00:00:00
 */
function ct_trck_marvel_410089983(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11381);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Maoswonderconclip
 * Action created: 2019-04-01 00:00:00
 */
function ct_trck_marvel_410071662(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvel Gaming On Location
 * Action created: 2017-06-28 00:00:00
 */
function ct_trck_marvel_410055249(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelmadechrisclaremont
 * Action created: 2020-11-02 00:00:00
 */
function ct_trck_marvel_410097135(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelmadeunbox
 * Action created: 2020-07-21 00:00:00
 */
function ct_trck_marvel_410091757(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11703);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelminute0123
 * Action created: 2024-01-22 13:38:28
 */
function ct_trck_marvel_410117265(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17269);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelminute081423
 * Action created: 2023-08-14 12:06:57
 */
function ct_trck_marvel_410115570(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16948);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelminute0918
 * Action created: 2023-09-18 13:40:33
 */
function ct_trck_marvel_410115992(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17023);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelminute111819
 * Action created: 2019-11-19 00:00:00
 */
function ct_trck_marvel_410085187(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10542);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelminutesdcc2023
 * Action created: 2023-07-18 10:15:55
 */
function ct_trck_marvel_410115296(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16887);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelonedayatdisney
 * Action created: 2020-08-10 00:00:00
 */
function ct_trck_marvel_410092134(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelsheroprojecttrailer
 * Action created: 2019-10-01 00:00:00
 */
function ct_trck_marvel_410083434(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10038);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Marvelstoryboards
 * Action created: 2020-07-22 00:00:00
 */
function ct_trck_marvel_410091767(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11708);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Mcavoypremiere
 * Action created: 2019-06-05 00:00:00
 */
function ct_trck_marvel_410075429(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7918);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Merchfunkospidermannwh
 * Action created: 2023-03-28 13:34:41
 */
function ct_trck_marvel_410113821(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Merchhyperionavenuescottlangmemoir
 * Action created: 2023-02-02 12:24:10
 */
function ct_trck_marvel_410113100(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16464);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Merchofficialtimelinemcu
 * Action created: 2023-08-28 09:52:31
 */
function ct_trck_marvel_410115775(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16968);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Merchvaultnycstore
 * Action created: 2024-11-21 10:21:20
 */
function ct_trck_marvel_410133793(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20234);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Mmahvanbreukelen
 * Action created: 2019-11-11 00:00:00
 */
function ct_trck_marvel_410085105(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10521);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Modoksdreamjob
 * Action created: 2021-05-24 00:00:00
 */
function ct_trck_marvel_410102031(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14611);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moongirl101
 * Action created: 2019-11-11 00:00:00
 */
function ct_trck_marvel_410085094(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10520);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moongirllunalafayette101
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11219);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmankangdesign
 * Action created: 2023-03-16 09:24:06
 */
function ct_trck_marvel_410113691(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16566);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmanmarvelminute
 * Action created: 2023-02-13 12:43:23
 */
function ct_trck_marvel_410113250(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16489);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmanquantumaniapremiere
 * Action created: 2023-02-06 11:32:43
 */
function ct_trck_marvel_410113192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16471);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmanredcarpetbest
 * Action created: 2023-02-07 10:01:09
 */
function ct_trck_marvel_410113202(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16476);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmanredcarpetfeige
 * Action created: 2023-02-07 09:59:22
 */
function ct_trck_marvel_410113201(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16475);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmanredcarpetlilly
 * Action created: 2023-02-07 09:54:42
 */
function ct_trck_marvel_410113199(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16473);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmanredcarpetmajors
 * Action created: 2023-02-07 09:51:27
 */
function ct_trck_marvel_410113198(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16472);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmanredcarpetrudd
 * Action created: 2023-02-07 09:57:07
 */
function ct_trck_marvel_410113200(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16474);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmansuit
 * Action created: 2023-03-13 14:42:27
 */
function ct_trck_marvel_410113668(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16563);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieantmansurvivequantumrealm
 * Action created: 2023-02-17 13:44:01
 */
function ct_trck_marvel_410113368(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16510);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieblackpanthernamorwings
 * Action created: 2023-01-31 16:37:21
 */
function ct_trck_marvel_410112998(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16447);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieblackpantherpremiere
 * Action created: 2022-10-26 17:18:02
 */
function ct_trck_marvel_410111772(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16168);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieblackpantherunderwater
 * Action created: 2023-01-30 12:57:16
 */
function ct_trck_marvel_410112980(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieblackwidowaskmarvel
 * Action created: 2021-07-01 00:00:00
 */
function ct_trck_marvel_410102973(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14731);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieblackwidowmcujourney
 * Action created: 2021-06-30 00:00:00
 */
function ct_trck_marvel_410102966(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14729);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieblackwidowoneword
 * Action created: 2021-07-06 00:00:00
 */
function ct_trck_marvel_410102994(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14740);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieblackwidowrachelweisz
 * Action created: 2021-06-28 00:00:00
 */
function ct_trck_marvel_410102919(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14722);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviebpwakandanewsuit
 * Action created: 2022-12-19 11:54:17
 */
function ct_trck_marvel_410112459(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16315);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviedpwpremiere
 * Action created: 2024-07-22 11:04:05
 */
function ct_trck_marvel_410122656(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18136);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviedrstrangeredcarpet
 * Action created: 2022-05-02 20:10:37
 */
function ct_trck_marvel_410109220(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15703);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviedrstrangeredcarpetbest
 * Action created: 2022-05-03 08:56:15
 */
function ct_trck_marvel_410109224(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15704);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviedrstrangeredcarpetcostume
 * Action created: 2022-05-03 16:04:57
 */
function ct_trck_marvel_410109236(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15707);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviedrstrangeredcarpetcumberbatch
 * Action created: 2022-05-03 09:59:43
 */
function ct_trck_marvel_410109228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15706);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviedrstrangeredcarpetolsen
 * Action created: 2022-05-03 09:58:39
 */
function ct_trck_marvel_410109227(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15705);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieeternals101
 * Action created: 2021-10-25 00:00:00
 */
function ct_trck_marvel_410105297(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieeternalsaskmarvel
 * Action created: 2021-11-11 00:00:00
 */
function ct_trck_marvel_410105636(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15110);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieeternalscelestials101
 * Action created: 2021-11-04 00:00:00
 */
function ct_trck_marvel_410105501(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15073);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieeternalsdeviants101
 * Action created: 2021-11-03 00:00:00
 */
function ct_trck_marvel_410105480(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15066);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieeternalsredcarpet
 * Action created: 2021-10-19 00:00:00
 */
function ct_trck_marvel_410105268(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15012);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieeternalsredcarpetfeigezhao
 * Action created: 2021-10-19 00:00:00
 */
function ct_trck_marvel_410105269(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15013);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieeternalsteaser
 * Action created: 2021-10-05 00:00:00
 */
function ct_trck_marvel_410105147(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14981);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguardians3livestream
 * Action created: 2023-04-20 11:53:03
 */
function ct_trck_marvel_410114082(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16654);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguardians3rocketgrootanimatin1684763610
 * Action created: 2023-05-22 09:53:30
 */
function ct_trck_marvel_410114688(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16752);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguardiansmarvelminute
 * Action created: 2023-04-24 15:06:00
 */
function ct_trck_marvel_410114154(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16661);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguardiansredcarpetbakalova
 * Action created: 2023-05-01 14:46:43
 */
function ct_trck_marvel_410114373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguardiansredcarpetbest
 * Action created: 2023-04-28 10:33:40
 */
function ct_trck_marvel_410114326(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16693);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguardiansredcarpetbestmoments
 * Action created: 2023-04-28 15:12:48
 */
function ct_trck_marvel_410114342(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16695);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguardiansredcarpetfeige
 * Action created: 2023-04-28 10:29:05
 */
function ct_trck_marvel_410114324(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16692);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguardiansredcarpetpratt
 * Action created: 2023-04-28 10:26:13
 */
function ct_trck_marvel_410114322(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16691);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieguaridansredcarpetgunn
 * Action created: 2023-04-28 10:23:26
 */
function ct_trck_marvel_410114319(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16690);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Movieshangchimorrisorigin
 * Action created: 2021-09-22 00:00:00
 */
function ct_trck_marvel_410104549(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14950);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviespideynwhpetermj
 * Action created: 2021-12-13 00:00:00
 */
function ct_trck_marvel_410106411(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15204);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviespideynwhredcarpet
 * Action created: 2021-12-14 00:00:00
 */
function ct_trck_marvel_410106430(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15207);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviesshangchiwhoareyou
 * Action created: 2021-08-30 00:00:00
 */
function ct_trck_marvel_410103980(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14892);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviethemarvelsbts
 * Action created: 2024-02-08 13:56:19
 */
function ct_trck_marvel_410117399(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17299);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Moviethemarvelsflerkittens
 * Action created: 2024-02-09 13:31:21
 */
function ct_trck_marvel_410117427(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17301);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Msmmmfamilybts
 * Action created: 2020-11-23 00:00:00
 */
function ct_trck_marvel_410097454(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Nataliastoryboards
 * Action created: 2020-07-30 00:00:00
 */
function ct_trck_marvel_410091897(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11756);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Nebula101
 * Action created: 2021-01-08 00:00:00
 */
function ct_trck_marvel_410098244(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13343);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Nelsonfigueroastoryboards
 * Action created: 2020-12-01 00:00:00
 */
function ct_trck_marvel_410097626(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Newblackwidowtrailer
 * Action created: 2021-04-05 00:00:00
 */
function ct_trck_marvel_410101078(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14489);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Newmarveldisney+shows
 * Action created: 2020-02-02 00:00:00
 */
function ct_trck_marvel_410087249(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Newmarvelspodcast
 * Action created: 2019-11-04 00:00:00
 */
function ct_trck_marvel_410085032(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10479);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Originaltop5symbiotes
 * Action created: 2021-10-05 00:00:00
 */
function ct_trck_marvel_410105145(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14980);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Oswaltblummodockheadgames
 * Action created: 2020-10-30 00:00:00
 */
function ct_trck_marvel_410097110(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12242);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Podcasthistorybpextended
 * Action created: 2022-02-07 00:00:00
 */
function ct_trck_marvel_410107784(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15505);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Podcastoldmanhawkeyetrailer
 * Action created: 2021-09-27 00:00:00
 */
function ct_trck_marvel_410104622(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14964);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Podcastsquirrelgirltheme
 * Action created: 2022-04-26 09:38:49
 */
function ct_trck_marvel_410109087(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15685);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Podcastwastelandersblackwidowtrail1641329036
 * Action created: 2022-01-04 00:00:00
 */
function ct_trck_marvel_410107336(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15304);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Premieremoviedpwbestmoments
 * Action created: 2024-07-23 16:18:32
 */
function ct_trck_marvel_410122680(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Premieremoviedpwfeige
 * Action created: 2024-07-22 21:46:00
 */
function ct_trck_marvel_410122676(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18174);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Premieremoviedpwrrhj
 * Action created: 2024-07-22 21:42:38
 */
function ct_trck_marvel_410122657(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18173);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Premieremoviedpwshawnlevy
 * Action created: 2024-07-22 21:47:56
 */
function ct_trck_marvel_410122658(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18175);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Robcorddryguessesthecharacter
 * Action created: 2019-11-15 00:00:00
 */
function ct_trck_marvel_410085154(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10527);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Runawayss3ep3sneakpeek
 * Action created: 2019-12-11 00:00:00
 */
function ct_trck_marvel_410085531(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10646);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Runawaysseason3trailer
 * Action created: 2019-11-18 00:00:00
 */
function ct_trck_marvel_410085175(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10538);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Scarletwitch101
 * Action created: 2020-08-21 00:00:00
 */
function ct_trck_marvel_410092255(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11834);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Sdcc2022livestream
 * Action created: 2022-07-11 15:03:08
 */
function ct_trck_marvel_410110299(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15863);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Sdccboothrecap
 * Action created: 2024-07-30 15:22:00
 */
function ct_trck_marvel_410123033(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18234);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Sdccmcurecap
 * Action created: 2024-07-28 21:35:31
 */
function ct_trck_marvel_410122734(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 18181);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Shieldteaserseason6
 * Action created: 2019-01-28 00:00:00
 */
function ct_trck_marvel_410068951(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Sneakpeekblackwidow
 * Action created: 2020-01-14 00:00:00
 */
function ct_trck_marvel_410086925(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10801);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Spideyffhofficialtrailer
 * Action created: 2019-05-07 00:00:00
 */
function ct_trck_marvel_410074289(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Squirrelgirl101
 * Action created: 2020-03-25 00:00:00
 */
function ct_trck_marvel_410089311(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11220);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardsedviesturs
 * Action created: 2020-12-15 00:00:00
 */
function ct_trck_marvel_410097873(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12901);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardsgillianjacobs
 * Action created: 2020-11-16 00:00:00
 */
function ct_trck_marvel_410097374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12380);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardsjohnnyweir
 * Action created: 2020-08-13 00:00:00
 */
function ct_trck_marvel_410092178(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11810);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardslatest
 * Action created: 2020-08-06 13:41:12
 */
function ct_trck_marvel_410092103(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11785);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardsmargaretstohl
 * Action created: 2020-08-20 00:00:00
 */
function ct_trck_marvel_410092247(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11831);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardsrobertlopez
 * Action created: 2020-08-27 00:00:00
 */
function ct_trck_marvel_410092329(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11876);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardssamhitamukhopadhyay
 * Action created: 2020-11-24 00:00:00
 */
function ct_trck_marvel_410097471(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardssasheerzamata
 * Action created: 2020-11-20 00:00:00
 */
function ct_trck_marvel_410097437(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12440);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardsseason2sneak
 * Action created: 2020-11-02 00:00:00
 */
function ct_trck_marvel_410097137(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Storyboardstaboo
 * Action created: 2020-12-08 00:00:00
 */
function ct_trck_marvel_410097755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Thenewmutantstrailer
 * Action created: 2020-01-07 00:00:00
 */
function ct_trck_marvel_410086804(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Thor Teaser Trailer
 * Action created: 2017-06-09 00:00:00
 */
function ct_trck_marvel_410055174(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1619);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Top10ironmancostumes
 * Action created: 2020-08-10 00:00:00
 */
function ct_trck_marvel_410092137(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11799);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Top10tricksters
 * Action created: 2020-10-27 00:00:00
 */
function ct_trck_marvel_410096994(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12226);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Turnerpremiere
 * Action created: 2019-06-05 00:00:00
 */
function ct_trck_marvel_410075431(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7920);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvagathaallalongbreakdownvideo
 * Action created: 2024-10-15 10:00:34
 */
function ct_trck_marvel_410130212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 19534);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvassembledmakingofloki
 * Action created: 2021-07-21 00:00:00
 */
function ct_trck_marvel_410103187(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14801);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvdisneyplusday
 * Action created: 2021-11-12 00:00:00
 */
function ct_trck_marvel_410105673(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15114);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvhawkeyeluckydog
 * Action created: 2022-01-10 00:00:00
 */
function ct_trck_marvel_410107378(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15346);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvlokiaskmarvel
 * Action created: 2021-07-12 00:00:00
 */
function ct_trck_marvel_410103064(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14780);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvlokimanysides
 * Action created: 2021-06-14 00:00:00
 */
function ct_trck_marvel_410102325(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvlokimissminutesbts
 * Action created: 2021-07-28 00:00:00
 */
function ct_trck_marvel_410103284(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14824);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvlokis2costume
 * Action created: 2023-11-16 11:48:10
 */
function ct_trck_marvel_410116695(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17155);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvmoonknight101
 * Action created: 2022-04-13 14:09:51
 */
function ct_trck_marvel_410108952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvmoonknightharrow101
 * Action created: 2022-04-14 11:48:22
 */
function ct_trck_marvel_410108962(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvmoonknightlayla101
 * Action created: 2022-05-05 13:47:14
 */
function ct_trck_marvel_410109246(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15712);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvmoonknightredcarpet
 * Action created: 2022-03-29 16:22:49
 */
function ct_trck_marvel_410108713(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15624);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvmoonknightvfx
 * Action created: 2022-05-26 14:56:12
 */
function ct_trck_marvel_410109601(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvmoonknightvizdev
 * Action created: 2022-05-12 14:17:38
 */
function ct_trck_marvel_410109360(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15728);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvmsmarvelposters
 * Action created: 2022-04-19 14:55:54
 */
function ct_trck_marvel_410109009(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15667);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvmsmarvelredcarpet
 * Action created: 2022-06-07 17:26:41
 */
function ct_trck_marvel_410109715(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15781);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvsecretinvasionbegunmarvelminute
 * Action created: 2023-06-27 09:57:10
 */
function ct_trck_marvel_410115107(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16839);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvsecretinvasionmarvelminute
 * Action created: 2023-05-22 14:42:01
 */
function ct_trck_marvel_410114691(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16755);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvspideyfriendsfan
 * Action created: 2021-08-02 00:00:00
 */
function ct_trck_marvel_410103309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14840);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvspideyfriendsfan2
 * Action created: 2021-08-09 00:00:00
 */
function ct_trck_marvel_410103413(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14854);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvspideyfriendsfan3
 * Action created: 2021-08-24 00:00:00
 */
function ct_trck_marvel_410103916(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14883);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvspideyfriendsfan4
 * Action created: 2021-09-08 00:00:00
 */
function ct_trck_marvel_410104429(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14924);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvwhatifs3scenebreakdown
 * Action created: 2024-12-16 11:12:17
 */
function ct_trck_marvel_410135372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 20594);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tvwhatiftrailer
 * Action created: 2021-07-08 00:00:00
 */
function ct_trck_marvel_410103032(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14762);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Tylerposeyanswersquestions
 * Action created: 2019-12-02 00:00:00
 */
function ct_trck_marvel_410085314(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Unboxingchrisclaremontmm
 * Action created: 2020-11-05 00:00:00
 */
function ct_trck_marvel_410097166(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12267);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Unofficialxmenanimatedtrailer
 * Action created: 2020-10-29 13:01:37
 */
function ct_trck_marvel_410097080(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12231);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Vfxbtsfaws
 * Action created: 2021-05-07 00:00:00
 */
function ct_trck_marvel_410101532(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14567);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wandavisionfeaturette
 * Action created: 2021-02-11 00:00:00
 */
function ct_trck_marvel_410099229(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13800);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wandavisionmidseasontrailer
 * Action created: 2021-02-01 00:00:00
 */
function ct_trck_marvel_410099014(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 13620);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wandavisiontrailer
 * Action created: 2020-09-21 00:00:00
 */
function ct_trck_marvel_410092710(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 12017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wandavisionvfxbts
 * Action created: 2021-03-22 00:00:00
 */
function ct_trck_marvel_410100833(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14365);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Watch The Latest Episode Of Thwip
 * Action created: 2017-07-05 00:00:00
 */
function ct_trck_marvel_410055370(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wgbookclub
 * Action created: 2020-04-30 00:00:00
 */
function ct_trck_marvel_410090002(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11384);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wgbookclubempyre
 * Action created: 2020-07-09 00:00:00
 */
function ct_trck_marvel_410091558(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11661);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wgbookclubep2
 * Action created: 2020-05-07 00:00:00
 */
function ct_trck_marvel_410090188(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11424);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wgbookclubep3
 * Action created: 2020-05-14 00:00:00
 */
function ct_trck_marvel_410090257(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wgbookclubep4
 * Action created: 2020-05-21 00:00:00
 */
function ct_trck_marvel_410090323(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11486);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wgbookclubep5
 * Action created: 2020-05-21 00:00:00
 */
function ct_trck_marvel_410090324(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11487);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wgbookclubep6
 * Action created: 2020-05-21 00:00:00
 */
function ct_trck_marvel_410090325(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11488);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wintersoldierthroughthemcu
 * Action created: 2021-03-12 00:00:00
 */
function ct_trck_marvel_410100692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14221);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wtltchapter1trailer
 * Action created: 2019-03-25 00:00:00
 */
function ct_trck_marvel_410071418(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video - Wtlttrailer
 * Action created: 2019-02-20 00:00:00
 */
function ct_trck_marvel_410069908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-101ladydorma
 * Action created: 2019-01-28 00:00:00
 */
function ct_trck_marvel_410068930(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5539);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-firstavengersendgametrailer
 * Action created: 2018-12-07 00:00:00
 */
function ct_trck_marvel_410066130(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4719);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-makemeahero-earthquake
 * Action created: 2018-12-05 00:00:00
 */
function ct_trck_marvel_410066068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-powerofmusichero
 * Action created: 2018-12-21 00:00:00
 */
function ct_trck_marvel_410067089(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5018);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-twimcb2018
 * Action created: 2018-12-21 00:00:00
 */
function ct_trck_marvel_410067090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-twimlatest
 * Action created: 2019-01-18 00:00:00
 */
function ct_trck_marvel_410068128(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-twimmondoartists
 * Action created: 2018-11-20 00:00:00
 */
function ct_trck_marvel_410065793(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4529);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-wgwletsplayff
 * Action created: 2019-01-17 00:00:00
 */
function ct_trck_marvel_410067691(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5418);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-wgwletsplaymsf
 * Action created: 2019-01-11 00:00:00
 */
function ct_trck_marvel_410067690(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5337);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Video-wgwlivestream
 * Action created: 2019-01-07 00:00:00
 */
function ct_trck_marvel_410067492(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest: Webpage - Monsterstatenisland
 * Action created: 2019-11-20 00:00:00
 */
function ct_trck_marvel_410085211(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10550);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:article - Daredevilrottentomatoes
 * Action created: 2019-01-28 00:00:00
 */
function ct_trck_marvel_410068931(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5540);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:nickfuryaiwending
 * Action created: 2018-11-14 00:00:00
 */
function ct_trck_marvel_410065730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4491);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Latest:rememberingstanlee
 * Action created: 2018-11-14 00:00:00
 */
function ct_trck_marvel_410065731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4492);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Learn About Sarge And His Mysterious Crew So Far
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074491(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Learn All About Goose The Cat
 * Action created: 2019-03-07 00:00:00
 */
function ct_trck_marvel_410070451(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6238);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Learn More About Daredevil's Maniacal Villain: Bul1540305008
 * Action created: 2018-10-23 00:00:00
 */
function ct_trck_marvel_410064743(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4365);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Learn The Mysterious Origins Of Lin Lie, Aka Sword1582049479
 * Action created: 2020-02-18 00:00:00
 */
function ct_trck_marvel_410087579(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10979);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Legion: S2 Trailer
 * Action created: 2018-03-19 00:00:00
 */
function ct_trck_marvel_410059374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2884);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Letsplay: Nascarryanblaney
 * Action created: 2018-08-13 00:00:00
 */
function ct_trck_marvel_410062555(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3804);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Letsplay: Stylesp
 * Action created: 2018-08-31 00:00:00
 */
function ct_trck_marvel_410062782(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Letsplay:mkto
 * Action created: 2018-10-19 00:00:00
 */
function ct_trck_marvel_410064722(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4339);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Letsplay:stegman
 * Action created: 2018-10-15 00:00:00
 */
function ct_trck_marvel_410064474(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4323);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Listen If You Dare To The Spine-tingling Spider-ma1635193915
 * Action created: 2021-10-25 00:00:00
 */
function ct_trck_marvel_410105300(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Live Stream View Clip 1 Of Red Carpet Premiere
 * Action created: 2016-03-28 11:49:37
 */
function ct_trck_marvel_410049174(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 877);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Live Stream View Clip 2 Of Red Carpet Premiere
 * Action created: 2016-03-28 11:49:39
 */
function ct_trck_marvel_410049175(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 878);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage Digital Comics Shop Jessica Jones Sale
 * Action created: 2016-08-09 16:06:24
 */
function ct_trck_marvel_410050301(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1109);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage Digital Comics Shop Luke Cage Sale
 * Action created: 2016-08-09 16:06:17
 */
function ct_trck_marvel_410050300(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1108);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage Gallery Key Art Reveal
 * Action created: 2016-08-09 16:05:57
 */
function ct_trck_marvel_410050299(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1107);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage Video Trailer 1
 * Action created: 2016-08-15 00:00:00
 */
function ct_trck_marvel_410050306(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1150);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Article - 2 New Clips
 * Action created: 2016-09-27 00:00:00
 */
function ct_trck_marvel_410050831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1197);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Article - Marvel Heroes Roll Call
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050928(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1254);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Article - Mpq Luke Cage Character Launch
 * Action created: 2016-09-12 00:00:00
 */
function ct_trck_marvel_410050691(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Article - Musical Influence
 * Action created: 2016-09-27 00:00:00
 */
function ct_trck_marvel_410050832(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Digital Comics - Mpq Discover List
 * Action created: 2016-09-12 00:00:00
 */
function ct_trck_marvel_410050692(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Featurette
 * Action created: 2016-09-27 14:34:22
 */
function ct_trck_marvel_410050835(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1199);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Podcast - This Week In Marvel
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1256);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Video - Final Trailer
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050927(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1255);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Video - Thwip
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050930(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Web Content - Marvel Universe Wiki
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049883(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Web Content - Reading List
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049899(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1035);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Web Content - Red Carpet Live Stream
 * Action created: 2016-06-28 13:49:37
 */
function ct_trck_marvel_410049884(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1020);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Web Content - Trailer 1
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049885(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1021);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Luke Cage: Web Content - Trailer 2
 * Action created: 2016-06-28 13:49:43
 */
function ct_trck_marvel_410049886(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1022);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Lukecage:s2 Trailer #2
 * Action created: 2018-06-18 00:00:00
 */
function ct_trck_marvel_410061312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3378);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Lukecage:s2premiere
 * Action created: 2018-06-19 00:00:00
 */
function ct_trck_marvel_410061315(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3380);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Lukecage:s2premiere-adrianyounge&alimuhammad
 * Action created: 2018-06-22 00:00:00
 */
function ct_trck_marvel_410061352(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3421);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Lukecage:s2premiere-lucyliu
 * Action created: 2018-06-22 00:00:00
 */
function ct_trck_marvel_410061349(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3418);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Lukecage:s2premiere-mikecolter
 * Action created: 2018-06-22 00:00:00
 */
function ct_trck_marvel_410061350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3419);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Lukecage:s2premiere-rosariodawson
 * Action created: 2018-06-22 00:00:00
 */
function ct_trck_marvel_410061351(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3420);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - Characterportraits
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073928(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7217);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - Fullrecap
 * Action created: 2019-05-10 00:00:00
 */
function ct_trck_marvel_410074412(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7518);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - Gabriel Luna Joins Maos
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050308(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1111);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - Maos Deploys To Lego Marvel's Avengers
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050309(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1112);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - New Director
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050312(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1115);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - S1refresher
 * Action created: 2019-05-09 00:00:00
 */
function ct_trck_marvel_410074350(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7478);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - S2refresher
 * Action created: 2019-05-08 00:00:00
 */
function ct_trck_marvel_410074351(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - S3refresher
 * Action created: 2019-05-08 00:00:00
 */
function ct_trck_marvel_410074352(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7459);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - S4refresher
 * Action created: 2019-05-08 00:00:00
 */
function ct_trck_marvel_410074335(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7438);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - S5refresher
 * Action created: 2019-05-08 00:00:00
 */
function ct_trck_marvel_410074353(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7460);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - S6newfaces
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073989(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - Sdcc 2016 Video & Art
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050307(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1110);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - Season 3 Finale Recap
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050311(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1114);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Article - Wondercon
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7218);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Characterpage - Coulson
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073930(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7219);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Characterpage - Daisy
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7221);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Characterpage - Fitz
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073940(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7241);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Characterpage - Jemmasimmons
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073938(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7239);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Characterpage - Melindamay
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073934(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7223);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Digital Comics - Shield Discover List
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050317(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1120);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Digital Comics Shop - Ghost Rider Sale
 * Action created: 2016-08-11 13:31:43
 */
function ct_trck_marvel_410050316(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1119);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Digital Comics Shop - S.h.i.e.l.d Sale
 * Action created: 2016-08-11 13:31:39
 */
function ct_trck_marvel_410050315(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Podcast - This Week In Maos 
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050310(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1113);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - Coulson101
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073931(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7220);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - Daisy101
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073933(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7222);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - Emsrecap
 * Action created: 2019-05-10 00:00:00
 */
function ct_trck_marvel_410074411(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7517);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - Fitz101
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073941(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7242);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - Mack101
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073942(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7243);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - Marvel 101 - Ghost Rider
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050313(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1116);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - Marvel 101 - S.h.i.e.l.d
 * Action created: 2016-08-11 00:00:00
 */
function ct_trck_marvel_410050314(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - May101
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073937(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7238);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - S6preview
 * Action created: 2019-05-08 00:00:00
 */
function ct_trck_marvel_410074349(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos: Video - Simmons101
 * Action created: 2019-04-30 00:00:00
 */
function ct_trck_marvel_410073939(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7240);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Maos:fitzandsimmons
 * Action created: 2018-01-11 00:00:00
 */
function ct_trck_marvel_410058830(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2486);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel 101:mind Stone
 * Action created: 2018-04-12 00:00:00
 */
function ct_trck_marvel_410060262(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3089);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel 101:power Stone
 * Action created: 2018-04-18 00:00:00
 */
function ct_trck_marvel_410060329(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel 101:reality Stone
 * Action created: 2018-04-11 00:00:00
 */
function ct_trck_marvel_410060248(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3086);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel 101:soul Stone
 * Action created: 2018-04-03 00:00:00
 */
function ct_trck_marvel_410060164(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3045);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel 101:space Stone
 * Action created: 2018-03-29 00:00:00
 */
function ct_trck_marvel_410060105(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel Puzzle Quest
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049900(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1036);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel Villainous: Twisted Ambitions
 * Action created: 2023-01-24 10:04:53
 */
function ct_trck_marvel_410112910(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16425);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel-hubpage: Marvel2018comics
 * Action created: 2018-02-21 00:00:00
 */
function ct_trck_marvel_410059228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com - Article: Latest History Of Black Panther
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049889(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1025);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com - Article: Latest Saluting Captain America
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049897(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1033);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com - Article: Latest Star Wars Spotlight
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049898(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1034);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com - Hub Visit: Comic News
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049890(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1026);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com - Video: Latest Eat The Universe
 * Action created: 2018-04-06 00:00:00
 */
function ct_trck_marvel_410060211(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com - Video: Latest Marvel Quickdraw
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049891(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1027);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com - Video: Latest Marvel Top 10
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049892(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1028);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com - Video: Latest Thwip
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049893(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1029);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com-hub:newmediashows
 * Action created: 2018-04-06 00:00:00
 */
function ct_trck_marvel_410060209(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com-jack Kirby 100 Page
 * Action created: 2017-08-23 00:00:00
 */
function ct_trck_marvel_410055876(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1898);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com-videos:eov X-23
 * Action created: 2017-08-24 00:00:00
 */
function ct_trck_marvel_410055881(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1902);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/podcast: All
 * Action created: 2018-07-11 00:00:00
 */
function ct_trck_marvel_410061632(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3518);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/podcast: Latest Marvel's Voices- New
 * Action created: 2018-07-03 00:00:00
 */
function ct_trck_marvel_410061573(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3478);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/podcast: Latest This Week In Marvel- Ne1530636573
 * Action created: 2018-07-03 00:00:00
 */
function ct_trck_marvel_410061572(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3481);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/podcast: Latest Women Of Marvel- New
 * Action created: 2018-07-03 00:00:00
 */
function ct_trck_marvel_410061571(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3480);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/video-asm#1 Trailer
 * Action created: 2018-07-16 00:00:00
 */
function ct_trck_marvel_410061669(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3562);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/video: Latest Earth's Mightiest Show-  1530636527
 * Action created: 2018-07-03 00:00:00
 */
function ct_trck_marvel_410061570(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3477);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/video: Latest Eat The Universe-  New
 * Action created: 2018-07-03 00:00:00
 */
function ct_trck_marvel_410061569(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3479);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/video: Latest Marvel's Voices Video
 * Action created: 2018-04-09 00:00:00
 */
function ct_trck_marvel_410060210(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3078);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel.com/watch-lifeofcaptainmarvel
 * Action created: 2018-07-27 00:00:00
 */
function ct_trck_marvel_410062095(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3661);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101: Corvus Glaive
 * Action created: 2018-08-02 00:00:00
 */
function ct_trck_marvel_410062148(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101: Dannyrand
 * Action created: 2018-09-04 00:00:00
 */
function ct_trck_marvel_410062814(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101: Davos
 * Action created: 2018-09-06 00:00:00
 */
function ct_trck_marvel_410062848(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101: Ironfist
 * Action created: 2018-08-27 00:00:00
 */
function ct_trck_marvel_410062715(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3982);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101: Ironfistnetflix
 * Action created: 2018-08-27 00:00:00
 */
function ct_trck_marvel_410062716(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3981);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101: Mistyknight
 * Action created: 2018-08-27 00:00:00
 */
function ct_trck_marvel_410062713(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3978);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:carnage
 * Action created: 2018-04-02 00:00:00
 */
function ct_trck_marvel_410060159(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3044);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:clairetemple
 * Action created: 2018-07-26 00:00:00
 */
function ct_trck_marvel_410062089(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:cloakanddagger
 * Action created: 2018-06-06 00:00:00
 */
function ct_trck_marvel_410060953(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3328);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:gwenpool
 * Action created: 2018-05-03 00:00:00
 */
function ct_trck_marvel_410060571(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:killgrave
 * Action created: 2018-03-07 00:00:00
 */
function ct_trck_marvel_410059372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:loki
 * Action created: 2017-10-31 00:00:00
 */
function ct_trck_marvel_410057437(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2206);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:lukecageliveaction
 * Action created: 2018-06-18 00:00:00
 */
function ct_trck_marvel_410061311(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:machx
 * Action created: 2018-01-31 00:00:00
 */
function ct_trck_marvel_410059056(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:odin
 * Action created: 2017-10-30 00:00:00
 */
function ct_trck_marvel_410057439(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2198);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:philcoulson
 * Action created: 2017-11-15 00:00:00
 */
function ct_trck_marvel_410057872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:scottlang-antman
 * Action created: 2018-06-28 00:00:00
 */
function ct_trck_marvel_410061411(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:shades
 * Action created: 2018-06-19 00:00:00
 */
function ct_trck_marvel_410061314(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3379);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:shuri
 * Action created: 2018-02-22 00:00:00
 */
function ct_trck_marvel_410059241(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:thorjanefoster
 * Action created: 2017-10-27 00:00:00
 */
function ct_trck_marvel_410057409(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2179);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:timestone
 * Action created: 2018-03-26 00:00:00
 */
function ct_trck_marvel_410059818(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2924);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel101:trishwalker
 * Action created: 2018-03-19 00:00:00
 */
function ct_trck_marvel_410059480(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2883);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvel10:baldheroes
 * Action created: 2018-06-20 00:00:00
 */
function ct_trck_marvel_410061327(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3398);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvelbecoming: Ps4spidey
 * Action created: 2018-08-24 00:00:00
 */
function ct_trck_marvel_410062675(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3958);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvelbecoming: Thanos
 * Action created: 2018-08-20 00:00:00
 */
function ct_trck_marvel_410062635(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3900);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvelquickdraw: Aaronkuderdeathoftheinhumans
 * Action created: 2018-08-23 00:00:00
 */
function ct_trck_marvel_410062668(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3940);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvelrising:initiationshorts
 * Action created: 2018-08-20 00:00:00
 */
function ct_trck_marvel_410062636(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3901);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvelrising:official Trailer
 * Action created: 2018-07-18 00:00:00
 */
function ct_trck_marvel_410061710(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3582);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvelsspiderman: 9itemstohype
 * Action created: 2018-08-16 00:00:00
 */
function ct_trck_marvel_410062600(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marvelsspiderman:legacy
 * Action created: 2018-10-15 00:00:00
 */
function ct_trck_marvel_410064472(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4324);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marveltl;dr:spider-gwen
 * Action created: 2018-08-14 00:00:00
 */
function ct_trck_marvel_410062573(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Marveluniversity:antman&wasp-nanotechnology
 * Action created: 2018-08-16 00:00:00
 */
function ct_trck_marvel_410062601(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Meet The Multiverse's Mightiest Heroes In Avengers1636659935
 * Action created: 2021-11-11 00:00:00
 */
function ct_trck_marvel_410105648(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15112);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Mike Colter Looks Back At Marvel's Jessica Jones' Season 
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050290(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1100);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    movie visit the movies news page
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049135(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 862);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Movies: Captainmarveld+
 * Action created: 2019-11-20 00:00:00
 */
function ct_trck_marvel_410085203(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10547);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Movies: Guardians1d+
 * Action created: 2019-11-26 00:00:00
 */
function ct_trck_marvel_410085273(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Mpq Completed Just A Phase Tournament
 * Action created: 2018-07-31 10:17:54
 */
function ct_trck_marvel_410062114(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3678);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    New X-men '97 #1 Wraparound Cover
 * Action created: 2024-02-07 15:33:57
 */
function ct_trck_marvel_410117397(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 17298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc 16: Hub Page
 * Action created: 2016-10-12 11:45:45
 */
function ct_trck_nycc_16_hub_page(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1242);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc17:livecoverage
 * Action created: 2017-10-03 00:00:00
 */
function ct_trck_marvel_410056588(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc18: Funkoexclusive
 * Action created: 2018-09-26 00:00:00
 */
function ct_trck_marvel_410064020(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4206);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc18: Lineup
 * Action created: 2018-09-26 00:00:00
 */
function ct_trck_marvel_410064015(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4205);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc18: Livestream
 * Action created: 2018-09-26 00:00:00
 */
function ct_trck_marvel_410064022(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4208);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc18: Marvelpanels
 * Action created: 2018-09-28 00:00:00
 */
function ct_trck_marvel_410064041(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4219);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc18: Marvelrisingcosplay
 * Action created: 2018-09-26 00:00:00
 */
function ct_trck_marvel_410064021(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4207);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc18: Marvelsignings
 * Action created: 2018-09-28 00:00:00
 */
function ct_trck_marvel_410064042(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4218);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc18: Merchandise
 * Action created: 2018-09-28 00:00:00
 */
function ct_trck_marvel_410064040(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4220);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: 3newcoc
 * Action created: 2018-10-06 00:00:00
 */
function ct_trck_marvel_410064388(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Adigranov
 * Action created: 2018-10-05 00:00:00
 */
function ct_trck_marvel_410064385(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4267);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Aegoncoc
 * Action created: 2018-10-04 00:00:00
 */
function ct_trck_marvel_410064373(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4259);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Danslott
 * Action created: 2018-10-06 00:00:00
 */
function ct_trck_marvel_410064392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4281);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Daredevilcast
 * Action created: 2018-10-06 00:00:00
 */
function ct_trck_marvel_410064391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4280);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Day1recap
 * Action created: 2018-10-04 00:00:00
 */
function ct_trck_marvel_410064371(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Day2recap
 * Action created: 2018-10-05 00:00:00
 */
function ct_trck_marvel_410064386(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4268);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Day3recap
 * Action created: 2018-10-06 00:00:00
 */
function ct_trck_marvel_410064390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4279);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Day4recap
 * Action created: 2018-10-08 00:00:00
 */
function ct_trck_marvel_410064393(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4282);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Javiergarron
 * Action created: 2018-10-04 00:00:00
 */
function ct_trck_marvel_410064374(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4260);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Legospidey
 * Action created: 2018-10-08 00:00:00
 */
function ct_trck_marvel_410064394(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4283);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Longnightcomic
 * Action created: 2018-10-05 00:00:00
 */
function ct_trck_marvel_410064383(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4265);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Marvelcomicspresents
 * Action created: 2018-10-04 00:00:00
 */
function ct_trck_marvel_410064372(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Runawayss2
 * Action created: 2018-10-05 00:00:00
 */
function ct_trck_marvel_410064384(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4266);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2018: Spidergeddon
 * Action created: 2018-10-06 00:00:00
 */
function ct_trck_marvel_410064389(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4278);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Article - Bestcosplayers
 * Action created: 2019-10-07 00:00:00
 */
function ct_trck_marvel_410083650(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10178);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Article - Heroprojectclip
 * Action created: 2019-10-05 00:00:00
 */
function ct_trck_marvel_410083609(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10138);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Article - Msmarvelavengers
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083573(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Article - Operationshurisneakpeek
 * Action created: 2019-10-07 00:00:00
 */
function ct_trck_marvel_410083651(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10179);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Article - Runawayss3trailer
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083572(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Article - Wolverine1
 * Action created: 2019-10-05 00:00:00
 */
function ct_trck_marvel_410083608(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10137);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Video - Bestof
 * Action created: 2019-10-07 00:00:00
 */
function ct_trck_marvel_410083649(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10177);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Video - Eturundmc
 * Action created: 2019-10-07 00:00:00
 */
function ct_trck_marvel_410083652(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10180);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Video - Futurefighteaser
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083575(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10100);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Video - Giantarcadegame
 * Action created: 2019-10-05 00:00:00
 */
function ct_trck_marvel_410083611(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10140);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Video - Ironmanvrtrailer
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083574(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10099);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Video - Kamalakhan
 * Action created: 2019-10-05 00:00:00
 */
function ct_trck_marvel_410083610(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10139);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc2019: Video - Livestream
 * Action created: 2019-09-30 00:00:00
 */
function ct_trck_marvel_410083189(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9998);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - 2020panel
 * Action created: 2019-10-02 00:00:00
 */
function ct_trck_marvel_410083469(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Captainmarvelbreakoutstar
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083554(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10083);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Catesthor
 * Action created: 2019-10-05 11:42:24
 */
function ct_trck_marvel_410083589(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10118);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Day1recap2019
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083548(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Exclusivemerch
 * Action created: 2019-09-20 00:00:00
 */
function ct_trck_marvel_410083090(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Gamespanel
 * Action created: 2019-09-18 00:00:00
 */
function ct_trck_marvel_410082948(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9858);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Ironman2020
 * Action created: 2019-10-05 11:40:18
 */
function ct_trck_marvel_410083588(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Marvelliveschedule
 * Action created: 2019-10-02 00:00:00
 */
function ct_trck_marvel_410083468(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Marvelrisingoperationshuri
 * Action created: 2019-09-30 00:00:00
 */
function ct_trck_marvel_410083415(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9999);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Mcocrealmofchampions
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083549(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10078);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Runawaysposters
 * Action created: 2019-10-02 00:00:00
 */
function ct_trck_marvel_410083473(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10061);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Article - Variants
 * Action created: 2019-09-26 00:00:00
 */
function ct_trck_marvel_410083302(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9958);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Video - Davebushorevr
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083551(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10080);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Video - Dawnofxtalent
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083550(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10079);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Video - Exclusivemerch
 * Action created: 2019-09-26 00:00:00
 */
function ct_trck_marvel_410083303(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9959);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Video - Funkoexclusives
 * Action created: 2019-10-06 09:37:40
 */
function ct_trck_marvel_410083628(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10157);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Video - Hasbrostanlee
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083552(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10081);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Nycc: Video - Marvelbooth2019
 * Action created: 2019-10-04 00:00:00
 */
function ct_trck_marvel_410083553(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10082);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Phoenixresurrection:teaservideo
 * Action created: 2018-01-02 00:00:00
 */
function ct_trck_marvel_410058742(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2437);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Podcast Download The Captain America Themed This Week In Marvel Podcast
 * Action created: 2016-03-28 11:49:02
 */
function ct_trck_marvel_410049169(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 872);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    podcast download the latest this week in marvel podcast
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049133(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 861);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    podcast download the latest women of marvel podcast
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049134(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 865);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article - 3 New Cast Members
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050921(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1249);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article - Actionscenes
 * Action created: 2019-01-29 00:00:00
 */
function ct_trck_marvel_410069011(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article - Behindthescenes
 * Action created: 2019-01-16 00:00:00
 */
function ct_trck_marvel_410068049(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5397);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article - Enemies
 * Action created: 2019-01-15 00:00:00
 */
function ct_trck_marvel_410067988(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5377);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article - S2primer
 * Action created: 2019-01-16 00:00:00
 */
function ct_trck_marvel_410068054(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5401);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article - S2showrunners
 * Action created: 2019-01-17 00:00:00
 */
function ct_trck_marvel_410068068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article - Season2poster
 * Action created: 2019-01-09 00:00:00
 */
function ct_trck_marvel_410067730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5257);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article - Supportteam
 * Action created: 2019-01-14 00:00:00
 */
function ct_trck_marvel_410067970(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article-billyrusso
 * Action created: 2019-01-24 00:00:00
 */
function ct_trck_marvel_410068841(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5530);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article-frankcastlenature
 * Action created: 2019-01-28 00:00:00
 */
function ct_trck_marvel_410068929(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5538);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article-johnpilgrim
 * Action created: 2019-01-23 00:00:00
 */
function ct_trck_marvel_410068209(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article-premieredate
 * Action created: 2019-01-03 00:00:00
 */
function ct_trck_marvel_410067228(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Article-twims2
 * Action created: 2019-01-22 00:00:00
 */
function ct_trck_marvel_410068192(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5459);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Characterpage
 * Action created: 2018-12-18 00:00:00
 */
function ct_trck_marvel_410066998(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4960);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Video - Billyrusso
 * Action created: 2019-01-09 00:00:00
 */
function ct_trck_marvel_410067710(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Video - Marvel101
 * Action created: 2018-12-18 00:00:00
 */
function ct_trck_marvel_410067001(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4963);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Video - Season2trailer
 * Action created: 2019-01-10 00:00:00
 */
function ct_trck_marvel_410067769(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5298);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Video - Tldr
 * Action created: 2018-12-18 00:00:00
 */
function ct_trck_marvel_410067002(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4964);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Video-emsrecap
 * Action created: 2019-01-22 00:00:00
 */
function ct_trck_marvel_410068191(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5458);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Punisher: Video-teasers2
 * Action created: 2019-01-02 00:00:00
 */
function ct_trck_marvel_410067211(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Quickdraw: Ironfist
 * Action created: 2018-08-27 00:00:00
 */
function ct_trck_marvel_410062718(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3979);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read About Marvel's Luke Cage Cast Announcements
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050292(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1102);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read About Marvel's Luke Cage Casting Of Alfre Woodard
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050294(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1104);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read About Marvel's Luke Cage Casting Of Sonia Braga
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050293(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1103);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    read article test
 * Action created: 2016-03-09 15:45:12
 */
function ct_trck_marvel_410049100(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 838);

        t.set_complex_fire_values('delayed', 30, 5, null);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action_complex();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read Chapter 1
 * Action created: 2017-10-12 00:00:00
 */
function ct_trck_marvel_410056720(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2127);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read Chapter 2
 * Action created: 2017-10-12 00:00:00
 */
function ct_trck_marvel_410056721(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2126);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read Chapter 3
 * Action created: 2017-10-12 00:00:00
 */
function ct_trck_marvel_410056722(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2125);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read Chapter 4
 * Action created: 2017-10-12 00:00:00
 */
function ct_trck_marvel_410056723(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2128);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read Mu's Favorite Stories Featuring Lgbtq Charact1562165668
 * Action created: 2019-06-14 00:00:00
 */
function ct_trck_marvel_410075888(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read The Official Marvel's Captain America Civil War Synopsis
 * Action created: 2016-03-28 11:49:11
 */
function ct_trck_marvel_410049170(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 873);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Read The Tales Of Thor Vs. Malekith
 * Action created: 2019-05-23 00:00:00
 */
function ct_trck_marvel_410074955(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Renewed Mu Annual Subscription
 * Action created: 2016-06-15 10:41:03
 */
function ct_trck_marvel_410049812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1002);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Renewed Mu Monthly Subscription
 * Action created: 2016-06-15 10:41:10
 */
function ct_trck_marvel_410049814(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1004);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Renewed Mu Plus Subscription
 * Action created: 2016-06-15 10:41:07
 */
function ct_trck_marvel_410049813(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1003);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Retweet Share New Askmarvel Post
 * Action created: 2017-01-18 15:20:11
 */
function ct_trck_retweet_share_new_askmarvel_post(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1417);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    review your profile
 * Action created: 2016-03-21 17:39:42
 */
function ct_trck_marvel_410049142(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 869);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Rising:swtrailer
 * Action created: 2018-09-12 00:00:00
 */
function ct_trck_marvel_410062918(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4144);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article - Alexseason2
 * Action created: 2018-12-13 00:00:00
 */
function ct_trck_marvel_410066898(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4897);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article - Meettopherseason2
 * Action created: 2018-11-30 00:00:00
 */
function ct_trck_marvel_410065902(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4581);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article - Mollyseason2
 * Action created: 2018-12-04 00:00:00
 */
function ct_trck_marvel_410065932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article - Nextforseason2
 * Action created: 2018-12-14 00:00:00
 */
function ct_trck_marvel_410066908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article - Nicostorycomics
 * Action created: 2018-12-05 00:00:00
 */
function ct_trck_marvel_410066051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article-aftershowdebut
 * Action created: 2018-12-11 00:00:00
 */
function ct_trck_marvel_410066848(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article-btss2
 * Action created: 2018-12-18 00:00:00
 */
function ct_trck_marvel_410066994(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4958);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article-nicomoments
 * Action created: 2018-11-30 00:00:00
 */
function ct_trck_marvel_410065903(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4582);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article-prides2
 * Action created: 2018-12-17 00:00:00
 */
function ct_trck_marvel_410066951(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4937);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article-primer
 * Action created: 2018-12-20 00:00:00
 */
function ct_trck_marvel_410067068(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4997);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Article-s2trailer
 * Action created: 2018-11-30 00:00:00
 */
function ct_trck_marvel_410065888(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Groupcharacterpage
 * Action created: 2018-11-30 00:00:00
 */
function ct_trck_marvel_410065900(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video - Marvel101
 * Action created: 2018-12-03 00:00:00
 */
function ct_trck_marvel_410065911(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4600);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video - Quickdraw
 * Action created: 2018-12-06 00:00:00
 */
function ct_trck_marvel_410066111(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video - Tldr
 * Action created: 2018-11-30 00:00:00
 */
function ct_trck_marvel_410065904(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4583);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video-emsrecaps1
 * Action created: 2018-12-17 00:00:00
 */
function ct_trck_marvel_410066952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4938);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video-hostel101
 * Action created: 2018-12-12 00:00:00
 */
function ct_trck_marvel_410066872(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video-pride101
 * Action created: 2018-12-10 00:00:00
 */
function ct_trck_marvel_410066229(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4758);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video-relationships
 * Action created: 2018-12-19 00:00:00
 */
function ct_trck_marvel_410067009(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4977);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video-s2trailer
 * Action created: 2018-12-03 00:00:00
 */
function ct_trck_marvel_410065889(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways: Video-showrunners
 * Action created: 2018-12-19 00:00:00
 */
function ct_trck_marvel_410067010(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4978);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways:meet The Runaways
 * Action created: 2019-12-04 00:00:00
 */
function ct_trck_marvel_410085346(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10607);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Runaways:s2teaser
 * Action created: 2018-10-01 00:00:00
 */
function ct_trck_marvel_410064201(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4244);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: 2019decbogo
 * Action created: 2019-11-24 13:50:03
 */
function ct_trck_marvel_410085249(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Amazingauthors
 * Action created: 2020-04-14 16:44:19
 */
function ct_trck_marvel_410089774(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11322);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Avengersearthsmightiest2022
 * Action created: 2022-03-11 16:00:19
 */
function ct_trck_marvel_410108393(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15594);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Avengersmassivesale
 * Action created: 2020-04-06 10:27:31
 */
function ct_trck_marvel_410089472(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Best Selling Collections
 * Action created: 2018-07-16 09:50:10
 */
function ct_trck_marvel_410061663(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3557);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Bogosept2018
 * Action created: 2018-08-30 11:52:12
 */
function ct_trck_marvel_410062714(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4019);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Buyonegetone
 * Action created: 2019-02-28 13:51:47
 */
function ct_trck_marvel_410070193(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6077);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Captainamerica
 * Action created: 2020-04-22 16:38:50
 */
function ct_trck_marvel_410089915(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11355);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Captainmarvelavengers
 * Action created: 2019-02-20 13:01:05
 */
function ct_trck_marvel_410069912(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5939);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Carnage
 * Action created: 2019-07-25 15:04:31
 */
function ct_trck_marvel_410079428(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Celebrate2019
 * Action created: 2019-12-12 14:58:11
 */
function ct_trck_marvel_410085545(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10655);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Chooseyourown
 * Action created: 2020-08-26 00:00:00
 */
function ct_trck_marvel_410092316(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11864);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Deadpool2022
 * Action created: 2022-01-10 12:12:43
 */
function ct_trck_marvel_410107377(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15345);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Giantsizedxmen
 * Action created: 2019-09-24 14:02:59
 */
function ct_trck_marvel_410083239(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9939);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Guardiansgalaxy101
 * Action created: 2019-01-08 15:31:27
 */
function ct_trck_marvel_410067634(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 5180);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Massiveblockbusteravengers
 * Action created: 2019-04-05 12:46:16
 */
function ct_trck_marvel_410071477(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6839);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Secretwars
 * Action created: 2020-04-22 16:33:43
 */
function ct_trck_marvel_410089913(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11354);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Spidermanbydanslott
 * Action created: 2020-01-16 10:18:53
 */
function ct_trck_marvel_410086891(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10804);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Wolverine
 * Action created: 2020-02-18 16:00:38
 */
function ct_trck_marvel_410087513(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10984);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale: Xmensagas
 * Action created: 2019-05-21 10:05:42
 */
function ct_trck_marvel_410074808(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7657);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale:ant-man
 * Action created: 2018-06-22 14:32:37
 */
function ct_trck_marvel_410061355(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3422);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale:april-avengers
 * Action created: 2018-04-11 13:05:43
 */
function ct_trck_marvel_410060249(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3087);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale:april-infinity
 * Action created: 2018-04-11 13:09:11
 */
function ct_trck_marvel_410060250(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3088);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale:defenders
 * Action created: 2017-08-08 14:57:25
 */
function ct_trck_marvel_410055662(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1841);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale:fantastic Four
 * Action created: 2018-07-30 09:50:46
 */
function ct_trck_marvel_410062071(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale:labordaybogo
 * Action created: 2017-09-01 09:12:38
 */
function ct_trck_marvel_410055913(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1957);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale:massivemarvel
 * Action created: 2018-12-18 10:27:26
 */
function ct_trck_marvel_410058703(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4959);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sale:starwarsmega
 * Action created: 2017-12-12 09:43:46
 */
function ct_trck_marvel_410058634(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2405);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Marvel.com - Event Recap
 * Action created: 2016-06-28 13:50:11
 */
function ct_trck_marvel_410049894(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1030);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Marvel.com - Live Blog Death Of X
 * Action created: 2016-07-19 00:00:00
 */
function ct_trck_marvel_410050133(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1039);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Marvel.com - Live Blog Maos
 * Action created: 2016-07-19 00:00:00
 */
function ct_trck_marvel_410050135(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1040);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Marvel.com - Live Blog Women Of Marvel
 * Action created: 2016-07-19 00:00:00
 */
function ct_trck_marvel_410050136(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1041);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Marvel.com - Livestream Bonus
 * Action created: 2016-07-20 00:00:00
 */
function ct_trck_marvel_410050152(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1042);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Marvel.com - Panel Line-up
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049887(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1023);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Marvel.com - View Gallery
 * Action created: 2016-06-28 13:50:13
 */
function ct_trck_marvel_410049895(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1031);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Marvel.com - Watch Livestream
 * Action created: 2016-06-28 00:00:00
 */
function ct_trck_marvel_410049896(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1032);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Youtube - Iron Fist Teaser Trailer
 * Action created: 2016-07-25 00:00:00
 */
function ct_trck_marvel_410050166(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1058);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Youtube - Luke Cage Teaser Trailer
 * Action created: 2016-07-25 00:00:00
 */
function ct_trck_marvel_410050165(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1057);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Youtube - Marvel Live Luke Cage (1/2)
 * Action created: 2016-07-25 00:00:00
 */
function ct_trck_marvel_410050170(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1059);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 16: Youtube - Marvel Live Luke Cage (2/2)
 * Action created: 2016-07-25 00:00:00
 */
function ct_trck_marvel_410050171(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1060);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 17: Watch Inhumans Trailer 2
 * Action created: 2017-07-21 10:05:34
 */
function ct_trck_marvel_410055510(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1757);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc 17: Watch Marvel Live Coverage Of Sdcc
 * Action created: 2017-07-12 00:00:00
 */
function ct_trck_marvel_410055393(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:article-allyouneedtonknowonsdcc2018
 * Action created: 2018-07-18 00:00:00
 */
function ct_trck_marvel_410061707(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3578);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:article-boothevents
 * Action created: 2018-07-18 00:00:00
 */
function ct_trck_marvel_410061708(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3579);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:article-exclusive Merch
 * Action created: 2018-07-13 00:00:00
 */
function ct_trck_marvel_410061664(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3537);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:article-hasbrobplegends
 * Action created: 2018-07-19 16:22:25
 */
function ct_trck_marvel_410062010(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:article-marvelgamesnews
 * Action created: 2018-07-20 00:00:00
 */
function ct_trck_marvel_410062012(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3599);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:article-marvelnewmedia
 * Action created: 2018-07-18 00:00:00
 */
function ct_trck_marvel_410061706(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3581);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:article-marvelpanels
 * Action created: 2018-07-18 00:00:00
 */
function ct_trck_marvel_410061705(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3577);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:article-signingschedule
 * Action created: 2018-07-18 00:00:00
 */
function ct_trck_marvel_410061709(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3580);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:artistsofmcu
 * Action created: 2018-07-20 00:00:00
 */
function ct_trck_marvel_410062017(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3602);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:hasbrotoys
 * Action created: 2018-07-20 00:00:00
 */
function ct_trck_marvel_410062016(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3603);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:joeq20yearsmarvelknights
 * Action created: 2018-07-23 00:00:00
 */
function ct_trck_marvel_410062051(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3620);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:legion
 * Action created: 2018-07-23 00:00:00
 */
function ct_trck_marvel_410062054(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3622);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:livestream
 * Action created: 2018-07-19 00:00:00
 */
function ct_trck_marvel_410061698(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:marvelpowersunitedvr
 * Action created: 2018-07-23 00:00:00
 */
function ct_trck_marvel_410062049(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3618);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:sdcc2018recap
 * Action created: 2018-07-20 00:00:00
 */
function ct_trck_marvel_410062015(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3601);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:sdcc2018recap4
 * Action created: 2018-07-23 00:00:00
 */
function ct_trck_marvel_410062053(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3621);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:thegifteds2trailer
 * Action created: 2018-07-23 00:00:00
 */
function ct_trck_marvel_410062048(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3617);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:twimspider-man
 * Action created: 2018-07-23 00:00:00
 */
function ct_trck_marvel_410062050(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3619);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:video-ironfists2date
 * Action created: 2018-07-20 00:00:00
 */
function ct_trck_marvel_410062013(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3600);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2018:video-spider-mancosplay
 * Action created: 2018-07-27 00:00:00
 */
function ct_trck_marvel_410062097(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3662);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2019: Article - Studioshallh
 * Action created: 2019-07-25 00:00:00
 */
function ct_trck_marvel_410079128(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8799);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2019: Video - Bestofday1
 * Action created: 2019-07-19 00:00:00
 */
function ct_trck_marvel_410079029(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8697);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2019: Video - Bosslogic
 * Action created: 2019-07-19 00:00:00
 */
function ct_trck_marvel_410079033(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8701);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2019: Video - Hickman
 * Action created: 2019-07-19 00:00:00
 */
function ct_trck_marvel_410079030(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8698);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2019: Video - Jenmartel
 * Action created: 2019-07-19 00:00:00
 */
function ct_trck_marvel_410079031(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8699);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2019: Video - Livestream
 * Action created: 2019-07-05 00:00:00
 */
function ct_trck_marvel_410078243(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc2019: Video - Summonershowdownkickoff
 * Action created: 2019-07-19 00:00:00
 */
function ct_trck_marvel_410079032(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8700);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc: Article - Booth2019
 * Action created: 2019-07-11 00:00:00
 */
function ct_trck_marvel_410078391(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8598);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc: Article - Cosplay2019
 * Action created: 2019-07-11 00:00:00
 */
function ct_trck_marvel_410078392(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8599);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc: Article - Gamelineup2019
 * Action created: 2019-07-11 00:00:00
 */
function ct_trck_marvel_410078393(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8600);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc: Article - Hasbrograndmaster
 * Action created: 2019-06-25 00:00:00
 */
function ct_trck_marvel_410077744(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8259);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc: Article - Hasbrohulk
 * Action created: 2019-06-24 00:00:00
 */
function ct_trck_marvel_410076390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8237);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Sdcc: Article - Merchhub
 * Action created: 2019-07-11 11:13:39
 */
function ct_trck_marvel_410078390(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 8597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    See The Curated Jessica Jones Comics Reading List 
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050296(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1106);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    See The Curated Luke Cage Comics Reading List 
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050295(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1105);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    See The New Empire Magazine Cover Featuring Spider1634922957
 * Action created: 2021-10-22 00:00:00
 */
function ct_trck_marvel_410105291(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15017);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Article - Aubreyjoseph
 * Action created: 2019-04-05 00:00:00
 */
function ct_trck_marvel_410072449(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6838);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Article - Jephloebs2
 * Action created: 2019-04-03 00:00:00
 */
function ct_trck_marvel_410072330(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Article - Mayhemstunts
 * Action created: 2019-04-09 00:00:00
 */
function ct_trck_marvel_410072549(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Article - Newbeginnings
 * Action created: 2019-04-05 00:00:00
 */
function ct_trck_marvel_410072448(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Article - Oliviaholtdagger
 * Action created: 2019-03-27 00:00:00
 */
function ct_trck_marvel_410071468(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6597);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Article - S2characters
 * Action created: 2019-03-13 00:00:00
 */
function ct_trck_marvel_410070638(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Podcast - Weeklyaftershow
 * Action created: 2019-04-03 00:00:00
 */
function ct_trck_marvel_410072332(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6800);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Season2sneakpeek
 * Action created: 2019-03-21 00:00:00
 */
function ct_trck_marvel_410071272(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6481);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Video - Marvel101brigidoreilly
 * Action created: 2019-04-03 00:00:00
 */
function ct_trck_marvel_410072333(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6799);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Video - Marvel101tandy
 * Action created: 2019-03-26 00:00:00
 */
function ct_trck_marvel_410071449(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6581);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Video - Marvel101tyrone
 * Action created: 2019-04-02 00:00:00
 */
function ct_trck_marvel_410072290(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shadows: Video - Marvelminutes1
 * Action created: 2019-04-04 00:00:00
 */
function ct_trck_marvel_410072369(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shield:17 Minute Preview
 * Action created: 2017-11-27 00:00:00
 */
function ct_trck_marvel_410058250(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2299);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Shop:generations Sale
 * Action created: 2017-07-28 14:32:21
 */
function ct_trck_marvel_410055592(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1797);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Spidey: Discover: Ultimate Spider-man
 * Action created: 2017-06-21 00:00:00
 */
function ct_trck_marvel_410055217(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1658);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Spidey: Marvel 101: Spider-man
 * Action created: 2017-06-21 00:00:00
 */
function ct_trck_marvel_410055218(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1659);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Spidey: Video - Marvel's Spider-man
 * Action created: 2017-06-13 00:00:00
 */
function ct_trck_marvel_410055212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1637);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Spidey: Watch Homecoming Premiere Livestream
 * Action created: 2017-06-28 00:00:00
 */
function ct_trck_marvel_410055322(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1678);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Spotlight: Article - Readingwithrainbowrowell
 * Action created: 2019-12-04 00:00:00
 */
function ct_trck_marvel_410085342(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10605);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Avengers Academy
 * Action created: 2016-10-25 00:00:00
 */
function ct_trck_marvel_410051142(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1303);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Becoming The Sorcerer Supreme
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050952(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1262);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Benedict Wong And Chiwetel Ejiofor
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050953(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1263);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Contest Of Champions
 * Action created: 2016-10-25 00:00:00
 */
function ct_trck_marvel_410051141(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1302);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Future Fight
 * Action created: 2016-10-25 00:00:00
 */
function ct_trck_marvel_410051138(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1299);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Marvel Heroes
 * Action created: 2016-10-25 00:00:00
 */
function ct_trck_marvel_410051139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1300);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Marvel Puzzle Quest
 * Action created: 2016-10-25 00:00:00
 */
function ct_trck_marvel_410051140(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1301);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - New Images Push Boundarieslim
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050955(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1265);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Tilda Swinton Interview
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050954(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1264);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Article - Tsum Tsum
 * Action created: 2016-10-25 00:00:00
 */
function ct_trck_marvel_410051136(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1297);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Digital Comics - Sale
 * Action created: 2016-11-02 11:10:13
 */
function ct_trck_strange_digital_comics_sale(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1321);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Video - Inside The Magic Featurette
 * Action created: 2016-10-17 00:00:00
 */
function ct_trck_marvel_410050951(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1277);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Video - Open Your Mind Featurette
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050933(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1260);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Video - Red Carpet Premiere
 * Action created: 2016-10-20 00:00:00
 */
function ct_trck_strange_video_red_carpet_premiere(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1280);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Video - Tv Spot 1
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050931(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1258);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Video - Tv Spot 2
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050932(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1259);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Strange: Video - Universe Within Featurette
 * Action created: 2016-10-14 00:00:00
 */
function ct_trck_marvel_410050934(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1261);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Subscribe To Marvel Unlimited
 * Action created: 2016-06-15 10:41:00
 */
function ct_trck_marvel_410049811(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1001);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Test: Livestreamvideotagging
 * Action created: 2019-02-25 00:00:00
 */
function ct_trck_marvel_410070049(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 6005);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Test: Testarticle1
 * Action created: 2019-05-21 00:00:00
 */
function ct_trck_marvel_410074812(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7678);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Test: Testarticle2
 * Action created: 2019-05-21 00:00:00
 */
function ct_trck_marvel_410074813(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7679);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Test:article-ghostrider
 * Action created: 2018-06-13 00:00:00
 */
function ct_trck_marvel_410060997(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3360);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Test:article-rocketandgroot
 * Action created: 2018-06-13 00:00:00
 */
function ct_trck_marvel_410060998(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3358);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Test:video-marvel101:songbird
 * Action created: 2018-06-13 00:00:00
 */
function ct_trck_marvel_410060993(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3357);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Test:video-quickdraw:nova
 * Action created: 2018-06-13 00:00:00
 */
function ct_trck_marvel_410060999(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3359);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    The Sinister Six's Best Brawls
 * Action created: 2021-10-13 00:00:00
 */
function ct_trck_marvel_410105225(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15000);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    The Top 10 Moments From ‘x-men: The Animated Ser1667244252
 * Action created: 2022-10-31 15:24:12
 */
function ct_trck_marvel_410111825(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 16186);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Article - Bestofwaltsimionsonsthor
 * Action created: 2019-12-31 00:00:00
 */
function ct_trck_marvel_410086736(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10724);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Article - Criticsonthor#1
 * Action created: 2020-01-03 00:00:00
 */
function ct_trck_marvel_410086775(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10748);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Article - Howthorbecameking
 * Action created: 2019-12-31 00:00:00
 */
function ct_trck_marvel_410086737(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10723);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Article - Lookinsidethor2020#1
 * Action created: 2020-01-07 00:00:00
 */
function ct_trck_marvel_410086805(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10759);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Character - Thorincomics
 * Action created: 2019-12-30 00:00:00
 */
function ct_trck_marvel_410086730(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10718);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Discover - Historyofthorincomics
 * Action created: 2020-01-09 00:00:00
 */
function ct_trck_marvel_410086870(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10768);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Discover - Introseriesandstoryarcs
 * Action created: 2019-12-30 00:00:00
 */
function ct_trck_marvel_410086731(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10720);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Discover - Jasonaaronsepictenure
 * Action created: 2019-12-30 00:00:00
 */
function ct_trck_marvel_410086729(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10719);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Discover - Jasonaaronsfavorites
 * Action created: 2020-01-09 00:00:00
 */
function ct_trck_marvel_410086869(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10767);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor: Video - Comicthor101
 * Action created: 2020-01-03 00:00:00
 */
function ct_trck_marvel_410086765(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10745);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor:marvel101
 * Action created: 2017-10-18 00:00:00
 */
function ct_trck_marvel_410057345(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2159);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor:ragnarok-official Trailer
 * Action created: 2017-10-11 00:00:00
 */
function ct_trck_marvel_410056693(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2117);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Thor:ragnrarok-worldpremiere
 * Action created: 2017-10-10 00:00:00
 */
function ct_trck_marvel_410056593(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2097);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Tldr: Ironfist
 * Action created: 2018-08-27 00:00:00
 */
function ct_trck_marvel_410062717(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3980);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Topten:duos
 * Action created: 2018-06-04 00:00:00
 */
function ct_trck_marvel_410060942(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3323);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Trailer: Msfstorytelling
 * Action created: 2018-08-07 00:00:00
 */
function ct_trck_marvel_410062351(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    tv visit the tv news page
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049136(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 863);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Tvshows: Article - Elizabethhurleyasmorganlefay
 * Action created: 2019-12-04 00:00:00
 */
function ct_trck_marvel_410085339(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10603);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Uncannyxmennew2018release
 * Action created: 2018-08-13 00:00:00
 */
function ct_trck_marvel_410062554(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 3803);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video Marvel's Captain America Civil War Tv Spot 1
 * Action created: 2016-04-20 10:45:37
 */
function ct_trck_marvel_410049320(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 919);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video View The Captain America Themed Ask Marvel Video
 * Action created: 2016-03-28 00:00:00
 */
function ct_trck_marvel_410049176(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 879);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video View The Captain America Themed Lorraine Show
 * Action created: 2016-03-28 11:49:58
 */
function ct_trck_marvel_410049177(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 880);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video View The Captain America Themed Marvel 101 Video
 * Action created: 2016-03-28 11:50:07
 */
function ct_trck_marvel_410049178(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 881);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    video view the latest ask marvel video
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049140(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 868);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video View The Latest Captain America Themed Marvel Superheros What The?! Video
 * Action created: 2016-03-28 11:50:09
 */
function ct_trck_marvel_410049179(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 882);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video View The Latest Lorraine Show
 * Action created: 2016-03-28 11:50:12
 */
function ct_trck_marvel_410049180(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 883);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    video view the latest marvel 101 video
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049139(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 867);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    video view the latest marvel minute video
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049141(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 870);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    video view the latest marvel superheros what the?! video
 * Action created: 2016-03-21 00:00:00
 */
function ct_trck_marvel_410049138(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 866);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video View Trailer 1
 * Action created: 2016-03-28 11:50:18
 */
function ct_trck_marvel_410049181(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 884);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video View Trailer 2
 * Action created: 2016-03-28 11:50:21
 */
function ct_trck_marvel_410049182(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 885);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video View Trailer 3
 * Action created: 2016-03-28 11:50:23
 */
function ct_trck_marvel_410049183(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 886);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Video:runawaysteaser
 * Action created: 2018-01-11 00:00:00
 */
function ct_trck_marvel_410058831(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 2487);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Videos: Marvel Minute-defenders
 * Action created: 2017-08-08 00:00:00
 */
function ct_trck_marvel_410055661(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1838);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    View Captain America Civil War Big Game Spot
 * Action created: 2016-03-28 11:49:34
 */
function ct_trck_marvel_410049173(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 876);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    view red carpet event image gallery
 * Action created: 2016-03-14 12:17:50
 */
function ct_trck_marvel_410049120(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 844);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    View The Latest Captain America Civil War Photos
 * Action created: 2016-03-28 11:49:19
 */
function ct_trck_marvel_410049171(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 874);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    View The New Concept Art And Photos From Marvel's Captain America Civil War
 * Action created: 2016-03-28 11:49:31
 */
function ct_trck_marvel_410049172(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 875);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Visit Captain America Civil War Premiere Page
 * Action created: 2016-03-14 00:00:00
 */
function ct_trck_marvel_410049119(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 843);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Visit The Captain America Civil War Movie Page
 * Action created: 2016-04-20 10:45:17
 */
function ct_trck_marvel_410049318(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 917);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Visited Site
 * Action created: 2016-04-20 00:00:00
 */
function ct_trck_marvel_410048976(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 921);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    watch live video from the red carpet event
 * Action created: 2016-03-14 12:17:50
 */
function ct_trck_marvel_410049121(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 845);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    watch live video from the red carpet event 2
 * Action created: 2016-03-14 12:17:50
 */
function ct_trck_marvel_410049122(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 846);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch Marvel Minute At D23 Expo
 * Action created: 2017-07-19 00:00:00
 */
function ct_trck_marvel_410055473(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1738);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch Marvel’s Doctor Strange Official Trailer 2
 * Action created: 2016-07-25 15:33:22
 */
function ct_trck_marvel_410050190(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1061);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch The Dark Phoenix Red Carpet Premiere
 * Action created: 2019-06-04 00:00:00
 */
function ct_trck_marvel_410075031(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7899);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch The Jessica Jones Episode Of Marvel 101
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050289(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1099);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch The Luke Cage Episode Of Marvel 101 
 * Action created: 2016-08-09 00:00:00
 */
function ct_trck_marvel_410050278(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1098);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch The Official Dawn Of X Trailer
 * Action created: 2019-09-16 00:00:00
 */
function ct_trck_marvel_410082833(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 9820);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    watch video test
 * Action created: 2016-03-09 00:00:00
 */
function ct_trck_marvel_410049099(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 837);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch: Series - Marvelvoicesstorm
 * Action created: 2020-03-11 00:00:00
 */
function ct_trck_marvel_410088025(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11123);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch: Video - Jeangrey101
 * Action created: 2020-03-04 00:00:00
 */
function ct_trck_marvel_410087907(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11079);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch: Video - Mariahill101
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087971(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11095);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch: Video - Marvelsavengers101
 * Action created: 2019-11-11 00:00:00
 */
function ct_trck_marvel_410085067(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10518);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch: Video - Rankmarvelsavengers
 * Action created: 2019-11-07 00:00:00
 */
function ct_trck_marvel_410085062(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 10497);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch: Video - Silversable101
 * Action created: 2020-03-06 00:00:00
 */
function ct_trck_marvel_410087969(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 11094);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch:marvel 101-daredevil
 * Action created: 2017-08-02 00:00:00
 */
function ct_trck_marvel_410055628(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1818);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watch:marvel101-inhumans
 * Action created: 2017-08-02 00:00:00
 */
function ct_trck_marvel_410055629(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1817);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watched Doctor Strange Trailer 1
 * Action created: 2016-06-15 00:00:00
 */
function ct_trck_marvel_410049809(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 999);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Watched Doctor Strange Trailer 2
 * Action created: 2016-06-15 00:00:00
 */
function ct_trck_marvel_410049810(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 1000);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    We Reveal The Results Of The Groundbreaking X-men 1618504785
 * Action created: 2021-04-15 00:00:00
 */
function ct_trck_marvel_410101283(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 14511);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Why Khonshu Looks Unlike Other Gods
 * Action created: 2022-05-16 13:23:19
 */
function ct_trck_marvel_410109377(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 15735);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Article - Asgardianfamily
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074501(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7587);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Article - Catchup
 * Action created: 2019-05-28 00:00:00
 */
function ct_trck_marvel_410075008(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7777);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Article - Crucialfactors
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074502(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7588);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Article - Pulllistrealms
 * Action created: 2019-05-21 00:00:00
 */
function ct_trck_marvel_410074830(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7677);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Article - Readingguide
 * Action created: 2019-05-31 00:00:00
 */
function ct_trck_marvel_410075248(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7857);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Video - Freyjamarvel101
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074500(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7586);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Video - Malekithmarvel101
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074496(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7582);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Video - Odinmarvel101
 * Action created: 2019-05-14 00:00:00
 */
function ct_trck_marvel_410074498(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7584);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Video - Top10realms
 * Action created: 2019-05-23 00:00:00
 */
function ct_trck_marvel_410074950(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7737);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Wotr: Video - Ultimatecomic4
 * Action created: 2019-05-22 00:00:00
 */
function ct_trck_marvel_410074908(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 7717);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Ageofxman
 * Action created: 2018-11-20 00:00:00
 */
function ct_trck_marvel_410065791(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4527);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Characterpage
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065218(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4452);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Didjaknowuncannyxmen
 * Action created: 2018-11-09 00:00:00
 */
function ct_trck_marvel_410065254(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4457);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Lastvariants
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065214(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4450);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Launchtrailer
 * Action created: 2018-11-16 00:00:00
 */
function ct_trck_marvel_410065746(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4498);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Lookbackuncanny
 * Action created: 2018-11-16 00:00:00
 */
function ct_trck_marvel_410065755(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4494);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Refusedeath
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065213(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4449);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Tlnchapter9
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065212(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4448);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Variantfive
 * Action created: 2018-11-05 00:00:00
 */
function ct_trck_marvel_410065211(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4447);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}

/**
 * Action name:    Xmen: Writerfavorites
 * Action created: 2018-11-20 00:00:00
 */
function ct_trck_marvel_410065792(options)
{
    try
    {
        var t = new _t_ct_pt('2-66', 'prod', 4528);

        t.set_tpid((options.content_identifier ?
                        options.content_identifier : ''));

        if (options.link && options.title && options.desc)
        {
            t.set_rcs(options.link,
                      options.title,
                      options.desc,
                      (options.image ? options.image : null));
        }

        t.track_action();
    }
    catch (err) {
        
    }
}
