@everymatrix/casino-footer-section 0.0.188 → 0.0.192
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/casino-footer-section.js +1 -2560
- package/dist/casino-footer-section.js.map +1 -1
- package/package.json +3 -3
- package/rollup.config.js +13 -5
|
@@ -1,2561 +1,2 @@
|
|
|
1
|
-
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
3
|
-
typeof define === 'function' && define.amd ? define(factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.app = factory());
|
|
5
|
-
}(this, (function () { 'use strict';
|
|
6
|
-
|
|
7
|
-
function noop() { }
|
|
8
|
-
function add_location(element, file, line, column, char) {
|
|
9
|
-
element.__svelte_meta = {
|
|
10
|
-
loc: { file, line, column, char }
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
function run(fn) {
|
|
14
|
-
return fn();
|
|
15
|
-
}
|
|
16
|
-
function blank_object() {
|
|
17
|
-
return Object.create(null);
|
|
18
|
-
}
|
|
19
|
-
function run_all(fns) {
|
|
20
|
-
fns.forEach(run);
|
|
21
|
-
}
|
|
22
|
-
function is_function(thing) {
|
|
23
|
-
return typeof thing === 'function';
|
|
24
|
-
}
|
|
25
|
-
function safe_not_equal(a, b) {
|
|
26
|
-
return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');
|
|
27
|
-
}
|
|
28
|
-
function is_empty(obj) {
|
|
29
|
-
return Object.keys(obj).length === 0;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
function append(target, node) {
|
|
33
|
-
target.appendChild(node);
|
|
34
|
-
}
|
|
35
|
-
function insert(target, node, anchor) {
|
|
36
|
-
target.insertBefore(node, anchor || null);
|
|
37
|
-
}
|
|
38
|
-
function detach(node) {
|
|
39
|
-
node.parentNode.removeChild(node);
|
|
40
|
-
}
|
|
41
|
-
function destroy_each(iterations, detaching) {
|
|
42
|
-
for (let i = 0; i < iterations.length; i += 1) {
|
|
43
|
-
if (iterations[i])
|
|
44
|
-
iterations[i].d(detaching);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
function element(name) {
|
|
48
|
-
return document.createElement(name);
|
|
49
|
-
}
|
|
50
|
-
function text(data) {
|
|
51
|
-
return document.createTextNode(data);
|
|
52
|
-
}
|
|
53
|
-
function space() {
|
|
54
|
-
return text(' ');
|
|
55
|
-
}
|
|
56
|
-
function attr(node, attribute, value) {
|
|
57
|
-
if (value == null)
|
|
58
|
-
node.removeAttribute(attribute);
|
|
59
|
-
else if (node.getAttribute(attribute) !== value)
|
|
60
|
-
node.setAttribute(attribute, value);
|
|
61
|
-
}
|
|
62
|
-
function set_custom_element_data(node, prop, value) {
|
|
63
|
-
if (prop in node) {
|
|
64
|
-
node[prop] = value;
|
|
65
|
-
}
|
|
66
|
-
else {
|
|
67
|
-
attr(node, prop, value);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
function children(element) {
|
|
71
|
-
return Array.from(element.childNodes);
|
|
72
|
-
}
|
|
73
|
-
function custom_event(type, detail) {
|
|
74
|
-
const e = document.createEvent('CustomEvent');
|
|
75
|
-
e.initCustomEvent(type, false, false, detail);
|
|
76
|
-
return e;
|
|
77
|
-
}
|
|
78
|
-
function attribute_to_object(attributes) {
|
|
79
|
-
const result = {};
|
|
80
|
-
for (const attribute of attributes) {
|
|
81
|
-
result[attribute.name] = attribute.value;
|
|
82
|
-
}
|
|
83
|
-
return result;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
let current_component;
|
|
87
|
-
function set_current_component(component) {
|
|
88
|
-
current_component = component;
|
|
89
|
-
}
|
|
90
|
-
function get_current_component() {
|
|
91
|
-
if (!current_component)
|
|
92
|
-
throw new Error('Function called outside component initialization');
|
|
93
|
-
return current_component;
|
|
94
|
-
}
|
|
95
|
-
function onMount(fn) {
|
|
96
|
-
get_current_component().$$.on_mount.push(fn);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
const dirty_components = [];
|
|
100
|
-
const binding_callbacks = [];
|
|
101
|
-
const render_callbacks = [];
|
|
102
|
-
const flush_callbacks = [];
|
|
103
|
-
const resolved_promise = Promise.resolve();
|
|
104
|
-
let update_scheduled = false;
|
|
105
|
-
function schedule_update() {
|
|
106
|
-
if (!update_scheduled) {
|
|
107
|
-
update_scheduled = true;
|
|
108
|
-
resolved_promise.then(flush);
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
function add_render_callback(fn) {
|
|
112
|
-
render_callbacks.push(fn);
|
|
113
|
-
}
|
|
114
|
-
let flushing = false;
|
|
115
|
-
const seen_callbacks = new Set();
|
|
116
|
-
function flush() {
|
|
117
|
-
if (flushing)
|
|
118
|
-
return;
|
|
119
|
-
flushing = true;
|
|
120
|
-
do {
|
|
121
|
-
// first, call beforeUpdate functions
|
|
122
|
-
// and update components
|
|
123
|
-
for (let i = 0; i < dirty_components.length; i += 1) {
|
|
124
|
-
const component = dirty_components[i];
|
|
125
|
-
set_current_component(component);
|
|
126
|
-
update(component.$$);
|
|
127
|
-
}
|
|
128
|
-
set_current_component(null);
|
|
129
|
-
dirty_components.length = 0;
|
|
130
|
-
while (binding_callbacks.length)
|
|
131
|
-
binding_callbacks.pop()();
|
|
132
|
-
// then, once components are updated, call
|
|
133
|
-
// afterUpdate functions. This may cause
|
|
134
|
-
// subsequent updates...
|
|
135
|
-
for (let i = 0; i < render_callbacks.length; i += 1) {
|
|
136
|
-
const callback = render_callbacks[i];
|
|
137
|
-
if (!seen_callbacks.has(callback)) {
|
|
138
|
-
// ...so guard against infinite loops
|
|
139
|
-
seen_callbacks.add(callback);
|
|
140
|
-
callback();
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
render_callbacks.length = 0;
|
|
144
|
-
} while (dirty_components.length);
|
|
145
|
-
while (flush_callbacks.length) {
|
|
146
|
-
flush_callbacks.pop()();
|
|
147
|
-
}
|
|
148
|
-
update_scheduled = false;
|
|
149
|
-
flushing = false;
|
|
150
|
-
seen_callbacks.clear();
|
|
151
|
-
}
|
|
152
|
-
function update($$) {
|
|
153
|
-
if ($$.fragment !== null) {
|
|
154
|
-
$$.update();
|
|
155
|
-
run_all($$.before_update);
|
|
156
|
-
const dirty = $$.dirty;
|
|
157
|
-
$$.dirty = [-1];
|
|
158
|
-
$$.fragment && $$.fragment.p($$.ctx, dirty);
|
|
159
|
-
$$.after_update.forEach(add_render_callback);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
const outroing = new Set();
|
|
163
|
-
function transition_in(block, local) {
|
|
164
|
-
if (block && block.i) {
|
|
165
|
-
outroing.delete(block);
|
|
166
|
-
block.i(local);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
function mount_component(component, target, anchor, customElement) {
|
|
170
|
-
const { fragment, on_mount, on_destroy, after_update } = component.$$;
|
|
171
|
-
fragment && fragment.m(target, anchor);
|
|
172
|
-
if (!customElement) {
|
|
173
|
-
// onMount happens before the initial afterUpdate
|
|
174
|
-
add_render_callback(() => {
|
|
175
|
-
const new_on_destroy = on_mount.map(run).filter(is_function);
|
|
176
|
-
if (on_destroy) {
|
|
177
|
-
on_destroy.push(...new_on_destroy);
|
|
178
|
-
}
|
|
179
|
-
else {
|
|
180
|
-
// Edge case - component was destroyed immediately,
|
|
181
|
-
// most likely as a result of a binding initialising
|
|
182
|
-
run_all(new_on_destroy);
|
|
183
|
-
}
|
|
184
|
-
component.$$.on_mount = [];
|
|
185
|
-
});
|
|
186
|
-
}
|
|
187
|
-
after_update.forEach(add_render_callback);
|
|
188
|
-
}
|
|
189
|
-
function destroy_component(component, detaching) {
|
|
190
|
-
const $$ = component.$$;
|
|
191
|
-
if ($$.fragment !== null) {
|
|
192
|
-
run_all($$.on_destroy);
|
|
193
|
-
$$.fragment && $$.fragment.d(detaching);
|
|
194
|
-
// TODO null out other refs, including component.$$ (but need to
|
|
195
|
-
// preserve final state?)
|
|
196
|
-
$$.on_destroy = $$.fragment = null;
|
|
197
|
-
$$.ctx = [];
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
function make_dirty(component, i) {
|
|
201
|
-
if (component.$$.dirty[0] === -1) {
|
|
202
|
-
dirty_components.push(component);
|
|
203
|
-
schedule_update();
|
|
204
|
-
component.$$.dirty.fill(0);
|
|
205
|
-
}
|
|
206
|
-
component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));
|
|
207
|
-
}
|
|
208
|
-
function init(component, options, instance, create_fragment, not_equal, props, dirty = [-1]) {
|
|
209
|
-
const parent_component = current_component;
|
|
210
|
-
set_current_component(component);
|
|
211
|
-
const $$ = component.$$ = {
|
|
212
|
-
fragment: null,
|
|
213
|
-
ctx: null,
|
|
214
|
-
// state
|
|
215
|
-
props,
|
|
216
|
-
update: noop,
|
|
217
|
-
not_equal,
|
|
218
|
-
bound: blank_object(),
|
|
219
|
-
// lifecycle
|
|
220
|
-
on_mount: [],
|
|
221
|
-
on_destroy: [],
|
|
222
|
-
on_disconnect: [],
|
|
223
|
-
before_update: [],
|
|
224
|
-
after_update: [],
|
|
225
|
-
context: new Map(parent_component ? parent_component.$$.context : options.context || []),
|
|
226
|
-
// everything else
|
|
227
|
-
callbacks: blank_object(),
|
|
228
|
-
dirty,
|
|
229
|
-
skip_bound: false
|
|
230
|
-
};
|
|
231
|
-
let ready = false;
|
|
232
|
-
$$.ctx = instance
|
|
233
|
-
? instance(component, options.props || {}, (i, ret, ...rest) => {
|
|
234
|
-
const value = rest.length ? rest[0] : ret;
|
|
235
|
-
if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {
|
|
236
|
-
if (!$$.skip_bound && $$.bound[i])
|
|
237
|
-
$$.bound[i](value);
|
|
238
|
-
if (ready)
|
|
239
|
-
make_dirty(component, i);
|
|
240
|
-
}
|
|
241
|
-
return ret;
|
|
242
|
-
})
|
|
243
|
-
: [];
|
|
244
|
-
$$.update();
|
|
245
|
-
ready = true;
|
|
246
|
-
run_all($$.before_update);
|
|
247
|
-
// `false` as a special case of no DOM component
|
|
248
|
-
$$.fragment = create_fragment ? create_fragment($$.ctx) : false;
|
|
249
|
-
if (options.target) {
|
|
250
|
-
if (options.hydrate) {
|
|
251
|
-
const nodes = children(options.target);
|
|
252
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
253
|
-
$$.fragment && $$.fragment.l(nodes);
|
|
254
|
-
nodes.forEach(detach);
|
|
255
|
-
}
|
|
256
|
-
else {
|
|
257
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
258
|
-
$$.fragment && $$.fragment.c();
|
|
259
|
-
}
|
|
260
|
-
if (options.intro)
|
|
261
|
-
transition_in(component.$$.fragment);
|
|
262
|
-
mount_component(component, options.target, options.anchor, options.customElement);
|
|
263
|
-
flush();
|
|
264
|
-
}
|
|
265
|
-
set_current_component(parent_component);
|
|
266
|
-
}
|
|
267
|
-
let SvelteElement;
|
|
268
|
-
if (typeof HTMLElement === 'function') {
|
|
269
|
-
SvelteElement = class extends HTMLElement {
|
|
270
|
-
constructor() {
|
|
271
|
-
super();
|
|
272
|
-
this.attachShadow({ mode: 'open' });
|
|
273
|
-
}
|
|
274
|
-
connectedCallback() {
|
|
275
|
-
const { on_mount } = this.$$;
|
|
276
|
-
this.$$.on_disconnect = on_mount.map(run).filter(is_function);
|
|
277
|
-
// @ts-ignore todo: improve typings
|
|
278
|
-
for (const key in this.$$.slotted) {
|
|
279
|
-
// @ts-ignore todo: improve typings
|
|
280
|
-
this.appendChild(this.$$.slotted[key]);
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
attributeChangedCallback(attr, _oldValue, newValue) {
|
|
284
|
-
this[attr] = newValue;
|
|
285
|
-
}
|
|
286
|
-
disconnectedCallback() {
|
|
287
|
-
run_all(this.$$.on_disconnect);
|
|
288
|
-
}
|
|
289
|
-
$destroy() {
|
|
290
|
-
destroy_component(this, 1);
|
|
291
|
-
this.$destroy = noop;
|
|
292
|
-
}
|
|
293
|
-
$on(type, callback) {
|
|
294
|
-
// TODO should this delegate to addEventListener?
|
|
295
|
-
const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));
|
|
296
|
-
callbacks.push(callback);
|
|
297
|
-
return () => {
|
|
298
|
-
const index = callbacks.indexOf(callback);
|
|
299
|
-
if (index !== -1)
|
|
300
|
-
callbacks.splice(index, 1);
|
|
301
|
-
};
|
|
302
|
-
}
|
|
303
|
-
$set($$props) {
|
|
304
|
-
if (this.$$set && !is_empty($$props)) {
|
|
305
|
-
this.$$.skip_bound = true;
|
|
306
|
-
this.$$set($$props);
|
|
307
|
-
this.$$.skip_bound = false;
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
};
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
function dispatch_dev(type, detail) {
|
|
314
|
-
document.dispatchEvent(custom_event(type, Object.assign({ version: '3.37.0' }, detail)));
|
|
315
|
-
}
|
|
316
|
-
function append_dev(target, node) {
|
|
317
|
-
dispatch_dev('SvelteDOMInsert', { target, node });
|
|
318
|
-
append(target, node);
|
|
319
|
-
}
|
|
320
|
-
function insert_dev(target, node, anchor) {
|
|
321
|
-
dispatch_dev('SvelteDOMInsert', { target, node, anchor });
|
|
322
|
-
insert(target, node, anchor);
|
|
323
|
-
}
|
|
324
|
-
function detach_dev(node) {
|
|
325
|
-
dispatch_dev('SvelteDOMRemove', { node });
|
|
326
|
-
detach(node);
|
|
327
|
-
}
|
|
328
|
-
function attr_dev(node, attribute, value) {
|
|
329
|
-
attr(node, attribute, value);
|
|
330
|
-
if (value == null)
|
|
331
|
-
dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });
|
|
332
|
-
else
|
|
333
|
-
dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });
|
|
334
|
-
}
|
|
335
|
-
function set_data_dev(text, data) {
|
|
336
|
-
data = '' + data;
|
|
337
|
-
if (text.wholeText === data)
|
|
338
|
-
return;
|
|
339
|
-
dispatch_dev('SvelteDOMSetData', { node: text, data });
|
|
340
|
-
text.data = data;
|
|
341
|
-
}
|
|
342
|
-
function validate_each_argument(arg) {
|
|
343
|
-
if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {
|
|
344
|
-
let msg = '{#each} only iterates over array-like objects.';
|
|
345
|
-
if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {
|
|
346
|
-
msg += ' You can use a spread to convert this iterable into an array.';
|
|
347
|
-
}
|
|
348
|
-
throw new Error(msg);
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
function validate_slots(name, slot, keys) {
|
|
352
|
-
for (const slot_key of Object.keys(slot)) {
|
|
353
|
-
if (!~keys.indexOf(slot_key)) {
|
|
354
|
-
console.warn(`<${name}> received an unexpected slot "${slot_key}".`);
|
|
355
|
-
}
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
/* ../casino-footer-thumbnail/src/CasinoFooterThumbnail.svelte generated by Svelte v3.37.0 */
|
|
360
|
-
|
|
361
|
-
const file$1 = "../casino-footer-thumbnail/src/CasinoFooterThumbnail.svelte";
|
|
362
|
-
|
|
363
|
-
// (72:28)
|
|
364
|
-
function create_if_block_8(ctx) {
|
|
365
|
-
let div;
|
|
366
|
-
let a;
|
|
367
|
-
let img;
|
|
368
|
-
let img_src_value;
|
|
369
|
-
let a_class_value;
|
|
370
|
-
let a_target_value;
|
|
371
|
-
|
|
372
|
-
const block = {
|
|
373
|
-
c: function create() {
|
|
374
|
-
div = element("div");
|
|
375
|
-
a = element("a");
|
|
376
|
-
img = element("img");
|
|
377
|
-
attr_dev(img, "class", "FooterImage");
|
|
378
|
-
if (img.src !== (img_src_value = /*sociallinkimage*/ ctx[16])) attr_dev(img, "src", img_src_value);
|
|
379
|
-
attr_dev(img, "title", /*sociallinktitle*/ ctx[17]);
|
|
380
|
-
add_location(img, file$1, 74, 8, 2992);
|
|
381
|
-
attr_dev(a, "class", a_class_value = "FooterLink " + (/*sociallinkurl*/ ctx[15] ? "" : "FooterLinkDisabled") + " FooterItemAnchor");
|
|
382
|
-
attr_dev(a, "href", /*sociallinkurl*/ ctx[15]);
|
|
383
|
-
attr_dev(a, "target", a_target_value = /*target*/ ctx[18] ? /*target*/ ctx[18] : "_blank");
|
|
384
|
-
add_location(a, file$1, 73, 6, 2843);
|
|
385
|
-
attr_dev(div, "class", "FooterItem SocialItem");
|
|
386
|
-
add_location(div, file$1, 72, 4, 2801);
|
|
387
|
-
},
|
|
388
|
-
m: function mount(target, anchor) {
|
|
389
|
-
insert_dev(target, div, anchor);
|
|
390
|
-
append_dev(div, a);
|
|
391
|
-
append_dev(a, img);
|
|
392
|
-
},
|
|
393
|
-
p: function update(ctx, dirty) {
|
|
394
|
-
if (dirty & /*sociallinkimage*/ 65536 && img.src !== (img_src_value = /*sociallinkimage*/ ctx[16])) {
|
|
395
|
-
attr_dev(img, "src", img_src_value);
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
if (dirty & /*sociallinktitle*/ 131072) {
|
|
399
|
-
attr_dev(img, "title", /*sociallinktitle*/ ctx[17]);
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
if (dirty & /*sociallinkurl*/ 32768 && a_class_value !== (a_class_value = "FooterLink " + (/*sociallinkurl*/ ctx[15] ? "" : "FooterLinkDisabled") + " FooterItemAnchor")) {
|
|
403
|
-
attr_dev(a, "class", a_class_value);
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
if (dirty & /*sociallinkurl*/ 32768) {
|
|
407
|
-
attr_dev(a, "href", /*sociallinkurl*/ ctx[15]);
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
if (dirty & /*target*/ 262144 && a_target_value !== (a_target_value = /*target*/ ctx[18] ? /*target*/ ctx[18] : "_blank")) {
|
|
411
|
-
attr_dev(a, "target", a_target_value);
|
|
412
|
-
}
|
|
413
|
-
},
|
|
414
|
-
d: function destroy(detaching) {
|
|
415
|
-
if (detaching) detach_dev(div);
|
|
416
|
-
}
|
|
417
|
-
};
|
|
418
|
-
|
|
419
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
420
|
-
block,
|
|
421
|
-
id: create_if_block_8.name,
|
|
422
|
-
type: "if",
|
|
423
|
-
source: "(72:28) ",
|
|
424
|
-
ctx
|
|
425
|
-
});
|
|
426
|
-
|
|
427
|
-
return block;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
// (66:25)
|
|
431
|
-
function create_if_block_7(ctx) {
|
|
432
|
-
let div;
|
|
433
|
-
let a;
|
|
434
|
-
let img;
|
|
435
|
-
let img_src_value;
|
|
436
|
-
let a_class_value;
|
|
437
|
-
|
|
438
|
-
const block = {
|
|
439
|
-
c: function create() {
|
|
440
|
-
div = element("div");
|
|
441
|
-
a = element("a");
|
|
442
|
-
img = element("img");
|
|
443
|
-
attr_dev(img, "class", "FooterImage");
|
|
444
|
-
if (img.src !== (img_src_value = /*licenseimage*/ ctx[13])) attr_dev(img, "src", img_src_value);
|
|
445
|
-
attr_dev(img, "title", /*licensetitle*/ ctx[14]);
|
|
446
|
-
add_location(img, file$1, 68, 8, 2678);
|
|
447
|
-
attr_dev(a, "class", a_class_value = "FooterLink " + (/*licenseurl*/ ctx[12] ? "" : "FooterLinkDisabled") + " FooterItemAnchor");
|
|
448
|
-
attr_dev(a, "href", /*licenseurl*/ ctx[12]);
|
|
449
|
-
attr_dev(a, "target", "_blank");
|
|
450
|
-
add_location(a, file$1, 67, 6, 2555);
|
|
451
|
-
attr_dev(div, "class", "FooterItem");
|
|
452
|
-
add_location(div, file$1, 66, 4, 2524);
|
|
453
|
-
},
|
|
454
|
-
m: function mount(target, anchor) {
|
|
455
|
-
insert_dev(target, div, anchor);
|
|
456
|
-
append_dev(div, a);
|
|
457
|
-
append_dev(a, img);
|
|
458
|
-
},
|
|
459
|
-
p: function update(ctx, dirty) {
|
|
460
|
-
if (dirty & /*licenseimage*/ 8192 && img.src !== (img_src_value = /*licenseimage*/ ctx[13])) {
|
|
461
|
-
attr_dev(img, "src", img_src_value);
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
if (dirty & /*licensetitle*/ 16384) {
|
|
465
|
-
attr_dev(img, "title", /*licensetitle*/ ctx[14]);
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
if (dirty & /*licenseurl*/ 4096 && a_class_value !== (a_class_value = "FooterLink " + (/*licenseurl*/ ctx[12] ? "" : "FooterLinkDisabled") + " FooterItemAnchor")) {
|
|
469
|
-
attr_dev(a, "class", a_class_value);
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
if (dirty & /*licenseurl*/ 4096) {
|
|
473
|
-
attr_dev(a, "href", /*licenseurl*/ ctx[12]);
|
|
474
|
-
}
|
|
475
|
-
},
|
|
476
|
-
d: function destroy(detaching) {
|
|
477
|
-
if (detaching) detach_dev(div);
|
|
478
|
-
}
|
|
479
|
-
};
|
|
480
|
-
|
|
481
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
482
|
-
block,
|
|
483
|
-
id: create_if_block_7.name,
|
|
484
|
-
type: "if",
|
|
485
|
-
source: "(66:25) ",
|
|
486
|
-
ctx
|
|
487
|
-
});
|
|
488
|
-
|
|
489
|
-
return block;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
// (57:28)
|
|
493
|
-
function create_if_block_5$1(ctx) {
|
|
494
|
-
let div;
|
|
495
|
-
let a;
|
|
496
|
-
let img;
|
|
497
|
-
let img_src_value;
|
|
498
|
-
let t;
|
|
499
|
-
let a_class_value;
|
|
500
|
-
let if_block = /*helperlinktitle*/ ctx[11] && create_if_block_6(ctx);
|
|
501
|
-
|
|
502
|
-
const block = {
|
|
503
|
-
c: function create() {
|
|
504
|
-
div = element("div");
|
|
505
|
-
a = element("a");
|
|
506
|
-
img = element("img");
|
|
507
|
-
t = space();
|
|
508
|
-
if (if_block) if_block.c();
|
|
509
|
-
attr_dev(img, "class", "FooterImage");
|
|
510
|
-
if (img.src !== (img_src_value = /*helperlinkimage*/ ctx[10])) attr_dev(img, "src", img_src_value);
|
|
511
|
-
attr_dev(img, "title", /*helperlinktitle*/ ctx[11]);
|
|
512
|
-
add_location(img, file$1, 59, 8, 2299);
|
|
513
|
-
attr_dev(a, "class", a_class_value = "" + ((/*helperlinktitle*/ ctx[11] ? "FooterHelperLink" : "") + " " + (/*helperlinkurl*/ ctx[9] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"));
|
|
514
|
-
attr_dev(a, "href", /*helperlinkurl*/ ctx[9]);
|
|
515
|
-
attr_dev(a, "target", /*target*/ ctx[18]);
|
|
516
|
-
add_location(a, file$1, 58, 6, 2136);
|
|
517
|
-
attr_dev(div, "class", "FooterItem HelperLinkItem");
|
|
518
|
-
add_location(div, file$1, 57, 4, 2090);
|
|
519
|
-
},
|
|
520
|
-
m: function mount(target, anchor) {
|
|
521
|
-
insert_dev(target, div, anchor);
|
|
522
|
-
append_dev(div, a);
|
|
523
|
-
append_dev(a, img);
|
|
524
|
-
append_dev(a, t);
|
|
525
|
-
if (if_block) if_block.m(a, null);
|
|
526
|
-
},
|
|
527
|
-
p: function update(ctx, dirty) {
|
|
528
|
-
if (dirty & /*helperlinkimage*/ 1024 && img.src !== (img_src_value = /*helperlinkimage*/ ctx[10])) {
|
|
529
|
-
attr_dev(img, "src", img_src_value);
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
if (dirty & /*helperlinktitle*/ 2048) {
|
|
533
|
-
attr_dev(img, "title", /*helperlinktitle*/ ctx[11]);
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
if (/*helperlinktitle*/ ctx[11]) {
|
|
537
|
-
if (if_block) {
|
|
538
|
-
if_block.p(ctx, dirty);
|
|
539
|
-
} else {
|
|
540
|
-
if_block = create_if_block_6(ctx);
|
|
541
|
-
if_block.c();
|
|
542
|
-
if_block.m(a, null);
|
|
543
|
-
}
|
|
544
|
-
} else if (if_block) {
|
|
545
|
-
if_block.d(1);
|
|
546
|
-
if_block = null;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
if (dirty & /*helperlinktitle, helperlinkurl*/ 2560 && a_class_value !== (a_class_value = "" + ((/*helperlinktitle*/ ctx[11] ? "FooterHelperLink" : "") + " " + (/*helperlinkurl*/ ctx[9] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"))) {
|
|
550
|
-
attr_dev(a, "class", a_class_value);
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
if (dirty & /*helperlinkurl*/ 512) {
|
|
554
|
-
attr_dev(a, "href", /*helperlinkurl*/ ctx[9]);
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
if (dirty & /*target*/ 262144) {
|
|
558
|
-
attr_dev(a, "target", /*target*/ ctx[18]);
|
|
559
|
-
}
|
|
560
|
-
},
|
|
561
|
-
d: function destroy(detaching) {
|
|
562
|
-
if (detaching) detach_dev(div);
|
|
563
|
-
if (if_block) if_block.d();
|
|
564
|
-
}
|
|
565
|
-
};
|
|
566
|
-
|
|
567
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
568
|
-
block,
|
|
569
|
-
id: create_if_block_5$1.name,
|
|
570
|
-
type: "if",
|
|
571
|
-
source: "(57:28) ",
|
|
572
|
-
ctx
|
|
573
|
-
});
|
|
574
|
-
|
|
575
|
-
return block;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
// (51:25)
|
|
579
|
-
function create_if_block_4$1(ctx) {
|
|
580
|
-
let div;
|
|
581
|
-
let a;
|
|
582
|
-
let img;
|
|
583
|
-
let img_src_value;
|
|
584
|
-
let a_class_value;
|
|
585
|
-
|
|
586
|
-
const block = {
|
|
587
|
-
c: function create() {
|
|
588
|
-
div = element("div");
|
|
589
|
-
a = element("a");
|
|
590
|
-
img = element("img");
|
|
591
|
-
attr_dev(img, "class", "FooterImage");
|
|
592
|
-
if (img.src !== (img_src_value = /*vendorimage*/ ctx[7])) attr_dev(img, "src", img_src_value);
|
|
593
|
-
attr_dev(img, "title", /*vendortitle*/ ctx[8]);
|
|
594
|
-
add_location(img, file$1, 53, 8, 1969);
|
|
595
|
-
attr_dev(a, "href", /*vendorurl*/ ctx[6]);
|
|
596
|
-
attr_dev(a, "class", a_class_value = "" + ((/*vendorurl*/ ctx[6] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"));
|
|
597
|
-
attr_dev(a, "target", "_blank");
|
|
598
|
-
add_location(a, file$1, 52, 6, 1859);
|
|
599
|
-
attr_dev(div, "class", "FooterItem GameVendorItem");
|
|
600
|
-
add_location(div, file$1, 51, 4, 1813);
|
|
601
|
-
},
|
|
602
|
-
m: function mount(target, anchor) {
|
|
603
|
-
insert_dev(target, div, anchor);
|
|
604
|
-
append_dev(div, a);
|
|
605
|
-
append_dev(a, img);
|
|
606
|
-
},
|
|
607
|
-
p: function update(ctx, dirty) {
|
|
608
|
-
if (dirty & /*vendorimage*/ 128 && img.src !== (img_src_value = /*vendorimage*/ ctx[7])) {
|
|
609
|
-
attr_dev(img, "src", img_src_value);
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
if (dirty & /*vendortitle*/ 256) {
|
|
613
|
-
attr_dev(img, "title", /*vendortitle*/ ctx[8]);
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
if (dirty & /*vendorurl*/ 64) {
|
|
617
|
-
attr_dev(a, "href", /*vendorurl*/ ctx[6]);
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
if (dirty & /*vendorurl*/ 64 && a_class_value !== (a_class_value = "" + ((/*vendorurl*/ ctx[6] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"))) {
|
|
621
|
-
attr_dev(a, "class", a_class_value);
|
|
622
|
-
}
|
|
623
|
-
},
|
|
624
|
-
d: function destroy(detaching) {
|
|
625
|
-
if (detaching) detach_dev(div);
|
|
626
|
-
}
|
|
627
|
-
};
|
|
628
|
-
|
|
629
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
630
|
-
block,
|
|
631
|
-
id: create_if_block_4$1.name,
|
|
632
|
-
type: "if",
|
|
633
|
-
source: "(51:25) ",
|
|
634
|
-
ctx
|
|
635
|
-
});
|
|
636
|
-
|
|
637
|
-
return block;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
// (42:25)
|
|
641
|
-
function create_if_block_2$1(ctx) {
|
|
642
|
-
let div;
|
|
643
|
-
let a;
|
|
644
|
-
let img;
|
|
645
|
-
let img_src_value;
|
|
646
|
-
let t;
|
|
647
|
-
let a_class_value;
|
|
648
|
-
let if_block = /*paymenttitle*/ ctx[5] && create_if_block_3$1(ctx);
|
|
649
|
-
|
|
650
|
-
const block = {
|
|
651
|
-
c: function create() {
|
|
652
|
-
div = element("div");
|
|
653
|
-
a = element("a");
|
|
654
|
-
img = element("img");
|
|
655
|
-
t = space();
|
|
656
|
-
if (if_block) if_block.c();
|
|
657
|
-
attr_dev(img, "class", "FooterImage");
|
|
658
|
-
if (img.src !== (img_src_value = /*paymentimage*/ ctx[4])) attr_dev(img, "src", img_src_value);
|
|
659
|
-
attr_dev(img, "title", /*paymenttitle*/ ctx[5]);
|
|
660
|
-
add_location(img, file$1, 44, 8, 1599);
|
|
661
|
-
attr_dev(a, "class", a_class_value = "" + ((/*paymenttitle*/ ctx[5] ? "FooterPaymentLink" : "") + " " + (/*paymenturl*/ ctx[3] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"));
|
|
662
|
-
attr_dev(a, "href", /*paymenturl*/ ctx[3]);
|
|
663
|
-
attr_dev(a, "target", "_blank");
|
|
664
|
-
add_location(a, file$1, 43, 6, 1444);
|
|
665
|
-
attr_dev(div, "class", "FooterItem PaymentItem");
|
|
666
|
-
add_location(div, file$1, 42, 4, 1401);
|
|
667
|
-
},
|
|
668
|
-
m: function mount(target, anchor) {
|
|
669
|
-
insert_dev(target, div, anchor);
|
|
670
|
-
append_dev(div, a);
|
|
671
|
-
append_dev(a, img);
|
|
672
|
-
append_dev(a, t);
|
|
673
|
-
if (if_block) if_block.m(a, null);
|
|
674
|
-
},
|
|
675
|
-
p: function update(ctx, dirty) {
|
|
676
|
-
if (dirty & /*paymentimage*/ 16 && img.src !== (img_src_value = /*paymentimage*/ ctx[4])) {
|
|
677
|
-
attr_dev(img, "src", img_src_value);
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
if (dirty & /*paymenttitle*/ 32) {
|
|
681
|
-
attr_dev(img, "title", /*paymenttitle*/ ctx[5]);
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
if (/*paymenttitle*/ ctx[5]) {
|
|
685
|
-
if (if_block) {
|
|
686
|
-
if_block.p(ctx, dirty);
|
|
687
|
-
} else {
|
|
688
|
-
if_block = create_if_block_3$1(ctx);
|
|
689
|
-
if_block.c();
|
|
690
|
-
if_block.m(a, null);
|
|
691
|
-
}
|
|
692
|
-
} else if (if_block) {
|
|
693
|
-
if_block.d(1);
|
|
694
|
-
if_block = null;
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
if (dirty & /*paymenttitle, paymenturl*/ 40 && a_class_value !== (a_class_value = "" + ((/*paymenttitle*/ ctx[5] ? "FooterPaymentLink" : "") + " " + (/*paymenturl*/ ctx[3] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"))) {
|
|
698
|
-
attr_dev(a, "class", a_class_value);
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
if (dirty & /*paymenturl*/ 8) {
|
|
702
|
-
attr_dev(a, "href", /*paymenturl*/ ctx[3]);
|
|
703
|
-
}
|
|
704
|
-
},
|
|
705
|
-
d: function destroy(detaching) {
|
|
706
|
-
if (detaching) detach_dev(div);
|
|
707
|
-
if (if_block) if_block.d();
|
|
708
|
-
}
|
|
709
|
-
};
|
|
710
|
-
|
|
711
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
712
|
-
block,
|
|
713
|
-
id: create_if_block_2$1.name,
|
|
714
|
-
type: "if",
|
|
715
|
-
source: "(42:25) ",
|
|
716
|
-
ctx
|
|
717
|
-
});
|
|
718
|
-
|
|
719
|
-
return block;
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
// (33:2) {#if sponsorimage}
|
|
723
|
-
function create_if_block$1(ctx) {
|
|
724
|
-
let div;
|
|
725
|
-
let a;
|
|
726
|
-
let img;
|
|
727
|
-
let img_src_value;
|
|
728
|
-
let t;
|
|
729
|
-
let a_class_value;
|
|
730
|
-
let if_block = /*sponsortitle*/ ctx[2] && create_if_block_1$1(ctx);
|
|
731
|
-
|
|
732
|
-
const block = {
|
|
733
|
-
c: function create() {
|
|
734
|
-
div = element("div");
|
|
735
|
-
a = element("a");
|
|
736
|
-
img = element("img");
|
|
737
|
-
t = space();
|
|
738
|
-
if (if_block) if_block.c();
|
|
739
|
-
attr_dev(img, "class", "FooterImage");
|
|
740
|
-
if (img.src !== (img_src_value = /*sponsorimage*/ ctx[1])) attr_dev(img, "src", img_src_value);
|
|
741
|
-
attr_dev(img, "title", /*sponsorimage*/ ctx[1]);
|
|
742
|
-
add_location(img, file$1, 35, 8, 1187);
|
|
743
|
-
attr_dev(a, "class", a_class_value = "" + ((/*sponsortitle*/ ctx[2] ? "FooterSponsorLink" : "") + " " + (/*sponsorurl*/ ctx[0] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"));
|
|
744
|
-
attr_dev(a, "href", /*sponsorurl*/ ctx[0]);
|
|
745
|
-
attr_dev(a, "target", "_blank");
|
|
746
|
-
add_location(a, file$1, 34, 6, 1032);
|
|
747
|
-
attr_dev(div, "class", "FooterItem SponsorItem");
|
|
748
|
-
add_location(div, file$1, 33, 4, 989);
|
|
749
|
-
},
|
|
750
|
-
m: function mount(target, anchor) {
|
|
751
|
-
insert_dev(target, div, anchor);
|
|
752
|
-
append_dev(div, a);
|
|
753
|
-
append_dev(a, img);
|
|
754
|
-
append_dev(a, t);
|
|
755
|
-
if (if_block) if_block.m(a, null);
|
|
756
|
-
},
|
|
757
|
-
p: function update(ctx, dirty) {
|
|
758
|
-
if (dirty & /*sponsorimage*/ 2 && img.src !== (img_src_value = /*sponsorimage*/ ctx[1])) {
|
|
759
|
-
attr_dev(img, "src", img_src_value);
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
if (dirty & /*sponsorimage*/ 2) {
|
|
763
|
-
attr_dev(img, "title", /*sponsorimage*/ ctx[1]);
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
if (/*sponsortitle*/ ctx[2]) {
|
|
767
|
-
if (if_block) {
|
|
768
|
-
if_block.p(ctx, dirty);
|
|
769
|
-
} else {
|
|
770
|
-
if_block = create_if_block_1$1(ctx);
|
|
771
|
-
if_block.c();
|
|
772
|
-
if_block.m(a, null);
|
|
773
|
-
}
|
|
774
|
-
} else if (if_block) {
|
|
775
|
-
if_block.d(1);
|
|
776
|
-
if_block = null;
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
if (dirty & /*sponsortitle, sponsorurl*/ 5 && a_class_value !== (a_class_value = "" + ((/*sponsortitle*/ ctx[2] ? "FooterSponsorLink" : "") + " " + (/*sponsorurl*/ ctx[0] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"))) {
|
|
780
|
-
attr_dev(a, "class", a_class_value);
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
if (dirty & /*sponsorurl*/ 1) {
|
|
784
|
-
attr_dev(a, "href", /*sponsorurl*/ ctx[0]);
|
|
785
|
-
}
|
|
786
|
-
},
|
|
787
|
-
d: function destroy(detaching) {
|
|
788
|
-
if (detaching) detach_dev(div);
|
|
789
|
-
if (if_block) if_block.d();
|
|
790
|
-
}
|
|
791
|
-
};
|
|
792
|
-
|
|
793
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
794
|
-
block,
|
|
795
|
-
id: create_if_block$1.name,
|
|
796
|
-
type: "if",
|
|
797
|
-
source: "(33:2) {#if sponsorimage}",
|
|
798
|
-
ctx
|
|
799
|
-
});
|
|
800
|
-
|
|
801
|
-
return block;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
// (61:8) {#if helperlinktitle}
|
|
805
|
-
function create_if_block_6(ctx) {
|
|
806
|
-
let p;
|
|
807
|
-
let t;
|
|
808
|
-
|
|
809
|
-
const block = {
|
|
810
|
-
c: function create() {
|
|
811
|
-
p = element("p");
|
|
812
|
-
t = text(/*helperlinktitle*/ ctx[11]);
|
|
813
|
-
attr_dev(p, "class", "HelperTitle");
|
|
814
|
-
add_location(p, file$1, 61, 10, 2413);
|
|
815
|
-
},
|
|
816
|
-
m: function mount(target, anchor) {
|
|
817
|
-
insert_dev(target, p, anchor);
|
|
818
|
-
append_dev(p, t);
|
|
819
|
-
},
|
|
820
|
-
p: function update(ctx, dirty) {
|
|
821
|
-
if (dirty & /*helperlinktitle*/ 2048) set_data_dev(t, /*helperlinktitle*/ ctx[11]);
|
|
822
|
-
},
|
|
823
|
-
d: function destroy(detaching) {
|
|
824
|
-
if (detaching) detach_dev(p);
|
|
825
|
-
}
|
|
826
|
-
};
|
|
827
|
-
|
|
828
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
829
|
-
block,
|
|
830
|
-
id: create_if_block_6.name,
|
|
831
|
-
type: "if",
|
|
832
|
-
source: "(61:8) {#if helperlinktitle}",
|
|
833
|
-
ctx
|
|
834
|
-
});
|
|
835
|
-
|
|
836
|
-
return block;
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
// (46:8) {#if paymenttitle}
|
|
840
|
-
function create_if_block_3$1(ctx) {
|
|
841
|
-
let p;
|
|
842
|
-
let t;
|
|
843
|
-
|
|
844
|
-
const block = {
|
|
845
|
-
c: function create() {
|
|
846
|
-
p = element("p");
|
|
847
|
-
t = text(/*paymenttitle*/ ctx[5]);
|
|
848
|
-
attr_dev(p, "class", "PaymentTitle");
|
|
849
|
-
add_location(p, file$1, 46, 10, 1704);
|
|
850
|
-
},
|
|
851
|
-
m: function mount(target, anchor) {
|
|
852
|
-
insert_dev(target, p, anchor);
|
|
853
|
-
append_dev(p, t);
|
|
854
|
-
},
|
|
855
|
-
p: function update(ctx, dirty) {
|
|
856
|
-
if (dirty & /*paymenttitle*/ 32) set_data_dev(t, /*paymenttitle*/ ctx[5]);
|
|
857
|
-
},
|
|
858
|
-
d: function destroy(detaching) {
|
|
859
|
-
if (detaching) detach_dev(p);
|
|
860
|
-
}
|
|
861
|
-
};
|
|
862
|
-
|
|
863
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
864
|
-
block,
|
|
865
|
-
id: create_if_block_3$1.name,
|
|
866
|
-
type: "if",
|
|
867
|
-
source: "(46:8) {#if paymenttitle}",
|
|
868
|
-
ctx
|
|
869
|
-
});
|
|
870
|
-
|
|
871
|
-
return block;
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
// (37:8) {#if sponsortitle}
|
|
875
|
-
function create_if_block_1$1(ctx) {
|
|
876
|
-
let p;
|
|
877
|
-
let t;
|
|
878
|
-
|
|
879
|
-
const block = {
|
|
880
|
-
c: function create() {
|
|
881
|
-
p = element("p");
|
|
882
|
-
t = text(/*sponsortitle*/ ctx[2]);
|
|
883
|
-
attr_dev(p, "class", "SponsorTitle");
|
|
884
|
-
add_location(p, file$1, 37, 10, 1292);
|
|
885
|
-
},
|
|
886
|
-
m: function mount(target, anchor) {
|
|
887
|
-
insert_dev(target, p, anchor);
|
|
888
|
-
append_dev(p, t);
|
|
889
|
-
},
|
|
890
|
-
p: function update(ctx, dirty) {
|
|
891
|
-
if (dirty & /*sponsortitle*/ 4) set_data_dev(t, /*sponsortitle*/ ctx[2]);
|
|
892
|
-
},
|
|
893
|
-
d: function destroy(detaching) {
|
|
894
|
-
if (detaching) detach_dev(p);
|
|
895
|
-
}
|
|
896
|
-
};
|
|
897
|
-
|
|
898
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
899
|
-
block,
|
|
900
|
-
id: create_if_block_1$1.name,
|
|
901
|
-
type: "if",
|
|
902
|
-
source: "(37:8) {#if sponsortitle}",
|
|
903
|
-
ctx
|
|
904
|
-
});
|
|
905
|
-
|
|
906
|
-
return block;
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
function create_fragment$1(ctx) {
|
|
910
|
-
let div;
|
|
911
|
-
|
|
912
|
-
function select_block_type(ctx, dirty) {
|
|
913
|
-
if (/*sponsorimage*/ ctx[1]) return create_if_block$1;
|
|
914
|
-
if (/*paymentimage*/ ctx[4]) return create_if_block_2$1;
|
|
915
|
-
if (/*vendorimage*/ ctx[7]) return create_if_block_4$1;
|
|
916
|
-
if (/*helperlinkimage*/ ctx[10]) return create_if_block_5$1;
|
|
917
|
-
if (/*licenseimage*/ ctx[13]) return create_if_block_7;
|
|
918
|
-
if (/*sociallinkimage*/ ctx[16]) return create_if_block_8;
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
let current_block_type = select_block_type(ctx);
|
|
922
|
-
let if_block = current_block_type && current_block_type(ctx);
|
|
923
|
-
|
|
924
|
-
const block = {
|
|
925
|
-
c: function create() {
|
|
926
|
-
div = element("div");
|
|
927
|
-
if (if_block) if_block.c();
|
|
928
|
-
this.c = noop;
|
|
929
|
-
attr_dev(div, "class", "ThumbnailContainer");
|
|
930
|
-
add_location(div, file$1, 31, 0, 900);
|
|
931
|
-
},
|
|
932
|
-
l: function claim(nodes) {
|
|
933
|
-
throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
|
|
934
|
-
},
|
|
935
|
-
m: function mount(target, anchor) {
|
|
936
|
-
insert_dev(target, div, anchor);
|
|
937
|
-
if (if_block) if_block.m(div, null);
|
|
938
|
-
/*div_binding*/ ctx[21](div);
|
|
939
|
-
},
|
|
940
|
-
p: function update(ctx, [dirty]) {
|
|
941
|
-
if (current_block_type === (current_block_type = select_block_type(ctx)) && if_block) {
|
|
942
|
-
if_block.p(ctx, dirty);
|
|
943
|
-
} else {
|
|
944
|
-
if (if_block) if_block.d(1);
|
|
945
|
-
if_block = current_block_type && current_block_type(ctx);
|
|
946
|
-
|
|
947
|
-
if (if_block) {
|
|
948
|
-
if_block.c();
|
|
949
|
-
if_block.m(div, null);
|
|
950
|
-
}
|
|
951
|
-
}
|
|
952
|
-
},
|
|
953
|
-
i: noop,
|
|
954
|
-
o: noop,
|
|
955
|
-
d: function destroy(detaching) {
|
|
956
|
-
if (detaching) detach_dev(div);
|
|
957
|
-
|
|
958
|
-
if (if_block) {
|
|
959
|
-
if_block.d();
|
|
960
|
-
}
|
|
961
|
-
|
|
962
|
-
/*div_binding*/ ctx[21](null);
|
|
963
|
-
}
|
|
964
|
-
};
|
|
965
|
-
|
|
966
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
967
|
-
block,
|
|
968
|
-
id: create_fragment$1.name,
|
|
969
|
-
type: "component",
|
|
970
|
-
source: "",
|
|
971
|
-
ctx
|
|
972
|
-
});
|
|
973
|
-
|
|
974
|
-
return block;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
function instance$1($$self, $$props, $$invalidate) {
|
|
978
|
-
let { $$slots: slots = {}, $$scope } = $$props;
|
|
979
|
-
validate_slots("undefined", slots, []);
|
|
980
|
-
let { sponsorurl = "" } = $$props;
|
|
981
|
-
let { sponsorimage = "" } = $$props;
|
|
982
|
-
let { sponsortitle = "" } = $$props;
|
|
983
|
-
let { paymenturl = "" } = $$props;
|
|
984
|
-
let { paymentimage = "" } = $$props;
|
|
985
|
-
let { paymenttitle = "" } = $$props;
|
|
986
|
-
let { vendorurl = "" } = $$props;
|
|
987
|
-
let { vendorimage = "" } = $$props;
|
|
988
|
-
let { vendortitle = "" } = $$props;
|
|
989
|
-
let { helperlinkurl = "" } = $$props;
|
|
990
|
-
let { helperlinkimage = "" } = $$props;
|
|
991
|
-
let { helperlinktitle = "" } = $$props;
|
|
992
|
-
let { licenseurl = "" } = $$props;
|
|
993
|
-
let { licenseimage = "" } = $$props;
|
|
994
|
-
let { licensetitle = "" } = $$props;
|
|
995
|
-
let { sociallinkurl = "" } = $$props;
|
|
996
|
-
let { sociallinkimage = "" } = $$props;
|
|
997
|
-
let { sociallinktitle = "" } = $$props;
|
|
998
|
-
let { clientstyling = "" } = $$props;
|
|
999
|
-
let { target = "_self" } = $$props;
|
|
1000
|
-
let thumbnailContainer;
|
|
1001
|
-
|
|
1002
|
-
const setClientStyling = () => {
|
|
1003
|
-
let sheet = document.createElement("style");
|
|
1004
|
-
sheet.innerHTML = clientstyling;
|
|
1005
|
-
thumbnailContainer.appendChild(sheet);
|
|
1006
|
-
};
|
|
1007
|
-
|
|
1008
|
-
const writable_props = [
|
|
1009
|
-
"sponsorurl",
|
|
1010
|
-
"sponsorimage",
|
|
1011
|
-
"sponsortitle",
|
|
1012
|
-
"paymenturl",
|
|
1013
|
-
"paymentimage",
|
|
1014
|
-
"paymenttitle",
|
|
1015
|
-
"vendorurl",
|
|
1016
|
-
"vendorimage",
|
|
1017
|
-
"vendortitle",
|
|
1018
|
-
"helperlinkurl",
|
|
1019
|
-
"helperlinkimage",
|
|
1020
|
-
"helperlinktitle",
|
|
1021
|
-
"licenseurl",
|
|
1022
|
-
"licenseimage",
|
|
1023
|
-
"licensetitle",
|
|
1024
|
-
"sociallinkurl",
|
|
1025
|
-
"sociallinkimage",
|
|
1026
|
-
"sociallinktitle",
|
|
1027
|
-
"clientstyling",
|
|
1028
|
-
"target"
|
|
1029
|
-
];
|
|
1030
|
-
|
|
1031
|
-
Object.keys($$props).forEach(key => {
|
|
1032
|
-
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<undefined> was created with unknown prop '${key}'`);
|
|
1033
|
-
});
|
|
1034
|
-
|
|
1035
|
-
function div_binding($$value) {
|
|
1036
|
-
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
1037
|
-
thumbnailContainer = $$value;
|
|
1038
|
-
$$invalidate(19, thumbnailContainer);
|
|
1039
|
-
});
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
$$self.$$set = $$props => {
|
|
1043
|
-
if ("sponsorurl" in $$props) $$invalidate(0, sponsorurl = $$props.sponsorurl);
|
|
1044
|
-
if ("sponsorimage" in $$props) $$invalidate(1, sponsorimage = $$props.sponsorimage);
|
|
1045
|
-
if ("sponsortitle" in $$props) $$invalidate(2, sponsortitle = $$props.sponsortitle);
|
|
1046
|
-
if ("paymenturl" in $$props) $$invalidate(3, paymenturl = $$props.paymenturl);
|
|
1047
|
-
if ("paymentimage" in $$props) $$invalidate(4, paymentimage = $$props.paymentimage);
|
|
1048
|
-
if ("paymenttitle" in $$props) $$invalidate(5, paymenttitle = $$props.paymenttitle);
|
|
1049
|
-
if ("vendorurl" in $$props) $$invalidate(6, vendorurl = $$props.vendorurl);
|
|
1050
|
-
if ("vendorimage" in $$props) $$invalidate(7, vendorimage = $$props.vendorimage);
|
|
1051
|
-
if ("vendortitle" in $$props) $$invalidate(8, vendortitle = $$props.vendortitle);
|
|
1052
|
-
if ("helperlinkurl" in $$props) $$invalidate(9, helperlinkurl = $$props.helperlinkurl);
|
|
1053
|
-
if ("helperlinkimage" in $$props) $$invalidate(10, helperlinkimage = $$props.helperlinkimage);
|
|
1054
|
-
if ("helperlinktitle" in $$props) $$invalidate(11, helperlinktitle = $$props.helperlinktitle);
|
|
1055
|
-
if ("licenseurl" in $$props) $$invalidate(12, licenseurl = $$props.licenseurl);
|
|
1056
|
-
if ("licenseimage" in $$props) $$invalidate(13, licenseimage = $$props.licenseimage);
|
|
1057
|
-
if ("licensetitle" in $$props) $$invalidate(14, licensetitle = $$props.licensetitle);
|
|
1058
|
-
if ("sociallinkurl" in $$props) $$invalidate(15, sociallinkurl = $$props.sociallinkurl);
|
|
1059
|
-
if ("sociallinkimage" in $$props) $$invalidate(16, sociallinkimage = $$props.sociallinkimage);
|
|
1060
|
-
if ("sociallinktitle" in $$props) $$invalidate(17, sociallinktitle = $$props.sociallinktitle);
|
|
1061
|
-
if ("clientstyling" in $$props) $$invalidate(20, clientstyling = $$props.clientstyling);
|
|
1062
|
-
if ("target" in $$props) $$invalidate(18, target = $$props.target);
|
|
1063
|
-
};
|
|
1064
|
-
|
|
1065
|
-
$$self.$capture_state = () => ({
|
|
1066
|
-
sponsorurl,
|
|
1067
|
-
sponsorimage,
|
|
1068
|
-
sponsortitle,
|
|
1069
|
-
paymenturl,
|
|
1070
|
-
paymentimage,
|
|
1071
|
-
paymenttitle,
|
|
1072
|
-
vendorurl,
|
|
1073
|
-
vendorimage,
|
|
1074
|
-
vendortitle,
|
|
1075
|
-
helperlinkurl,
|
|
1076
|
-
helperlinkimage,
|
|
1077
|
-
helperlinktitle,
|
|
1078
|
-
licenseurl,
|
|
1079
|
-
licenseimage,
|
|
1080
|
-
licensetitle,
|
|
1081
|
-
sociallinkurl,
|
|
1082
|
-
sociallinkimage,
|
|
1083
|
-
sociallinktitle,
|
|
1084
|
-
clientstyling,
|
|
1085
|
-
target,
|
|
1086
|
-
thumbnailContainer,
|
|
1087
|
-
setClientStyling
|
|
1088
|
-
});
|
|
1089
|
-
|
|
1090
|
-
$$self.$inject_state = $$props => {
|
|
1091
|
-
if ("sponsorurl" in $$props) $$invalidate(0, sponsorurl = $$props.sponsorurl);
|
|
1092
|
-
if ("sponsorimage" in $$props) $$invalidate(1, sponsorimage = $$props.sponsorimage);
|
|
1093
|
-
if ("sponsortitle" in $$props) $$invalidate(2, sponsortitle = $$props.sponsortitle);
|
|
1094
|
-
if ("paymenturl" in $$props) $$invalidate(3, paymenturl = $$props.paymenturl);
|
|
1095
|
-
if ("paymentimage" in $$props) $$invalidate(4, paymentimage = $$props.paymentimage);
|
|
1096
|
-
if ("paymenttitle" in $$props) $$invalidate(5, paymenttitle = $$props.paymenttitle);
|
|
1097
|
-
if ("vendorurl" in $$props) $$invalidate(6, vendorurl = $$props.vendorurl);
|
|
1098
|
-
if ("vendorimage" in $$props) $$invalidate(7, vendorimage = $$props.vendorimage);
|
|
1099
|
-
if ("vendortitle" in $$props) $$invalidate(8, vendortitle = $$props.vendortitle);
|
|
1100
|
-
if ("helperlinkurl" in $$props) $$invalidate(9, helperlinkurl = $$props.helperlinkurl);
|
|
1101
|
-
if ("helperlinkimage" in $$props) $$invalidate(10, helperlinkimage = $$props.helperlinkimage);
|
|
1102
|
-
if ("helperlinktitle" in $$props) $$invalidate(11, helperlinktitle = $$props.helperlinktitle);
|
|
1103
|
-
if ("licenseurl" in $$props) $$invalidate(12, licenseurl = $$props.licenseurl);
|
|
1104
|
-
if ("licenseimage" in $$props) $$invalidate(13, licenseimage = $$props.licenseimage);
|
|
1105
|
-
if ("licensetitle" in $$props) $$invalidate(14, licensetitle = $$props.licensetitle);
|
|
1106
|
-
if ("sociallinkurl" in $$props) $$invalidate(15, sociallinkurl = $$props.sociallinkurl);
|
|
1107
|
-
if ("sociallinkimage" in $$props) $$invalidate(16, sociallinkimage = $$props.sociallinkimage);
|
|
1108
|
-
if ("sociallinktitle" in $$props) $$invalidate(17, sociallinktitle = $$props.sociallinktitle);
|
|
1109
|
-
if ("clientstyling" in $$props) $$invalidate(20, clientstyling = $$props.clientstyling);
|
|
1110
|
-
if ("target" in $$props) $$invalidate(18, target = $$props.target);
|
|
1111
|
-
if ("thumbnailContainer" in $$props) $$invalidate(19, thumbnailContainer = $$props.thumbnailContainer);
|
|
1112
|
-
};
|
|
1113
|
-
|
|
1114
|
-
if ($$props && "$$inject" in $$props) {
|
|
1115
|
-
$$self.$inject_state($$props.$$inject);
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
$$self.$$.update = () => {
|
|
1119
|
-
if ($$self.$$.dirty & /*clientstyling*/ 1048576) {
|
|
1120
|
-
clientstyling && setClientStyling();
|
|
1121
|
-
}
|
|
1122
|
-
};
|
|
1123
|
-
|
|
1124
|
-
return [
|
|
1125
|
-
sponsorurl,
|
|
1126
|
-
sponsorimage,
|
|
1127
|
-
sponsortitle,
|
|
1128
|
-
paymenturl,
|
|
1129
|
-
paymentimage,
|
|
1130
|
-
paymenttitle,
|
|
1131
|
-
vendorurl,
|
|
1132
|
-
vendorimage,
|
|
1133
|
-
vendortitle,
|
|
1134
|
-
helperlinkurl,
|
|
1135
|
-
helperlinkimage,
|
|
1136
|
-
helperlinktitle,
|
|
1137
|
-
licenseurl,
|
|
1138
|
-
licenseimage,
|
|
1139
|
-
licensetitle,
|
|
1140
|
-
sociallinkurl,
|
|
1141
|
-
sociallinkimage,
|
|
1142
|
-
sociallinktitle,
|
|
1143
|
-
target,
|
|
1144
|
-
thumbnailContainer,
|
|
1145
|
-
clientstyling,
|
|
1146
|
-
div_binding
|
|
1147
|
-
];
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
|
-
class CasinoFooterThumbnail extends SvelteElement {
|
|
1151
|
-
constructor(options) {
|
|
1152
|
-
super();
|
|
1153
|
-
this.shadowRoot.innerHTML = `<style>.FooterItem{display:inline-block;padding:0 15.008px}.FooterItem .FooterSponsorLink,.FooterItem .FooterPaymentLink{display:block}.FooterItem .FooterSponsorLink{display:flex;align-items:center}.FooterItem .FooterPaymentLink,.FooterItem .FooterHelperLink{display:flex;align-items:center;justify-content:center}.FooterItem .FooterLinkDisabled{pointer-events:none;cursor:auto}.FooterItem .SponsorTitle,.FooterItem .PaymentTitle,.FooterItem .HelperTitle{font-size:9.008px;text-decoration:none;color:#808080;text-align:center}.FooterItem .HelperTitle{font-size:8px}.FooterItem.HelperLinkItem p{font-size:10px}.FooterItem .FooterItemAnchor{display:flex;flex-direction:column;gap:10px;text-decoration:none}.SponsorTitle{margin:0}.FooterLink{display:block;text-align:center}@media only screen and (max-width: 768px){.FooterItem{padding:0 5.008px}.FooterItem.PaymentItem{padding:15.008px 5.008px}.FooterItem.GameVendorItem{padding:0 10px}}</style>`;
|
|
1154
|
-
|
|
1155
|
-
init(
|
|
1156
|
-
this,
|
|
1157
|
-
{
|
|
1158
|
-
target: this.shadowRoot,
|
|
1159
|
-
props: attribute_to_object(this.attributes),
|
|
1160
|
-
customElement: true
|
|
1161
|
-
},
|
|
1162
|
-
instance$1,
|
|
1163
|
-
create_fragment$1,
|
|
1164
|
-
safe_not_equal,
|
|
1165
|
-
{
|
|
1166
|
-
sponsorurl: 0,
|
|
1167
|
-
sponsorimage: 1,
|
|
1168
|
-
sponsortitle: 2,
|
|
1169
|
-
paymenturl: 3,
|
|
1170
|
-
paymentimage: 4,
|
|
1171
|
-
paymenttitle: 5,
|
|
1172
|
-
vendorurl: 6,
|
|
1173
|
-
vendorimage: 7,
|
|
1174
|
-
vendortitle: 8,
|
|
1175
|
-
helperlinkurl: 9,
|
|
1176
|
-
helperlinkimage: 10,
|
|
1177
|
-
helperlinktitle: 11,
|
|
1178
|
-
licenseurl: 12,
|
|
1179
|
-
licenseimage: 13,
|
|
1180
|
-
licensetitle: 14,
|
|
1181
|
-
sociallinkurl: 15,
|
|
1182
|
-
sociallinkimage: 16,
|
|
1183
|
-
sociallinktitle: 17,
|
|
1184
|
-
clientstyling: 20,
|
|
1185
|
-
target: 18
|
|
1186
|
-
}
|
|
1187
|
-
);
|
|
1188
|
-
|
|
1189
|
-
if (options) {
|
|
1190
|
-
if (options.target) {
|
|
1191
|
-
insert_dev(options.target, this, options.anchor);
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
if (options.props) {
|
|
1195
|
-
this.$set(options.props);
|
|
1196
|
-
flush();
|
|
1197
|
-
}
|
|
1198
|
-
}
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
static get observedAttributes() {
|
|
1202
|
-
return [
|
|
1203
|
-
"sponsorurl",
|
|
1204
|
-
"sponsorimage",
|
|
1205
|
-
"sponsortitle",
|
|
1206
|
-
"paymenturl",
|
|
1207
|
-
"paymentimage",
|
|
1208
|
-
"paymenttitle",
|
|
1209
|
-
"vendorurl",
|
|
1210
|
-
"vendorimage",
|
|
1211
|
-
"vendortitle",
|
|
1212
|
-
"helperlinkurl",
|
|
1213
|
-
"helperlinkimage",
|
|
1214
|
-
"helperlinktitle",
|
|
1215
|
-
"licenseurl",
|
|
1216
|
-
"licenseimage",
|
|
1217
|
-
"licensetitle",
|
|
1218
|
-
"sociallinkurl",
|
|
1219
|
-
"sociallinkimage",
|
|
1220
|
-
"sociallinktitle",
|
|
1221
|
-
"clientstyling",
|
|
1222
|
-
"target"
|
|
1223
|
-
];
|
|
1224
|
-
}
|
|
1225
|
-
|
|
1226
|
-
get sponsorurl() {
|
|
1227
|
-
return this.$$.ctx[0];
|
|
1228
|
-
}
|
|
1229
|
-
|
|
1230
|
-
set sponsorurl(sponsorurl) {
|
|
1231
|
-
this.$set({ sponsorurl });
|
|
1232
|
-
flush();
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
get sponsorimage() {
|
|
1236
|
-
return this.$$.ctx[1];
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
|
-
set sponsorimage(sponsorimage) {
|
|
1240
|
-
this.$set({ sponsorimage });
|
|
1241
|
-
flush();
|
|
1242
|
-
}
|
|
1243
|
-
|
|
1244
|
-
get sponsortitle() {
|
|
1245
|
-
return this.$$.ctx[2];
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
set sponsortitle(sponsortitle) {
|
|
1249
|
-
this.$set({ sponsortitle });
|
|
1250
|
-
flush();
|
|
1251
|
-
}
|
|
1252
|
-
|
|
1253
|
-
get paymenturl() {
|
|
1254
|
-
return this.$$.ctx[3];
|
|
1255
|
-
}
|
|
1256
|
-
|
|
1257
|
-
set paymenturl(paymenturl) {
|
|
1258
|
-
this.$set({ paymenturl });
|
|
1259
|
-
flush();
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
get paymentimage() {
|
|
1263
|
-
return this.$$.ctx[4];
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
set paymentimage(paymentimage) {
|
|
1267
|
-
this.$set({ paymentimage });
|
|
1268
|
-
flush();
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1271
|
-
get paymenttitle() {
|
|
1272
|
-
return this.$$.ctx[5];
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
set paymenttitle(paymenttitle) {
|
|
1276
|
-
this.$set({ paymenttitle });
|
|
1277
|
-
flush();
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
get vendorurl() {
|
|
1281
|
-
return this.$$.ctx[6];
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
set vendorurl(vendorurl) {
|
|
1285
|
-
this.$set({ vendorurl });
|
|
1286
|
-
flush();
|
|
1287
|
-
}
|
|
1288
|
-
|
|
1289
|
-
get vendorimage() {
|
|
1290
|
-
return this.$$.ctx[7];
|
|
1291
|
-
}
|
|
1292
|
-
|
|
1293
|
-
set vendorimage(vendorimage) {
|
|
1294
|
-
this.$set({ vendorimage });
|
|
1295
|
-
flush();
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
get vendortitle() {
|
|
1299
|
-
return this.$$.ctx[8];
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
set vendortitle(vendortitle) {
|
|
1303
|
-
this.$set({ vendortitle });
|
|
1304
|
-
flush();
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1307
|
-
get helperlinkurl() {
|
|
1308
|
-
return this.$$.ctx[9];
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
set helperlinkurl(helperlinkurl) {
|
|
1312
|
-
this.$set({ helperlinkurl });
|
|
1313
|
-
flush();
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
get helperlinkimage() {
|
|
1317
|
-
return this.$$.ctx[10];
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
set helperlinkimage(helperlinkimage) {
|
|
1321
|
-
this.$set({ helperlinkimage });
|
|
1322
|
-
flush();
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
get helperlinktitle() {
|
|
1326
|
-
return this.$$.ctx[11];
|
|
1327
|
-
}
|
|
1328
|
-
|
|
1329
|
-
set helperlinktitle(helperlinktitle) {
|
|
1330
|
-
this.$set({ helperlinktitle });
|
|
1331
|
-
flush();
|
|
1332
|
-
}
|
|
1333
|
-
|
|
1334
|
-
get licenseurl() {
|
|
1335
|
-
return this.$$.ctx[12];
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
set licenseurl(licenseurl) {
|
|
1339
|
-
this.$set({ licenseurl });
|
|
1340
|
-
flush();
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
get licenseimage() {
|
|
1344
|
-
return this.$$.ctx[13];
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
set licenseimage(licenseimage) {
|
|
1348
|
-
this.$set({ licenseimage });
|
|
1349
|
-
flush();
|
|
1350
|
-
}
|
|
1351
|
-
|
|
1352
|
-
get licensetitle() {
|
|
1353
|
-
return this.$$.ctx[14];
|
|
1354
|
-
}
|
|
1355
|
-
|
|
1356
|
-
set licensetitle(licensetitle) {
|
|
1357
|
-
this.$set({ licensetitle });
|
|
1358
|
-
flush();
|
|
1359
|
-
}
|
|
1360
|
-
|
|
1361
|
-
get sociallinkurl() {
|
|
1362
|
-
return this.$$.ctx[15];
|
|
1363
|
-
}
|
|
1364
|
-
|
|
1365
|
-
set sociallinkurl(sociallinkurl) {
|
|
1366
|
-
this.$set({ sociallinkurl });
|
|
1367
|
-
flush();
|
|
1368
|
-
}
|
|
1369
|
-
|
|
1370
|
-
get sociallinkimage() {
|
|
1371
|
-
return this.$$.ctx[16];
|
|
1372
|
-
}
|
|
1373
|
-
|
|
1374
|
-
set sociallinkimage(sociallinkimage) {
|
|
1375
|
-
this.$set({ sociallinkimage });
|
|
1376
|
-
flush();
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
get sociallinktitle() {
|
|
1380
|
-
return this.$$.ctx[17];
|
|
1381
|
-
}
|
|
1382
|
-
|
|
1383
|
-
set sociallinktitle(sociallinktitle) {
|
|
1384
|
-
this.$set({ sociallinktitle });
|
|
1385
|
-
flush();
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
|
-
get clientstyling() {
|
|
1389
|
-
return this.$$.ctx[20];
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
|
-
set clientstyling(clientstyling) {
|
|
1393
|
-
this.$set({ clientstyling });
|
|
1394
|
-
flush();
|
|
1395
|
-
}
|
|
1396
|
-
|
|
1397
|
-
get target() {
|
|
1398
|
-
return this.$$.ctx[18];
|
|
1399
|
-
}
|
|
1400
|
-
|
|
1401
|
-
set target(target) {
|
|
1402
|
-
this.$set({ target });
|
|
1403
|
-
flush();
|
|
1404
|
-
}
|
|
1405
|
-
}
|
|
1406
|
-
|
|
1407
|
-
!customElements.get('casino-footer-thumbnail') && customElements.define('casino-footer-thumbnail', CasinoFooterThumbnail);
|
|
1408
|
-
|
|
1409
|
-
/* src/CasinoFooterSection.svelte generated by Svelte v3.37.0 */
|
|
1410
|
-
const file = "src/CasinoFooterSection.svelte";
|
|
1411
|
-
|
|
1412
|
-
function get_each_context_5(ctx, list, i) {
|
|
1413
|
-
const child_ctx = ctx.slice();
|
|
1414
|
-
child_ctx[24] = list[i];
|
|
1415
|
-
return child_ctx;
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
|
-
function get_each_context_4(ctx, list, i) {
|
|
1419
|
-
const child_ctx = ctx.slice();
|
|
1420
|
-
child_ctx[24] = list[i];
|
|
1421
|
-
return child_ctx;
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
function get_each_context_3(ctx, list, i) {
|
|
1425
|
-
const child_ctx = ctx.slice();
|
|
1426
|
-
child_ctx[24] = list[i];
|
|
1427
|
-
return child_ctx;
|
|
1428
|
-
}
|
|
1429
|
-
|
|
1430
|
-
function get_each_context_2(ctx, list, i) {
|
|
1431
|
-
const child_ctx = ctx.slice();
|
|
1432
|
-
child_ctx[24] = list[i];
|
|
1433
|
-
return child_ctx;
|
|
1434
|
-
}
|
|
1435
|
-
|
|
1436
|
-
function get_each_context_1(ctx, list, i) {
|
|
1437
|
-
const child_ctx = ctx.slice();
|
|
1438
|
-
child_ctx[21] = list[i];
|
|
1439
|
-
return child_ctx;
|
|
1440
|
-
}
|
|
1441
|
-
|
|
1442
|
-
function get_each_context(ctx, list, i) {
|
|
1443
|
-
const child_ctx = ctx.slice();
|
|
1444
|
-
child_ctx[18] = list[i];
|
|
1445
|
-
return child_ctx;
|
|
1446
|
-
}
|
|
1447
|
-
|
|
1448
|
-
// (74:51)
|
|
1449
|
-
function create_if_block_5(ctx) {
|
|
1450
|
-
let div;
|
|
1451
|
-
let each_value_5 = /*footersociallinks*/ ctx[13];
|
|
1452
|
-
validate_each_argument(each_value_5);
|
|
1453
|
-
let each_blocks = [];
|
|
1454
|
-
|
|
1455
|
-
for (let i = 0; i < each_value_5.length; i += 1) {
|
|
1456
|
-
each_blocks[i] = create_each_block_5(get_each_context_5(ctx, each_value_5, i));
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
|
-
const block = {
|
|
1460
|
-
c: function create() {
|
|
1461
|
-
div = element("div");
|
|
1462
|
-
|
|
1463
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1464
|
-
each_blocks[i].c();
|
|
1465
|
-
}
|
|
1466
|
-
|
|
1467
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1468
|
-
add_location(div, file, 74, 4, 3415);
|
|
1469
|
-
},
|
|
1470
|
-
m: function mount(target, anchor) {
|
|
1471
|
-
insert_dev(target, div, anchor);
|
|
1472
|
-
|
|
1473
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1474
|
-
each_blocks[i].m(div, null);
|
|
1475
|
-
}
|
|
1476
|
-
},
|
|
1477
|
-
p: function update(ctx, dirty) {
|
|
1478
|
-
if (dirty[0] & /*footersociallinks, clientstyling, target*/ 8384) {
|
|
1479
|
-
each_value_5 = /*footersociallinks*/ ctx[13];
|
|
1480
|
-
validate_each_argument(each_value_5);
|
|
1481
|
-
let i;
|
|
1482
|
-
|
|
1483
|
-
for (i = 0; i < each_value_5.length; i += 1) {
|
|
1484
|
-
const child_ctx = get_each_context_5(ctx, each_value_5, i);
|
|
1485
|
-
|
|
1486
|
-
if (each_blocks[i]) {
|
|
1487
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1488
|
-
} else {
|
|
1489
|
-
each_blocks[i] = create_each_block_5(child_ctx);
|
|
1490
|
-
each_blocks[i].c();
|
|
1491
|
-
each_blocks[i].m(div, null);
|
|
1492
|
-
}
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1496
|
-
each_blocks[i].d(1);
|
|
1497
|
-
}
|
|
1498
|
-
|
|
1499
|
-
each_blocks.length = each_value_5.length;
|
|
1500
|
-
}
|
|
1501
|
-
},
|
|
1502
|
-
d: function destroy(detaching) {
|
|
1503
|
-
if (detaching) detach_dev(div);
|
|
1504
|
-
destroy_each(each_blocks, detaching);
|
|
1505
|
-
}
|
|
1506
|
-
};
|
|
1507
|
-
|
|
1508
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1509
|
-
block,
|
|
1510
|
-
id: create_if_block_5.name,
|
|
1511
|
-
type: "if",
|
|
1512
|
-
source: "(74:51) ",
|
|
1513
|
-
ctx
|
|
1514
|
-
});
|
|
1515
|
-
|
|
1516
|
-
return block;
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
// (68:49)
|
|
1520
|
-
function create_if_block_4(ctx) {
|
|
1521
|
-
let div;
|
|
1522
|
-
let each_value_4 = /*footerlicenses*/ ctx[12];
|
|
1523
|
-
validate_each_argument(each_value_4);
|
|
1524
|
-
let each_blocks = [];
|
|
1525
|
-
|
|
1526
|
-
for (let i = 0; i < each_value_4.length; i += 1) {
|
|
1527
|
-
each_blocks[i] = create_each_block_4(get_each_context_4(ctx, each_value_4, i));
|
|
1528
|
-
}
|
|
1529
|
-
|
|
1530
|
-
const block = {
|
|
1531
|
-
c: function create() {
|
|
1532
|
-
div = element("div");
|
|
1533
|
-
|
|
1534
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1535
|
-
each_blocks[i].c();
|
|
1536
|
-
}
|
|
1537
|
-
|
|
1538
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1539
|
-
add_location(div, file, 68, 4, 3030);
|
|
1540
|
-
},
|
|
1541
|
-
m: function mount(target, anchor) {
|
|
1542
|
-
insert_dev(target, div, anchor);
|
|
1543
|
-
|
|
1544
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1545
|
-
each_blocks[i].m(div, null);
|
|
1546
|
-
}
|
|
1547
|
-
},
|
|
1548
|
-
p: function update(ctx, dirty) {
|
|
1549
|
-
if (dirty[0] & /*footerlicenses, clientstyling, target*/ 4288) {
|
|
1550
|
-
each_value_4 = /*footerlicenses*/ ctx[12];
|
|
1551
|
-
validate_each_argument(each_value_4);
|
|
1552
|
-
let i;
|
|
1553
|
-
|
|
1554
|
-
for (i = 0; i < each_value_4.length; i += 1) {
|
|
1555
|
-
const child_ctx = get_each_context_4(ctx, each_value_4, i);
|
|
1556
|
-
|
|
1557
|
-
if (each_blocks[i]) {
|
|
1558
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1559
|
-
} else {
|
|
1560
|
-
each_blocks[i] = create_each_block_4(child_ctx);
|
|
1561
|
-
each_blocks[i].c();
|
|
1562
|
-
each_blocks[i].m(div, null);
|
|
1563
|
-
}
|
|
1564
|
-
}
|
|
1565
|
-
|
|
1566
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1567
|
-
each_blocks[i].d(1);
|
|
1568
|
-
}
|
|
1569
|
-
|
|
1570
|
-
each_blocks.length = each_value_4.length;
|
|
1571
|
-
}
|
|
1572
|
-
},
|
|
1573
|
-
d: function destroy(detaching) {
|
|
1574
|
-
if (detaching) detach_dev(div);
|
|
1575
|
-
destroy_each(each_blocks, detaching);
|
|
1576
|
-
}
|
|
1577
|
-
};
|
|
1578
|
-
|
|
1579
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1580
|
-
block,
|
|
1581
|
-
id: create_if_block_4.name,
|
|
1582
|
-
type: "if",
|
|
1583
|
-
source: "(68:49) ",
|
|
1584
|
-
ctx
|
|
1585
|
-
});
|
|
1586
|
-
|
|
1587
|
-
return block;
|
|
1588
|
-
}
|
|
1589
|
-
|
|
1590
|
-
// (62:51)
|
|
1591
|
-
function create_if_block_3(ctx) {
|
|
1592
|
-
let div;
|
|
1593
|
-
let each_value_3 = /*footerhelperlinks*/ ctx[11];
|
|
1594
|
-
validate_each_argument(each_value_3);
|
|
1595
|
-
let each_blocks = [];
|
|
1596
|
-
|
|
1597
|
-
for (let i = 0; i < each_value_3.length; i += 1) {
|
|
1598
|
-
each_blocks[i] = create_each_block_3(get_each_context_3(ctx, each_value_3, i));
|
|
1599
|
-
}
|
|
1600
|
-
|
|
1601
|
-
const block = {
|
|
1602
|
-
c: function create() {
|
|
1603
|
-
div = element("div");
|
|
1604
|
-
|
|
1605
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1606
|
-
each_blocks[i].c();
|
|
1607
|
-
}
|
|
1608
|
-
|
|
1609
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1610
|
-
add_location(div, file, 62, 4, 2632);
|
|
1611
|
-
},
|
|
1612
|
-
m: function mount(target, anchor) {
|
|
1613
|
-
insert_dev(target, div, anchor);
|
|
1614
|
-
|
|
1615
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1616
|
-
each_blocks[i].m(div, null);
|
|
1617
|
-
}
|
|
1618
|
-
},
|
|
1619
|
-
p: function update(ctx, dirty) {
|
|
1620
|
-
if (dirty[0] & /*footerhelperlinks, clientstyling, target*/ 2240) {
|
|
1621
|
-
each_value_3 = /*footerhelperlinks*/ ctx[11];
|
|
1622
|
-
validate_each_argument(each_value_3);
|
|
1623
|
-
let i;
|
|
1624
|
-
|
|
1625
|
-
for (i = 0; i < each_value_3.length; i += 1) {
|
|
1626
|
-
const child_ctx = get_each_context_3(ctx, each_value_3, i);
|
|
1627
|
-
|
|
1628
|
-
if (each_blocks[i]) {
|
|
1629
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1630
|
-
} else {
|
|
1631
|
-
each_blocks[i] = create_each_block_3(child_ctx);
|
|
1632
|
-
each_blocks[i].c();
|
|
1633
|
-
each_blocks[i].m(div, null);
|
|
1634
|
-
}
|
|
1635
|
-
}
|
|
1636
|
-
|
|
1637
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1638
|
-
each_blocks[i].d(1);
|
|
1639
|
-
}
|
|
1640
|
-
|
|
1641
|
-
each_blocks.length = each_value_3.length;
|
|
1642
|
-
}
|
|
1643
|
-
},
|
|
1644
|
-
d: function destroy(detaching) {
|
|
1645
|
-
if (detaching) detach_dev(div);
|
|
1646
|
-
destroy_each(each_blocks, detaching);
|
|
1647
|
-
}
|
|
1648
|
-
};
|
|
1649
|
-
|
|
1650
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1651
|
-
block,
|
|
1652
|
-
id: create_if_block_3.name,
|
|
1653
|
-
type: "if",
|
|
1654
|
-
source: "(62:51) ",
|
|
1655
|
-
ctx
|
|
1656
|
-
});
|
|
1657
|
-
|
|
1658
|
-
return block;
|
|
1659
|
-
}
|
|
1660
|
-
|
|
1661
|
-
// (56:47)
|
|
1662
|
-
function create_if_block_2(ctx) {
|
|
1663
|
-
let div;
|
|
1664
|
-
let each_value_2 = /*footervendors*/ ctx[10];
|
|
1665
|
-
validate_each_argument(each_value_2);
|
|
1666
|
-
let each_blocks = [];
|
|
1667
|
-
|
|
1668
|
-
for (let i = 0; i < each_value_2.length; i += 1) {
|
|
1669
|
-
each_blocks[i] = create_each_block_2(get_each_context_2(ctx, each_value_2, i));
|
|
1670
|
-
}
|
|
1671
|
-
|
|
1672
|
-
const block = {
|
|
1673
|
-
c: function create() {
|
|
1674
|
-
div = element("div");
|
|
1675
|
-
|
|
1676
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1677
|
-
each_blocks[i].c();
|
|
1678
|
-
}
|
|
1679
|
-
|
|
1680
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1681
|
-
add_location(div, file, 56, 4, 2242);
|
|
1682
|
-
},
|
|
1683
|
-
m: function mount(target, anchor) {
|
|
1684
|
-
insert_dev(target, div, anchor);
|
|
1685
|
-
|
|
1686
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1687
|
-
each_blocks[i].m(div, null);
|
|
1688
|
-
}
|
|
1689
|
-
},
|
|
1690
|
-
p: function update(ctx, dirty) {
|
|
1691
|
-
if (dirty[0] & /*footervendors, clientstyling, target*/ 1216) {
|
|
1692
|
-
each_value_2 = /*footervendors*/ ctx[10];
|
|
1693
|
-
validate_each_argument(each_value_2);
|
|
1694
|
-
let i;
|
|
1695
|
-
|
|
1696
|
-
for (i = 0; i < each_value_2.length; i += 1) {
|
|
1697
|
-
const child_ctx = get_each_context_2(ctx, each_value_2, i);
|
|
1698
|
-
|
|
1699
|
-
if (each_blocks[i]) {
|
|
1700
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1701
|
-
} else {
|
|
1702
|
-
each_blocks[i] = create_each_block_2(child_ctx);
|
|
1703
|
-
each_blocks[i].c();
|
|
1704
|
-
each_blocks[i].m(div, null);
|
|
1705
|
-
}
|
|
1706
|
-
}
|
|
1707
|
-
|
|
1708
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1709
|
-
each_blocks[i].d(1);
|
|
1710
|
-
}
|
|
1711
|
-
|
|
1712
|
-
each_blocks.length = each_value_2.length;
|
|
1713
|
-
}
|
|
1714
|
-
},
|
|
1715
|
-
d: function destroy(detaching) {
|
|
1716
|
-
if (detaching) detach_dev(div);
|
|
1717
|
-
destroy_each(each_blocks, detaching);
|
|
1718
|
-
}
|
|
1719
|
-
};
|
|
1720
|
-
|
|
1721
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1722
|
-
block,
|
|
1723
|
-
id: create_if_block_2.name,
|
|
1724
|
-
type: "if",
|
|
1725
|
-
source: "(56:47) ",
|
|
1726
|
-
ctx
|
|
1727
|
-
});
|
|
1728
|
-
|
|
1729
|
-
return block;
|
|
1730
|
-
}
|
|
1731
|
-
|
|
1732
|
-
// (50:48)
|
|
1733
|
-
function create_if_block_1(ctx) {
|
|
1734
|
-
let div;
|
|
1735
|
-
let each_value_1 = /*footerpayment*/ ctx[9];
|
|
1736
|
-
validate_each_argument(each_value_1);
|
|
1737
|
-
let each_blocks = [];
|
|
1738
|
-
|
|
1739
|
-
for (let i = 0; i < each_value_1.length; i += 1) {
|
|
1740
|
-
each_blocks[i] = create_each_block_1(get_each_context_1(ctx, each_value_1, i));
|
|
1741
|
-
}
|
|
1742
|
-
|
|
1743
|
-
const block = {
|
|
1744
|
-
c: function create() {
|
|
1745
|
-
div = element("div");
|
|
1746
|
-
|
|
1747
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1748
|
-
each_blocks[i].c();
|
|
1749
|
-
}
|
|
1750
|
-
|
|
1751
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1752
|
-
add_location(div, file, 50, 2, 1848);
|
|
1753
|
-
},
|
|
1754
|
-
m: function mount(target, anchor) {
|
|
1755
|
-
insert_dev(target, div, anchor);
|
|
1756
|
-
|
|
1757
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1758
|
-
each_blocks[i].m(div, null);
|
|
1759
|
-
}
|
|
1760
|
-
},
|
|
1761
|
-
p: function update(ctx, dirty) {
|
|
1762
|
-
if (dirty[0] & /*footerpayment, clientstyling, target*/ 704) {
|
|
1763
|
-
each_value_1 = /*footerpayment*/ ctx[9];
|
|
1764
|
-
validate_each_argument(each_value_1);
|
|
1765
|
-
let i;
|
|
1766
|
-
|
|
1767
|
-
for (i = 0; i < each_value_1.length; i += 1) {
|
|
1768
|
-
const child_ctx = get_each_context_1(ctx, each_value_1, i);
|
|
1769
|
-
|
|
1770
|
-
if (each_blocks[i]) {
|
|
1771
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1772
|
-
} else {
|
|
1773
|
-
each_blocks[i] = create_each_block_1(child_ctx);
|
|
1774
|
-
each_blocks[i].c();
|
|
1775
|
-
each_blocks[i].m(div, null);
|
|
1776
|
-
}
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1780
|
-
each_blocks[i].d(1);
|
|
1781
|
-
}
|
|
1782
|
-
|
|
1783
|
-
each_blocks.length = each_value_1.length;
|
|
1784
|
-
}
|
|
1785
|
-
},
|
|
1786
|
-
d: function destroy(detaching) {
|
|
1787
|
-
if (detaching) detach_dev(div);
|
|
1788
|
-
destroy_each(each_blocks, detaching);
|
|
1789
|
-
}
|
|
1790
|
-
};
|
|
1791
|
-
|
|
1792
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1793
|
-
block,
|
|
1794
|
-
id: create_if_block_1.name,
|
|
1795
|
-
type: "if",
|
|
1796
|
-
source: "(50:48) ",
|
|
1797
|
-
ctx
|
|
1798
|
-
});
|
|
1799
|
-
|
|
1800
|
-
return block;
|
|
1801
|
-
}
|
|
1802
|
-
|
|
1803
|
-
// (44:2) {#if sponsorflag && footersponsors.length}
|
|
1804
|
-
function create_if_block(ctx) {
|
|
1805
|
-
let div;
|
|
1806
|
-
let each_value = /*footersponsors*/ ctx[8];
|
|
1807
|
-
validate_each_argument(each_value);
|
|
1808
|
-
let each_blocks = [];
|
|
1809
|
-
|
|
1810
|
-
for (let i = 0; i < each_value.length; i += 1) {
|
|
1811
|
-
each_blocks[i] = create_each_block(get_each_context(ctx, each_value, i));
|
|
1812
|
-
}
|
|
1813
|
-
|
|
1814
|
-
const block = {
|
|
1815
|
-
c: function create() {
|
|
1816
|
-
div = element("div");
|
|
1817
|
-
|
|
1818
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1819
|
-
each_blocks[i].c();
|
|
1820
|
-
}
|
|
1821
|
-
|
|
1822
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1823
|
-
add_location(div, file, 44, 4, 1466);
|
|
1824
|
-
},
|
|
1825
|
-
m: function mount(target, anchor) {
|
|
1826
|
-
insert_dev(target, div, anchor);
|
|
1827
|
-
|
|
1828
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1829
|
-
each_blocks[i].m(div, null);
|
|
1830
|
-
}
|
|
1831
|
-
},
|
|
1832
|
-
p: function update(ctx, dirty) {
|
|
1833
|
-
if (dirty[0] & /*footersponsors, clientstyling, target*/ 448) {
|
|
1834
|
-
each_value = /*footersponsors*/ ctx[8];
|
|
1835
|
-
validate_each_argument(each_value);
|
|
1836
|
-
let i;
|
|
1837
|
-
|
|
1838
|
-
for (i = 0; i < each_value.length; i += 1) {
|
|
1839
|
-
const child_ctx = get_each_context(ctx, each_value, i);
|
|
1840
|
-
|
|
1841
|
-
if (each_blocks[i]) {
|
|
1842
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1843
|
-
} else {
|
|
1844
|
-
each_blocks[i] = create_each_block(child_ctx);
|
|
1845
|
-
each_blocks[i].c();
|
|
1846
|
-
each_blocks[i].m(div, null);
|
|
1847
|
-
}
|
|
1848
|
-
}
|
|
1849
|
-
|
|
1850
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1851
|
-
each_blocks[i].d(1);
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
|
-
each_blocks.length = each_value.length;
|
|
1855
|
-
}
|
|
1856
|
-
},
|
|
1857
|
-
d: function destroy(detaching) {
|
|
1858
|
-
if (detaching) detach_dev(div);
|
|
1859
|
-
destroy_each(each_blocks, detaching);
|
|
1860
|
-
}
|
|
1861
|
-
};
|
|
1862
|
-
|
|
1863
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1864
|
-
block,
|
|
1865
|
-
id: create_if_block.name,
|
|
1866
|
-
type: "if",
|
|
1867
|
-
source: "(44:2) {#if sponsorflag && footersponsors.length}",
|
|
1868
|
-
ctx
|
|
1869
|
-
});
|
|
1870
|
-
|
|
1871
|
-
return block;
|
|
1872
|
-
}
|
|
1873
|
-
|
|
1874
|
-
// (76:6) {#each footersociallinks as footerData}
|
|
1875
|
-
function create_each_block_5(ctx) {
|
|
1876
|
-
let casino_footer_thumbnail;
|
|
1877
|
-
let casino_footer_thumbnail_sociallinkurl_value;
|
|
1878
|
-
let casino_footer_thumbnail_sociallinkimage_value;
|
|
1879
|
-
let casino_footer_thumbnail_sociallinktitle_value;
|
|
1880
|
-
|
|
1881
|
-
const block = {
|
|
1882
|
-
c: function create() {
|
|
1883
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
1884
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinkurl", casino_footer_thumbnail_sociallinkurl_value = /*footerData*/ ctx[24].socialLinkUrl);
|
|
1885
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinkimage", casino_footer_thumbnail_sociallinkimage_value = /*footerData*/ ctx[24].socialLinkImage);
|
|
1886
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinktitle", casino_footer_thumbnail_sociallinktitle_value = /*footerData*/ ctx[24].socialLinkTitle);
|
|
1887
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
1888
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
1889
|
-
add_location(casino_footer_thumbnail, file, 76, 8, 3511);
|
|
1890
|
-
},
|
|
1891
|
-
m: function mount(target, anchor) {
|
|
1892
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
1893
|
-
},
|
|
1894
|
-
p: function update(ctx, dirty) {
|
|
1895
|
-
if (dirty[0] & /*footersociallinks*/ 8192 && casino_footer_thumbnail_sociallinkurl_value !== (casino_footer_thumbnail_sociallinkurl_value = /*footerData*/ ctx[24].socialLinkUrl)) {
|
|
1896
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinkurl", casino_footer_thumbnail_sociallinkurl_value);
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
|
-
if (dirty[0] & /*footersociallinks*/ 8192 && casino_footer_thumbnail_sociallinkimage_value !== (casino_footer_thumbnail_sociallinkimage_value = /*footerData*/ ctx[24].socialLinkImage)) {
|
|
1900
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinkimage", casino_footer_thumbnail_sociallinkimage_value);
|
|
1901
|
-
}
|
|
1902
|
-
|
|
1903
|
-
if (dirty[0] & /*footersociallinks*/ 8192 && casino_footer_thumbnail_sociallinktitle_value !== (casino_footer_thumbnail_sociallinktitle_value = /*footerData*/ ctx[24].socialLinkTitle)) {
|
|
1904
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinktitle", casino_footer_thumbnail_sociallinktitle_value);
|
|
1905
|
-
}
|
|
1906
|
-
|
|
1907
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
1908
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1911
|
-
if (dirty[0] & /*target*/ 128) {
|
|
1912
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
1913
|
-
}
|
|
1914
|
-
},
|
|
1915
|
-
d: function destroy(detaching) {
|
|
1916
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
1917
|
-
}
|
|
1918
|
-
};
|
|
1919
|
-
|
|
1920
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1921
|
-
block,
|
|
1922
|
-
id: create_each_block_5.name,
|
|
1923
|
-
type: "each",
|
|
1924
|
-
source: "(76:6) {#each footersociallinks as footerData}",
|
|
1925
|
-
ctx
|
|
1926
|
-
});
|
|
1927
|
-
|
|
1928
|
-
return block;
|
|
1929
|
-
}
|
|
1930
|
-
|
|
1931
|
-
// (70:6) {#each footerlicenses as footerData}
|
|
1932
|
-
function create_each_block_4(ctx) {
|
|
1933
|
-
let casino_footer_thumbnail;
|
|
1934
|
-
let casino_footer_thumbnail_licenseurl_value;
|
|
1935
|
-
let casino_footer_thumbnail_licenseimage_value;
|
|
1936
|
-
let casino_footer_thumbnail_licensetitle_value;
|
|
1937
|
-
|
|
1938
|
-
const block = {
|
|
1939
|
-
c: function create() {
|
|
1940
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
1941
|
-
set_custom_element_data(casino_footer_thumbnail, "licenseurl", casino_footer_thumbnail_licenseurl_value = /*footerData*/ ctx[24].licenseUrl);
|
|
1942
|
-
set_custom_element_data(casino_footer_thumbnail, "licenseimage", casino_footer_thumbnail_licenseimage_value = /*footerData*/ ctx[24].licenseImage);
|
|
1943
|
-
set_custom_element_data(casino_footer_thumbnail, "licensetitle", casino_footer_thumbnail_licensetitle_value = /*footerData*/ ctx[24].licenseTitle);
|
|
1944
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
1945
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
1946
|
-
add_location(casino_footer_thumbnail, file, 70, 8, 3123);
|
|
1947
|
-
},
|
|
1948
|
-
m: function mount(target, anchor) {
|
|
1949
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
1950
|
-
},
|
|
1951
|
-
p: function update(ctx, dirty) {
|
|
1952
|
-
if (dirty[0] & /*footerlicenses*/ 4096 && casino_footer_thumbnail_licenseurl_value !== (casino_footer_thumbnail_licenseurl_value = /*footerData*/ ctx[24].licenseUrl)) {
|
|
1953
|
-
set_custom_element_data(casino_footer_thumbnail, "licenseurl", casino_footer_thumbnail_licenseurl_value);
|
|
1954
|
-
}
|
|
1955
|
-
|
|
1956
|
-
if (dirty[0] & /*footerlicenses*/ 4096 && casino_footer_thumbnail_licenseimage_value !== (casino_footer_thumbnail_licenseimage_value = /*footerData*/ ctx[24].licenseImage)) {
|
|
1957
|
-
set_custom_element_data(casino_footer_thumbnail, "licenseimage", casino_footer_thumbnail_licenseimage_value);
|
|
1958
|
-
}
|
|
1959
|
-
|
|
1960
|
-
if (dirty[0] & /*footerlicenses*/ 4096 && casino_footer_thumbnail_licensetitle_value !== (casino_footer_thumbnail_licensetitle_value = /*footerData*/ ctx[24].licenseTitle)) {
|
|
1961
|
-
set_custom_element_data(casino_footer_thumbnail, "licensetitle", casino_footer_thumbnail_licensetitle_value);
|
|
1962
|
-
}
|
|
1963
|
-
|
|
1964
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
1965
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
1966
|
-
}
|
|
1967
|
-
|
|
1968
|
-
if (dirty[0] & /*target*/ 128) {
|
|
1969
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
1970
|
-
}
|
|
1971
|
-
},
|
|
1972
|
-
d: function destroy(detaching) {
|
|
1973
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
1974
|
-
}
|
|
1975
|
-
};
|
|
1976
|
-
|
|
1977
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1978
|
-
block,
|
|
1979
|
-
id: create_each_block_4.name,
|
|
1980
|
-
type: "each",
|
|
1981
|
-
source: "(70:6) {#each footerlicenses as footerData}",
|
|
1982
|
-
ctx
|
|
1983
|
-
});
|
|
1984
|
-
|
|
1985
|
-
return block;
|
|
1986
|
-
}
|
|
1987
|
-
|
|
1988
|
-
// (64:6) {#each footerhelperlinks as footerData}
|
|
1989
|
-
function create_each_block_3(ctx) {
|
|
1990
|
-
let casino_footer_thumbnail;
|
|
1991
|
-
let casino_footer_thumbnail_helperlinkurl_value;
|
|
1992
|
-
let casino_footer_thumbnail_helperlinkimage_value;
|
|
1993
|
-
let casino_footer_thumbnail_helperlinktitle_value;
|
|
1994
|
-
|
|
1995
|
-
const block = {
|
|
1996
|
-
c: function create() {
|
|
1997
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
1998
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinkurl", casino_footer_thumbnail_helperlinkurl_value = /*footerData*/ ctx[24].helpLinkUrl);
|
|
1999
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinkimage", casino_footer_thumbnail_helperlinkimage_value = /*footerData*/ ctx[24].helpLinkImage);
|
|
2000
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinktitle", casino_footer_thumbnail_helperlinktitle_value = /*footerData*/ ctx[24].helpLinkTitle);
|
|
2001
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2002
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2003
|
-
add_location(casino_footer_thumbnail, file, 64, 8, 2728);
|
|
2004
|
-
},
|
|
2005
|
-
m: function mount(target, anchor) {
|
|
2006
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
2007
|
-
},
|
|
2008
|
-
p: function update(ctx, dirty) {
|
|
2009
|
-
if (dirty[0] & /*footerhelperlinks*/ 2048 && casino_footer_thumbnail_helperlinkurl_value !== (casino_footer_thumbnail_helperlinkurl_value = /*footerData*/ ctx[24].helpLinkUrl)) {
|
|
2010
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinkurl", casino_footer_thumbnail_helperlinkurl_value);
|
|
2011
|
-
}
|
|
2012
|
-
|
|
2013
|
-
if (dirty[0] & /*footerhelperlinks*/ 2048 && casino_footer_thumbnail_helperlinkimage_value !== (casino_footer_thumbnail_helperlinkimage_value = /*footerData*/ ctx[24].helpLinkImage)) {
|
|
2014
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinkimage", casino_footer_thumbnail_helperlinkimage_value);
|
|
2015
|
-
}
|
|
2016
|
-
|
|
2017
|
-
if (dirty[0] & /*footerhelperlinks*/ 2048 && casino_footer_thumbnail_helperlinktitle_value !== (casino_footer_thumbnail_helperlinktitle_value = /*footerData*/ ctx[24].helpLinkTitle)) {
|
|
2018
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinktitle", casino_footer_thumbnail_helperlinktitle_value);
|
|
2019
|
-
}
|
|
2020
|
-
|
|
2021
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
2022
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2023
|
-
}
|
|
2024
|
-
|
|
2025
|
-
if (dirty[0] & /*target*/ 128) {
|
|
2026
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2027
|
-
}
|
|
2028
|
-
},
|
|
2029
|
-
d: function destroy(detaching) {
|
|
2030
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
2031
|
-
}
|
|
2032
|
-
};
|
|
2033
|
-
|
|
2034
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2035
|
-
block,
|
|
2036
|
-
id: create_each_block_3.name,
|
|
2037
|
-
type: "each",
|
|
2038
|
-
source: "(64:6) {#each footerhelperlinks as footerData}",
|
|
2039
|
-
ctx
|
|
2040
|
-
});
|
|
2041
|
-
|
|
2042
|
-
return block;
|
|
2043
|
-
}
|
|
2044
|
-
|
|
2045
|
-
// (58:6) {#each footervendors as footerData}
|
|
2046
|
-
function create_each_block_2(ctx) {
|
|
2047
|
-
let casino_footer_thumbnail;
|
|
2048
|
-
let casino_footer_thumbnail_vendorurl_value;
|
|
2049
|
-
let casino_footer_thumbnail_vendorimage_value;
|
|
2050
|
-
let casino_footer_thumbnail_vendortitle_value;
|
|
2051
|
-
|
|
2052
|
-
const block = {
|
|
2053
|
-
c: function create() {
|
|
2054
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
2055
|
-
set_custom_element_data(casino_footer_thumbnail, "vendorurl", casino_footer_thumbnail_vendorurl_value = /*footerData*/ ctx[24].gameVendorUrl);
|
|
2056
|
-
set_custom_element_data(casino_footer_thumbnail, "vendorimage", casino_footer_thumbnail_vendorimage_value = /*footerData*/ ctx[24].gameVendorImage);
|
|
2057
|
-
set_custom_element_data(casino_footer_thumbnail, "vendortitle", casino_footer_thumbnail_vendortitle_value = /*footerData*/ ctx[24].gameVendorTitle);
|
|
2058
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2059
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2060
|
-
add_location(casino_footer_thumbnail, file, 58, 8, 2334);
|
|
2061
|
-
},
|
|
2062
|
-
m: function mount(target, anchor) {
|
|
2063
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
2064
|
-
},
|
|
2065
|
-
p: function update(ctx, dirty) {
|
|
2066
|
-
if (dirty[0] & /*footervendors*/ 1024 && casino_footer_thumbnail_vendorurl_value !== (casino_footer_thumbnail_vendorurl_value = /*footerData*/ ctx[24].gameVendorUrl)) {
|
|
2067
|
-
set_custom_element_data(casino_footer_thumbnail, "vendorurl", casino_footer_thumbnail_vendorurl_value);
|
|
2068
|
-
}
|
|
2069
|
-
|
|
2070
|
-
if (dirty[0] & /*footervendors*/ 1024 && casino_footer_thumbnail_vendorimage_value !== (casino_footer_thumbnail_vendorimage_value = /*footerData*/ ctx[24].gameVendorImage)) {
|
|
2071
|
-
set_custom_element_data(casino_footer_thumbnail, "vendorimage", casino_footer_thumbnail_vendorimage_value);
|
|
2072
|
-
}
|
|
2073
|
-
|
|
2074
|
-
if (dirty[0] & /*footervendors*/ 1024 && casino_footer_thumbnail_vendortitle_value !== (casino_footer_thumbnail_vendortitle_value = /*footerData*/ ctx[24].gameVendorTitle)) {
|
|
2075
|
-
set_custom_element_data(casino_footer_thumbnail, "vendortitle", casino_footer_thumbnail_vendortitle_value);
|
|
2076
|
-
}
|
|
2077
|
-
|
|
2078
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
2079
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
if (dirty[0] & /*target*/ 128) {
|
|
2083
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2084
|
-
}
|
|
2085
|
-
},
|
|
2086
|
-
d: function destroy(detaching) {
|
|
2087
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
2088
|
-
}
|
|
2089
|
-
};
|
|
2090
|
-
|
|
2091
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2092
|
-
block,
|
|
2093
|
-
id: create_each_block_2.name,
|
|
2094
|
-
type: "each",
|
|
2095
|
-
source: "(58:6) {#each footervendors as footerData}",
|
|
2096
|
-
ctx
|
|
2097
|
-
});
|
|
2098
|
-
|
|
2099
|
-
return block;
|
|
2100
|
-
}
|
|
2101
|
-
|
|
2102
|
-
// (52:4) {#each footerpayment as paymentData}
|
|
2103
|
-
function create_each_block_1(ctx) {
|
|
2104
|
-
let casino_footer_thumbnail;
|
|
2105
|
-
let casino_footer_thumbnail_paymenturl_value;
|
|
2106
|
-
let casino_footer_thumbnail_paymentimage_value;
|
|
2107
|
-
let casino_footer_thumbnail_paymenttitle_value;
|
|
2108
|
-
|
|
2109
|
-
const block = {
|
|
2110
|
-
c: function create() {
|
|
2111
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
2112
|
-
set_custom_element_data(casino_footer_thumbnail, "paymenturl", casino_footer_thumbnail_paymenturl_value = /*paymentData*/ ctx[21].paymentMethodUrl);
|
|
2113
|
-
set_custom_element_data(casino_footer_thumbnail, "paymentimage", casino_footer_thumbnail_paymentimage_value = /*paymentData*/ ctx[21].paymentMethodImage);
|
|
2114
|
-
set_custom_element_data(casino_footer_thumbnail, "paymenttitle", casino_footer_thumbnail_paymenttitle_value = /*paymentData*/ ctx[21].paymentMethodTitle);
|
|
2115
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2116
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2117
|
-
add_location(casino_footer_thumbnail, file, 52, 6, 1937);
|
|
2118
|
-
},
|
|
2119
|
-
m: function mount(target, anchor) {
|
|
2120
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
2121
|
-
},
|
|
2122
|
-
p: function update(ctx, dirty) {
|
|
2123
|
-
if (dirty[0] & /*footerpayment*/ 512 && casino_footer_thumbnail_paymenturl_value !== (casino_footer_thumbnail_paymenturl_value = /*paymentData*/ ctx[21].paymentMethodUrl)) {
|
|
2124
|
-
set_custom_element_data(casino_footer_thumbnail, "paymenturl", casino_footer_thumbnail_paymenturl_value);
|
|
2125
|
-
}
|
|
2126
|
-
|
|
2127
|
-
if (dirty[0] & /*footerpayment*/ 512 && casino_footer_thumbnail_paymentimage_value !== (casino_footer_thumbnail_paymentimage_value = /*paymentData*/ ctx[21].paymentMethodImage)) {
|
|
2128
|
-
set_custom_element_data(casino_footer_thumbnail, "paymentimage", casino_footer_thumbnail_paymentimage_value);
|
|
2129
|
-
}
|
|
2130
|
-
|
|
2131
|
-
if (dirty[0] & /*footerpayment*/ 512 && casino_footer_thumbnail_paymenttitle_value !== (casino_footer_thumbnail_paymenttitle_value = /*paymentData*/ ctx[21].paymentMethodTitle)) {
|
|
2132
|
-
set_custom_element_data(casino_footer_thumbnail, "paymenttitle", casino_footer_thumbnail_paymenttitle_value);
|
|
2133
|
-
}
|
|
2134
|
-
|
|
2135
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
2136
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2137
|
-
}
|
|
2138
|
-
|
|
2139
|
-
if (dirty[0] & /*target*/ 128) {
|
|
2140
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2141
|
-
}
|
|
2142
|
-
},
|
|
2143
|
-
d: function destroy(detaching) {
|
|
2144
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
2145
|
-
}
|
|
2146
|
-
};
|
|
2147
|
-
|
|
2148
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2149
|
-
block,
|
|
2150
|
-
id: create_each_block_1.name,
|
|
2151
|
-
type: "each",
|
|
2152
|
-
source: "(52:4) {#each footerpayment as paymentData}",
|
|
2153
|
-
ctx
|
|
2154
|
-
});
|
|
2155
|
-
|
|
2156
|
-
return block;
|
|
2157
|
-
}
|
|
2158
|
-
|
|
2159
|
-
// (46:6) {#each footersponsors as sponsorData}
|
|
2160
|
-
function create_each_block(ctx) {
|
|
2161
|
-
let casino_footer_thumbnail;
|
|
2162
|
-
let casino_footer_thumbnail_sponsorurl_value;
|
|
2163
|
-
let casino_footer_thumbnail_sponsorimage_value;
|
|
2164
|
-
let casino_footer_thumbnail_sponsortitle_value;
|
|
2165
|
-
|
|
2166
|
-
const block = {
|
|
2167
|
-
c: function create() {
|
|
2168
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
2169
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsorurl", casino_footer_thumbnail_sponsorurl_value = /*sponsorData*/ ctx[18].sponsorUrl);
|
|
2170
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsorimage", casino_footer_thumbnail_sponsorimage_value = /*sponsorData*/ ctx[18].sponsorImage);
|
|
2171
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsortitle", casino_footer_thumbnail_sponsortitle_value = /*sponsorData*/ ctx[18].sponsorTitle);
|
|
2172
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2173
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2174
|
-
add_location(casino_footer_thumbnail, file, 46, 6, 1558);
|
|
2175
|
-
},
|
|
2176
|
-
m: function mount(target, anchor) {
|
|
2177
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
2178
|
-
},
|
|
2179
|
-
p: function update(ctx, dirty) {
|
|
2180
|
-
if (dirty[0] & /*footersponsors*/ 256 && casino_footer_thumbnail_sponsorurl_value !== (casino_footer_thumbnail_sponsorurl_value = /*sponsorData*/ ctx[18].sponsorUrl)) {
|
|
2181
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsorurl", casino_footer_thumbnail_sponsorurl_value);
|
|
2182
|
-
}
|
|
2183
|
-
|
|
2184
|
-
if (dirty[0] & /*footersponsors*/ 256 && casino_footer_thumbnail_sponsorimage_value !== (casino_footer_thumbnail_sponsorimage_value = /*sponsorData*/ ctx[18].sponsorImage)) {
|
|
2185
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsorimage", casino_footer_thumbnail_sponsorimage_value);
|
|
2186
|
-
}
|
|
2187
|
-
|
|
2188
|
-
if (dirty[0] & /*footersponsors*/ 256 && casino_footer_thumbnail_sponsortitle_value !== (casino_footer_thumbnail_sponsortitle_value = /*sponsorData*/ ctx[18].sponsorTitle)) {
|
|
2189
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsortitle", casino_footer_thumbnail_sponsortitle_value);
|
|
2190
|
-
}
|
|
2191
|
-
|
|
2192
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
2193
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2194
|
-
}
|
|
2195
|
-
|
|
2196
|
-
if (dirty[0] & /*target*/ 128) {
|
|
2197
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2198
|
-
}
|
|
2199
|
-
},
|
|
2200
|
-
d: function destroy(detaching) {
|
|
2201
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
2202
|
-
}
|
|
2203
|
-
};
|
|
2204
|
-
|
|
2205
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2206
|
-
block,
|
|
2207
|
-
id: create_each_block.name,
|
|
2208
|
-
type: "each",
|
|
2209
|
-
source: "(46:6) {#each footersponsors as sponsorData}",
|
|
2210
|
-
ctx
|
|
2211
|
-
});
|
|
2212
|
-
|
|
2213
|
-
return block;
|
|
2214
|
-
}
|
|
2215
|
-
|
|
2216
|
-
function create_fragment(ctx) {
|
|
2217
|
-
let div;
|
|
2218
|
-
|
|
2219
|
-
function select_block_type(ctx, dirty) {
|
|
2220
|
-
if (/*sponsorflag*/ ctx[0] && /*footersponsors*/ ctx[8].length) return create_if_block;
|
|
2221
|
-
if (/*paymentflag*/ ctx[1] && /*footerpayment*/ ctx[9].length) return create_if_block_1;
|
|
2222
|
-
if (/*vendorflag*/ ctx[2] && /*footervendors*/ ctx[10].length) return create_if_block_2;
|
|
2223
|
-
if (/*helperflag*/ ctx[3] && /*footerhelperlinks*/ ctx[11].length) return create_if_block_3;
|
|
2224
|
-
if (/*licenseflag*/ ctx[4] && /*footerlicenses*/ ctx[12].length) return create_if_block_4;
|
|
2225
|
-
if (/*socialflag*/ ctx[5] && /*footersociallinks*/ ctx[13].length) return create_if_block_5;
|
|
2226
|
-
}
|
|
2227
|
-
|
|
2228
|
-
let current_block_type = select_block_type(ctx);
|
|
2229
|
-
let if_block = current_block_type && current_block_type(ctx);
|
|
2230
|
-
|
|
2231
|
-
const block = {
|
|
2232
|
-
c: function create() {
|
|
2233
|
-
div = element("div");
|
|
2234
|
-
if (if_block) if_block.c();
|
|
2235
|
-
this.c = noop;
|
|
2236
|
-
attr_dev(div, "class", "FooterSectionContainer");
|
|
2237
|
-
add_location(div, file, 42, 0, 1345);
|
|
2238
|
-
},
|
|
2239
|
-
l: function claim(nodes) {
|
|
2240
|
-
throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
|
|
2241
|
-
},
|
|
2242
|
-
m: function mount(target, anchor) {
|
|
2243
|
-
insert_dev(target, div, anchor);
|
|
2244
|
-
if (if_block) if_block.m(div, null);
|
|
2245
|
-
/*div_binding*/ ctx[15](div);
|
|
2246
|
-
},
|
|
2247
|
-
p: function update(ctx, dirty) {
|
|
2248
|
-
if (current_block_type === (current_block_type = select_block_type(ctx)) && if_block) {
|
|
2249
|
-
if_block.p(ctx, dirty);
|
|
2250
|
-
} else {
|
|
2251
|
-
if (if_block) if_block.d(1);
|
|
2252
|
-
if_block = current_block_type && current_block_type(ctx);
|
|
2253
|
-
|
|
2254
|
-
if (if_block) {
|
|
2255
|
-
if_block.c();
|
|
2256
|
-
if_block.m(div, null);
|
|
2257
|
-
}
|
|
2258
|
-
}
|
|
2259
|
-
},
|
|
2260
|
-
i: noop,
|
|
2261
|
-
o: noop,
|
|
2262
|
-
d: function destroy(detaching) {
|
|
2263
|
-
if (detaching) detach_dev(div);
|
|
2264
|
-
|
|
2265
|
-
if (if_block) {
|
|
2266
|
-
if_block.d();
|
|
2267
|
-
}
|
|
2268
|
-
|
|
2269
|
-
/*div_binding*/ ctx[15](null);
|
|
2270
|
-
}
|
|
2271
|
-
};
|
|
2272
|
-
|
|
2273
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2274
|
-
block,
|
|
2275
|
-
id: create_fragment.name,
|
|
2276
|
-
type: "component",
|
|
2277
|
-
source: "",
|
|
2278
|
-
ctx
|
|
2279
|
-
});
|
|
2280
|
-
|
|
2281
|
-
return block;
|
|
2282
|
-
}
|
|
2283
|
-
|
|
2284
|
-
function instance($$self, $$props, $$invalidate) {
|
|
2285
|
-
let { $$slots: slots = {}, $$scope } = $$props;
|
|
2286
|
-
validate_slots("undefined", slots, []);
|
|
2287
|
-
let { sponsorflag = "" } = $$props;
|
|
2288
|
-
let { paymentflag = "" } = $$props;
|
|
2289
|
-
let { vendorflag = "" } = $$props;
|
|
2290
|
-
let { helperflag = "" } = $$props;
|
|
2291
|
-
let { licenseflag = "" } = $$props;
|
|
2292
|
-
let { socialflag = "" } = $$props;
|
|
2293
|
-
let { clientstyling = "" } = $$props;
|
|
2294
|
-
let { target = "" } = $$props;
|
|
2295
|
-
let footersponsors = [];
|
|
2296
|
-
let footerpayment = [];
|
|
2297
|
-
let footervendors = [];
|
|
2298
|
-
let footerhelperlinks = [];
|
|
2299
|
-
let footerlicenses = [];
|
|
2300
|
-
let footersociallinks = [];
|
|
2301
|
-
let footerSectionContainer;
|
|
2302
|
-
|
|
2303
|
-
const messageHandler = e => {
|
|
2304
|
-
if (e.data && e.data.type === "FooterData") {
|
|
2305
|
-
$$invalidate(8, footersponsors = e.data.sponsorsRepeater);
|
|
2306
|
-
$$invalidate(9, footerpayment = e.data.paymentMethodsRepeater);
|
|
2307
|
-
$$invalidate(10, footervendors = e.data.gameVendorsRepeater);
|
|
2308
|
-
$$invalidate(11, footerhelperlinks = e.data.helpLinksRepeater);
|
|
2309
|
-
$$invalidate(12, footerlicenses = e.data.licensesRepeater);
|
|
2310
|
-
$$invalidate(13, footersociallinks = e.data.socialLinksRepeater);
|
|
2311
|
-
}
|
|
2312
|
-
};
|
|
2313
|
-
|
|
2314
|
-
const setClientStyling = () => {
|
|
2315
|
-
let sheet = document.createElement("style");
|
|
2316
|
-
sheet.innerHTML = clientstyling;
|
|
2317
|
-
footerSectionContainer.appendChild(sheet);
|
|
2318
|
-
};
|
|
2319
|
-
|
|
2320
|
-
onMount(() => {
|
|
2321
|
-
window.addEventListener("message", messageHandler, false);
|
|
2322
|
-
|
|
2323
|
-
return () => {
|
|
2324
|
-
window.removeEventListener("message", messageHandler);
|
|
2325
|
-
};
|
|
2326
|
-
});
|
|
2327
|
-
|
|
2328
|
-
const writable_props = [
|
|
2329
|
-
"sponsorflag",
|
|
2330
|
-
"paymentflag",
|
|
2331
|
-
"vendorflag",
|
|
2332
|
-
"helperflag",
|
|
2333
|
-
"licenseflag",
|
|
2334
|
-
"socialflag",
|
|
2335
|
-
"clientstyling",
|
|
2336
|
-
"target"
|
|
2337
|
-
];
|
|
2338
|
-
|
|
2339
|
-
Object.keys($$props).forEach(key => {
|
|
2340
|
-
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<undefined> was created with unknown prop '${key}'`);
|
|
2341
|
-
});
|
|
2342
|
-
|
|
2343
|
-
function div_binding($$value) {
|
|
2344
|
-
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
2345
|
-
footerSectionContainer = $$value;
|
|
2346
|
-
$$invalidate(14, footerSectionContainer);
|
|
2347
|
-
});
|
|
2348
|
-
}
|
|
2349
|
-
|
|
2350
|
-
$$self.$$set = $$props => {
|
|
2351
|
-
if ("sponsorflag" in $$props) $$invalidate(0, sponsorflag = $$props.sponsorflag);
|
|
2352
|
-
if ("paymentflag" in $$props) $$invalidate(1, paymentflag = $$props.paymentflag);
|
|
2353
|
-
if ("vendorflag" in $$props) $$invalidate(2, vendorflag = $$props.vendorflag);
|
|
2354
|
-
if ("helperflag" in $$props) $$invalidate(3, helperflag = $$props.helperflag);
|
|
2355
|
-
if ("licenseflag" in $$props) $$invalidate(4, licenseflag = $$props.licenseflag);
|
|
2356
|
-
if ("socialflag" in $$props) $$invalidate(5, socialflag = $$props.socialflag);
|
|
2357
|
-
if ("clientstyling" in $$props) $$invalidate(6, clientstyling = $$props.clientstyling);
|
|
2358
|
-
if ("target" in $$props) $$invalidate(7, target = $$props.target);
|
|
2359
|
-
};
|
|
2360
|
-
|
|
2361
|
-
$$self.$capture_state = () => ({
|
|
2362
|
-
onMount,
|
|
2363
|
-
sponsorflag,
|
|
2364
|
-
paymentflag,
|
|
2365
|
-
vendorflag,
|
|
2366
|
-
helperflag,
|
|
2367
|
-
licenseflag,
|
|
2368
|
-
socialflag,
|
|
2369
|
-
clientstyling,
|
|
2370
|
-
target,
|
|
2371
|
-
footersponsors,
|
|
2372
|
-
footerpayment,
|
|
2373
|
-
footervendors,
|
|
2374
|
-
footerhelperlinks,
|
|
2375
|
-
footerlicenses,
|
|
2376
|
-
footersociallinks,
|
|
2377
|
-
footerSectionContainer,
|
|
2378
|
-
messageHandler,
|
|
2379
|
-
setClientStyling
|
|
2380
|
-
});
|
|
2381
|
-
|
|
2382
|
-
$$self.$inject_state = $$props => {
|
|
2383
|
-
if ("sponsorflag" in $$props) $$invalidate(0, sponsorflag = $$props.sponsorflag);
|
|
2384
|
-
if ("paymentflag" in $$props) $$invalidate(1, paymentflag = $$props.paymentflag);
|
|
2385
|
-
if ("vendorflag" in $$props) $$invalidate(2, vendorflag = $$props.vendorflag);
|
|
2386
|
-
if ("helperflag" in $$props) $$invalidate(3, helperflag = $$props.helperflag);
|
|
2387
|
-
if ("licenseflag" in $$props) $$invalidate(4, licenseflag = $$props.licenseflag);
|
|
2388
|
-
if ("socialflag" in $$props) $$invalidate(5, socialflag = $$props.socialflag);
|
|
2389
|
-
if ("clientstyling" in $$props) $$invalidate(6, clientstyling = $$props.clientstyling);
|
|
2390
|
-
if ("target" in $$props) $$invalidate(7, target = $$props.target);
|
|
2391
|
-
if ("footersponsors" in $$props) $$invalidate(8, footersponsors = $$props.footersponsors);
|
|
2392
|
-
if ("footerpayment" in $$props) $$invalidate(9, footerpayment = $$props.footerpayment);
|
|
2393
|
-
if ("footervendors" in $$props) $$invalidate(10, footervendors = $$props.footervendors);
|
|
2394
|
-
if ("footerhelperlinks" in $$props) $$invalidate(11, footerhelperlinks = $$props.footerhelperlinks);
|
|
2395
|
-
if ("footerlicenses" in $$props) $$invalidate(12, footerlicenses = $$props.footerlicenses);
|
|
2396
|
-
if ("footersociallinks" in $$props) $$invalidate(13, footersociallinks = $$props.footersociallinks);
|
|
2397
|
-
if ("footerSectionContainer" in $$props) $$invalidate(14, footerSectionContainer = $$props.footerSectionContainer);
|
|
2398
|
-
};
|
|
2399
|
-
|
|
2400
|
-
if ($$props && "$$inject" in $$props) {
|
|
2401
|
-
$$self.$inject_state($$props.$$inject);
|
|
2402
|
-
}
|
|
2403
|
-
|
|
2404
|
-
$$self.$$.update = () => {
|
|
2405
|
-
if ($$self.$$.dirty[0] & /*clientstyling*/ 64) {
|
|
2406
|
-
clientstyling && setClientStyling();
|
|
2407
|
-
}
|
|
2408
|
-
};
|
|
2409
|
-
|
|
2410
|
-
return [
|
|
2411
|
-
sponsorflag,
|
|
2412
|
-
paymentflag,
|
|
2413
|
-
vendorflag,
|
|
2414
|
-
helperflag,
|
|
2415
|
-
licenseflag,
|
|
2416
|
-
socialflag,
|
|
2417
|
-
clientstyling,
|
|
2418
|
-
target,
|
|
2419
|
-
footersponsors,
|
|
2420
|
-
footerpayment,
|
|
2421
|
-
footervendors,
|
|
2422
|
-
footerhelperlinks,
|
|
2423
|
-
footerlicenses,
|
|
2424
|
-
footersociallinks,
|
|
2425
|
-
footerSectionContainer,
|
|
2426
|
-
div_binding
|
|
2427
|
-
];
|
|
2428
|
-
}
|
|
2429
|
-
|
|
2430
|
-
class CasinoFooterSection extends SvelteElement {
|
|
2431
|
-
constructor(options) {
|
|
2432
|
-
super();
|
|
2433
|
-
this.shadowRoot.innerHTML = `<style>.FooterSectionInnerContainer{display:flex;flex-wrap:wrap;align-items:center;justify-content:center}</style>`;
|
|
2434
|
-
|
|
2435
|
-
init(
|
|
2436
|
-
this,
|
|
2437
|
-
{
|
|
2438
|
-
target: this.shadowRoot,
|
|
2439
|
-
props: attribute_to_object(this.attributes),
|
|
2440
|
-
customElement: true
|
|
2441
|
-
},
|
|
2442
|
-
instance,
|
|
2443
|
-
create_fragment,
|
|
2444
|
-
safe_not_equal,
|
|
2445
|
-
{
|
|
2446
|
-
sponsorflag: 0,
|
|
2447
|
-
paymentflag: 1,
|
|
2448
|
-
vendorflag: 2,
|
|
2449
|
-
helperflag: 3,
|
|
2450
|
-
licenseflag: 4,
|
|
2451
|
-
socialflag: 5,
|
|
2452
|
-
clientstyling: 6,
|
|
2453
|
-
target: 7
|
|
2454
|
-
},
|
|
2455
|
-
[-1, -1]
|
|
2456
|
-
);
|
|
2457
|
-
|
|
2458
|
-
if (options) {
|
|
2459
|
-
if (options.target) {
|
|
2460
|
-
insert_dev(options.target, this, options.anchor);
|
|
2461
|
-
}
|
|
2462
|
-
|
|
2463
|
-
if (options.props) {
|
|
2464
|
-
this.$set(options.props);
|
|
2465
|
-
flush();
|
|
2466
|
-
}
|
|
2467
|
-
}
|
|
2468
|
-
}
|
|
2469
|
-
|
|
2470
|
-
static get observedAttributes() {
|
|
2471
|
-
return [
|
|
2472
|
-
"sponsorflag",
|
|
2473
|
-
"paymentflag",
|
|
2474
|
-
"vendorflag",
|
|
2475
|
-
"helperflag",
|
|
2476
|
-
"licenseflag",
|
|
2477
|
-
"socialflag",
|
|
2478
|
-
"clientstyling",
|
|
2479
|
-
"target"
|
|
2480
|
-
];
|
|
2481
|
-
}
|
|
2482
|
-
|
|
2483
|
-
get sponsorflag() {
|
|
2484
|
-
return this.$$.ctx[0];
|
|
2485
|
-
}
|
|
2486
|
-
|
|
2487
|
-
set sponsorflag(sponsorflag) {
|
|
2488
|
-
this.$set({ sponsorflag });
|
|
2489
|
-
flush();
|
|
2490
|
-
}
|
|
2491
|
-
|
|
2492
|
-
get paymentflag() {
|
|
2493
|
-
return this.$$.ctx[1];
|
|
2494
|
-
}
|
|
2495
|
-
|
|
2496
|
-
set paymentflag(paymentflag) {
|
|
2497
|
-
this.$set({ paymentflag });
|
|
2498
|
-
flush();
|
|
2499
|
-
}
|
|
2500
|
-
|
|
2501
|
-
get vendorflag() {
|
|
2502
|
-
return this.$$.ctx[2];
|
|
2503
|
-
}
|
|
2504
|
-
|
|
2505
|
-
set vendorflag(vendorflag) {
|
|
2506
|
-
this.$set({ vendorflag });
|
|
2507
|
-
flush();
|
|
2508
|
-
}
|
|
2509
|
-
|
|
2510
|
-
get helperflag() {
|
|
2511
|
-
return this.$$.ctx[3];
|
|
2512
|
-
}
|
|
2513
|
-
|
|
2514
|
-
set helperflag(helperflag) {
|
|
2515
|
-
this.$set({ helperflag });
|
|
2516
|
-
flush();
|
|
2517
|
-
}
|
|
2518
|
-
|
|
2519
|
-
get licenseflag() {
|
|
2520
|
-
return this.$$.ctx[4];
|
|
2521
|
-
}
|
|
2522
|
-
|
|
2523
|
-
set licenseflag(licenseflag) {
|
|
2524
|
-
this.$set({ licenseflag });
|
|
2525
|
-
flush();
|
|
2526
|
-
}
|
|
2527
|
-
|
|
2528
|
-
get socialflag() {
|
|
2529
|
-
return this.$$.ctx[5];
|
|
2530
|
-
}
|
|
2531
|
-
|
|
2532
|
-
set socialflag(socialflag) {
|
|
2533
|
-
this.$set({ socialflag });
|
|
2534
|
-
flush();
|
|
2535
|
-
}
|
|
2536
|
-
|
|
2537
|
-
get clientstyling() {
|
|
2538
|
-
return this.$$.ctx[6];
|
|
2539
|
-
}
|
|
2540
|
-
|
|
2541
|
-
set clientstyling(clientstyling) {
|
|
2542
|
-
this.$set({ clientstyling });
|
|
2543
|
-
flush();
|
|
2544
|
-
}
|
|
2545
|
-
|
|
2546
|
-
get target() {
|
|
2547
|
-
return this.$$.ctx[7];
|
|
2548
|
-
}
|
|
2549
|
-
|
|
2550
|
-
set target(target) {
|
|
2551
|
-
this.$set({ target });
|
|
2552
|
-
flush();
|
|
2553
|
-
}
|
|
2554
|
-
}
|
|
2555
|
-
|
|
2556
|
-
!customElements.get('casino-footer-section') && customElements.define('casino-footer-section', CasinoFooterSection);
|
|
2557
|
-
|
|
2558
|
-
return CasinoFooterSection;
|
|
2559
|
-
|
|
2560
|
-
})));
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).app=t()}(this,function(){"use strict";function u(){}function m(e){return e()}function p(){return Object.create(null)}function h(e){e.forEach(m)}function d(e){return"function"==typeof e}function t(e,t){return e!=e?t==t:e!==t||e&&"object"==typeof e||"function"==typeof e}function c(e,t){e.appendChild(t)}function g(e,t,n){e.insertBefore(t,n||null)}function f(e){e.parentNode.removeChild(e)}function n(t,n){for(let e=0;e<t.length;e+=1)t[e]&&t[e].d(n)}function $(e){return document.createElement(e)}function i(e){return document.createTextNode(e)}function k(){return i(" ")}function y(e,t,n){null==n?e.removeAttribute(t):e.getAttribute(t)!==n&&e.setAttribute(t,n)}function o(e,t,n){t in e?e[t]=n:y(e,t,n)}function r(e,t){e.wholeText!==(t=""+t)&&(e.data=t)}function l(e){const t={};for(const n of e)t[n.name]=n.value;return t}let F;function v(e){F=e}const x=[],b=[],s=[],e=[],I=Promise.resolve();let L=!1;function T(e){s.push(e)}let a=!1;const _=new Set;function S(){if(!a){a=!0;do{for(let e=0;e<x.length;e+=1){var t=x[e];v(t),function(e){{var t;null!==e.fragment&&(e.update(),h(e.before_update),t=e.dirty,e.dirty=[-1],e.fragment&&e.fragment.p(e.ctx,t),e.after_update.forEach(T))}}(t.$$)}for(v(null),x.length=0;b.length;)b.pop()();for(let e=0;e<s.length;e+=1){const n=s[e];_.has(n)||(_.add(n),n())}}while(s.length=0,x.length);for(;e.length;)e.pop()();L=!1,a=!1,_.clear()}}const w=new Set;function A(l,e,t,n,i,r,o=[-1]){var s,a=F;v(l);const c=l.$$={fragment:null,ctx:null,props:r,update:u,not_equal:i,bound:p(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(a?a.$$.context:e.context||[]),callbacks:p(),dirty:o,skip_bound:!1};let g=!1;if(c.ctx=t?t(l,e.props||{},(e,t,...n)=>{n=n.length?n[0]:t;return c.ctx&&i(c.ctx[e],c.ctx[e]=n)&&(!c.skip_bound&&c.bound[e]&&c.bound[e](n),g&&(n=e,-1===(e=l).$$.dirty[0]&&(x.push(e),L||(L=!0,I.then(S)),e.$$.dirty.fill(0)),e.$$.dirty[n/31|0]|=1<<n%31)),t}):[],c.update(),g=!0,h(c.before_update),c.fragment=!!n&&n(c.ctx),e.target){if(e.hydrate){const u=(n=e.target,Array.from(n.childNodes));c.fragment&&c.fragment.l(u),u.forEach(f)}else c.fragment&&c.fragment.c();e.intro&&(s=l.$$.fragment)&&s.i&&(w.delete(s),s.i(void 0)),function(t,e,n,l){const{fragment:i,on_mount:r,on_destroy:o,after_update:s}=t.$$;i&&i.m(e,n),l||T(()=>{var e=r.map(m).filter(d);o?o.push(...e):h(e),t.$$.on_mount=[]}),s.forEach(T)}(l,e.target,e.anchor,e.customElement),S()}v(a)}let E;function C(e){let n,l,i,r,o,s;return{c(){n=$("div"),l=$("a"),i=$("img"),y(i,"class","FooterImage"),i.src!==(r=e[16])&&y(i,"src",r),y(i,"title",e[17]),y(l,"class",o="FooterLink "+(e[15]?"":"FooterLinkDisabled")+" FooterItemAnchor"),y(l,"href",e[15]),y(l,"target",s=e[18]||"_blank"),y(n,"class","FooterItem SocialItem")},m(e,t){g(e,n,t),c(n,l),c(l,i)},p(e,t){65536&t&&i.src!==(r=e[16])&&y(i,"src",r),131072&t&&y(i,"title",e[17]),32768&t&&o!==(o="FooterLink "+(e[15]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&y(l,"class",o),32768&t&&y(l,"href",e[15]),262144&t&&s!==(s=e[18]||"_blank")&&y(l,"target",s)},d(e){e&&f(n)}}}function D(e){let n,l,i,r,o;return{c(){n=$("div"),l=$("a"),i=$("img"),y(i,"class","FooterImage"),i.src!==(r=e[13])&&y(i,"src",r),y(i,"title",e[14]),y(l,"class",o="FooterLink "+(e[12]?"":"FooterLinkDisabled")+" FooterItemAnchor"),y(l,"href",e[12]),y(l,"target","_blank"),y(n,"class","FooterItem")},m(e,t){g(e,n,t),c(n,l),c(l,i)},p(e,t){8192&t&&i.src!==(r=e[13])&&y(i,"src",r),16384&t&&y(i,"title",e[14]),4096&t&&o!==(o="FooterLink "+(e[12]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&y(l,"class",o),4096&t&&y(l,"href",e[12])},d(e){e&&f(n)}}}function H(e){let n,l,i,r,o,s,a=e[11]&&P(e);return{c(){n=$("div"),l=$("a"),i=$("img"),o=k(),a&&a.c(),y(i,"class","FooterImage"),i.src!==(r=e[10])&&y(i,"src",r),y(i,"title",e[11]),y(l,"class",s=(e[11]?"FooterHelperLink":"")+" "+(e[9]?"":"FooterLinkDisabled")+" FooterItemAnchor"),y(l,"href",e[9]),y(l,"target",e[18]),y(n,"class","FooterItem HelperLinkItem")},m(e,t){g(e,n,t),c(n,l),c(l,i),c(l,o),a&&a.m(l,null)},p(e,t){1024&t&&i.src!==(r=e[10])&&y(i,"src",r),2048&t&&y(i,"title",e[11]),e[11]?a?a.p(e,t):(a=P(e),a.c(),a.m(l,null)):a&&(a.d(1),a=null),2560&t&&s!==(s=(e[11]?"FooterHelperLink":"")+" "+(e[9]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&y(l,"class",s),512&t&&y(l,"href",e[9]),262144&t&&y(l,"target",e[18])},d(e){e&&f(n),a&&a.d()}}}function M(e){let n,l,i,r,o;return{c(){n=$("div"),l=$("a"),i=$("img"),y(i,"class","FooterImage"),i.src!==(r=e[7])&&y(i,"src",r),y(i,"title",e[8]),y(l,"href",e[6]),y(l,"class",o=(e[6]?"":"FooterLinkDisabled")+" FooterItemAnchor"),y(l,"target","_blank"),y(n,"class","FooterItem GameVendorItem")},m(e,t){g(e,n,t),c(n,l),c(l,i)},p(e,t){128&t&&i.src!==(r=e[7])&&y(i,"src",r),256&t&&y(i,"title",e[8]),64&t&&y(l,"href",e[6]),64&t&&o!==(o=(e[6]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&y(l,"class",o)},d(e){e&&f(n)}}}function U(e){let n,l,i,r,o,s,a=e[5]&&V(e);return{c(){n=$("div"),l=$("a"),i=$("img"),o=k(),a&&a.c(),y(i,"class","FooterImage"),i.src!==(r=e[4])&&y(i,"src",r),y(i,"title",e[5]),y(l,"class",s=(e[5]?"FooterPaymentLink":"")+" "+(e[3]?"":"FooterLinkDisabled")+" FooterItemAnchor"),y(l,"href",e[3]),y(l,"target","_blank"),y(n,"class","FooterItem PaymentItem")},m(e,t){g(e,n,t),c(n,l),c(l,i),c(l,o),a&&a.m(l,null)},p(e,t){16&t&&i.src!==(r=e[4])&&y(i,"src",r),32&t&&y(i,"title",e[5]),e[5]?a?a.p(e,t):(a=V(e),a.c(),a.m(l,null)):a&&(a.d(1),a=null),40&t&&s!==(s=(e[5]?"FooterPaymentLink":"")+" "+(e[3]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&y(l,"class",s),8&t&&y(l,"href",e[3])},d(e){e&&f(n),a&&a.d()}}}function R(e){let n,l,i,r,o,s,a=e[2]&&j(e);return{c(){n=$("div"),l=$("a"),i=$("img"),o=k(),a&&a.c(),y(i,"class","FooterImage"),i.src!==(r=e[1])&&y(i,"src",r),y(i,"title",e[1]),y(l,"class",s=(e[2]?"FooterSponsorLink":"")+" "+(e[0]?"":"FooterLinkDisabled")+" FooterItemAnchor"),y(l,"href",e[0]),y(l,"target","_blank"),y(n,"class","FooterItem SponsorItem")},m(e,t){g(e,n,t),c(n,l),c(l,i),c(l,o),a&&a.m(l,null)},p(e,t){2&t&&i.src!==(r=e[1])&&y(i,"src",r),2&t&&y(i,"title",e[1]),e[2]?a?a.p(e,t):(a=j(e),a.c(),a.m(l,null)):a&&(a.d(1),a=null),5&t&&s!==(s=(e[2]?"FooterSponsorLink":"")+" "+(e[0]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&y(l,"class",s),1&t&&y(l,"href",e[0])},d(e){e&&f(n),a&&a.d()}}}function P(e){let n,l;return{c(){n=$("p"),l=i(e[11]),y(n,"class","HelperTitle")},m(e,t){g(e,n,t),c(n,l)},p(e,t){2048&t&&r(l,e[11])},d(e){e&&f(n)}}}function V(e){let n,l;return{c(){n=$("p"),l=i(e[5]),y(n,"class","PaymentTitle")},m(e,t){g(e,n,t),c(n,l)},p(e,t){32&t&&r(l,e[5])},d(e){e&&f(n)}}}function j(e){let n,l;return{c(){n=$("p"),l=i(e[2]),y(n,"class","SponsorTitle")},m(e,t){g(e,n,t),c(n,l)},p(e,t){4&t&&r(l,e[2])},d(e){e&&f(n)}}}function z(n){let l;function i(e){return e[1]?R:e[4]?U:e[7]?M:e[10]?H:e[13]?D:e[16]?C:void 0}let r=i(n),o=r&&r(n);return{c(){l=$("div"),o&&o.c(),this.c=u,y(l,"class","ThumbnailContainer")},m(e,t){g(e,l,t),o&&o.m(l,null),n[21](l)},p(e,[t]){r===(r=i(e))&&o?o.p(e,t):(o&&o.d(1),o=r&&r(e),o&&(o.c(),o.m(l,null)))},i:u,o:u,d(e){e&&f(l),o&&o.d(),n[21](null)}}}function N(e,t,n){let l,{sponsorurl:i=""}=t,{sponsorimage:r=""}=t,{sponsortitle:o=""}=t,{paymenturl:s=""}=t,{paymentimage:a=""}=t,{paymenttitle:c=""}=t,{vendorurl:g=""}=t,{vendorimage:u=""}=t,{vendortitle:m=""}=t,{helperlinkurl:p=""}=t,{helperlinkimage:h=""}=t,{helperlinktitle:d=""}=t,{licenseurl:f=""}=t,{licenseimage:$=""}=t,{licensetitle:k=""}=t,{sociallinkurl:y=""}=t,{sociallinkimage:F=""}=t,{sociallinktitle:v=""}=t,{clientstyling:x=""}=t,{target:I="_self"}=t;return e.$$set=e=>{"sponsorurl"in e&&n(0,i=e.sponsorurl),"sponsorimage"in e&&n(1,r=e.sponsorimage),"sponsortitle"in e&&n(2,o=e.sponsortitle),"paymenturl"in e&&n(3,s=e.paymenturl),"paymentimage"in e&&n(4,a=e.paymentimage),"paymenttitle"in e&&n(5,c=e.paymenttitle),"vendorurl"in e&&n(6,g=e.vendorurl),"vendorimage"in e&&n(7,u=e.vendorimage),"vendortitle"in e&&n(8,m=e.vendortitle),"helperlinkurl"in e&&n(9,p=e.helperlinkurl),"helperlinkimage"in e&&n(10,h=e.helperlinkimage),"helperlinktitle"in e&&n(11,d=e.helperlinktitle),"licenseurl"in e&&n(12,f=e.licenseurl),"licenseimage"in e&&n(13,$=e.licenseimage),"licensetitle"in e&&n(14,k=e.licensetitle),"sociallinkurl"in e&&n(15,y=e.sociallinkurl),"sociallinkimage"in e&&n(16,F=e.sociallinkimage),"sociallinktitle"in e&&n(17,v=e.sociallinktitle),"clientstyling"in e&&n(20,x=e.clientstyling),"target"in e&&n(18,I=e.target)},e.$$.update=()=>{1048576&e.$$.dirty&&x&&(()=>{let e=document.createElement("style");e.innerHTML=x,l.appendChild(e)})()},[i,r,o,s,a,c,g,u,m,p,h,d,f,$,k,y,F,v,I,l,x,function(e){b[e?"unshift":"push"](()=>{l=e,n(19,l)})}]}function O(e,t,n){const l=e.slice();return l[24]=t[n],l}function G(e,t,n){const l=e.slice();return l[24]=t[n],l}function q(e,t,n){const l=e.slice();return l[24]=t[n],l}function B(e,t,n){const l=e.slice();return l[24]=t[n],l}function J(e,t,n){const l=e.slice();return l[21]=t[n],l}function K(e,t,n){const l=e.slice();return l[18]=t[n],l}function Q(t){let i,r=t[13],o=[];for(let e=0;e<r.length;e+=1)o[e]=te(O(t,r,e));return{c(){i=$("div");for(let e=0;e<o.length;e+=1)o[e].c();y(i,"class","FooterSectionInnerContainer")},m(e,t){g(e,i,t);for(let e=0;e<o.length;e+=1)o[e].m(i,null)},p(t,n){if(8384&n[0]){let e;for(r=t[13],e=0;e<r.length;e+=1){var l=O(t,r,e);o[e]?o[e].p(l,n):(o[e]=te(l),o[e].c(),o[e].m(i,null))}for(;e<o.length;e+=1)o[e].d(1);o.length=r.length}},d(e){e&&f(i),n(o,e)}}}function W(t){let i,r=t[12],o=[];for(let e=0;e<r.length;e+=1)o[e]=ne(G(t,r,e));return{c(){i=$("div");for(let e=0;e<o.length;e+=1)o[e].c();y(i,"class","FooterSectionInnerContainer")},m(e,t){g(e,i,t);for(let e=0;e<o.length;e+=1)o[e].m(i,null)},p(t,n){if(4288&n[0]){let e;for(r=t[12],e=0;e<r.length;e+=1){var l=G(t,r,e);o[e]?o[e].p(l,n):(o[e]=ne(l),o[e].c(),o[e].m(i,null))}for(;e<o.length;e+=1)o[e].d(1);o.length=r.length}},d(e){e&&f(i),n(o,e)}}}function X(t){let i,r=t[11],o=[];for(let e=0;e<r.length;e+=1)o[e]=le(q(t,r,e));return{c(){i=$("div");for(let e=0;e<o.length;e+=1)o[e].c();y(i,"class","FooterSectionInnerContainer")},m(e,t){g(e,i,t);for(let e=0;e<o.length;e+=1)o[e].m(i,null)},p(t,n){if(2240&n[0]){let e;for(r=t[11],e=0;e<r.length;e+=1){var l=q(t,r,e);o[e]?o[e].p(l,n):(o[e]=le(l),o[e].c(),o[e].m(i,null))}for(;e<o.length;e+=1)o[e].d(1);o.length=r.length}},d(e){e&&f(i),n(o,e)}}}function Y(t){let i,r=t[10],o=[];for(let e=0;e<r.length;e+=1)o[e]=ie(B(t,r,e));return{c(){i=$("div");for(let e=0;e<o.length;e+=1)o[e].c();y(i,"class","FooterSectionInnerContainer")},m(e,t){g(e,i,t);for(let e=0;e<o.length;e+=1)o[e].m(i,null)},p(t,n){if(1216&n[0]){let e;for(r=t[10],e=0;e<r.length;e+=1){var l=B(t,r,e);o[e]?o[e].p(l,n):(o[e]=ie(l),o[e].c(),o[e].m(i,null))}for(;e<o.length;e+=1)o[e].d(1);o.length=r.length}},d(e){e&&f(i),n(o,e)}}}function Z(t){let i,r=t[9],o=[];for(let e=0;e<r.length;e+=1)o[e]=re(J(t,r,e));return{c(){i=$("div");for(let e=0;e<o.length;e+=1)o[e].c();y(i,"class","FooterSectionInnerContainer")},m(e,t){g(e,i,t);for(let e=0;e<o.length;e+=1)o[e].m(i,null)},p(t,n){if(704&n[0]){let e;for(r=t[9],e=0;e<r.length;e+=1){var l=J(t,r,e);o[e]?o[e].p(l,n):(o[e]=re(l),o[e].c(),o[e].m(i,null))}for(;e<o.length;e+=1)o[e].d(1);o.length=r.length}},d(e){e&&f(i),n(o,e)}}}function ee(t){let i,r=t[8],o=[];for(let e=0;e<r.length;e+=1)o[e]=oe(K(t,r,e));return{c(){i=$("div");for(let e=0;e<o.length;e+=1)o[e].c();y(i,"class","FooterSectionInnerContainer")},m(e,t){g(e,i,t);for(let e=0;e<o.length;e+=1)o[e].m(i,null)},p(t,n){if(448&n[0]){let e;for(r=t[8],e=0;e<r.length;e+=1){var l=K(t,r,e);o[e]?o[e].p(l,n):(o[e]=oe(l),o[e].c(),o[e].m(i,null))}for(;e<o.length;e+=1)o[e].d(1);o.length=r.length}},d(e){e&&f(i),n(o,e)}}}function te(e){let n,l,i,r;return{c(){n=$("casino-footer-thumbnail"),o(n,"sociallinkurl",l=e[24].socialLinkUrl),o(n,"sociallinkimage",i=e[24].socialLinkImage),o(n,"sociallinktitle",r=e[24].socialLinkTitle),o(n,"clientstyling",e[6]),o(n,"target",e[7])},m(e,t){g(e,n,t)},p(e,t){8192&t[0]&&l!==(l=e[24].socialLinkUrl)&&o(n,"sociallinkurl",l),8192&t[0]&&i!==(i=e[24].socialLinkImage)&&o(n,"sociallinkimage",i),8192&t[0]&&r!==(r=e[24].socialLinkTitle)&&o(n,"sociallinktitle",r),64&t[0]&&o(n,"clientstyling",e[6]),128&t[0]&&o(n,"target",e[7])},d(e){e&&f(n)}}}function ne(e){let n,l,i,r;return{c(){n=$("casino-footer-thumbnail"),o(n,"licenseurl",l=e[24].licenseUrl),o(n,"licenseimage",i=e[24].licenseImage),o(n,"licensetitle",r=e[24].licenseTitle),o(n,"clientstyling",e[6]),o(n,"target",e[7])},m(e,t){g(e,n,t)},p(e,t){4096&t[0]&&l!==(l=e[24].licenseUrl)&&o(n,"licenseurl",l),4096&t[0]&&i!==(i=e[24].licenseImage)&&o(n,"licenseimage",i),4096&t[0]&&r!==(r=e[24].licenseTitle)&&o(n,"licensetitle",r),64&t[0]&&o(n,"clientstyling",e[6]),128&t[0]&&o(n,"target",e[7])},d(e){e&&f(n)}}}function le(e){let n,l,i,r;return{c(){n=$("casino-footer-thumbnail"),o(n,"helperlinkurl",l=e[24].helpLinkUrl),o(n,"helperlinkimage",i=e[24].helpLinkImage),o(n,"helperlinktitle",r=e[24].helpLinkTitle),o(n,"clientstyling",e[6]),o(n,"target",e[7])},m(e,t){g(e,n,t)},p(e,t){2048&t[0]&&l!==(l=e[24].helpLinkUrl)&&o(n,"helperlinkurl",l),2048&t[0]&&i!==(i=e[24].helpLinkImage)&&o(n,"helperlinkimage",i),2048&t[0]&&r!==(r=e[24].helpLinkTitle)&&o(n,"helperlinktitle",r),64&t[0]&&o(n,"clientstyling",e[6]),128&t[0]&&o(n,"target",e[7])},d(e){e&&f(n)}}}function ie(e){let n,l,i,r;return{c(){n=$("casino-footer-thumbnail"),o(n,"vendorurl",l=e[24].gameVendorUrl),o(n,"vendorimage",i=e[24].gameVendorImage),o(n,"vendortitle",r=e[24].gameVendorTitle),o(n,"clientstyling",e[6]),o(n,"target",e[7])},m(e,t){g(e,n,t)},p(e,t){1024&t[0]&&l!==(l=e[24].gameVendorUrl)&&o(n,"vendorurl",l),1024&t[0]&&i!==(i=e[24].gameVendorImage)&&o(n,"vendorimage",i),1024&t[0]&&r!==(r=e[24].gameVendorTitle)&&o(n,"vendortitle",r),64&t[0]&&o(n,"clientstyling",e[6]),128&t[0]&&o(n,"target",e[7])},d(e){e&&f(n)}}}function re(e){let n,l,i,r;return{c(){n=$("casino-footer-thumbnail"),o(n,"paymenturl",l=e[21].paymentMethodUrl),o(n,"paymentimage",i=e[21].paymentMethodImage),o(n,"paymenttitle",r=e[21].paymentMethodTitle),o(n,"clientstyling",e[6]),o(n,"target",e[7])},m(e,t){g(e,n,t)},p(e,t){512&t[0]&&l!==(l=e[21].paymentMethodUrl)&&o(n,"paymenturl",l),512&t[0]&&i!==(i=e[21].paymentMethodImage)&&o(n,"paymentimage",i),512&t[0]&&r!==(r=e[21].paymentMethodTitle)&&o(n,"paymenttitle",r),64&t[0]&&o(n,"clientstyling",e[6]),128&t[0]&&o(n,"target",e[7])},d(e){e&&f(n)}}}function oe(e){let n,l,i,r;return{c(){n=$("casino-footer-thumbnail"),o(n,"sponsorurl",l=e[18].sponsorUrl),o(n,"sponsorimage",i=e[18].sponsorImage),o(n,"sponsortitle",r=e[18].sponsorTitle),o(n,"clientstyling",e[6]),o(n,"target",e[7])},m(e,t){g(e,n,t)},p(e,t){256&t[0]&&l!==(l=e[18].sponsorUrl)&&o(n,"sponsorurl",l),256&t[0]&&i!==(i=e[18].sponsorImage)&&o(n,"sponsorimage",i),256&t[0]&&r!==(r=e[18].sponsorTitle)&&o(n,"sponsortitle",r),64&t[0]&&o(n,"clientstyling",e[6]),128&t[0]&&o(n,"target",e[7])},d(e){e&&f(n)}}}function se(n){let l;function i(e){return e[0]&&e[8].length?ee:e[1]&&e[9].length?Z:e[2]&&e[10].length?Y:e[3]&&e[11].length?X:e[4]&&e[12].length?W:e[5]&&e[13].length?Q:void 0}let r=i(n),o=r&&r(n);return{c(){l=$("div"),o&&o.c(),this.c=u,y(l,"class","FooterSectionContainer")},m(e,t){g(e,l,t),o&&o.m(l,null),n[15](l)},p(e,t){r===(r=i(e))&&o?o.p(e,t):(o&&o.d(1),o=r&&r(e),o&&(o.c(),o.m(l,null)))},i:u,o:u,d(e){e&&f(l),o&&o.d(),n[15](null)}}}function ae(e,t,n){let l,{sponsorflag:i=""}=t,{paymentflag:r=""}=t,{vendorflag:o=""}=t,{helperflag:s=""}=t,{licenseflag:a=""}=t,{socialflag:c=""}=t,{clientstyling:g=""}=t,{target:u=""}=t,m=[],p=[],h=[],d=[],f=[],$=[];const k=e=>{e.data&&"FooterData"===e.data.type&&(n(8,m=e.data.sponsorsRepeater),n(9,p=e.data.paymentMethodsRepeater),n(10,h=e.data.gameVendorsRepeater),n(11,d=e.data.helpLinksRepeater),n(12,f=e.data.licensesRepeater),n(13,$=e.data.socialLinksRepeater))};return t=()=>(window.addEventListener("message",k,!1),()=>{window.removeEventListener("message",k)}),function(){if(!F)throw new Error("Function called outside component initialization");return F}().$$.on_mount.push(t),e.$$set=e=>{"sponsorflag"in e&&n(0,i=e.sponsorflag),"paymentflag"in e&&n(1,r=e.paymentflag),"vendorflag"in e&&n(2,o=e.vendorflag),"helperflag"in e&&n(3,s=e.helperflag),"licenseflag"in e&&n(4,a=e.licenseflag),"socialflag"in e&&n(5,c=e.socialflag),"clientstyling"in e&&n(6,g=e.clientstyling),"target"in e&&n(7,u=e.target)},e.$$.update=()=>{64&e.$$.dirty[0]&&g&&(()=>{let e=document.createElement("style");e.innerHTML=g,l.appendChild(e)})()},[i,r,o,s,a,c,g,u,m,p,h,d,f,$,l,function(e){b[e?"unshift":"push"](()=>{l=e,n(14,l)})}]}"function"==typeof HTMLElement&&(E=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:e}=this.$$;this.$$.on_disconnect=e.map(m).filter(d);for(const e in this.$$.slotted)this.appendChild(this.$$.slotted[e])}attributeChangedCallback(e,t,n){this[e]=n}disconnectedCallback(){h(this.$$.on_disconnect)}$destroy(){!function(e){const t=e.$$;null!==t.fragment&&(h(t.on_destroy),t.fragment&&t.fragment.d(1),t.on_destroy=t.fragment=null,t.ctx=[])}(this),this.$destroy=u}$on(e,t){const n=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return n.push(t),()=>{var e=n.indexOf(t);-1!==e&&n.splice(e,1)}}$set(e){this.$$set&&0!==Object.keys(e).length&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}}),customElements.get("casino-footer-thumbnail")||customElements.define("casino-footer-thumbnail",class extends E{constructor(e){super(),this.shadowRoot.innerHTML="<style>.FooterItem{display:inline-block;padding:0 15.008px}.FooterItem .FooterSponsorLink,.FooterItem .FooterPaymentLink{display:block}.FooterItem .FooterSponsorLink{display:flex;align-items:center}.FooterItem .FooterPaymentLink,.FooterItem .FooterHelperLink{display:flex;align-items:center;justify-content:center}.FooterItem .FooterLinkDisabled{pointer-events:none;cursor:auto}.FooterItem .SponsorTitle,.FooterItem .PaymentTitle,.FooterItem .HelperTitle{font-size:9.008px;text-decoration:none;color:#808080;text-align:center}.FooterItem .HelperTitle{font-size:8px}.FooterItem.HelperLinkItem p{font-size:10px}.FooterItem .FooterItemAnchor{display:flex;flex-direction:column;gap:10px;text-decoration:none}.SponsorTitle{margin:0}.FooterLink{display:block;text-align:center}@media only screen and (max-width: 768px){.FooterItem{padding:0 5.008px}.FooterItem.PaymentItem{padding:15.008px 5.008px}.FooterItem.GameVendorItem{padding:0 10px}}</style>",A(this,{target:this.shadowRoot,props:l(this.attributes),customElement:!0},N,z,t,{sponsorurl:0,sponsorimage:1,sponsortitle:2,paymenturl:3,paymentimage:4,paymenttitle:5,vendorurl:6,vendorimage:7,vendortitle:8,helperlinkurl:9,helperlinkimage:10,helperlinktitle:11,licenseurl:12,licenseimage:13,licensetitle:14,sociallinkurl:15,sociallinkimage:16,sociallinktitle:17,clientstyling:20,target:18}),e&&(e.target&&g(e.target,this,e.anchor),e.props&&(this.$set(e.props),S()))}static get observedAttributes(){return["sponsorurl","sponsorimage","sponsortitle","paymenturl","paymentimage","paymenttitle","vendorurl","vendorimage","vendortitle","helperlinkurl","helperlinkimage","helperlinktitle","licenseurl","licenseimage","licensetitle","sociallinkurl","sociallinkimage","sociallinktitle","clientstyling","target"]}get sponsorurl(){return this.$$.ctx[0]}set sponsorurl(e){this.$set({sponsorurl:e}),S()}get sponsorimage(){return this.$$.ctx[1]}set sponsorimage(e){this.$set({sponsorimage:e}),S()}get sponsortitle(){return this.$$.ctx[2]}set sponsortitle(e){this.$set({sponsortitle:e}),S()}get paymenturl(){return this.$$.ctx[3]}set paymenturl(e){this.$set({paymenturl:e}),S()}get paymentimage(){return this.$$.ctx[4]}set paymentimage(e){this.$set({paymentimage:e}),S()}get paymenttitle(){return this.$$.ctx[5]}set paymenttitle(e){this.$set({paymenttitle:e}),S()}get vendorurl(){return this.$$.ctx[6]}set vendorurl(e){this.$set({vendorurl:e}),S()}get vendorimage(){return this.$$.ctx[7]}set vendorimage(e){this.$set({vendorimage:e}),S()}get vendortitle(){return this.$$.ctx[8]}set vendortitle(e){this.$set({vendortitle:e}),S()}get helperlinkurl(){return this.$$.ctx[9]}set helperlinkurl(e){this.$set({helperlinkurl:e}),S()}get helperlinkimage(){return this.$$.ctx[10]}set helperlinkimage(e){this.$set({helperlinkimage:e}),S()}get helperlinktitle(){return this.$$.ctx[11]}set helperlinktitle(e){this.$set({helperlinktitle:e}),S()}get licenseurl(){return this.$$.ctx[12]}set licenseurl(e){this.$set({licenseurl:e}),S()}get licenseimage(){return this.$$.ctx[13]}set licenseimage(e){this.$set({licenseimage:e}),S()}get licensetitle(){return this.$$.ctx[14]}set licensetitle(e){this.$set({licensetitle:e}),S()}get sociallinkurl(){return this.$$.ctx[15]}set sociallinkurl(e){this.$set({sociallinkurl:e}),S()}get sociallinkimage(){return this.$$.ctx[16]}set sociallinkimage(e){this.$set({sociallinkimage:e}),S()}get sociallinktitle(){return this.$$.ctx[17]}set sociallinktitle(e){this.$set({sociallinktitle:e}),S()}get clientstyling(){return this.$$.ctx[20]}set clientstyling(e){this.$set({clientstyling:e}),S()}get target(){return this.$$.ctx[18]}set target(e){this.$set({target:e}),S()}});class ce extends E{constructor(e){super(),this.shadowRoot.innerHTML="<style>.FooterSectionInnerContainer{display:flex;flex-wrap:wrap;align-items:center;justify-content:center}</style>",A(this,{target:this.shadowRoot,props:l(this.attributes),customElement:!0},ae,se,t,{sponsorflag:0,paymentflag:1,vendorflag:2,helperflag:3,licenseflag:4,socialflag:5,clientstyling:6,target:7},[-1,-1]),e&&(e.target&&g(e.target,this,e.anchor),e.props&&(this.$set(e.props),S()))}static get observedAttributes(){return["sponsorflag","paymentflag","vendorflag","helperflag","licenseflag","socialflag","clientstyling","target"]}get sponsorflag(){return this.$$.ctx[0]}set sponsorflag(e){this.$set({sponsorflag:e}),S()}get paymentflag(){return this.$$.ctx[1]}set paymentflag(e){this.$set({paymentflag:e}),S()}get vendorflag(){return this.$$.ctx[2]}set vendorflag(e){this.$set({vendorflag:e}),S()}get helperflag(){return this.$$.ctx[3]}set helperflag(e){this.$set({helperflag:e}),S()}get licenseflag(){return this.$$.ctx[4]}set licenseflag(e){this.$set({licenseflag:e}),S()}get socialflag(){return this.$$.ctx[5]}set socialflag(e){this.$set({socialflag:e}),S()}get clientstyling(){return this.$$.ctx[6]}set clientstyling(e){this.$set({clientstyling:e}),S()}get target(){return this.$$.ctx[7]}set target(e){this.$set({target:e}),S()}}return customElements.get("casino-footer-section")||customElements.define("casino-footer-section",ce),ce});
|
|
2561
2
|
//# sourceMappingURL=casino-footer-section.js.map
|