// +------------------------------------------------------------+
// | 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:     2020-03-01 02:29:29
 * Site ID:      2
 * Client ID:    66
 * Cachebuster:  1576940752931
 * Num. Actions: 1647
 */

/**
 * 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: 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: 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: 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: 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:    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:    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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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-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: 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: 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: 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 - 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 - 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 - 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 - 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 - 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-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: 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: 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: 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: 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: 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: 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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-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: 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: 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: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:    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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: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 12:43:28
 */
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:    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: 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 -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-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: 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: 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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-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: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:    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: 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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-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: 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: 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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:    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-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:    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:    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: 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: 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: 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: 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:    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:    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: 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: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:    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) {
        
    }
}
