@hebcal/core 3.41.4 → 3.42.2

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/bundle.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! @hebcal/core v3.41.3 */
1
+ /*! @hebcal/core v3.42.2 */
2
2
  var hebcal = (function (exports) {
3
3
  'use strict';
4
4
 
@@ -228,7 +228,7 @@ var global$a =
228
228
 
229
229
  var objectGetOwnPropertyDescriptor = {};
230
230
 
231
- var fails$d = function (exec) {
231
+ var fails$e = function (exec) {
232
232
  try {
233
233
  return !!exec();
234
234
  } catch (error) {
@@ -236,17 +236,17 @@ var fails$d = function (exec) {
236
236
  }
237
237
  };
238
238
 
239
- var fails$c = fails$d;
239
+ var fails$d = fails$e;
240
240
 
241
241
  // Detect IE8's incomplete defineProperty implementation
242
- var descriptors = !fails$c(function () {
242
+ var descriptors = !fails$d(function () {
243
243
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
244
244
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
245
245
  });
246
246
 
247
- var fails$b = fails$d;
247
+ var fails$c = fails$e;
248
248
 
249
- var functionBindNative = !fails$b(function () {
249
+ var functionBindNative = !fails$c(function () {
250
250
  // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
251
251
  var test = (function () { /* empty */ }).bind();
252
252
  // eslint-disable-next-line no-prototype-builtins -- safe
@@ -265,15 +265,15 @@ var objectPropertyIsEnumerable = {};
265
265
 
266
266
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
267
267
  // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
268
- var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
268
+ var getOwnPropertyDescriptor$2 = Object.getOwnPropertyDescriptor;
269
269
 
270
270
  // Nashorn ~ JDK8 bug
271
- var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
271
+ var NASHORN_BUG = getOwnPropertyDescriptor$2 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
272
272
 
273
273
  // `Object.prototype.propertyIsEnumerable` method implementation
274
274
  // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
275
275
  objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
276
- var descriptor = getOwnPropertyDescriptor$1(this, V);
276
+ var descriptor = getOwnPropertyDescriptor$2(this, V);
277
277
  return !!descriptor && descriptor.enumerable;
278
278
  } : $propertyIsEnumerable;
279
279
 
@@ -291,56 +291,56 @@ var NATIVE_BIND$1 = functionBindNative;
291
291
  var FunctionPrototype$1 = Function.prototype;
292
292
  var bind$2 = FunctionPrototype$1.bind;
293
293
  var call$6 = FunctionPrototype$1.call;
294
- var uncurryThis$f = NATIVE_BIND$1 && bind$2.bind(call$6, call$6);
294
+ var uncurryThis$h = NATIVE_BIND$1 && bind$2.bind(call$6, call$6);
295
295
 
296
296
  var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
297
- return fn && uncurryThis$f(fn);
297
+ return fn && uncurryThis$h(fn);
298
298
  } : function (fn) {
299
299
  return fn && function () {
300
300
  return call$6.apply(fn, arguments);
301
301
  };
302
302
  };
303
303
 
304
- var uncurryThis$e = functionUncurryThis;
304
+ var uncurryThis$g = functionUncurryThis;
305
305
 
306
- var toString$4 = uncurryThis$e({}.toString);
307
- var stringSlice = uncurryThis$e(''.slice);
306
+ var toString$6 = uncurryThis$g({}.toString);
307
+ var stringSlice$1 = uncurryThis$g(''.slice);
308
308
 
309
309
  var classofRaw$1 = function (it) {
310
- return stringSlice(toString$4(it), 8, -1);
310
+ return stringSlice$1(toString$6(it), 8, -1);
311
311
  };
312
312
 
313
- var uncurryThis$d = functionUncurryThis;
314
- var fails$a = fails$d;
315
- var classof$5 = classofRaw$1;
313
+ var uncurryThis$f = functionUncurryThis;
314
+ var fails$b = fails$e;
315
+ var classof$6 = classofRaw$1;
316
316
 
317
317
  var $Object$3 = Object;
318
- var split = uncurryThis$d(''.split);
318
+ var split = uncurryThis$f(''.split);
319
319
 
320
320
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
321
- var indexedObject = fails$a(function () {
321
+ var indexedObject = fails$b(function () {
322
322
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
323
323
  // eslint-disable-next-line no-prototype-builtins -- safe
324
324
  return !$Object$3('z').propertyIsEnumerable(0);
325
325
  }) ? function (it) {
326
- return classof$5(it) == 'String' ? split(it, '') : $Object$3(it);
326
+ return classof$6(it) == 'String' ? split(it, '') : $Object$3(it);
327
327
  } : $Object$3;
328
328
 
329
- var $TypeError$7 = TypeError;
329
+ var $TypeError$8 = TypeError;
330
330
 
331
331
  // `RequireObjectCoercible` abstract operation
332
332
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
333
- var requireObjectCoercible$3 = function (it) {
334
- if (it == undefined) throw $TypeError$7("Can't call method on " + it);
333
+ var requireObjectCoercible$5 = function (it) {
334
+ if (it == undefined) throw $TypeError$8("Can't call method on " + it);
335
335
  return it;
336
336
  };
337
337
 
338
338
  // toObject with fallback for non-array-like ES3 strings
339
339
  var IndexedObject = indexedObject;
340
- var requireObjectCoercible$2 = requireObjectCoercible$3;
340
+ var requireObjectCoercible$4 = requireObjectCoercible$5;
341
341
 
342
- var toIndexedObject$4 = function (it) {
343
- return IndexedObject(requireObjectCoercible$2(it));
342
+ var toIndexedObject$5 = function (it) {
343
+ return IndexedObject(requireObjectCoercible$4(it));
344
344
  };
345
345
 
346
346
  // `IsCallable` abstract operation
@@ -351,7 +351,7 @@ var isCallable$c = function (argument) {
351
351
 
352
352
  var isCallable$b = isCallable$c;
353
353
 
354
- var isObject$6 = function (it) {
354
+ var isObject$7 = function (it) {
355
355
  return typeof it == 'object' ? it !== null : isCallable$b(it);
356
356
  };
357
357
 
@@ -362,17 +362,17 @@ var aFunction = function (argument) {
362
362
  return isCallable$a(argument) ? argument : undefined;
363
363
  };
364
364
 
365
- var getBuiltIn$4 = function (namespace, method) {
365
+ var getBuiltIn$5 = function (namespace, method) {
366
366
  return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
367
367
  };
368
368
 
369
- var uncurryThis$c = functionUncurryThis;
369
+ var uncurryThis$e = functionUncurryThis;
370
370
 
371
- var objectIsPrototypeOf = uncurryThis$c({}.isPrototypeOf);
371
+ var objectIsPrototypeOf = uncurryThis$e({}.isPrototypeOf);
372
372
 
373
- var getBuiltIn$3 = getBuiltIn$4;
373
+ var getBuiltIn$4 = getBuiltIn$5;
374
374
 
375
- var engineUserAgent = getBuiltIn$3('navigator', 'userAgent') || '';
375
+ var engineUserAgent = getBuiltIn$4('navigator', 'userAgent') || '';
376
376
 
377
377
  var global$8 = global$a;
378
378
  var userAgent$2 = engineUserAgent;
@@ -405,10 +405,10 @@ var engineV8Version = version$1;
405
405
  /* eslint-disable es-x/no-symbol -- required for testing */
406
406
 
407
407
  var V8_VERSION$1 = engineV8Version;
408
- var fails$9 = fails$d;
408
+ var fails$a = fails$e;
409
409
 
410
410
  // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
411
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$9(function () {
411
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$a(function () {
412
412
  var symbol = Symbol();
413
413
  // Chrome 38 Symbol has incorrect toString conversion
414
414
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -425,7 +425,7 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
425
425
  && !Symbol.sham
426
426
  && typeof Symbol.iterator == 'symbol';
427
427
 
428
- var getBuiltIn$2 = getBuiltIn$4;
428
+ var getBuiltIn$3 = getBuiltIn$5;
429
429
  var isCallable$9 = isCallable$c;
430
430
  var isPrototypeOf = objectIsPrototypeOf;
431
431
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
@@ -435,7 +435,7 @@ var $Object$2 = Object;
435
435
  var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
436
436
  return typeof it == 'symbol';
437
437
  } : function (it) {
438
- var $Symbol = getBuiltIn$2('Symbol');
438
+ var $Symbol = getBuiltIn$3('Symbol');
439
439
  return isCallable$9($Symbol) && isPrototypeOf($Symbol.prototype, $Object$2(it));
440
440
  };
441
441
 
@@ -452,12 +452,12 @@ var tryToString$3 = function (argument) {
452
452
  var isCallable$8 = isCallable$c;
453
453
  var tryToString$2 = tryToString$3;
454
454
 
455
- var $TypeError$6 = TypeError;
455
+ var $TypeError$7 = TypeError;
456
456
 
457
457
  // `Assert: IsCallable(argument) is true`
458
458
  var aCallable$4 = function (argument) {
459
459
  if (isCallable$8(argument)) return argument;
460
- throw $TypeError$6(tryToString$2(argument) + ' is not a function');
460
+ throw $TypeError$7(tryToString$2(argument) + ' is not a function');
461
461
  };
462
462
 
463
463
  var aCallable$3 = aCallable$4;
@@ -471,18 +471,18 @@ var getMethod$3 = function (V, P) {
471
471
 
472
472
  var call$5 = functionCall;
473
473
  var isCallable$7 = isCallable$c;
474
- var isObject$5 = isObject$6;
474
+ var isObject$6 = isObject$7;
475
475
 
476
- var $TypeError$5 = TypeError;
476
+ var $TypeError$6 = TypeError;
477
477
 
478
478
  // `OrdinaryToPrimitive` abstract operation
479
479
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
480
480
  var ordinaryToPrimitive$1 = function (input, pref) {
481
481
  var fn, val;
482
- if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$5(val = call$5(fn, input))) return val;
483
- if (isCallable$7(fn = input.valueOf) && !isObject$5(val = call$5(fn, input))) return val;
484
- if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$5(val = call$5(fn, input))) return val;
485
- throw $TypeError$5("Can't convert object to primitive value");
482
+ if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$5(fn, input))) return val;
483
+ if (isCallable$7(fn = input.valueOf) && !isObject$6(val = call$5(fn, input))) return val;
484
+ if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$6(val = call$5(fn, input))) return val;
485
+ throw $TypeError$6("Can't convert object to primitive value");
486
486
  };
487
487
 
488
488
  var shared$3 = {exports: {}};
@@ -490,11 +490,11 @@ var shared$3 = {exports: {}};
490
490
  var global$7 = global$a;
491
491
 
492
492
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
493
- var defineProperty$1 = Object.defineProperty;
493
+ var defineProperty$2 = Object.defineProperty;
494
494
 
495
495
  var defineGlobalProperty$3 = function (key, value) {
496
496
  try {
497
- defineProperty$1(global$7, key, { value: value, configurable: true, writable: true });
497
+ defineProperty$2(global$7, key, { value: value, configurable: true, writable: true });
498
498
  } catch (error) {
499
499
  global$7[key] = value;
500
500
  } return value;
@@ -513,27 +513,27 @@ var store$2 = sharedStore;
513
513
  (shared$3.exports = function (key, value) {
514
514
  return store$2[key] || (store$2[key] = value !== undefined ? value : {});
515
515
  })('versions', []).push({
516
- version: '3.23.3',
516
+ version: '3.24.1',
517
517
  mode: 'global',
518
518
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
519
- license: 'https://github.com/zloirock/core-js/blob/v3.23.3/LICENSE',
519
+ license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
520
520
  source: 'https://github.com/zloirock/core-js'
521
521
  });
522
522
 
523
- var requireObjectCoercible$1 = requireObjectCoercible$3;
523
+ var requireObjectCoercible$3 = requireObjectCoercible$5;
524
524
 
525
525
  var $Object$1 = Object;
526
526
 
527
527
  // `ToObject` abstract operation
528
528
  // https://tc39.es/ecma262/#sec-toobject
529
529
  var toObject$3 = function (argument) {
530
- return $Object$1(requireObjectCoercible$1(argument));
530
+ return $Object$1(requireObjectCoercible$3(argument));
531
531
  };
532
532
 
533
- var uncurryThis$b = functionUncurryThis;
533
+ var uncurryThis$d = functionUncurryThis;
534
534
  var toObject$2 = toObject$3;
535
535
 
536
- var hasOwnProperty = uncurryThis$b({}.hasOwnProperty);
536
+ var hasOwnProperty = uncurryThis$d({}.hasOwnProperty);
537
537
 
538
538
  // `HasOwnProperty` abstract operation
539
539
  // https://tc39.es/ecma262/#sec-hasownproperty
@@ -542,14 +542,14 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
542
542
  return hasOwnProperty(toObject$2(it), key);
543
543
  };
544
544
 
545
- var uncurryThis$a = functionUncurryThis;
545
+ var uncurryThis$c = functionUncurryThis;
546
546
 
547
547
  var id$1 = 0;
548
548
  var postfix = Math.random();
549
- var toString$3 = uncurryThis$a(1.0.toString);
549
+ var toString$5 = uncurryThis$c(1.0.toString);
550
550
 
551
551
  var uid$2 = function (key) {
552
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id$1 + postfix, 36);
552
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$5(++id$1 + postfix, 36);
553
553
  };
554
554
 
555
555
  var global$5 = global$a;
@@ -564,7 +564,7 @@ var Symbol$1 = global$5.Symbol;
564
564
  var symbolFor = Symbol$1 && Symbol$1['for'];
565
565
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
566
566
 
567
- var wellKnownSymbol$8 = function (name) {
567
+ var wellKnownSymbol$b = function (name) {
568
568
  if (!hasOwn$6(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
569
569
  var description = 'Symbol.' + name;
570
570
  if (NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)) {
@@ -578,26 +578,26 @@ var wellKnownSymbol$8 = function (name) {
578
578
  };
579
579
 
580
580
  var call$4 = functionCall;
581
- var isObject$4 = isObject$6;
581
+ var isObject$5 = isObject$7;
582
582
  var isSymbol$1 = isSymbol$2;
583
583
  var getMethod$2 = getMethod$3;
584
584
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
585
- var wellKnownSymbol$7 = wellKnownSymbol$8;
585
+ var wellKnownSymbol$a = wellKnownSymbol$b;
586
586
 
587
- var $TypeError$4 = TypeError;
588
- var TO_PRIMITIVE = wellKnownSymbol$7('toPrimitive');
587
+ var $TypeError$5 = TypeError;
588
+ var TO_PRIMITIVE = wellKnownSymbol$a('toPrimitive');
589
589
 
590
590
  // `ToPrimitive` abstract operation
591
591
  // https://tc39.es/ecma262/#sec-toprimitive
592
592
  var toPrimitive$1 = function (input, pref) {
593
- if (!isObject$4(input) || isSymbol$1(input)) return input;
593
+ if (!isObject$5(input) || isSymbol$1(input)) return input;
594
594
  var exoticToPrim = getMethod$2(input, TO_PRIMITIVE);
595
595
  var result;
596
596
  if (exoticToPrim) {
597
597
  if (pref === undefined) pref = 'default';
598
598
  result = call$4(exoticToPrim, input, pref);
599
- if (!isObject$4(result) || isSymbol$1(result)) return result;
600
- throw $TypeError$4("Can't convert object to primitive value");
599
+ if (!isObject$5(result) || isSymbol$1(result)) return result;
600
+ throw $TypeError$5("Can't convert object to primitive value");
601
601
  }
602
602
  if (pref === undefined) pref = 'number';
603
603
  return ordinaryToPrimitive(input, pref);
@@ -614,33 +614,33 @@ var toPropertyKey$3 = function (argument) {
614
614
  };
615
615
 
616
616
  var global$4 = global$a;
617
- var isObject$3 = isObject$6;
617
+ var isObject$4 = isObject$7;
618
618
 
619
- var document = global$4.document;
619
+ var document$1 = global$4.document;
620
620
  // typeof document.createElement is 'object' in old IE
621
- var EXISTS$1 = isObject$3(document) && isObject$3(document.createElement);
621
+ var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
622
622
 
623
- var documentCreateElement = function (it) {
624
- return EXISTS$1 ? document.createElement(it) : {};
623
+ var documentCreateElement$1 = function (it) {
624
+ return EXISTS$1 ? document$1.createElement(it) : {};
625
625
  };
626
626
 
627
- var DESCRIPTORS$6 = descriptors;
628
- var fails$8 = fails$d;
629
- var createElement = documentCreateElement;
627
+ var DESCRIPTORS$7 = descriptors;
628
+ var fails$9 = fails$e;
629
+ var createElement = documentCreateElement$1;
630
630
 
631
631
  // Thanks to IE8 for its funny defineProperty
632
- var ie8DomDefine = !DESCRIPTORS$6 && !fails$8(function () {
632
+ var ie8DomDefine = !DESCRIPTORS$7 && !fails$9(function () {
633
633
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
634
634
  return Object.defineProperty(createElement('div'), 'a', {
635
635
  get: function () { return 7; }
636
636
  }).a != 7;
637
637
  });
638
638
 
639
- var DESCRIPTORS$5 = descriptors;
639
+ var DESCRIPTORS$6 = descriptors;
640
640
  var call$3 = functionCall;
641
641
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
642
642
  var createPropertyDescriptor$2 = createPropertyDescriptor$3;
643
- var toIndexedObject$3 = toIndexedObject$4;
643
+ var toIndexedObject$4 = toIndexedObject$5;
644
644
  var toPropertyKey$2 = toPropertyKey$3;
645
645
  var hasOwn$5 = hasOwnProperty_1;
646
646
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
@@ -650,8 +650,8 @@ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
650
650
 
651
651
  // `Object.getOwnPropertyDescriptor` method
652
652
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
653
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$5 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
654
- O = toIndexedObject$3(O);
653
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$6 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
654
+ O = toIndexedObject$4(O);
655
655
  P = toPropertyKey$2(P);
656
656
  if (IE8_DOM_DEFINE$1) try {
657
657
  return $getOwnPropertyDescriptor$1(O, P);
@@ -661,12 +661,12 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$5 ? $getOwnPropertyDescriptor$1 :
661
661
 
662
662
  var objectDefineProperty = {};
663
663
 
664
- var DESCRIPTORS$4 = descriptors;
665
- var fails$7 = fails$d;
664
+ var DESCRIPTORS$5 = descriptors;
665
+ var fails$8 = fails$e;
666
666
 
667
667
  // V8 ~ Chrome 36-
668
668
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
669
- var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$7(function () {
669
+ var v8PrototypeDefineBug = DESCRIPTORS$5 && fails$8(function () {
670
670
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
671
671
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
672
672
  value: 42,
@@ -674,24 +674,24 @@ var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$7(function () {
674
674
  }).prototype != 42;
675
675
  });
676
676
 
677
- var isObject$2 = isObject$6;
677
+ var isObject$3 = isObject$7;
678
678
 
679
679
  var $String$1 = String;
680
- var $TypeError$3 = TypeError;
680
+ var $TypeError$4 = TypeError;
681
681
 
682
682
  // `Assert: Type(argument) is Object`
683
- var anObject$5 = function (argument) {
684
- if (isObject$2(argument)) return argument;
685
- throw $TypeError$3($String$1(argument) + ' is not an object');
683
+ var anObject$7 = function (argument) {
684
+ if (isObject$3(argument)) return argument;
685
+ throw $TypeError$4($String$1(argument) + ' is not an object');
686
686
  };
687
687
 
688
- var DESCRIPTORS$3 = descriptors;
688
+ var DESCRIPTORS$4 = descriptors;
689
689
  var IE8_DOM_DEFINE = ie8DomDefine;
690
- var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
691
- var anObject$4 = anObject$5;
690
+ var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
691
+ var anObject$6 = anObject$7;
692
692
  var toPropertyKey$1 = toPropertyKey$3;
693
693
 
694
- var $TypeError$2 = TypeError;
694
+ var $TypeError$3 = TypeError;
695
695
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
696
696
  var $defineProperty = Object.defineProperty;
697
697
  // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
@@ -702,10 +702,10 @@ var WRITABLE = 'writable';
702
702
 
703
703
  // `Object.defineProperty` method
704
704
  // https://tc39.es/ecma262/#sec-object.defineproperty
705
- objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
706
- anObject$4(O);
705
+ objectDefineProperty.f = DESCRIPTORS$4 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
706
+ anObject$6(O);
707
707
  P = toPropertyKey$1(P);
708
- anObject$4(Attributes);
708
+ anObject$6(Attributes);
709
709
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
710
710
  var current = $getOwnPropertyDescriptor(O, P);
711
711
  if (current && current[WRITABLE]) {
@@ -718,23 +718,23 @@ objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defi
718
718
  }
719
719
  } return $defineProperty(O, P, Attributes);
720
720
  } : $defineProperty : function defineProperty(O, P, Attributes) {
721
- anObject$4(O);
721
+ anObject$6(O);
722
722
  P = toPropertyKey$1(P);
723
- anObject$4(Attributes);
723
+ anObject$6(Attributes);
724
724
  if (IE8_DOM_DEFINE) try {
725
725
  return $defineProperty(O, P, Attributes);
726
726
  } catch (error) { /* empty */ }
727
- if ('get' in Attributes || 'set' in Attributes) throw $TypeError$2('Accessors not supported');
727
+ if ('get' in Attributes || 'set' in Attributes) throw $TypeError$3('Accessors not supported');
728
728
  if ('value' in Attributes) O[P] = Attributes.value;
729
729
  return O;
730
730
  };
731
731
 
732
- var DESCRIPTORS$2 = descriptors;
733
- var definePropertyModule$3 = objectDefineProperty;
732
+ var DESCRIPTORS$3 = descriptors;
733
+ var definePropertyModule$4 = objectDefineProperty;
734
734
  var createPropertyDescriptor$1 = createPropertyDescriptor$3;
735
735
 
736
- var createNonEnumerableProperty$2 = DESCRIPTORS$2 ? function (object, key, value) {
737
- return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
736
+ var createNonEnumerableProperty$2 = DESCRIPTORS$3 ? function (object, key, value) {
737
+ return definePropertyModule$4.f(object, key, createPropertyDescriptor$1(1, value));
738
738
  } : function (object, key, value) {
739
739
  object[key] = value;
740
740
  return object;
@@ -742,17 +742,17 @@ var createNonEnumerableProperty$2 = DESCRIPTORS$2 ? function (object, key, value
742
742
 
743
743
  var makeBuiltIn$2 = {exports: {}};
744
744
 
745
- var DESCRIPTORS$1 = descriptors;
745
+ var DESCRIPTORS$2 = descriptors;
746
746
  var hasOwn$4 = hasOwnProperty_1;
747
747
 
748
748
  var FunctionPrototype = Function.prototype;
749
749
  // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
750
- var getDescriptor = DESCRIPTORS$1 && Object.getOwnPropertyDescriptor;
750
+ var getDescriptor = DESCRIPTORS$2 && Object.getOwnPropertyDescriptor;
751
751
 
752
752
  var EXISTS = hasOwn$4(FunctionPrototype, 'name');
753
753
  // additional protection from minified / mangled / dropped function names
754
754
  var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
755
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$1 || (DESCRIPTORS$1 && getDescriptor(FunctionPrototype, 'name').configurable));
755
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$2 || (DESCRIPTORS$2 && getDescriptor(FunctionPrototype, 'name').configurable));
756
756
 
757
757
  var functionName = {
758
758
  EXISTS: EXISTS,
@@ -760,11 +760,11 @@ var functionName = {
760
760
  CONFIGURABLE: CONFIGURABLE
761
761
  };
762
762
 
763
- var uncurryThis$9 = functionUncurryThis;
763
+ var uncurryThis$b = functionUncurryThis;
764
764
  var isCallable$6 = isCallable$c;
765
765
  var store$1 = sharedStore;
766
766
 
767
- var functionToString = uncurryThis$9(Function.toString);
767
+ var functionToString = uncurryThis$b(Function.toString);
768
768
 
769
769
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
770
770
  if (!isCallable$6(store$1.inspectSource)) {
@@ -788,21 +788,21 @@ var uid = uid$2;
788
788
 
789
789
  var keys = shared$1('keys');
790
790
 
791
- var sharedKey$1 = function (key) {
791
+ var sharedKey$2 = function (key) {
792
792
  return keys[key] || (keys[key] = uid(key));
793
793
  };
794
794
 
795
- var hiddenKeys$3 = {};
795
+ var hiddenKeys$4 = {};
796
796
 
797
797
  var NATIVE_WEAK_MAP = nativeWeakMap;
798
798
  var global$2 = global$a;
799
- var uncurryThis$8 = functionUncurryThis;
800
- var isObject$1 = isObject$6;
799
+ var uncurryThis$a = functionUncurryThis;
800
+ var isObject$2 = isObject$7;
801
801
  var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
802
802
  var hasOwn$3 = hasOwnProperty_1;
803
803
  var shared = sharedStore;
804
- var sharedKey = sharedKey$1;
805
- var hiddenKeys$2 = hiddenKeys$3;
804
+ var sharedKey$1 = sharedKey$2;
805
+ var hiddenKeys$3 = hiddenKeys$4;
806
806
 
807
807
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
808
808
  var TypeError$1 = global$2.TypeError;
@@ -816,7 +816,7 @@ var enforce = function (it) {
816
816
  var getterFor = function (TYPE) {
817
817
  return function (it) {
818
818
  var state;
819
- if (!isObject$1(it) || (state = get(it)).type !== TYPE) {
819
+ if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
820
820
  throw TypeError$1('Incompatible receiver, ' + TYPE + ' required');
821
821
  } return state;
822
822
  };
@@ -824,9 +824,9 @@ var getterFor = function (TYPE) {
824
824
 
825
825
  if (NATIVE_WEAK_MAP || shared.state) {
826
826
  var store = shared.state || (shared.state = new WeakMap());
827
- var wmget = uncurryThis$8(store.get);
828
- var wmhas = uncurryThis$8(store.has);
829
- var wmset = uncurryThis$8(store.set);
827
+ var wmget = uncurryThis$a(store.get);
828
+ var wmhas = uncurryThis$a(store.has);
829
+ var wmset = uncurryThis$a(store.set);
830
830
  set = function (it, metadata) {
831
831
  if (wmhas(store, it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
832
832
  metadata.facade = it;
@@ -840,8 +840,8 @@ if (NATIVE_WEAK_MAP || shared.state) {
840
840
  return wmhas(store, it);
841
841
  };
842
842
  } else {
843
- var STATE = sharedKey('state');
844
- hiddenKeys$2[STATE] = true;
843
+ var STATE = sharedKey$1('state');
844
+ hiddenKeys$3[STATE] = true;
845
845
  set = function (it, metadata) {
846
846
  if (hasOwn$3(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
847
847
  metadata.facade = it;
@@ -864,10 +864,10 @@ var internalState = {
864
864
  getterFor: getterFor
865
865
  };
866
866
 
867
- var fails$6 = fails$d;
867
+ var fails$7 = fails$e;
868
868
  var isCallable$4 = isCallable$c;
869
869
  var hasOwn$2 = hasOwnProperty_1;
870
- var DESCRIPTORS = descriptors;
870
+ var DESCRIPTORS$1 = descriptors;
871
871
  var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
872
872
  var inspectSource$1 = inspectSource$3;
873
873
  var InternalStateModule = internalState;
@@ -875,10 +875,10 @@ var InternalStateModule = internalState;
875
875
  var enforceInternalState = InternalStateModule.enforce;
876
876
  var getInternalState = InternalStateModule.get;
877
877
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
878
- var defineProperty = Object.defineProperty;
878
+ var defineProperty$1 = Object.defineProperty;
879
879
 
880
- var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails$6(function () {
881
- return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
880
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$1 && !fails$7(function () {
881
+ return defineProperty$1(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
882
882
  });
883
883
 
884
884
  var TEMPLATE = String(String).split('String');
@@ -890,15 +890,15 @@ var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
890
890
  if (options && options.getter) name = 'get ' + name;
891
891
  if (options && options.setter) name = 'set ' + name;
892
892
  if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
893
- if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
893
+ if (DESCRIPTORS$1) defineProperty$1(value, 'name', { value: name, configurable: true });
894
894
  else value.name = name;
895
895
  }
896
896
  if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
897
- defineProperty(value, 'length', { value: options.arity });
897
+ defineProperty$1(value, 'length', { value: options.arity });
898
898
  }
899
899
  try {
900
900
  if (options && hasOwn$2(options, 'constructor') && options.constructor) {
901
- if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
901
+ if (DESCRIPTORS$1) defineProperty$1(value, 'prototype', { writable: false });
902
902
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
903
903
  } else if (value.prototype) value.prototype = undefined;
904
904
  } catch (error) { /* empty */ }
@@ -915,7 +915,7 @@ Function.prototype.toString = makeBuiltIn$1(function toString() {
915
915
  }, 'toString');
916
916
 
917
917
  var isCallable$3 = isCallable$c;
918
- var definePropertyModule$2 = objectDefineProperty;
918
+ var definePropertyModule$3 = objectDefineProperty;
919
919
  var makeBuiltIn = makeBuiltIn$2.exports;
920
920
  var defineGlobalProperty$1 = defineGlobalProperty$3;
921
921
 
@@ -933,7 +933,7 @@ var defineBuiltIn$1 = function (O, key, value, options) {
933
933
  else if (O[key]) simple = true;
934
934
  } catch (error) { /* empty */ }
935
935
  if (simple) O[key] = value;
936
- else definePropertyModule$2.f(O, key, {
936
+ else definePropertyModule$3.f(O, key, {
937
937
  value: value,
938
938
  enumerable: false,
939
939
  configurable: !options.nonConfigurable,
@@ -968,42 +968,42 @@ var toIntegerOrInfinity$2 = function (argument) {
968
968
  var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
969
969
 
970
970
  var max$2 = Math.max;
971
- var min$1 = Math.min;
971
+ var min$2 = Math.min;
972
972
 
973
973
  // Helper for a popular repeating case of the spec:
974
974
  // Let integer be ? ToInteger(index).
975
975
  // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
976
976
  var toAbsoluteIndex$4 = function (index, length) {
977
977
  var integer = toIntegerOrInfinity$1(index);
978
- return integer < 0 ? max$2(integer + length, 0) : min$1(integer, length);
978
+ return integer < 0 ? max$2(integer + length, 0) : min$2(integer, length);
979
979
  };
980
980
 
981
981
  var toIntegerOrInfinity = toIntegerOrInfinity$2;
982
982
 
983
- var min = Math.min;
983
+ var min$1 = Math.min;
984
984
 
985
985
  // `ToLength` abstract operation
986
986
  // https://tc39.es/ecma262/#sec-tolength
987
- var toLength$1 = function (argument) {
988
- return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
987
+ var toLength$2 = function (argument) {
988
+ return argument > 0 ? min$1(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
989
989
  };
990
990
 
991
- var toLength = toLength$1;
991
+ var toLength$1 = toLength$2;
992
992
 
993
993
  // `LengthOfArrayLike` abstract operation
994
994
  // https://tc39.es/ecma262/#sec-lengthofarraylike
995
995
  var lengthOfArrayLike$5 = function (obj) {
996
- return toLength(obj.length);
996
+ return toLength$1(obj.length);
997
997
  };
998
998
 
999
- var toIndexedObject$2 = toIndexedObject$4;
999
+ var toIndexedObject$3 = toIndexedObject$5;
1000
1000
  var toAbsoluteIndex$3 = toAbsoluteIndex$4;
1001
1001
  var lengthOfArrayLike$4 = lengthOfArrayLike$5;
1002
1002
 
1003
1003
  // `Array.prototype.{ indexOf, includes }` methods implementation
1004
1004
  var createMethod$1 = function (IS_INCLUDES) {
1005
1005
  return function ($this, el, fromIndex) {
1006
- var O = toIndexedObject$2($this);
1006
+ var O = toIndexedObject$3($this);
1007
1007
  var length = lengthOfArrayLike$4(O);
1008
1008
  var index = toAbsoluteIndex$3(fromIndex, length);
1009
1009
  var value;
@@ -1029,20 +1029,20 @@ var arrayIncludes = {
1029
1029
  indexOf: createMethod$1(false)
1030
1030
  };
1031
1031
 
1032
- var uncurryThis$7 = functionUncurryThis;
1032
+ var uncurryThis$9 = functionUncurryThis;
1033
1033
  var hasOwn$1 = hasOwnProperty_1;
1034
- var toIndexedObject$1 = toIndexedObject$4;
1034
+ var toIndexedObject$2 = toIndexedObject$5;
1035
1035
  var indexOf = arrayIncludes.indexOf;
1036
- var hiddenKeys$1 = hiddenKeys$3;
1036
+ var hiddenKeys$2 = hiddenKeys$4;
1037
1037
 
1038
- var push$1 = uncurryThis$7([].push);
1038
+ var push$1 = uncurryThis$9([].push);
1039
1039
 
1040
1040
  var objectKeysInternal = function (object, names) {
1041
- var O = toIndexedObject$1(object);
1041
+ var O = toIndexedObject$2(object);
1042
1042
  var i = 0;
1043
1043
  var result = [];
1044
1044
  var key;
1045
- for (key in O) !hasOwn$1(hiddenKeys$1, key) && hasOwn$1(O, key) && push$1(result, key);
1045
+ for (key in O) !hasOwn$1(hiddenKeys$2, key) && hasOwn$1(O, key) && push$1(result, key);
1046
1046
  // Don't enum bug & hidden keys
1047
1047
  while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
1048
1048
  ~indexOf(result, key) || push$1(result, key);
@@ -1051,7 +1051,7 @@ var objectKeysInternal = function (object, names) {
1051
1051
  };
1052
1052
 
1053
1053
  // IE8- don't enum bug keys
1054
- var enumBugKeys$1 = [
1054
+ var enumBugKeys$3 = [
1055
1055
  'constructor',
1056
1056
  'hasOwnProperty',
1057
1057
  'isPrototypeOf',
@@ -1061,16 +1061,16 @@ var enumBugKeys$1 = [
1061
1061
  'valueOf'
1062
1062
  ];
1063
1063
 
1064
- var internalObjectKeys = objectKeysInternal;
1065
- var enumBugKeys = enumBugKeys$1;
1064
+ var internalObjectKeys$1 = objectKeysInternal;
1065
+ var enumBugKeys$2 = enumBugKeys$3;
1066
1066
 
1067
- var hiddenKeys = enumBugKeys.concat('length', 'prototype');
1067
+ var hiddenKeys$1 = enumBugKeys$2.concat('length', 'prototype');
1068
1068
 
1069
1069
  // `Object.getOwnPropertyNames` method
1070
1070
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
1071
1071
  // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
1072
1072
  objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1073
- return internalObjectKeys(O, hiddenKeys);
1073
+ return internalObjectKeys$1(O, hiddenKeys$1);
1074
1074
  };
1075
1075
 
1076
1076
  var objectGetOwnPropertySymbols = {};
@@ -1078,17 +1078,17 @@ var objectGetOwnPropertySymbols = {};
1078
1078
  // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
1079
1079
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1080
1080
 
1081
- var getBuiltIn$1 = getBuiltIn$4;
1082
- var uncurryThis$6 = functionUncurryThis;
1081
+ var getBuiltIn$2 = getBuiltIn$5;
1082
+ var uncurryThis$8 = functionUncurryThis;
1083
1083
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1084
1084
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1085
- var anObject$3 = anObject$5;
1085
+ var anObject$5 = anObject$7;
1086
1086
 
1087
- var concat = uncurryThis$6([].concat);
1087
+ var concat = uncurryThis$8([].concat);
1088
1088
 
1089
1089
  // all object keys, includes non-enumerable and symbols
1090
- var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
1091
- var keys = getOwnPropertyNamesModule.f(anObject$3(it));
1090
+ var ownKeys$1 = getBuiltIn$2('Reflect', 'ownKeys') || function ownKeys(it) {
1091
+ var keys = getOwnPropertyNamesModule.f(anObject$5(it));
1092
1092
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1093
1093
  return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
1094
1094
  };
@@ -1096,11 +1096,11 @@ var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
1096
1096
  var hasOwn = hasOwnProperty_1;
1097
1097
  var ownKeys = ownKeys$1;
1098
1098
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
1099
- var definePropertyModule$1 = objectDefineProperty;
1099
+ var definePropertyModule$2 = objectDefineProperty;
1100
1100
 
1101
1101
  var copyConstructorProperties$1 = function (target, source, exceptions) {
1102
1102
  var keys = ownKeys(source);
1103
- var defineProperty = definePropertyModule$1.f;
1103
+ var defineProperty = definePropertyModule$2.f;
1104
1104
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1105
1105
  for (var i = 0; i < keys.length; i++) {
1106
1106
  var key = keys[i];
@@ -1110,7 +1110,7 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
1110
1110
  }
1111
1111
  };
1112
1112
 
1113
- var fails$5 = fails$d;
1113
+ var fails$6 = fails$e;
1114
1114
  var isCallable$2 = isCallable$c;
1115
1115
 
1116
1116
  var replacement = /#|\.prototype\./;
@@ -1119,7 +1119,7 @@ var isForced$1 = function (feature, detection) {
1119
1119
  var value = data[normalize(feature)];
1120
1120
  return value == POLYFILL ? true
1121
1121
  : value == NATIVE ? false
1122
- : isCallable$2(detection) ? fails$5(detection)
1122
+ : isCallable$2(detection) ? fails$6(detection)
1123
1123
  : !!detection;
1124
1124
  };
1125
1125
 
@@ -1134,7 +1134,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
1134
1134
  var isForced_1 = isForced$1;
1135
1135
 
1136
1136
  var global$1 = global$a;
1137
- var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
1137
+ var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1138
1138
  var createNonEnumerableProperty = createNonEnumerableProperty$2;
1139
1139
  var defineBuiltIn = defineBuiltIn$1;
1140
1140
  var defineGlobalProperty = defineGlobalProperty$3;
@@ -1171,7 +1171,7 @@ var _export = function (options, source) {
1171
1171
  if (target) for (key in source) {
1172
1172
  sourceProperty = source[key];
1173
1173
  if (options.dontCallGetSet) {
1174
- descriptor = getOwnPropertyDescriptor(target, key);
1174
+ descriptor = getOwnPropertyDescriptor$1(target, key);
1175
1175
  targetProperty = descriptor && descriptor.value;
1176
1176
  } else targetProperty = target[key];
1177
1177
  FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
@@ -1188,18 +1188,18 @@ var _export = function (options, source) {
1188
1188
  }
1189
1189
  };
1190
1190
 
1191
- var classof$4 = classofRaw$1;
1191
+ var classof$5 = classofRaw$1;
1192
1192
 
1193
1193
  // `IsArray` abstract operation
1194
1194
  // https://tc39.es/ecma262/#sec-isarray
1195
1195
  // eslint-disable-next-line es-x/no-array-isarray -- safe
1196
1196
  var isArray$1 = Array.isArray || function isArray(argument) {
1197
- return classof$4(argument) == 'Array';
1197
+ return classof$5(argument) == 'Array';
1198
1198
  };
1199
1199
 
1200
- var wellKnownSymbol$6 = wellKnownSymbol$8;
1200
+ var wellKnownSymbol$9 = wellKnownSymbol$b;
1201
1201
 
1202
- var TO_STRING_TAG$1 = wellKnownSymbol$6('toStringTag');
1202
+ var TO_STRING_TAG$1 = wellKnownSymbol$9('toStringTag');
1203
1203
  var test$1 = {};
1204
1204
 
1205
1205
  test$1[TO_STRING_TAG$1] = 'z';
@@ -1209,9 +1209,9 @@ var toStringTagSupport = String(test$1) === '[object z]';
1209
1209
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1210
1210
  var isCallable$1 = isCallable$c;
1211
1211
  var classofRaw = classofRaw$1;
1212
- var wellKnownSymbol$5 = wellKnownSymbol$8;
1212
+ var wellKnownSymbol$8 = wellKnownSymbol$b;
1213
1213
 
1214
- var TO_STRING_TAG = wellKnownSymbol$5('toStringTag');
1214
+ var TO_STRING_TAG = wellKnownSymbol$8('toStringTag');
1215
1215
  var $Object = Object;
1216
1216
 
1217
1217
  // ES3 wrong here
@@ -1225,7 +1225,7 @@ var tryGet = function (it, key) {
1225
1225
  };
1226
1226
 
1227
1227
  // getting tag from ES6+ `Object.prototype.toString`
1228
- var classof$3 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1228
+ var classof$4 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1229
1229
  var O, tag, result;
1230
1230
  return it === undefined ? 'Undefined' : it === null ? 'Null'
1231
1231
  // @@toStringTag case
@@ -1236,18 +1236,18 @@ var classof$3 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1236
1236
  : (result = classofRaw(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
1237
1237
  };
1238
1238
 
1239
- var uncurryThis$5 = functionUncurryThis;
1240
- var fails$4 = fails$d;
1239
+ var uncurryThis$7 = functionUncurryThis;
1240
+ var fails$5 = fails$e;
1241
1241
  var isCallable = isCallable$c;
1242
- var classof$2 = classof$3;
1243
- var getBuiltIn = getBuiltIn$4;
1242
+ var classof$3 = classof$4;
1243
+ var getBuiltIn$1 = getBuiltIn$5;
1244
1244
  var inspectSource = inspectSource$3;
1245
1245
 
1246
1246
  var noop = function () { /* empty */ };
1247
1247
  var empty = [];
1248
- var construct = getBuiltIn('Reflect', 'construct');
1248
+ var construct = getBuiltIn$1('Reflect', 'construct');
1249
1249
  var constructorRegExp = /^\s*(?:class|function)\b/;
1250
- var exec = uncurryThis$5(constructorRegExp.exec);
1250
+ var exec = uncurryThis$7(constructorRegExp.exec);
1251
1251
  var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
1252
1252
 
1253
1253
  var isConstructorModern = function isConstructor(argument) {
@@ -1262,7 +1262,7 @@ var isConstructorModern = function isConstructor(argument) {
1262
1262
 
1263
1263
  var isConstructorLegacy = function isConstructor(argument) {
1264
1264
  if (!isCallable(argument)) return false;
1265
- switch (classof$2(argument)) {
1265
+ switch (classof$3(argument)) {
1266
1266
  case 'AsyncFunction':
1267
1267
  case 'GeneratorFunction':
1268
1268
  case 'AsyncGeneratorFunction': return false;
@@ -1281,7 +1281,7 @@ isConstructorLegacy.sham = true;
1281
1281
 
1282
1282
  // `IsConstructor` abstract operation
1283
1283
  // https://tc39.es/ecma262/#sec-isconstructor
1284
- var isConstructor$2 = !construct || fails$4(function () {
1284
+ var isConstructor$2 = !construct || fails$5(function () {
1285
1285
  var called;
1286
1286
  return isConstructorModern(isConstructorModern.call)
1287
1287
  || !isConstructorModern(Object)
@@ -1290,26 +1290,26 @@ var isConstructor$2 = !construct || fails$4(function () {
1290
1290
  }) ? isConstructorLegacy : isConstructorModern;
1291
1291
 
1292
1292
  var toPropertyKey = toPropertyKey$3;
1293
- var definePropertyModule = objectDefineProperty;
1293
+ var definePropertyModule$1 = objectDefineProperty;
1294
1294
  var createPropertyDescriptor = createPropertyDescriptor$3;
1295
1295
 
1296
1296
  var createProperty$3 = function (object, key, value) {
1297
1297
  var propertyKey = toPropertyKey(key);
1298
- if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
1298
+ if (propertyKey in object) definePropertyModule$1.f(object, propertyKey, createPropertyDescriptor(0, value));
1299
1299
  else object[propertyKey] = value;
1300
1300
  };
1301
1301
 
1302
- var fails$3 = fails$d;
1303
- var wellKnownSymbol$4 = wellKnownSymbol$8;
1302
+ var fails$4 = fails$e;
1303
+ var wellKnownSymbol$7 = wellKnownSymbol$b;
1304
1304
  var V8_VERSION = engineV8Version;
1305
1305
 
1306
- var SPECIES$1 = wellKnownSymbol$4('species');
1306
+ var SPECIES$1 = wellKnownSymbol$7('species');
1307
1307
 
1308
1308
  var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
1309
1309
  // We can't use this feature detection in V8 since it causes
1310
1310
  // deoptimization and serious performance degradation
1311
1311
  // https://github.com/zloirock/core-js/issues/677
1312
- return V8_VERSION >= 51 || !fails$3(function () {
1312
+ return V8_VERSION >= 51 || !fails$4(function () {
1313
1313
  var array = [];
1314
1314
  var constructor = array.constructor = {};
1315
1315
  constructor[SPECIES$1] = function () {
@@ -1319,34 +1319,34 @@ var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
1319
1319
  });
1320
1320
  };
1321
1321
 
1322
- var uncurryThis$4 = functionUncurryThis;
1322
+ var uncurryThis$6 = functionUncurryThis;
1323
1323
 
1324
- var arraySlice$1 = uncurryThis$4([].slice);
1324
+ var arraySlice$1 = uncurryThis$6([].slice);
1325
1325
 
1326
- var $$4 = _export;
1326
+ var $$7 = _export;
1327
1327
  var isArray = isArray$1;
1328
1328
  var isConstructor$1 = isConstructor$2;
1329
- var isObject = isObject$6;
1329
+ var isObject$1 = isObject$7;
1330
1330
  var toAbsoluteIndex$2 = toAbsoluteIndex$4;
1331
1331
  var lengthOfArrayLike$3 = lengthOfArrayLike$5;
1332
- var toIndexedObject = toIndexedObject$4;
1332
+ var toIndexedObject$1 = toIndexedObject$5;
1333
1333
  var createProperty$2 = createProperty$3;
1334
- var wellKnownSymbol$3 = wellKnownSymbol$8;
1334
+ var wellKnownSymbol$6 = wellKnownSymbol$b;
1335
1335
  var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$1;
1336
1336
  var un$Slice = arraySlice$1;
1337
1337
 
1338
1338
  var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
1339
1339
 
1340
- var SPECIES = wellKnownSymbol$3('species');
1340
+ var SPECIES = wellKnownSymbol$6('species');
1341
1341
  var $Array$2 = Array;
1342
1342
  var max$1 = Math.max;
1343
1343
 
1344
1344
  // `Array.prototype.slice` method
1345
1345
  // https://tc39.es/ecma262/#sec-array.prototype.slice
1346
1346
  // fallback for not array-like ES3 strings and DOM objects
1347
- $$4({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1347
+ $$7({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1348
1348
  slice: function slice(start, end) {
1349
- var O = toIndexedObject(this);
1349
+ var O = toIndexedObject$1(this);
1350
1350
  var length = lengthOfArrayLike$3(O);
1351
1351
  var k = toAbsoluteIndex$2(start, length);
1352
1352
  var fin = toAbsoluteIndex$2(end === undefined ? length : end, length);
@@ -1357,7 +1357,7 @@ $$4({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1357
1357
  // cross-realm fallback
1358
1358
  if (isConstructor$1(Constructor) && (Constructor === $Array$2 || isArray(Constructor.prototype))) {
1359
1359
  Constructor = undefined;
1360
- } else if (isObject(Constructor)) {
1360
+ } else if (isObject$1(Constructor)) {
1361
1361
  Constructor = Constructor[SPECIES];
1362
1362
  if (Constructor === null) Constructor = undefined;
1363
1363
  }
@@ -1807,18 +1807,18 @@ function gematriya(number) {
1807
1807
 
1808
1808
  var tryToString$1 = tryToString$3;
1809
1809
 
1810
- var $TypeError$1 = TypeError;
1810
+ var $TypeError$2 = TypeError;
1811
1811
 
1812
1812
  var deletePropertyOrThrow$1 = function (O, P) {
1813
- if (!delete O[P]) throw $TypeError$1('Cannot delete property ' + tryToString$1(P) + ' of ' + tryToString$1(O));
1813
+ if (!delete O[P]) throw $TypeError$2('Cannot delete property ' + tryToString$1(P) + ' of ' + tryToString$1(O));
1814
1814
  };
1815
1815
 
1816
- var classof$1 = classof$3;
1816
+ var classof$2 = classof$4;
1817
1817
 
1818
1818
  var $String = String;
1819
1819
 
1820
- var toString$2 = function (argument) {
1821
- if (classof$1(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
1820
+ var toString$4 = function (argument) {
1821
+ if (classof$2(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
1822
1822
  return $String(argument);
1823
1823
  };
1824
1824
 
@@ -1884,11 +1884,11 @@ var merge = function (array, left, right, comparefn) {
1884
1884
 
1885
1885
  var arraySort = mergeSort;
1886
1886
 
1887
- var fails$2 = fails$d;
1887
+ var fails$3 = fails$e;
1888
1888
 
1889
1889
  var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
1890
1890
  var method = [][METHOD_NAME];
1891
- return !!method && fails$2(function () {
1891
+ return !!method && fails$3(function () {
1892
1892
  // eslint-disable-next-line no-useless-call -- required for testing
1893
1893
  method.call(null, argument || function () { return 1; }, 1);
1894
1894
  });
@@ -1910,14 +1910,14 @@ var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
1910
1910
 
1911
1911
  var engineWebkitVersion = !!webkit && +webkit[1];
1912
1912
 
1913
- var $$3 = _export;
1914
- var uncurryThis$3 = functionUncurryThis;
1913
+ var $$6 = _export;
1914
+ var uncurryThis$5 = functionUncurryThis;
1915
1915
  var aCallable$2 = aCallable$4;
1916
1916
  var toObject$1 = toObject$3;
1917
1917
  var lengthOfArrayLike$1 = lengthOfArrayLike$5;
1918
1918
  var deletePropertyOrThrow = deletePropertyOrThrow$1;
1919
- var toString$1 = toString$2;
1920
- var fails$1 = fails$d;
1919
+ var toString$3 = toString$4;
1920
+ var fails$2 = fails$e;
1921
1921
  var internalSort = arraySort;
1922
1922
  var arrayMethodIsStrict = arrayMethodIsStrict$1;
1923
1923
  var FF = engineFfVersion;
@@ -1926,21 +1926,21 @@ var V8 = engineV8Version;
1926
1926
  var WEBKIT = engineWebkitVersion;
1927
1927
 
1928
1928
  var test = [];
1929
- var un$Sort = uncurryThis$3(test.sort);
1930
- var push = uncurryThis$3(test.push);
1929
+ var un$Sort = uncurryThis$5(test.sort);
1930
+ var push = uncurryThis$5(test.push);
1931
1931
 
1932
1932
  // IE8-
1933
- var FAILS_ON_UNDEFINED = fails$1(function () {
1933
+ var FAILS_ON_UNDEFINED = fails$2(function () {
1934
1934
  test.sort(undefined);
1935
1935
  });
1936
1936
  // V8 bug
1937
- var FAILS_ON_NULL = fails$1(function () {
1937
+ var FAILS_ON_NULL = fails$2(function () {
1938
1938
  test.sort(null);
1939
1939
  });
1940
1940
  // Old WebKit
1941
1941
  var STRICT_METHOD = arrayMethodIsStrict('sort');
1942
1942
 
1943
- var STABLE_SORT = !fails$1(function () {
1943
+ var STABLE_SORT = !fails$2(function () {
1944
1944
  // feature detection can be too slow, so check engines versions
1945
1945
  if (V8) return V8 < 70;
1946
1946
  if (FF && FF > 3) return;
@@ -1982,13 +1982,13 @@ var getSortCompare = function (comparefn) {
1982
1982
  if (y === undefined) return -1;
1983
1983
  if (x === undefined) return 1;
1984
1984
  if (comparefn !== undefined) return +comparefn(x, y) || 0;
1985
- return toString$1(x) > toString$1(y) ? 1 : -1;
1985
+ return toString$3(x) > toString$3(y) ? 1 : -1;
1986
1986
  };
1987
1987
  };
1988
1988
 
1989
1989
  // `Array.prototype.sort` method
1990
1990
  // https://tc39.es/ecma262/#sec-array.prototype.sort
1991
- $$3({ target: 'Array', proto: true, forced: FORCED }, {
1991
+ $$6({ target: 'Array', proto: true, forced: FORCED }, {
1992
1992
  sort: function sort(comparefn) {
1993
1993
  if (comparefn !== undefined) aCallable$2(comparefn);
1994
1994
 
@@ -2227,8 +2227,8 @@ Locale.useLocale('en');
2227
2227
  /*
2228
2228
  * More minimal HDate
2229
2229
  */
2230
- var NISAN$3 = 1;
2231
- var IYYAR$1 = 2; // const SIVAN = 3;
2230
+ var NISAN$4 = 1;
2231
+ var IYYAR$2 = 2; // const SIVAN = 3;
2232
2232
 
2233
2233
  var TAMUZ$1 = 4; // const AV = 5;
2234
2234
 
@@ -2317,7 +2317,7 @@ function hebrew2abs(year, month, day) {
2317
2317
  tempabs += daysInMonth(m, year);
2318
2318
  }
2319
2319
 
2320
- for (var _m = NISAN$3; _m < month; _m++) {
2320
+ for (var _m = NISAN$4; _m < month; _m++) {
2321
2321
  tempabs += daysInMonth(_m, year);
2322
2322
  }
2323
2323
  } else {
@@ -2402,7 +2402,7 @@ function monthsInYear(year) {
2402
2402
 
2403
2403
  function daysInMonth(month, year) {
2404
2404
  switch (month) {
2405
- case IYYAR$1:
2405
+ case IYYAR$2:
2406
2406
  case TAMUZ$1:
2407
2407
  case ELUL$2:
2408
2408
  case TEVET$2:
@@ -5585,22 +5585,22 @@ var MoladEvent = /*#__PURE__*/function (_Event) {
5585
5585
  return MoladEvent;
5586
5586
  }(Event);
5587
5587
 
5588
- var $$2 = _export;
5589
- var uncurryThis$2 = functionUncurryThis;
5588
+ var $$5 = _export;
5589
+ var uncurryThis$4 = functionUncurryThis;
5590
5590
  var toAbsoluteIndex = toAbsoluteIndex$4;
5591
5591
 
5592
5592
  var $RangeError = RangeError;
5593
5593
  var fromCharCode = String.fromCharCode;
5594
5594
  // eslint-disable-next-line es-x/no-string-fromcodepoint -- required for testing
5595
5595
  var $fromCodePoint = String.fromCodePoint;
5596
- var join = uncurryThis$2([].join);
5596
+ var join = uncurryThis$4([].join);
5597
5597
 
5598
5598
  // length should be 1, old FF problem
5599
5599
  var INCORRECT_LENGTH = !!$fromCodePoint && $fromCodePoint.length != 1;
5600
5600
 
5601
5601
  // `String.fromCodePoint` method
5602
5602
  // https://tc39.es/ecma262/#sec-string.fromcodepoint
5603
- $$2({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
5603
+ $$5({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
5604
5604
  // eslint-disable-next-line no-unused-vars -- required for `.length`
5605
5605
  fromCodePoint: function fromCodePoint(x) {
5606
5606
  var elements = [];
@@ -5621,12 +5621,12 @@ $$2({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
5621
5621
  var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
5622
5622
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
5623
5623
 
5624
- var uncurryThis$1 = functionUncurryThis;
5625
- var requireObjectCoercible = requireObjectCoercible$3;
5626
- var toString = toString$2;
5624
+ var uncurryThis$3 = functionUncurryThis;
5625
+ var requireObjectCoercible$2 = requireObjectCoercible$5;
5626
+ var toString$2 = toString$4;
5627
5627
  var whitespaces$1 = whitespaces$2;
5628
5628
 
5629
- var replace = uncurryThis$1(''.replace);
5629
+ var replace = uncurryThis$3(''.replace);
5630
5630
  var whitespace = '[' + whitespaces$1 + ']';
5631
5631
  var ltrim = RegExp('^' + whitespace + whitespace + '*');
5632
5632
  var rtrim = RegExp(whitespace + whitespace + '*$');
@@ -5634,7 +5634,7 @@ var rtrim = RegExp(whitespace + whitespace + '*$');
5634
5634
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
5635
5635
  var createMethod = function (TYPE) {
5636
5636
  return function ($this) {
5637
- var string = toString(requireObjectCoercible($this));
5637
+ var string = toString$2(requireObjectCoercible$2($this));
5638
5638
  if (TYPE & 1) string = replace(string, ltrim, '');
5639
5639
  if (TYPE & 2) string = replace(string, rtrim, '');
5640
5640
  return string;
@@ -5654,7 +5654,7 @@ var stringTrim = {
5654
5654
  };
5655
5655
 
5656
5656
  var PROPER_FUNCTION_NAME = functionName.PROPER;
5657
- var fails = fails$d;
5657
+ var fails$1 = fails$e;
5658
5658
  var whitespaces = whitespaces$2;
5659
5659
 
5660
5660
  var non = '\u200B\u0085\u180E';
@@ -5662,20 +5662,20 @@ var non = '\u200B\u0085\u180E';
5662
5662
  // check that a method works with the correct list
5663
5663
  // of whitespaces and has a correct name
5664
5664
  var stringTrimForced = function (METHOD_NAME) {
5665
- return fails(function () {
5665
+ return fails$1(function () {
5666
5666
  return !!whitespaces[METHOD_NAME]()
5667
5667
  || non[METHOD_NAME]() !== non
5668
5668
  || (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);
5669
5669
  });
5670
5670
  };
5671
5671
 
5672
- var $$1 = _export;
5672
+ var $$4 = _export;
5673
5673
  var $trim = stringTrim.trim;
5674
5674
  var forcedStringTrimMethod = stringTrimForced;
5675
5675
 
5676
5676
  // `String.prototype.trim` method
5677
5677
  // https://tc39.es/ecma262/#sec-string.prototype.trim
5678
- $$1({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
5678
+ $$4({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
5679
5679
  trim: function trim() {
5680
5680
  return $trim(this);
5681
5681
  }
@@ -5924,7 +5924,7 @@ function getTodayIsHe(omer) {
5924
5924
  var osdate = new Date(1923, 8, 11);
5925
5925
  var osday = greg2abs(osdate);
5926
5926
  var nsday = greg2abs(new Date(1975, 5, 24));
5927
- var shas = [['Berachot', 64], ['Shabbat', 157], ['Eruvin', 105], ['Pesachim', 121], ['Shekalim', 22], ['Yoma', 88], ['Sukkah', 56], ['Beitzah', 40], ['Rosh Hashana', 35], ['Taanit', 31], ['Megillah', 32], ['Moed Katan', 29], ['Chagigah', 27], ['Yevamot', 122], ['Ketubot', 112], ['Nedarim', 91], ['Nazir', 66], ['Sotah', 49], ['Gitin', 90], ['Kiddushin', 82], ['Baba Kamma', 119], ['Baba Metzia', 119], ['Baba Batra', 176], ['Sanhedrin', 113], ['Makkot', 24], ['Shevuot', 49], ['Avodah Zarah', 76], ['Horayot', 14], ['Zevachim', 120], ['Menachot', 110], ['Chullin', 142], ['Bechorot', 61], ['Arachin', 34], ['Temurah', 34], ['Keritot', 28], ['Meilah', 22], ['Kinnim', 4], ['Tamid', 9], ['Midot', 5], ['Niddah', 73]].map(function (m) {
5927
+ var shas0 = [['Berachot', 64], ['Shabbat', 157], ['Eruvin', 105], ['Pesachim', 121], ['Shekalim', 22], ['Yoma', 88], ['Sukkah', 56], ['Beitzah', 40], ['Rosh Hashana', 35], ['Taanit', 31], ['Megillah', 32], ['Moed Katan', 29], ['Chagigah', 27], ['Yevamot', 122], ['Ketubot', 112], ['Nedarim', 91], ['Nazir', 66], ['Sotah', 49], ['Gitin', 90], ['Kiddushin', 82], ['Baba Kamma', 119], ['Baba Metzia', 119], ['Baba Batra', 176], ['Sanhedrin', 113], ['Makkot', 24], ['Shevuot', 49], ['Avodah Zarah', 76], ['Horayot', 14], ['Zevachim', 120], ['Menachot', 110], ['Chullin', 142], ['Bechorot', 61], ['Arachin', 34], ['Temurah', 34], ['Keritot', 28], ['Meilah', 22], ['Kinnim', 4], ['Tamid', 9], ['Midot', 5], ['Niddah', 73]].map(function (m) {
5928
5928
  return {
5929
5929
  name: m[0],
5930
5930
  blatt: m[1]
@@ -5971,10 +5971,14 @@ var DafYomi = /*#__PURE__*/function () {
5971
5971
  var blatt = 0;
5972
5972
  var count = -1; // Fix Shekalim for old cycles
5973
5973
 
5974
- if (cno <= 7) {
5975
- shas[4].blatt = 13;
5976
- } else {
5977
- shas[4].blatt = 22;
5974
+ var shortShekalim = cno <= 7;
5975
+ var shas = shortShekalim ? shas0.slice() : shas0;
5976
+
5977
+ if (shortShekalim) {
5978
+ shas[4] = {
5979
+ name: 'Shekalim',
5980
+ blatt: 13
5981
+ };
5978
5982
  } // Find the daf
5979
5983
 
5980
5984
 
@@ -6126,11 +6130,11 @@ var DafYomiEvent = /*#__PURE__*/function (_Event) {
6126
6130
  return DafYomiEvent;
6127
6131
  }(Event);
6128
6132
 
6129
- var uncurryThis = functionUncurryThis;
6133
+ var uncurryThis$2 = functionUncurryThis;
6130
6134
  var aCallable$1 = aCallable$4;
6131
6135
  var NATIVE_BIND = functionBindNative;
6132
6136
 
6133
- var bind$1 = uncurryThis(uncurryThis.bind);
6137
+ var bind$1 = uncurryThis$2(uncurryThis$2.bind);
6134
6138
 
6135
6139
  // optional / simple context binding
6136
6140
  var functionBindContext = function (fn, that) {
@@ -6141,12 +6145,12 @@ var functionBindContext = function (fn, that) {
6141
6145
  };
6142
6146
 
6143
6147
  var call$2 = functionCall;
6144
- var anObject$2 = anObject$5;
6148
+ var anObject$4 = anObject$7;
6145
6149
  var getMethod$1 = getMethod$3;
6146
6150
 
6147
6151
  var iteratorClose$1 = function (iterator, kind, value) {
6148
6152
  var innerResult, innerError;
6149
- anObject$2(iterator);
6153
+ anObject$4(iterator);
6150
6154
  try {
6151
6155
  innerResult = getMethod$1(iterator, 'return');
6152
6156
  if (!innerResult) {
@@ -6160,17 +6164,17 @@ var iteratorClose$1 = function (iterator, kind, value) {
6160
6164
  }
6161
6165
  if (kind === 'throw') throw value;
6162
6166
  if (innerError) throw innerResult;
6163
- anObject$2(innerResult);
6167
+ anObject$4(innerResult);
6164
6168
  return value;
6165
6169
  };
6166
6170
 
6167
- var anObject$1 = anObject$5;
6171
+ var anObject$3 = anObject$7;
6168
6172
  var iteratorClose = iteratorClose$1;
6169
6173
 
6170
6174
  // call something on iterator step with safe closing on error
6171
6175
  var callWithSafeIterationClosing$1 = function (iterator, fn, value, ENTRIES) {
6172
6176
  try {
6173
- return ENTRIES ? fn(anObject$1(value)[0], value[1]) : fn(value);
6177
+ return ENTRIES ? fn(anObject$3(value)[0], value[1]) : fn(value);
6174
6178
  } catch (error) {
6175
6179
  iteratorClose(iterator, 'throw', error);
6176
6180
  }
@@ -6178,42 +6182,42 @@ var callWithSafeIterationClosing$1 = function (iterator, fn, value, ENTRIES) {
6178
6182
 
6179
6183
  var iterators = {};
6180
6184
 
6181
- var wellKnownSymbol$2 = wellKnownSymbol$8;
6185
+ var wellKnownSymbol$5 = wellKnownSymbol$b;
6182
6186
  var Iterators$1 = iterators;
6183
6187
 
6184
- var ITERATOR$2 = wellKnownSymbol$2('iterator');
6185
- var ArrayPrototype = Array.prototype;
6188
+ var ITERATOR$2 = wellKnownSymbol$5('iterator');
6189
+ var ArrayPrototype$1 = Array.prototype;
6186
6190
 
6187
6191
  // check on default Array iterator
6188
6192
  var isArrayIteratorMethod$1 = function (it) {
6189
- return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
6193
+ return it !== undefined && (Iterators$1.Array === it || ArrayPrototype$1[ITERATOR$2] === it);
6190
6194
  };
6191
6195
 
6192
- var classof = classof$3;
6196
+ var classof$1 = classof$4;
6193
6197
  var getMethod = getMethod$3;
6194
6198
  var Iterators = iterators;
6195
- var wellKnownSymbol$1 = wellKnownSymbol$8;
6199
+ var wellKnownSymbol$4 = wellKnownSymbol$b;
6196
6200
 
6197
- var ITERATOR$1 = wellKnownSymbol$1('iterator');
6201
+ var ITERATOR$1 = wellKnownSymbol$4('iterator');
6198
6202
 
6199
6203
  var getIteratorMethod$2 = function (it) {
6200
6204
  if (it != undefined) return getMethod(it, ITERATOR$1)
6201
6205
  || getMethod(it, '@@iterator')
6202
- || Iterators[classof(it)];
6206
+ || Iterators[classof$1(it)];
6203
6207
  };
6204
6208
 
6205
6209
  var call$1 = functionCall;
6206
6210
  var aCallable = aCallable$4;
6207
- var anObject = anObject$5;
6211
+ var anObject$2 = anObject$7;
6208
6212
  var tryToString = tryToString$3;
6209
6213
  var getIteratorMethod$1 = getIteratorMethod$2;
6210
6214
 
6211
- var $TypeError = TypeError;
6215
+ var $TypeError$1 = TypeError;
6212
6216
 
6213
6217
  var getIterator$1 = function (argument, usingIterator) {
6214
6218
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
6215
- if (aCallable(iteratorMethod)) return anObject(call$1(iteratorMethod, argument));
6216
- throw $TypeError(tryToString(argument) + ' is not iterable');
6219
+ if (aCallable(iteratorMethod)) return anObject$2(call$1(iteratorMethod, argument));
6220
+ throw $TypeError$1(tryToString(argument) + ' is not iterable');
6217
6221
  };
6218
6222
 
6219
6223
  var bind = functionBindContext;
@@ -6262,9 +6266,9 @@ var arrayFrom = function from(arrayLike /* , mapfn = undefined, thisArg = undefi
6262
6266
  return result;
6263
6267
  };
6264
6268
 
6265
- var wellKnownSymbol = wellKnownSymbol$8;
6269
+ var wellKnownSymbol$3 = wellKnownSymbol$b;
6266
6270
 
6267
- var ITERATOR = wellKnownSymbol('iterator');
6271
+ var ITERATOR = wellKnownSymbol$3('iterator');
6268
6272
  var SAFE_CLOSING = false;
6269
6273
 
6270
6274
  try {
@@ -6301,7 +6305,7 @@ var checkCorrectnessOfIteration$1 = function (exec, SKIP_CLOSING) {
6301
6305
  return ITERATION_SUPPORT;
6302
6306
  };
6303
6307
 
6304
- var $ = _export;
6308
+ var $$3 = _export;
6305
6309
  var from = arrayFrom;
6306
6310
  var checkCorrectnessOfIteration = checkCorrectnessOfIteration$1;
6307
6311
 
@@ -6312,7 +6316,7 @@ var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
6312
6316
 
6313
6317
  // `Array.from` method
6314
6318
  // https://tc39.es/ecma262/#sec-array.from
6315
- $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
6319
+ $$3({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
6316
6320
  from: from
6317
6321
  });
6318
6322
 
@@ -6637,7 +6641,7 @@ var SHAVUOT = 'Shavuot'; // 33
6637
6641
  * @return {number[]}
6638
6642
  */
6639
6643
 
6640
- function range(start, stop) {
6644
+ function range$1(start, stop) {
6641
6645
  return Array.from({
6642
6646
  length: stop - start + 1
6643
6647
  }, function (v, k) {
@@ -6657,78 +6661,78 @@ var types = {
6657
6661
  /* Hebrew year that starts on Monday, is `incomplete' (Heshvan and
6658
6662
  * Kislev each have 29 days), and has Passover start on Tuesday. */
6659
6663
  // e.g. 5753
6660
- '020': [51, 52].concat(EOY, range(0, 20), D(21), 23, 24, PESACH, 25, D(26), D(28), 30, D(31), range(33, 40), D(41), range(43, 49), D(50)),
6664
+ '020': [51, 52].concat(EOY, range$1(0, 20), D(21), 23, 24, PESACH, 25, D(26), D(28), 30, D(31), range$1(33, 40), D(41), range$1(43, 49), D(50)),
6661
6665
 
6662
6666
  /* Hebrew year that starts on Monday, is `complete' (Heshvan and
6663
6667
  * Kislev each have 30 days), and has Passover start on Thursday. */
6664
6668
  // e.g. 5756
6665
- '0220': [51, 52].concat(EOY, range(0, 20), D(21), 23, 24, PESACH, 25, D(26), D(28), 30, D(31), 33, SHAVUOT, range(34, 37), D(38), 40, D(41), range(43, 49), D(50)),
6669
+ '0220': [51, 52].concat(EOY, range$1(0, 20), D(21), 23, 24, PESACH, 25, D(26), D(28), 30, D(31), 33, SHAVUOT, range$1(34, 37), D(38), 40, D(41), range$1(43, 49), D(50)),
6666
6670
 
6667
6671
  /* Hebrew year that starts on Thursday, is `regular' (Heshvan has 29
6668
6672
  * days and Kislev has 30 days), and has Passover start on Saturday. */
6669
6673
  // e.g. 5701
6670
- '0510': [52].concat(YK, EOY, range(0, 20), D(21), 23, 24, PESACH1, PESACH8, 25, D(26), D(28), 30, D(31), range(33, 40), D(41), range(43, 50)),
6674
+ '0510': [52].concat(YK, EOY, range$1(0, 20), D(21), 23, 24, PESACH1, PESACH8, 25, D(26), D(28), 30, D(31), range$1(33, 40), D(41), range$1(43, 50)),
6671
6675
 
6672
6676
  /* Hebrew year that starts on Thursday, is `regular' (Heshvan has 29
6673
6677
  * days and Kislev has 30 days), and has Passover start on Saturday. */
6674
6678
  // e.g. 5745
6675
- '0511': [52].concat(YK, EOY, range(0, 20), D(21), 23, 24, PESACH, 25, D(26), D(28), range(30, 40), D(41), range(43, 50)),
6679
+ '0511': [52].concat(YK, EOY, range$1(0, 20), D(21), 23, 24, PESACH, 25, D(26), D(28), range$1(30, 40), D(41), range$1(43, 50)),
6676
6680
 
6677
6681
  /* Hebrew year that starts on Thursday, is `complete' (Heshvan and
6678
6682
  * Kislev each have 30 days), and has Passover start on Sunday. */
6679
6683
  // e.g. 5754
6680
- '052': [52].concat(YK, CHMSUKOT, range(0, 24), PESACH7, 25, D(26), D(28), 30, D(31), range(33, 40), D(41), range(43, 50)),
6684
+ '052': [52].concat(YK, CHMSUKOT, range$1(0, 24), PESACH7, 25, D(26), D(28), 30, D(31), range$1(33, 40), D(41), range$1(43, 50)),
6681
6685
 
6682
6686
  /* Hebrew year that starts on Saturday, is `incomplete' (Heshvan and Kislev
6683
6687
  * each have 29 days), and has Passover start on Sunday. */
6684
6688
  // e.g. 5761
6685
- '070': [].concat(RH, 52, SUKKOT, SHMINI, range(0, 20), D(21), 23, 24, PESACH7, 25, D(26), D(28), 30, D(31), range(33, 40), D(41), range(43, 50)),
6689
+ '070': [].concat(RH, 52, SUKKOT, SHMINI, range$1(0, 20), D(21), 23, 24, PESACH7, 25, D(26), D(28), 30, D(31), range$1(33, 40), D(41), range$1(43, 50)),
6686
6690
 
6687
6691
  /* Hebrew year that starts on Saturday, is `complete' (Heshvan and
6688
6692
  * Kislev each have 30 days), and has Passover start on Tuesday. */
6689
6693
  // e.g. 5716
6690
- '072': [].concat(RH, 52, SUKKOT, SHMINI, range(0, 20), D(21), 23, 24, CHMPESACH, 25, D(26), D(28), 30, D(31), range(33, 40), D(41), range(43, 49), D(50)),
6694
+ '072': [].concat(RH, 52, SUKKOT, SHMINI, range$1(0, 20), D(21), 23, 24, CHMPESACH, 25, D(26), D(28), 30, D(31), range$1(33, 40), D(41), range$1(43, 49), D(50)),
6691
6695
 
6692
6696
  /* -- The leap year types (keviot) -- */
6693
6697
 
6694
6698
  /* Hebrew year that starts on Monday, is `incomplete' (Heshvan and
6695
6699
  * Kislev each have 29 days), and has Passover start on Thursday. */
6696
6700
  // e.g. 5746
6697
- '1200': [51, 52].concat(CHMSUKOT, range(0, 27), CHMPESACH, range(28, 33), SHAVUOT, range(34, 37), D(38), 40, D(41), range(43, 49), D(50)),
6701
+ '1200': [51, 52].concat(CHMSUKOT, range$1(0, 27), CHMPESACH, range$1(28, 33), SHAVUOT, range$1(34, 37), D(38), 40, D(41), range$1(43, 49), D(50)),
6698
6702
 
6699
6703
  /* Hebrew year that starts on Monday, is `incomplete' (Heshvan and
6700
6704
  * Kislev each have 29 days), and has Passover start on Thursday. */
6701
6705
  // e.g. 5746
6702
- '1201': [51, 52].concat(CHMSUKOT, range(0, 27), CHMPESACH, range(28, 40), D(41), range(43, 49), D(50)),
6706
+ '1201': [51, 52].concat(CHMSUKOT, range$1(0, 27), CHMPESACH, range$1(28, 40), D(41), range$1(43, 49), D(50)),
6703
6707
 
6704
6708
  /* Hebrew year that starts on Monday, is `complete' (Heshvan and
6705
6709
  * Kislev each have 30 days), and has Passover start on Saturday. */
6706
6710
  // e.g.5752
6707
- '1220': [51, 52].concat(CHMSUKOT, range(0, 27), PESACH1, PESACH8, range(28, 40), D(41), range(43, 50)),
6711
+ '1220': [51, 52].concat(CHMSUKOT, range$1(0, 27), PESACH1, PESACH8, range$1(28, 40), D(41), range$1(43, 50)),
6708
6712
 
6709
6713
  /* Hebrew year that starts on Monday, is `complete' (Heshvan and
6710
6714
  * Kislev each have 30 days), and has Passover start on Saturday. */
6711
6715
  // e.g.5752
6712
- '1221': [51, 52].concat(CHMSUKOT, range(0, 27), PESACH, range(28, 50)),
6716
+ '1221': [51, 52].concat(CHMSUKOT, range$1(0, 27), PESACH, range$1(28, 50)),
6713
6717
 
6714
6718
  /* Hebrew year that starts on Thursday, is `incomplete' (Heshvan and
6715
6719
  * Kislev both have 29 days), and has Passover start on Sunday. */
6716
6720
  // e.g. 5768
6717
- '150': [52].concat(YK, CHMSUKOT, range(0, 28), PESACH7, range(29, 50)),
6721
+ '150': [52].concat(YK, CHMSUKOT, range$1(0, 28), PESACH7, range$1(29, 50)),
6718
6722
 
6719
6723
  /* Hebrew year that starts on Thursday, is `complete' (Heshvan and
6720
6724
  * Kislev both have 30 days), and has Passover start on Tuesday. */
6721
6725
  // eg. 5771
6722
- '152': [52].concat(YK, CHMSUKOT, range(0, 28), CHMPESACH, range(29, 49), D(50)),
6726
+ '152': [52].concat(YK, CHMSUKOT, range$1(0, 28), CHMPESACH, range$1(29, 49), D(50)),
6723
6727
 
6724
6728
  /* Hebrew year that starts on Saturday, is `incomplete' (Heshvan and
6725
6729
  * Kislev each have 29 days), and has Passover start on Tuesday. */
6726
6730
  // e.g.5757
6727
- '170': [].concat(RH, 52, SUKKOT, SHMINI, range(0, 27), CHMPESACH, range(28, 40), D(41), range(43, 49), D(50)),
6731
+ '170': [].concat(RH, 52, SUKKOT, SHMINI, range$1(0, 27), CHMPESACH, range$1(28, 40), D(41), range$1(43, 49), D(50)),
6728
6732
 
6729
6733
  /* Hebrew year that starts on Saturday, is `complete' (Heshvan and
6730
6734
  * Kislev each have 30 days), and has Passover start on Thursday. */
6731
- '1720': [].concat(RH, 52, SUKKOT, SHMINI, range(0, 27), CHMPESACH, range(28, 33), SHAVUOT, range(34, 37), D(38), 40, D(41), range(43, 49), D(50))
6735
+ '1720': [].concat(RH, 52, SUKKOT, SHMINI, range$1(0, 27), CHMPESACH, range$1(28, 33), SHAVUOT, range$1(34, 37), D(38), 40, D(41), range$1(43, 49), D(50))
6732
6736
  };
6733
6737
  /* Hebrew year that starts on Monday, is `complete' (Heshvan and
6734
6738
  * Kislev each have 30 days), and has Passover start on Thursday. */
@@ -6846,6 +6850,70 @@ var ParshaEvent = /*#__PURE__*/function (_Event) {
6846
6850
  return ParshaEvent;
6847
6851
  }(Event);
6848
6852
 
6853
+ var SUN$1 = 0;
6854
+ var TUE$1 = 2;
6855
+ var FRI$2 = 5;
6856
+ var SAT$2 = 6;
6857
+ var NISAN$3 = months.NISAN;
6858
+ var IYYAR$1 = months.IYYAR;
6859
+ /**
6860
+ * Yom HaShoah first observed in 1951.
6861
+ * When the actual date of Yom Hashoah falls on a Friday, the
6862
+ * state of Israel observes Yom Hashoah on the preceding
6863
+ * Thursday. When it falls on a Sunday, Yom Hashoah is observed
6864
+ * on the following Monday.
6865
+ * http://www.ushmm.org/remembrance/dor/calendar/
6866
+ * @private
6867
+ * @param {number} year
6868
+ * @return {HDate|null}
6869
+ */
6870
+
6871
+ function dateYomHaShoah(year) {
6872
+ if (year < 5711) {
6873
+ return null;
6874
+ }
6875
+
6876
+ var nisan27dt = new HDate(27, NISAN$3, year);
6877
+
6878
+ if (nisan27dt.getDay() === FRI$2) {
6879
+ nisan27dt = new HDate(26, NISAN$3, year);
6880
+ } else if (nisan27dt.getDay() === SUN$1) {
6881
+ nisan27dt = new HDate(28, NISAN$3, year);
6882
+ }
6883
+
6884
+ return nisan27dt;
6885
+ }
6886
+ /**
6887
+ * Yom HaAtzma'ut only celebrated after 1948
6888
+ * @private
6889
+ * @param {number} year
6890
+ * @return {HDate|null}
6891
+ */
6892
+
6893
+ function dateYomHaZikaron(year) {
6894
+ if (year < 5708) {
6895
+ return null;
6896
+ }
6897
+
6898
+ var day;
6899
+ var pesach = new HDate(15, NISAN$3, year);
6900
+ var pdow = pesach.getDay();
6901
+
6902
+ if (pdow === SUN$1) {
6903
+ day = 2;
6904
+ } else if (pdow === SAT$2) {
6905
+ day = 3;
6906
+ } else if (year < 5764) {
6907
+ day = 4;
6908
+ } else if (pdow === TUE$1) {
6909
+ day = 5;
6910
+ } else {
6911
+ day = 4;
6912
+ }
6913
+
6914
+ return new HDate(day, IYYAR$1, year);
6915
+ }
6916
+
6849
6917
  /** Represents a built-in holiday like Pesach, Purim or Tu BiShvat */
6850
6918
 
6851
6919
  var HolidayEvent = /*#__PURE__*/function (_Event) {
@@ -7467,42 +7535,16 @@ function getHolidaysForYear_(year) {
7467
7535
  }));
7468
7536
  }
7469
7537
 
7470
- if (year >= 5711) {
7471
- // Yom HaShoah first observed in 1951
7472
- var nisan27dt = new HDate(27, NISAN$2, year);
7473
- /* When the actual date of Yom Hashoah falls on a Friday, the
7474
- * state of Israel observes Yom Hashoah on the preceding
7475
- * Thursday. When it falls on a Sunday, Yom Hashoah is observed
7476
- * on the following Monday.
7477
- * http://www.ushmm.org/remembrance/dor/calendar/
7478
- */
7479
-
7480
- if (nisan27dt.getDay() == FRI$1) {
7481
- nisan27dt = new HDate(26, NISAN$2, year);
7482
- } else if (nisan27dt.getDay() == SUN) {
7483
- nisan27dt = new HDate(28, NISAN$2, year);
7484
- }
7538
+ var nisan27dt = dateYomHaShoah(year);
7485
7539
 
7540
+ if (nisan27dt) {
7486
7541
  add(new HolidayEvent(nisan27dt, 'Yom HaShoah', MODERN_HOLIDAY$1));
7487
7542
  }
7488
7543
 
7489
- if (year >= 5708) {
7490
- // Yom HaAtzma'ut only celebrated after 1948
7491
- var day;
7492
-
7493
- if (pesach.getDay() == SUN) {
7494
- day = 2;
7495
- } else if (pesach.getDay() == SAT$1) {
7496
- day = 3;
7497
- } else if (year < 5764) {
7498
- day = 4;
7499
- } else if (pesach.getDay() == TUE) {
7500
- day = 5;
7501
- } else {
7502
- day = 4;
7503
- }
7544
+ var yomHaZikaronDt = dateYomHaZikaron(year);
7504
7545
 
7505
- add(new HolidayEvent(new HDate(day, IYYAR, year), 'Yom HaZikaron', MODERN_HOLIDAY$1, emojiIsraelFlag), new HolidayEvent(new HDate(day + 1, IYYAR, year), 'Yom HaAtzma\'ut', MODERN_HOLIDAY$1, emojiIsraelFlag));
7546
+ if (yomHaZikaronDt) {
7547
+ add(new HolidayEvent(yomHaZikaronDt, 'Yom HaZikaron', MODERN_HOLIDAY$1, emojiIsraelFlag), new HolidayEvent(yomHaZikaronDt.next(), 'Yom HaAtzma\'ut', MODERN_HOLIDAY$1, emojiIsraelFlag));
7506
7548
  }
7507
7549
 
7508
7550
  if (year >= 5727) {
@@ -7876,14 +7918,14 @@ function getBirthdayOrAnniversary_(hyear, gdate) {
7876
7918
  return new HDate(day, month, hyear);
7877
7919
  }
7878
7920
 
7879
- var version="3.41.3";
7921
+ var version="3.42.2";
7880
7922
 
7881
- var headers$1={"plural-forms":"nplurals=2; plural=(n > 1);",language:"en_CA@ashkenazi"};var contexts$1={"":{Berachot:["Berachos"],Shabbat:["Shabbos"],Taanit:["Taanis"],Yevamot:["Yevamos"],Ketubot:["Kesubos"],"Baba Batra":["Baba Basra"],Makkot:["Makkos"],Shevuot:["Shevuos"],Horayot:["Horayos"],Menachot:["Menachos"],Bechorot:["Bechoros"],Keritot:["Kerisos"],Midot:["Midos"],"Achrei Mot":["Achrei Mos"],Bechukotai:["Bechukosai"],"Beha'alotcha":["Beha'aloscha"],Bereshit:["Bereshis"],Chukat:["Chukas"],"Erev Shavuot":["Erev Shavuos"],"Erev Sukkot":["Erev Sukkos"],"Ki Tavo":["Ki Savo"],"Ki Teitzei":["Ki Seitzei"],"Ki Tisa":["Ki Sisa"],Matot:["Matos"],"Purim Katan":["Purim Koton"],Tazria:["Sazria"],"Shabbat Chazon":["Shabbos Chazon"],"Shabbat HaChodesh":["Shabbos HaChodesh"],"Shabbat HaGadol":["Shabbos HaGadol"],"Shabbat Nachamu":["Shabbos Nachamu"],"Shabbat Parah":["Shabbos Parah"],"Shabbat Shekalim":["Shabbos Shekalim"],"Shabbat Shuva":["Shabbos Shuvah"],"Shabbat Zachor":["Shabbos Zachor"],Shavuot:["Shavuos"],"Shavuot I":["Shavuos I"],"Shavuot II":["Shavuos II"],Shemot:["Shemos"],"Shmini Atzeret":["Shmini Atzeres"],"Simchat Torah":["Simchas Torah"],Sukkot:["Sukkos"],"Sukkot I":["Sukkos I"],"Sukkot II":["Sukkos II"],"Sukkot II (CH''M)":["Sukkos II (CH''M)"],"Sukkot III (CH''M)":["Sukkos III (CH''M)"],"Sukkot IV (CH''M)":["Sukkos IV (CH''M)"],"Sukkot V (CH''M)":["Sukkos V (CH''M)"],"Sukkot VI (CH''M)":["Sukkos VI (CH''M)"],"Sukkot VII (Hoshana Raba)":["Sukkos VII (Hoshana Raba)"],"Ta'anit Bechorot":["Ta'anis Bechoros"],"Ta'anit Esther":["Ta'anis Esther"],Toldot:["Toldos"],Vaetchanan:["Vaeschanan"],Yitro:["Yisro"],"Vezot Haberakhah":["Vezos Haberakhah"],Parashat:["Parshas"],"Leil Selichot":["Leil Selichos"],"Shabbat Mevarchim Chodesh":["Shabbos Mevorchim Chodesh"],"Shabbat Shirah":["Shabbos Shirah"],Tevet:["Teves"],"Asara B'Tevet":["Asara B'Teves"],Berakhot:["Berakhos"],Sheviit:["Sheviis"],Terumot:["Terumos"],Maasrot:["Maasros"],Eduyot:["Eduyos"],Avot:["Avos"],Bekhorot:["Bekhoros"],Middot:["Middos"],Oholot:["Oholos"],Tahorot:["Tahoros"],Mikvaot:["Mikvaos"],"Alot HaShachar":["Alos HaShachar"],Misheyakir:["Misheyakir"],"Kriat Shema, sof zeman":["Krias Shema, sof zman"],"Tefilah, sof zeman":["Tefilah, sof zman"],"Chatzot hayom":["Chatzos"],"Tzait HaKochavim":["Tzeis HaKochavim"]}};var poAshkenazi = {headers:headers$1,contexts:contexts$1};
7923
+ var headers$1={"plural-forms":"nplurals=2; plural=(n > 1);"};var contexts$1={"":{Berachot:["Berachos"],Shabbat:["Shabbos"],Taanit:["Taanis"],Yevamot:["Yevamos"],Ketubot:["Kesubos"],"Baba Batra":["Baba Basra"],Makkot:["Makkos"],Shevuot:["Shevuos"],Horayot:["Horayos"],Menachot:["Menachos"],Bechorot:["Bechoros"],Keritot:["Kerisos"],Midot:["Midos"],"Achrei Mot":["Achrei Mos"],Bechukotai:["Bechukosai"],"Beha'alotcha":["Beha'aloscha"],Bereshit:["Bereshis"],Chukat:["Chukas"],"Erev Shavuot":["Erev Shavuos"],"Erev Sukkot":["Erev Sukkos"],"Ki Tavo":["Ki Savo"],"Ki Teitzei":["Ki Seitzei"],"Ki Tisa":["Ki Sisa"],Matot:["Matos"],"Purim Katan":["Purim Koton"],Tazria:["Sazria"],"Shabbat Chazon":["Shabbos Chazon"],"Shabbat HaChodesh":["Shabbos HaChodesh"],"Shabbat HaGadol":["Shabbos HaGadol"],"Shabbat Nachamu":["Shabbos Nachamu"],"Shabbat Parah":["Shabbos Parah"],"Shabbat Shekalim":["Shabbos Shekalim"],"Shabbat Shuva":["Shabbos Shuvah"],"Shabbat Zachor":["Shabbos Zachor"],Shavuot:["Shavuos"],"Shavuot I":["Shavuos I"],"Shavuot II":["Shavuos II"],Shemot:["Shemos"],"Shmini Atzeret":["Shmini Atzeres"],"Simchat Torah":["Simchas Torah"],Sukkot:["Sukkos"],"Sukkot I":["Sukkos I"],"Sukkot II":["Sukkos II"],"Sukkot II (CH''M)":["Sukkos II (CH''M)"],"Sukkot III (CH''M)":["Sukkos III (CH''M)"],"Sukkot IV (CH''M)":["Sukkos IV (CH''M)"],"Sukkot V (CH''M)":["Sukkos V (CH''M)"],"Sukkot VI (CH''M)":["Sukkos VI (CH''M)"],"Sukkot VII (Hoshana Raba)":["Sukkos VII (Hoshana Raba)"],"Ta'anit Bechorot":["Ta'anis Bechoros"],"Ta'anit Esther":["Ta'anis Esther"],Toldot:["Toldos"],Vaetchanan:["Vaeschanan"],Yitro:["Yisro"],"Vezot Haberakhah":["Vezos Haberakhah"],Parashat:["Parshas"],"Leil Selichot":["Leil Selichos"],"Shabbat Mevarchim Chodesh":["Shabbos Mevorchim Chodesh"],"Shabbat Shirah":["Shabbos Shirah"],Tevet:["Teves"],"Asara B'Tevet":["Asara B'Teves"],Berakhot:["Berakhos"],Sheviit:["Sheviis"],Terumot:["Terumos"],Maasrot:["Maasros"],Eduyot:["Eduyos"],Avot:["Avos"],Bekhorot:["Bekhoros"],Middot:["Middos"],Oholot:["Oholos"],Tahorot:["Tahoros"],Mikvaot:["Mikvaos"],"Alot HaShachar":["Alos HaShachar"],Misheyakir:["Misheyakir"],"Kriat Shema, sof zeman":["Krias Shema, sof zman"],"Tefilah, sof zeman":["Tefilah, sof zman"],"Chatzot hayom":["Chatzos"],"Tzait HaKochavim":["Tzeis HaKochavim"]}};var poAshkenazi = {headers:headers$1,contexts:contexts$1};
7882
7924
 
7883
7925
  Locale.addLocale('ashkenazi', poAshkenazi);
7884
7926
  Locale.addLocale('a', poAshkenazi);
7885
7927
 
7886
- var headers={"plural-forms":"nplurals=2; plural=(n > 1);",language:"he_IL"};var contexts={"":{Berachot:["ברכות"],Shabbat:["שַׁבָּת"],Eruvin:["עירובין"],Pesachim:["פסחים"],Shekalim:["שקלים"],Yoma:["יומא"],Sukkah:["סוכה"],Beitzah:["ביצה"],Taanit:["תענית"],Megillah:["מגילה"],"Moed Katan":["מועד קטן"],Chagigah:["חגיגה"],Yevamot:["יבמות"],Ketubot:["כתובות"],Nedarim:["נדרים"],Nazir:["נזיר"],Sotah:["סוטה"],Gitin:["גיטין"],Kiddushin:["קידושין"],"Baba Kamma":["בבא קמא"],"Baba Metzia":["בבא מציעא"],"Baba Batra":["בבא בתרא"],Sanhedrin:["סנהדרין"],Makkot:["מכות"],Shevuot:["שבועות"],"Avodah Zarah":["עבודה זרה"],Horayot:["הוריות"],Zevachim:["זבחים"],Menachot:["מנחות"],Chullin:["חולין"],Bechorot:["בכורות"],Arachin:["ערכין"],Temurah:["תמורה"],Keritot:["כריתות"],Meilah:["מעילה"],Kinnim:["קינים"],Tamid:["תמיד"],Midot:["מדות"],Niddah:["נדה"],"Daf Yomi: %s %d":["דף יומי: %s %d"],"Daf Yomi":["דף יומי"],Parashat:["פָּרָשַׁת"],"Achrei Mot":["אַחֲרֵי מוֹת"],Balak:["בָּלָק"],Bamidbar:["בְּמִדְבַּר"],Bechukotai:["בְּחֻקֹּתַי"],"Beha'alotcha":["בְּהַעֲלֹתְךָ"],Behar:["בְּהַר"],Bereshit:["בְּרֵאשִׁית"],Beshalach:["בְּשַׁלַּח"],Bo:["בֹּא"],"Chayei Sara":["חַיֵּי שָֹרָה"],Chukat:["חֻקַּת"],Devarim:["דְּבָרִים"],Eikev:["עֵקֶב"],Emor:["אֱמוֹר"],"Ha'Azinu":["הַאֲזִינוּ"],Kedoshim:["קְדשִׁים"],"Ki Tavo":["כִּי־תָבוֹא"],"Ki Teitzei":["כִּי־תֵצֵא"],"Ki Tisa":["כִּי תִשָּׂא"],Korach:["קוֹרַח"],"Lech-Lecha":["לֶךְ־לְךָ"],Masei:["מַסְעֵי"],Matot:["מַּטּוֹת"],Metzora:["מְּצֹרָע"],Miketz:["מִקֵּץ"],Mishpatim:["מִּשְׁפָּטִים"],Nasso:["נָשׂא"],Nitzavim:["נִצָּבִים"],Noach:["נֹחַ"],Pekudei:["פְקוּדֵי"],Pinchas:["פִּינְחָס"],"Re'eh":["רְאֵה"],"Sh'lach":["שְׁלַח־לְךָ"],Shemot:["שְׁמוֹת"],Shmini:["שְּׁמִינִי"],Shoftim:["שׁוֹפְטִים"],Tazria:["תַזְרִיעַ"],Terumah:["תְּרוּמָה"],Tetzaveh:["תְּצַוֶּה"],Toldot:["תּוֹלְדוֹת"],Tzav:["צַו"],Vaera:["וָאֵרָא"],Vaetchanan:["וָאֶתְחַנַּן"],Vayakhel:["וַיַּקְהֵל"],Vayechi:["וַיְחִי"],Vayeilech:["וַיֵּלֶךְ"],Vayera:["וַיֵּרָא"],Vayeshev:["וַיֵּשֶׁב"],Vayetzei:["וַיֵּצֵא"],Vayigash:["וַיִּגַּשׁ"],Vayikra:["וַיִּקְרָא"],Vayishlach:["וַיִּשְׁלַח"],"Vezot Haberakhah":["וְזֹאת הַבְּרָכָה"],Yitro:["יִתְרוֹ"],"Asara B'Tevet":["עֲשָׂרָה בְּטֵבֵת"],"Candle lighting":["הַדלָקָת נֵרוֹת"],Chanukah:["חֲנוּכָּה"],"Chanukah: 1 Candle":["חֲנוּכָּה: א׳ נֵר"],"Chanukah: 2 Candles":["חֲנוּכָּה: ב׳ נֵרוֹת"],"Chanukah: 3 Candles":["חֲנוּכָּה: ג׳ נֵרוֹת"],"Chanukah: 4 Candles":["חֲנוּכָּה: ד׳ נֵרוֹת"],"Chanukah: 5 Candles":["חֲנוּכָּה: ה׳ נֵרוֹת"],"Chanukah: 6 Candles":["חֲנוּכָּה: ו׳ נֵרוֹת"],"Chanukah: 7 Candles":["חֲנוּכָּה: ז׳ נֵרוֹת"],"Chanukah: 8 Candles":["חֲנוּכָּה: ח׳ נֵרוֹת"],"Chanukah: 8th Day":["חֲנוּכָּה: יוֹם ח׳"],"Days of the Omer":["סְפִירַת הָעוֹמֶר"],Omer:["עוֹמֶר"],"day of the Omer":["בָּעוֹמֶר"],"Erev Pesach":["עֶרֶב פֶּסַח"],"Erev Purim":["עֶרֶב פּוּרִים"],"Erev Rosh Hashana":["עֶרֶב רֹאשׁ הַשָּׁנָה"],"Erev Shavuot":["עֶרֶב שָׁבוּעוֹת"],"Erev Simchat Torah":["עֶרֶב שִׂמְחַת תּוֹרָה"],"Erev Sukkot":["עֶרֶב סוּכּוֹת"],"Erev Tish'a B'Av":["עֶרֶב תִּשְׁעָה בְּאָב"],"Erev Yom Kippur":["עֶרֶב יוֹם כִּפּוּר"],Havdalah:["הַבדָלָה"],"Lag BaOmer":["ל״ג בָּעוֹמֶר"],"Leil Selichot":["סליחות"],Pesach:["פֶּסַח"],"Pesach I":["פֶּסַח א׳"],"Pesach II":["פֶּסַח ב׳"],"Pesach II (CH''M)":["פֶּסַח ב׳ (חוה״מ)"],"Pesach III (CH''M)":["פֶּסַח ג׳ (חוה״מ)"],"Pesach IV (CH''M)":["פֶּסַח ד׳ (חוה״מ)"],"Pesach Sheni":["פֶּסַח שני"],"Pesach V (CH''M)":["פֶּסַח ה׳ (חוה״מ)"],"Pesach VI (CH''M)":["פֶּסַח ו׳ (חוה״מ)"],"Pesach VII":["פֶּסַח ז׳"],"Pesach VIII":["פֶּסַח ח׳"],Purim:["פּוּרִים"],"Purim Katan":["פּוּרִים קָטָן"],"Rosh Chodesh %s":["רֹאשׁ חוֹדֶשׁ %s"],"Rosh Chodesh":["רֹאשׁ חוֹדֶשׁ"],Adar:["אַדָר"],"Adar I":["אַדָר א׳"],"Adar II":["אַדָר ב׳"],Av:["אָב"],Cheshvan:["חֶשְׁוָן"],Elul:["אֱלוּל"],Iyyar:["אִיָיר"],Kislev:["כִּסְלֵו"],Nisan:["נִיסָן"],"Sh'vat":["שְׁבָט"],Sivan:["סִיוָן"],Tamuz:["תַּמּוּז"],Tevet:["טֵבֵת"],Tishrei:["תִשְׁרֵי"],"Rosh Hashana":["רֹאשׁ הַשָּׁנָה"],"Rosh Hashana I":["רֹאשׁ הַשָּׁנָה א׳"],"Rosh Hashana II":["רֹאשׁ הַשָּׁנָה ב׳"],"Shabbat Chazon":["שַׁבָּת חֲזוֹן"],"Shabbat HaChodesh":["שַׁבָּת הַחֹדֶשׁ"],"Shabbat HaGadol":["שַׁבָּת הַגָּדוֹל"],"Shabbat Machar Chodesh":["שַׁבָּת מָחָר חוֹדֶשׁ"],"Shabbat Nachamu":["שַׁבָּת נַחֲמוּ"],"Shabbat Parah":["שַׁבָּת פּרה"],"Shabbat Rosh Chodesh":["שַׁבָּת רֹאשׁ חוֹדֶשׁ"],"Shabbat Shekalim":["שַׁבָּת שְׁקָלִים"],"Shabbat Shuva":["שַׁבָּת שׁוּבָה"],"Shabbat Zachor":["שַׁבָּת זָכוֹר"],Shavuot:["שָׁבוּעוֹת"],"Shavuot I":["שָׁבוּעוֹת א׳"],"Shavuot II":["שָׁבוּעוֹת ב׳"],"Shmini Atzeret":["שְׁמִינִי עֲצֶרֶת"],"Shushan Purim":["שׁוּשָׁן פּוּרִים"],Sigd:["סיגד"],"Simchat Torah":["שִׂמְחַת תּוֹרָה"],Sukkot:["סוּכּוֹת"],"Sukkot I":["סוּכּוֹת א׳"],"Sukkot II":["סוּכּוֹת ב׳"],"Sukkot II (CH''M)":["סוּכּוֹת ב׳ (חוה״מ)"],"Sukkot III (CH''M)":["סוּכּוֹת ג׳ (חוה״מ)"],"Sukkot IV (CH''M)":["סוּכּוֹת ד׳ (חוה״מ)"],"Sukkot V (CH''M)":["סוּכּוֹת ה׳ (חוה״מ)"],"Sukkot VI (CH''M)":["סוּכּוֹת ו׳ (חוה״מ)"],"Sukkot VII (Hoshana Raba)":["סוּכּוֹת ז׳ (הוֹשַׁעְנָא רַבָּה)"],"Ta'anit Bechorot":["תַּעֲנִית בְּכוֹרוֹת"],"Ta'anit Esther":["תַּעֲנִית אֶסְתֵּר"],"Tish'a B'Av":["תִּשְׁעָה בְּאָב"],"Tu B'Av":["טוּ בְּאָב"],"Tu BiShvat":["טוּ בִּשְׁבָט"],"Tu B'Shvat":["טוּ בִּשְׁבָט"],"Tzom Gedaliah":["צוֹם גְּדַלְיָה"],"Tzom Tammuz":["צוֹם תָּמוּז"],"Yom HaAtzma'ut":["יוֹם הָעַצְמָאוּת"],"Yom HaShoah":["יוֹם הַשּׁוֹאָה"],"Yom HaZikaron":["יוֹם הַזִּכָּרוֹן"],"Yom Kippur":["יוֹם כִּפּוּר"],"Yom Yerushalayim":["יוֹם יְרוּשָׁלַיִם"],"Yom HaAliyah":["יוֹם הַעֲלִיָּה"],"Yom HaAliyah School Observance":["שְׁמִירָת בֵּית הַסֵפֶר לְיוֹם הַעֲלִיָּה"],"Pesach I (on Shabbat)":["פֶּסַח יוֹם א׳ (בְּשַׁבָּת)"],"Pesach Chol ha-Moed Day 1":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם א׳"],"Pesach Chol ha-Moed Day 2":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ב׳"],"Pesach Chol ha-Moed Day 3":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ג׳"],"Pesach Chol ha-Moed Day 4":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ד׳"],"Pesach Chol ha-Moed Day 5":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ה׳"],"Pesach Shabbat Chol ha-Moed":["פֶּסַח שַׁבָּת חוֹל הַמּוֹעֵד"],"Shavuot II (on Shabbat)":["שָׁבוּעוֹת יוֹם ב׳ (בְּשַׁבָּת)"],"Rosh Hashana I (on Shabbat)":["רֹאשׁ הַשָּׁנָה יוֹם א׳ (בְּשַׁבָּת)"],"Yom Kippur (on Shabbat)":["יוֹם כִּפּוּר (בְּשַׁבָּת)"],"Yom Kippur (Mincha, Traditional)":["יוֹם כִּפּוּר מנחה"],"Yom Kippur (Mincha, Alternate)":["יוֹם כִּפּוּר מנחה"],"Sukkot I (on Shabbat)":["סוּכּוֹת יוֹם א׳ (בְּשַׁבָּת)"],"Sukkot Chol ha-Moed Day 1":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם א׳"],"Sukkot Chol ha-Moed Day 2":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ב׳"],"Sukkot Chol ha-Moed Day 3":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ג׳"],"Sukkot Chol ha-Moed Day 4":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ד׳"],"Sukkot Shabbat Chol ha-Moed":["סוּכּוֹת שַׁבָּת חוֹל הַמּוֹעֵד"],"Sukkot Final Day (Hoshana Raba)":["סוּכּוֹת ז׳ (הוֹשַׁעְנָא רַבָּה)"],"Rosh Chodesh Adar":["רֹאשׁ חוֹדֶשׁ אַדָר"],"Rosh Chodesh Adar I":["רֹאשׁ חוֹדֶשׁ אַדָר א׳"],"Rosh Chodesh Adar II":["רֹאשׁ חוֹדֶשׁ אַדָר ב׳"],"Rosh Chodesh Av":["רֹאשׁ חוֹדֶשׁ אָב"],"Rosh Chodesh Cheshvan":["רֹאשׁ חוֹדֶשׁ חֶשְׁוָן"],"Rosh Chodesh Elul":["רֹאשׁ חוֹדֶשׁ אֱלוּל"],"Rosh Chodesh Iyyar":["רֹאשׁ חוֹדֶשׁ אִיָיר"],"Rosh Chodesh Kislev":["רֹאשׁ חוֹדֶשׁ כִּסְלֵו"],"Rosh Chodesh Nisan":["רֹאשׁ חוֹדֶשׁ נִיסָן"],"Rosh Chodesh Sh'vat":["רֹאשׁ חוֹדֶשׁ שְׁבָט"],"Rosh Chodesh Sivan":["רֹאשׁ חוֹדֶשׁ סִיוָן"],"Rosh Chodesh Tamuz":["רֹאשׁ חוֹדֶשׁ תָּמוּז"],"Rosh Chodesh Tevet":["רֹאשׁ חוֹדֶשׁ טֵבֵת"],min:["דקות"],"Fast begins":["תחילת הַצוֹם"],"Fast ends":["סִיּוּם הַצוֹם"],"Rosh Hashana LaBehemot":["רֹאשׁ הַשָּׁנָה לְמַעְשַׂר בְּהֵמָה"],"Tish'a B'Av (observed)":["תִּשְׁעָה בְּאָב נִדחֶה"],"Shabbat Mevarchim Chodesh":["שַׁבָּת מברכים חוֹדֶשׁ"],"Shabbat Shirah":["שַׁבָּת שִׁירָה"],chatzotNight:["חֲצוֹת הַלַיְלָה"],alotHaShachar:["עֲלוֹת הַשַּׁחַר"],misheyakir:["משיכיר - זמן ציצית ותפילין"],misheyakirMachmir:["משיכיר - זמן ציצית ותפילין"],neitzHaChama:["הַנֵץ הַחַמָּה"],sofZmanShma:["סוֹף זְמַן קְרִיאַת שְׁמַע גר״א"],sofZmanTfilla:["סוֹף זְמַן תְּפִלָּה גר״א"],chatzot:["חֲצוֹת הַיּוֹם"],minchaGedola:["מִנְחָה גְּדוֹלָה"],minchaKetana:["מִנְחָה קְטַנָּה"],plagHaMincha:["פְּלַג הַמִּנְחָה"],shkiah:["שְׁקִיעָה"],"Nightfall - End of ordained fasts":["לַיְלָה - גמר תעניות דרבנן"],tzeit:["צֵאת כוכבים"],Lovingkindness:["חֶֽסֶד"],Might:["גְבוּרָה"],Beauty:["תִּפאֶרֶת"],Eternity:["נֶּֽצַח"],Splendor:["הוֹד"],Foundation:["יְּסוֹד"],Majesty:["מַּלְכוּת"],day:["יוֹם"],"Chanukah Day 1":["חֲנוּכָּה יוֹם א׳"],"Chanukah Day 2":["חֲנוּכָּה יוֹם ב׳"],"Chanukah Day 3":["חֲנוּכָּה יוֹם ג׳"],"Chanukah Day 4":["חֲנוּכָּה יוֹם ד׳"],"Chanukah Day 5":["חֲנוּכָּה יוֹם ה׳"],"Chanukah Day 6":["חֲנוּכָּה יוֹם ו׳"],"Chanukah Day 7":["חֲנוּכָּה יוֹם ז׳"],"Chanukah Day 7 (on Rosh Chodesh)":["חֲנוּכָּה יוֹם ז׳ (רֹאשׁ חוֹדֶשׁ)"],"Chanukah Day 8":["חֲנוּכָּה יוֹם ח׳"],Berakhot:["ברכות"],Peah:["פאה"],Demai:["דמאי"],Kilayim:["כלאים"],Sheviit:["שביעית"],Terumot:["תרומות"],Maasrot:["מעשרות"],"Maaser Sheni":["מעשר שני"],Challah:["חלה"],Orlah:["ערלה"],Bikkurim:["ביכורים"],"Rosh Hashanah":["ראש השנה"],Gittin:["גיטין"],"Bava Kamma":["בבא קמא"],"Bava Metzia":["בבא מציעא"],"Bava Batra":["בבא בתרא"],Eduyot:["עדיות"],Avot:["אבות"],Bekhorot:["בכורות"],Arakhin:["ערכין"],Middot:["מדות"],Kelim:["כלים"],Oholot:["אהלות"],Negaim:["נגעים"],Parah:["פרה"],Tahorot:["טהרות"],Mikvaot:["מקואות"],Makhshirin:["מכשירין"],Zavim:["זבים"],"Tevul Yom":["טבול יום"],Yadayim:["ידים"],Oktzin:["עוקצים"],"Yom Kippur Katan":["יוֹם כִּפּוּר קָטָן"]}};var poHe = {headers:headers,contexts:contexts};
7928
+ var headers={"plural-forms":"nplurals=2; plural=(n > 1);"};var contexts={"":{Berachot:["ברכות"],Shabbat:["שַׁבָּת"],Eruvin:["עירובין"],Pesachim:["פסחים"],Shekalim:["שקלים"],Yoma:["יומא"],Sukkah:["סוכה"],Beitzah:["ביצה"],Taanit:["תענית"],Megillah:["מגילה"],"Moed Katan":["מועד קטן"],Chagigah:["חגיגה"],Yevamot:["יבמות"],Ketubot:["כתובות"],Nedarim:["נדרים"],Nazir:["נזיר"],Sotah:["סוטה"],Gitin:["גיטין"],Kiddushin:["קידושין"],"Baba Kamma":["בבא קמא"],"Baba Metzia":["בבא מציעא"],"Baba Batra":["בבא בתרא"],Sanhedrin:["סנהדרין"],Makkot:["מכות"],Shevuot:["שבועות"],"Avodah Zarah":["עבודה זרה"],Horayot:["הוריות"],Zevachim:["זבחים"],Menachot:["מנחות"],Chullin:["חולין"],Bechorot:["בכורות"],Arachin:["ערכין"],Temurah:["תמורה"],Keritot:["כריתות"],Meilah:["מעילה"],Kinnim:["קינים"],Tamid:["תמיד"],Midot:["מדות"],Niddah:["נדה"],"Daf Yomi: %s %d":["דף יומי: %s %d"],"Daf Yomi":["דף יומי"],Parashat:["פָּרָשַׁת"],"Achrei Mot":["אַחֲרֵי מוֹת"],Balak:["בָּלָק"],Bamidbar:["בְּמִדְבַּר"],Bechukotai:["בְּחֻקֹּתַי"],"Beha'alotcha":["בְּהַעֲלֹתְךָ"],Behar:["בְּהַר"],Bereshit:["בְּרֵאשִׁית"],Beshalach:["בְּשַׁלַּח"],Bo:["בֹּא"],"Chayei Sara":["חַיֵּי שָֹרָה"],Chukat:["חֻקַּת"],Devarim:["דְּבָרִים"],Eikev:["עֵקֶב"],Emor:["אֱמוֹר"],"Ha'Azinu":["הַאֲזִינוּ"],Kedoshim:["קְדשִׁים"],"Ki Tavo":["כִּי־תָבוֹא"],"Ki Teitzei":["כִּי־תֵצֵא"],"Ki Tisa":["כִּי תִשָּׂא"],Korach:["קוֹרַח"],"Lech-Lecha":["לֶךְ־לְךָ"],Masei:["מַסְעֵי"],Matot:["מַּטּוֹת"],Metzora:["מְּצֹרָע"],Miketz:["מִקֵּץ"],Mishpatim:["מִּשְׁפָּטִים"],Nasso:["נָשׂא"],Nitzavim:["נִצָּבִים"],Noach:["נֹחַ"],Pekudei:["פְקוּדֵי"],Pinchas:["פִּינְחָס"],"Re'eh":["רְאֵה"],"Sh'lach":["שְׁלַח־לְךָ"],Shemot:["שְׁמוֹת"],Shmini:["שְּׁמִינִי"],Shoftim:["שׁוֹפְטִים"],Tazria:["תַזְרִיעַ"],Terumah:["תְּרוּמָה"],Tetzaveh:["תְּצַוֶּה"],Toldot:["תּוֹלְדוֹת"],Tzav:["צַו"],Vaera:["וָאֵרָא"],Vaetchanan:["וָאֶתְחַנַּן"],Vayakhel:["וַיַּקְהֵל"],Vayechi:["וַיְחִי"],Vayeilech:["וַיֵּלֶךְ"],Vayera:["וַיֵּרָא"],Vayeshev:["וַיֵּשֶׁב"],Vayetzei:["וַיֵּצֵא"],Vayigash:["וַיִּגַּשׁ"],Vayikra:["וַיִּקְרָא"],Vayishlach:["וַיִּשְׁלַח"],"Vezot Haberakhah":["וְזֹאת הַבְּרָכָה"],Yitro:["יִתְרוֹ"],"Asara B'Tevet":["עֲשָׂרָה בְּטֵבֵת"],"Candle lighting":["הַדלָקָת נֵרוֹת"],Chanukah:["חֲנוּכָּה"],"Chanukah: 1 Candle":["חֲנוּכָּה: א׳ נֵר"],"Chanukah: 2 Candles":["חֲנוּכָּה: ב׳ נֵרוֹת"],"Chanukah: 3 Candles":["חֲנוּכָּה: ג׳ נֵרוֹת"],"Chanukah: 4 Candles":["חֲנוּכָּה: ד׳ נֵרוֹת"],"Chanukah: 5 Candles":["חֲנוּכָּה: ה׳ נֵרוֹת"],"Chanukah: 6 Candles":["חֲנוּכָּה: ו׳ נֵרוֹת"],"Chanukah: 7 Candles":["חֲנוּכָּה: ז׳ נֵרוֹת"],"Chanukah: 8 Candles":["חֲנוּכָּה: ח׳ נֵרוֹת"],"Chanukah: 8th Day":["חֲנוּכָּה: יוֹם ח׳"],"Days of the Omer":["סְפִירַת הָעוֹמֶר"],Omer:["עוֹמֶר"],"day of the Omer":["בָּעוֹמֶר"],"Erev Pesach":["עֶרֶב פֶּסַח"],"Erev Purim":["עֶרֶב פּוּרִים"],"Erev Rosh Hashana":["עֶרֶב רֹאשׁ הַשָּׁנָה"],"Erev Shavuot":["עֶרֶב שָׁבוּעוֹת"],"Erev Simchat Torah":["עֶרֶב שִׂמְחַת תּוֹרָה"],"Erev Sukkot":["עֶרֶב סוּכּוֹת"],"Erev Tish'a B'Av":["עֶרֶב תִּשְׁעָה בְּאָב"],"Erev Yom Kippur":["עֶרֶב יוֹם כִּפּוּר"],Havdalah:["הַבדָלָה"],"Lag BaOmer":["ל״ג בָּעוֹמֶר"],"Leil Selichot":["סליחות"],Pesach:["פֶּסַח"],"Pesach I":["פֶּסַח א׳"],"Pesach II":["פֶּסַח ב׳"],"Pesach II (CH''M)":["פֶּסַח ב׳ (חוה״מ)"],"Pesach III (CH''M)":["פֶּסַח ג׳ (חוה״מ)"],"Pesach IV (CH''M)":["פֶּסַח ד׳ (חוה״מ)"],"Pesach Sheni":["פֶּסַח שני"],"Pesach V (CH''M)":["פֶּסַח ה׳ (חוה״מ)"],"Pesach VI (CH''M)":["פֶּסַח ו׳ (חוה״מ)"],"Pesach VII":["פֶּסַח ז׳"],"Pesach VIII":["פֶּסַח ח׳"],Purim:["פּוּרִים"],"Purim Katan":["פּוּרִים קָטָן"],"Rosh Chodesh %s":["רֹאשׁ חוֹדֶשׁ %s"],"Rosh Chodesh":["רֹאשׁ חוֹדֶשׁ"],Adar:["אַדָר"],"Adar I":["אַדָר א׳"],"Adar II":["אַדָר ב׳"],Av:["אָב"],Cheshvan:["חֶשְׁוָן"],Elul:["אֱלוּל"],Iyyar:["אִיָיר"],Kislev:["כִּסְלֵו"],Nisan:["נִיסָן"],"Sh'vat":["שְׁבָט"],Sivan:["סִיוָן"],Tamuz:["תַּמּוּז"],Tevet:["טֵבֵת"],Tishrei:["תִשְׁרֵי"],"Rosh Hashana":["רֹאשׁ הַשָּׁנָה"],"Rosh Hashana I":["רֹאשׁ הַשָּׁנָה א׳"],"Rosh Hashana II":["רֹאשׁ הַשָּׁנָה ב׳"],"Shabbat Chazon":["שַׁבָּת חֲזוֹן"],"Shabbat HaChodesh":["שַׁבָּת הַחֹדֶשׁ"],"Shabbat HaGadol":["שַׁבָּת הַגָּדוֹל"],"Shabbat Machar Chodesh":["שַׁבָּת מָחָר חוֹדֶשׁ"],"Shabbat Nachamu":["שַׁבָּת נַחֲמוּ"],"Shabbat Parah":["שַׁבָּת פּרה"],"Shabbat Rosh Chodesh":["שַׁבָּת רֹאשׁ חוֹדֶשׁ"],"Shabbat Shekalim":["שַׁבָּת שְׁקָלִים"],"Shabbat Shuva":["שַׁבָּת שׁוּבָה"],"Shabbat Zachor":["שַׁבָּת זָכוֹר"],Shavuot:["שָׁבוּעוֹת"],"Shavuot I":["שָׁבוּעוֹת א׳"],"Shavuot II":["שָׁבוּעוֹת ב׳"],"Shmini Atzeret":["שְׁמִינִי עֲצֶרֶת"],"Shushan Purim":["שׁוּשָׁן פּוּרִים"],Sigd:["סיגד"],"Simchat Torah":["שִׂמְחַת תּוֹרָה"],Sukkot:["סוּכּוֹת"],"Sukkot I":["סוּכּוֹת א׳"],"Sukkot II":["סוּכּוֹת ב׳"],"Sukkot II (CH''M)":["סוּכּוֹת ב׳ (חוה״מ)"],"Sukkot III (CH''M)":["סוּכּוֹת ג׳ (חוה״מ)"],"Sukkot IV (CH''M)":["סוּכּוֹת ד׳ (חוה״מ)"],"Sukkot V (CH''M)":["סוּכּוֹת ה׳ (חוה״מ)"],"Sukkot VI (CH''M)":["סוּכּוֹת ו׳ (חוה״מ)"],"Sukkot VII (Hoshana Raba)":["סוּכּוֹת ז׳ (הוֹשַׁעְנָא רַבָּה)"],"Ta'anit Bechorot":["תַּעֲנִית בְּכוֹרוֹת"],"Ta'anit Esther":["תַּעֲנִית אֶסְתֵּר"],"Tish'a B'Av":["תִּשְׁעָה בְּאָב"],"Tu B'Av":["טוּ בְּאָב"],"Tu BiShvat":["טוּ בִּשְׁבָט"],"Tu B'Shvat":["טוּ בִּשְׁבָט"],"Tzom Gedaliah":["צוֹם גְּדַלְיָה"],"Tzom Tammuz":["צוֹם תָּמוּז"],"Yom HaAtzma'ut":["יוֹם הָעַצְמָאוּת"],"Yom HaShoah":["יוֹם הַשּׁוֹאָה"],"Yom HaZikaron":["יוֹם הַזִּכָּרוֹן"],"Yom Kippur":["יוֹם כִּפּוּר"],"Yom Yerushalayim":["יוֹם יְרוּשָׁלַיִם"],"Yom HaAliyah":["יוֹם הַעֲלִיָּה"],"Yom HaAliyah School Observance":["שְׁמִירָת בֵּית הַסֵפֶר לְיוֹם הַעֲלִיָּה"],"Pesach I (on Shabbat)":["פֶּסַח יוֹם א׳ (בְּשַׁבָּת)"],"Pesach Chol ha-Moed Day 1":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם א׳"],"Pesach Chol ha-Moed Day 2":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ב׳"],"Pesach Chol ha-Moed Day 3":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ג׳"],"Pesach Chol ha-Moed Day 4":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ד׳"],"Pesach Chol ha-Moed Day 5":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ה׳"],"Pesach Shabbat Chol ha-Moed":["פֶּסַח שַׁבָּת חוֹל הַמּוֹעֵד"],"Shavuot II (on Shabbat)":["שָׁבוּעוֹת יוֹם ב׳ (בְּשַׁבָּת)"],"Rosh Hashana I (on Shabbat)":["רֹאשׁ הַשָּׁנָה יוֹם א׳ (בְּשַׁבָּת)"],"Yom Kippur (on Shabbat)":["יוֹם כִּפּוּר (בְּשַׁבָּת)"],"Yom Kippur (Mincha, Traditional)":["יוֹם כִּפּוּר מנחה"],"Yom Kippur (Mincha, Alternate)":["יוֹם כִּפּוּר מנחה"],"Sukkot I (on Shabbat)":["סוּכּוֹת יוֹם א׳ (בְּשַׁבָּת)"],"Sukkot Chol ha-Moed Day 1":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם א׳"],"Sukkot Chol ha-Moed Day 2":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ב׳"],"Sukkot Chol ha-Moed Day 3":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ג׳"],"Sukkot Chol ha-Moed Day 4":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ד׳"],"Sukkot Chol ha-Moed Day 5":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ה׳"],"Sukkot Shabbat Chol ha-Moed":["סוּכּוֹת שַׁבָּת חוֹל הַמּוֹעֵד"],"Sukkot Final Day (Hoshana Raba)":["סוּכּוֹת ז׳ (הוֹשַׁעְנָא רַבָּה)"],"Rosh Chodesh Adar":["רֹאשׁ חוֹדֶשׁ אַדָר"],"Rosh Chodesh Adar I":["רֹאשׁ חוֹדֶשׁ אַדָר א׳"],"Rosh Chodesh Adar II":["רֹאשׁ חוֹדֶשׁ אַדָר ב׳"],"Rosh Chodesh Av":["רֹאשׁ חוֹדֶשׁ אָב"],"Rosh Chodesh Cheshvan":["רֹאשׁ חוֹדֶשׁ חֶשְׁוָן"],"Rosh Chodesh Elul":["רֹאשׁ חוֹדֶשׁ אֱלוּל"],"Rosh Chodesh Iyyar":["רֹאשׁ חוֹדֶשׁ אִיָיר"],"Rosh Chodesh Kislev":["רֹאשׁ חוֹדֶשׁ כִּסְלֵו"],"Rosh Chodesh Nisan":["רֹאשׁ חוֹדֶשׁ נִיסָן"],"Rosh Chodesh Sh'vat":["רֹאשׁ חוֹדֶשׁ שְׁבָט"],"Rosh Chodesh Sivan":["רֹאשׁ חוֹדֶשׁ סִיוָן"],"Rosh Chodesh Tamuz":["רֹאשׁ חוֹדֶשׁ תָּמוּז"],"Rosh Chodesh Tevet":["רֹאשׁ חוֹדֶשׁ טֵבֵת"],min:["דקות"],"Fast begins":["תחילת הַצוֹם"],"Fast ends":["סִיּוּם הַצוֹם"],"Rosh Hashana LaBehemot":["רֹאשׁ הַשָּׁנָה לְמַעְשַׂר בְּהֵמָה"],"Tish'a B'Av (observed)":["תִּשְׁעָה בְּאָב נִדחֶה"],"Shabbat Mevarchim Chodesh":["שַׁבָּת מברכים חוֹדֶשׁ"],"Shabbat Shirah":["שַׁבָּת שִׁירָה"],chatzotNight:["חֲצוֹת הַלַיְלָה"],alotHaShachar:["עֲלוֹת הַשַּׁחַר"],misheyakir:["משיכיר - זמן ציצית ותפילין"],misheyakirMachmir:["משיכיר - זמן ציצית ותפילין"],neitzHaChama:["הַנֵץ הַחַמָּה"],sofZmanShma:["סוֹף זְמַן קְרִיאַת שְׁמַע גר״א"],sofZmanTfilla:["סוֹף זְמַן תְּפִלָּה גר״א"],chatzot:["חֲצוֹת הַיּוֹם"],minchaGedola:["מִנְחָה גְּדוֹלָה"],minchaKetana:["מִנְחָה קְטַנָּה"],plagHaMincha:["פְּלַג הַמִּנְחָה"],shkiah:["שְׁקִיעָה"],"Nightfall - End of ordained fasts":["לַיְלָה - גמר תעניות דרבנן"],tzeit:["צֵאת כוכבים"],Lovingkindness:["חֶֽסֶד"],Might:["גְבוּרָה"],Beauty:["תִּפאֶרֶת"],Eternity:["נֶּֽצַח"],Splendor:["הוֹד"],Foundation:["יְּסוֹד"],Majesty:["מַּלְכוּת"],day:["יוֹם"],"Chanukah Day 1":["חֲנוּכָּה יוֹם א׳"],"Chanukah Day 2":["חֲנוּכָּה יוֹם ב׳"],"Chanukah Day 3":["חֲנוּכָּה יוֹם ג׳"],"Chanukah Day 4":["חֲנוּכָּה יוֹם ד׳"],"Chanukah Day 5":["חֲנוּכָּה יוֹם ה׳"],"Chanukah Day 6":["חֲנוּכָּה יוֹם ו׳"],"Chanukah Day 7":["חֲנוּכָּה יוֹם ז׳"],"Chanukah Day 7 (on Rosh Chodesh)":["חֲנוּכָּה יוֹם ז׳ (רֹאשׁ חוֹדֶשׁ)"],"Chanukah Day 8":["חֲנוּכָּה יוֹם ח׳"],Berakhot:["ברכות"],Peah:["פאה"],Demai:["דמאי"],Kilayim:["כלאים"],Sheviit:["שביעית"],Terumot:["תרומות"],Maasrot:["מעשרות"],"Maaser Sheni":["מעשר שני"],Challah:["חלה"],Orlah:["ערלה"],Bikkurim:["ביכורים"],"Rosh Hashanah":["ראש השנה"],Gittin:["גיטין"],"Bava Kamma":["בבא קמא"],"Bava Metzia":["בבא מציעא"],"Bava Batra":["בבא בתרא"],Eduyot:["עדיות"],Avot:["אבות"],Bekhorot:["בכורות"],Arakhin:["ערכין"],Middot:["מדות"],Kelim:["כלים"],Oholot:["אהלות"],Negaim:["נגעים"],Parah:["פרה"],Tahorot:["טהרות"],Mikvaot:["מקואות"],Makhshirin:["מכשירין"],Zavim:["זבים"],"Tevul Yom":["טבול יום"],Yadayim:["ידים"],Oktzin:["עוקצים"],"Yom Kippur Katan":["יוֹם כִּפּוּר קָטָן"]}};var poHe = {headers:headers,contexts:contexts};
7887
7929
 
7888
7930
  Locale.addLocale('he', poHe);
7889
7931
  Locale.addLocale('h', poHe);
@@ -7900,6 +7942,469 @@ var poHeNoNikud = {
7900
7942
  };
7901
7943
  Locale.addLocale('he-x-NoNikud', poHeNoNikud);
7902
7944
 
7945
+ var isObject = isObject$7;
7946
+ var classof = classofRaw$1;
7947
+ var wellKnownSymbol$2 = wellKnownSymbol$b;
7948
+
7949
+ var MATCH$1 = wellKnownSymbol$2('match');
7950
+
7951
+ // `IsRegExp` abstract operation
7952
+ // https://tc39.es/ecma262/#sec-isregexp
7953
+ var isRegexp = function (it) {
7954
+ var isRegExp;
7955
+ return isObject(it) && ((isRegExp = it[MATCH$1]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');
7956
+ };
7957
+
7958
+ var isRegExp = isRegexp;
7959
+
7960
+ var $TypeError = TypeError;
7961
+
7962
+ var notARegexp = function (it) {
7963
+ if (isRegExp(it)) {
7964
+ throw $TypeError("The method doesn't accept regular expressions");
7965
+ } return it;
7966
+ };
7967
+
7968
+ var wellKnownSymbol$1 = wellKnownSymbol$b;
7969
+
7970
+ var MATCH = wellKnownSymbol$1('match');
7971
+
7972
+ var correctIsRegexpLogic = function (METHOD_NAME) {
7973
+ var regexp = /./;
7974
+ try {
7975
+ '/./'[METHOD_NAME](regexp);
7976
+ } catch (error1) {
7977
+ try {
7978
+ regexp[MATCH] = false;
7979
+ return '/./'[METHOD_NAME](regexp);
7980
+ } catch (error2) { /* empty */ }
7981
+ } return false;
7982
+ };
7983
+
7984
+ var $$2 = _export;
7985
+ var uncurryThis$1 = functionUncurryThis;
7986
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
7987
+ var toLength = toLength$2;
7988
+ var toString$1 = toString$4;
7989
+ var notARegExp$1 = notARegexp;
7990
+ var requireObjectCoercible$1 = requireObjectCoercible$5;
7991
+ var correctIsRegExpLogic$1 = correctIsRegexpLogic;
7992
+
7993
+ // eslint-disable-next-line es-x/no-string-prototype-startswith -- safe
7994
+ var un$StartsWith = uncurryThis$1(''.startsWith);
7995
+ var stringSlice = uncurryThis$1(''.slice);
7996
+ var min = Math.min;
7997
+
7998
+ var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic$1('startsWith');
7999
+ // https://github.com/zloirock/core-js/pull/702
8000
+ var MDN_POLYFILL_BUG = !CORRECT_IS_REGEXP_LOGIC && !!function () {
8001
+ var descriptor = getOwnPropertyDescriptor(String.prototype, 'startsWith');
8002
+ return descriptor && !descriptor.writable;
8003
+ }();
8004
+
8005
+ // `String.prototype.startsWith` method
8006
+ // https://tc39.es/ecma262/#sec-string.prototype.startswith
8007
+ $$2({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
8008
+ startsWith: function startsWith(searchString /* , position = 0 */) {
8009
+ var that = toString$1(requireObjectCoercible$1(this));
8010
+ notARegExp$1(searchString);
8011
+ var index = toLength(min(arguments.length > 1 ? arguments[1] : undefined, that.length));
8012
+ var search = toString$1(searchString);
8013
+ return un$StartsWith
8014
+ ? un$StartsWith(that, search, index)
8015
+ : stringSlice(that, index, index + search.length) === search;
8016
+ }
8017
+ });
8018
+
8019
+ var objectDefineProperties = {};
8020
+
8021
+ var internalObjectKeys = objectKeysInternal;
8022
+ var enumBugKeys$1 = enumBugKeys$3;
8023
+
8024
+ // `Object.keys` method
8025
+ // https://tc39.es/ecma262/#sec-object.keys
8026
+ // eslint-disable-next-line es-x/no-object-keys -- safe
8027
+ var objectKeys$1 = Object.keys || function keys(O) {
8028
+ return internalObjectKeys(O, enumBugKeys$1);
8029
+ };
8030
+
8031
+ var DESCRIPTORS = descriptors;
8032
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
8033
+ var definePropertyModule = objectDefineProperty;
8034
+ var anObject$1 = anObject$7;
8035
+ var toIndexedObject = toIndexedObject$5;
8036
+ var objectKeys = objectKeys$1;
8037
+
8038
+ // `Object.defineProperties` method
8039
+ // https://tc39.es/ecma262/#sec-object.defineproperties
8040
+ // eslint-disable-next-line es-x/no-object-defineproperties -- safe
8041
+ objectDefineProperties.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
8042
+ anObject$1(O);
8043
+ var props = toIndexedObject(Properties);
8044
+ var keys = objectKeys(Properties);
8045
+ var length = keys.length;
8046
+ var index = 0;
8047
+ var key;
8048
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
8049
+ return O;
8050
+ };
8051
+
8052
+ var getBuiltIn = getBuiltIn$5;
8053
+
8054
+ var html$1 = getBuiltIn('document', 'documentElement');
8055
+
8056
+ /* global ActiveXObject -- old IE, WSH */
8057
+
8058
+ var anObject = anObject$7;
8059
+ var definePropertiesModule = objectDefineProperties;
8060
+ var enumBugKeys = enumBugKeys$3;
8061
+ var hiddenKeys = hiddenKeys$4;
8062
+ var html = html$1;
8063
+ var documentCreateElement = documentCreateElement$1;
8064
+ var sharedKey = sharedKey$2;
8065
+
8066
+ var GT = '>';
8067
+ var LT = '<';
8068
+ var PROTOTYPE = 'prototype';
8069
+ var SCRIPT = 'script';
8070
+ var IE_PROTO = sharedKey('IE_PROTO');
8071
+
8072
+ var EmptyConstructor = function () { /* empty */ };
8073
+
8074
+ var scriptTag = function (content) {
8075
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
8076
+ };
8077
+
8078
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
8079
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
8080
+ activeXDocument.write(scriptTag(''));
8081
+ activeXDocument.close();
8082
+ var temp = activeXDocument.parentWindow.Object;
8083
+ activeXDocument = null; // avoid memory leak
8084
+ return temp;
8085
+ };
8086
+
8087
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
8088
+ var NullProtoObjectViaIFrame = function () {
8089
+ // Thrash, waste and sodomy: IE GC bug
8090
+ var iframe = documentCreateElement('iframe');
8091
+ var JS = 'java' + SCRIPT + ':';
8092
+ var iframeDocument;
8093
+ iframe.style.display = 'none';
8094
+ html.appendChild(iframe);
8095
+ // https://github.com/zloirock/core-js/issues/475
8096
+ iframe.src = String(JS);
8097
+ iframeDocument = iframe.contentWindow.document;
8098
+ iframeDocument.open();
8099
+ iframeDocument.write(scriptTag('document.F=Object'));
8100
+ iframeDocument.close();
8101
+ return iframeDocument.F;
8102
+ };
8103
+
8104
+ // Check for document.domain and active x support
8105
+ // No need to use active x approach when document.domain is not set
8106
+ // see https://github.com/es-shims/es5-shim/issues/150
8107
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
8108
+ // avoid IE GC bug
8109
+ var activeXDocument;
8110
+ var NullProtoObject = function () {
8111
+ try {
8112
+ activeXDocument = new ActiveXObject('htmlfile');
8113
+ } catch (error) { /* ignore */ }
8114
+ NullProtoObject = typeof document != 'undefined'
8115
+ ? document.domain && activeXDocument
8116
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
8117
+ : NullProtoObjectViaIFrame()
8118
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
8119
+ var length = enumBugKeys.length;
8120
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
8121
+ return NullProtoObject();
8122
+ };
8123
+
8124
+ hiddenKeys[IE_PROTO] = true;
8125
+
8126
+ // `Object.create` method
8127
+ // https://tc39.es/ecma262/#sec-object.create
8128
+ // eslint-disable-next-line es-x/no-object-create -- safe
8129
+ var objectCreate = Object.create || function create(O, Properties) {
8130
+ var result;
8131
+ if (O !== null) {
8132
+ EmptyConstructor[PROTOTYPE] = anObject(O);
8133
+ result = new EmptyConstructor();
8134
+ EmptyConstructor[PROTOTYPE] = null;
8135
+ // add "__proto__" for Object.getPrototypeOf polyfill
8136
+ result[IE_PROTO] = O;
8137
+ } else result = NullProtoObject();
8138
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
8139
+ };
8140
+
8141
+ var wellKnownSymbol = wellKnownSymbol$b;
8142
+ var create = objectCreate;
8143
+ var defineProperty = objectDefineProperty.f;
8144
+
8145
+ var UNSCOPABLES = wellKnownSymbol('unscopables');
8146
+ var ArrayPrototype = Array.prototype;
8147
+
8148
+ // Array.prototype[@@unscopables]
8149
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
8150
+ if (ArrayPrototype[UNSCOPABLES] == undefined) {
8151
+ defineProperty(ArrayPrototype, UNSCOPABLES, {
8152
+ configurable: true,
8153
+ value: create(null)
8154
+ });
8155
+ }
8156
+
8157
+ // add a key to Array.prototype[@@unscopables]
8158
+ var addToUnscopables$1 = function (key) {
8159
+ ArrayPrototype[UNSCOPABLES][key] = true;
8160
+ };
8161
+
8162
+ var $$1 = _export;
8163
+ var $includes = arrayIncludes.includes;
8164
+ var fails = fails$e;
8165
+ var addToUnscopables = addToUnscopables$1;
8166
+
8167
+ // FF99+ bug
8168
+ var BROKEN_ON_SPARSE = fails(function () {
8169
+ return !Array(1).includes();
8170
+ });
8171
+
8172
+ // `Array.prototype.includes` method
8173
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
8174
+ $$1({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
8175
+ includes: function includes(el /* , fromIndex = 0 */) {
8176
+ return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
8177
+ }
8178
+ });
8179
+
8180
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
8181
+ addToUnscopables('includes');
8182
+
8183
+ var $ = _export;
8184
+ var uncurryThis = functionUncurryThis;
8185
+ var notARegExp = notARegexp;
8186
+ var requireObjectCoercible = requireObjectCoercible$5;
8187
+ var toString = toString$4;
8188
+ var correctIsRegExpLogic = correctIsRegexpLogic;
8189
+
8190
+ var stringIndexOf = uncurryThis(''.indexOf);
8191
+
8192
+ // `String.prototype.includes` method
8193
+ // https://tc39.es/ecma262/#sec-string.prototype.includes
8194
+ $({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
8195
+ includes: function includes(searchString /* , position = 0 */) {
8196
+ return !!~stringIndexOf(
8197
+ toString(requireObjectCoercible(this)),
8198
+ toString(notARegExp(searchString)),
8199
+ arguments.length > 1 ? arguments[1] : undefined
8200
+ );
8201
+ }
8202
+ });
8203
+
8204
+ var NONE$1 = 0;
8205
+ var HALF = 1;
8206
+ var WHOLE = 2;
8207
+ /**
8208
+ * @private
8209
+ * @param {Event[]} events
8210
+ * @param {HDate} hdate
8211
+ * @return {number}
8212
+ */
8213
+
8214
+ function hallel_(events, hdate) {
8215
+ var whole = events.filter(function (ev) {
8216
+ /** @type {string} */
8217
+ var desc = ev.getDesc();
8218
+ /** @type {HDate} */
8219
+
8220
+ var hd = ev.getDate();
8221
+ var month = hd.getMonth();
8222
+ var mday = hd.getDate();
8223
+ return desc.startsWith('Chanukah') || desc.startsWith('Shavuot') || desc.startsWith('Sukkot') || month === months.NISAN && (mday === 15 || mday === 16) && ev.getFlags() & flags.CHAG || // Pesach
8224
+ desc === 'Yom HaAtzma\'ut' || desc === 'Yom Yerushalayim';
8225
+ }).map(function (ev) {
8226
+ return ev.getDate().abs();
8227
+ });
8228
+ var abs = hdate.abs();
8229
+
8230
+ if (whole.includes(abs)) {
8231
+ return WHOLE;
8232
+ }
8233
+
8234
+ var half = events.filter(function (ev) {
8235
+ var desc = ev.getDesc();
8236
+ return ev.getFlags() & flags.ROSH_CHODESH || desc.startsWith('Pesach') && desc !== 'Pesach I' && desc !== 'Pesach II';
8237
+ }).map(function (ev) {
8238
+ return ev.getDate().abs();
8239
+ });
8240
+
8241
+ if (half.includes(abs)) {
8242
+ return HALF;
8243
+ }
8244
+
8245
+ return NONE$1;
8246
+ }
8247
+
8248
+ /**
8249
+ * @private
8250
+ * @param {number} start
8251
+ * @param {number} end
8252
+ * @return {number[]}
8253
+ */
8254
+
8255
+ function range(start, end) {
8256
+ var arr = [];
8257
+
8258
+ for (var i = start; i <= end; i++) {
8259
+ arr.push(i);
8260
+ }
8261
+
8262
+ return arr;
8263
+ }
8264
+
8265
+ var cache = Object.create(null);
8266
+ var NONE = {
8267
+ shacharit: false,
8268
+ mincha: false,
8269
+ allCongs: false
8270
+ };
8271
+ /**
8272
+ * @private
8273
+ * @param {HDate} hdate
8274
+ * @param {boolean} il
8275
+ * @return {TachanunResult}
8276
+ */
8277
+
8278
+ function tachanun_(hdate, il) {
8279
+ return tachanun0(hdate, il, true);
8280
+ }
8281
+ /**
8282
+ * @private
8283
+ * @param {HDate} hdate
8284
+ * @param {boolean} il
8285
+ * @param {boolean} checkNext
8286
+ * @return {TachanunResult}
8287
+ */
8288
+
8289
+ function tachanun0(hdate, il, checkNext) {
8290
+ var year = hdate.getFullYear();
8291
+ var key = "".concat(year, "-").concat(il ? 1 : 0);
8292
+ var dates = cache[key] = cache[key] || tachanunYear(year, il);
8293
+ var abs = hdate.abs();
8294
+
8295
+ if (dates.none.indexOf(abs) > -1) {
8296
+ return NONE;
8297
+ }
8298
+
8299
+ var dow = hdate.getDay();
8300
+ var ret = {
8301
+ shacharit: false,
8302
+ mincha: false,
8303
+ allCongs: false
8304
+ };
8305
+
8306
+ if (dates.some.indexOf(abs) === -1) {
8307
+ ret.allCongs = true;
8308
+ }
8309
+
8310
+ if (dow !== 6) {
8311
+ ret.shacharit = true;
8312
+ }
8313
+
8314
+ var tomorrow = abs + 1;
8315
+
8316
+ if (checkNext && dates.yesPrev.indexOf(tomorrow) === -1) {
8317
+ var tmp = tachanun0(new HDate(tomorrow), il, false);
8318
+ ret.mincha = tmp.shacharit;
8319
+ } else {
8320
+ ret.mincha = dow !== 5;
8321
+ }
8322
+
8323
+ if (ret.allCongs && !ret.mincha && !ret.shacharit) {
8324
+ return NONE;
8325
+ }
8326
+
8327
+ return ret;
8328
+ }
8329
+ /**
8330
+ * @private
8331
+ * @param {number} year
8332
+ * @param {boolean} il
8333
+ * @return {*}
8334
+ */
8335
+
8336
+
8337
+ function tachanunYear(year, il) {
8338
+ var leap = HDate.isLeapYear(year);
8339
+ var monthsInYear = 12 + leap;
8340
+ var av9dt = new HDate(9, months.AV, year);
8341
+
8342
+ if (av9dt.getDay() === 6) {
8343
+ av9dt = av9dt.next();
8344
+ }
8345
+
8346
+ var shushPurim = new HDate(15, months.ADAR_II, year);
8347
+
8348
+ if (shushPurim.getDay() === 6) {
8349
+ shushPurim = shushPurim.next();
8350
+ }
8351
+
8352
+ var none = [].concat( // Rosh Chodesh - 1st of every month. Also includes RH day 1 (1 Tishrei)
8353
+ range(1, monthsInYear).map(function (month) {
8354
+ return new HDate(1, month, year);
8355
+ }), // Rosh Chodesh - 30th of months that have one
8356
+ range(1, monthsInYear).filter(function (month) {
8357
+ return HDate.daysInMonth(month, year) === 30;
8358
+ }).map(function (month) {
8359
+ return new HDate(30, month, year);
8360
+ }), new HDate(2, months.TISHREI, year), // Rosh Hashana II
8361
+ // entire month of Nisan
8362
+ range(1, HDate.daysInMonth(months.NISAN, year)).map(function (mday) {
8363
+ return new HDate(mday, months.NISAN, year);
8364
+ }), new HDate(18, months.IYYAR, year), // Lag BaOmer
8365
+ // Rosh Chodesh Sivan thru Isru Chag
8366
+ range(1, 8 - (il ? 1 : 0)).map(function (mday) {
8367
+ return new HDate(mday, months.SIVAN, year);
8368
+ }), av9dt, // Tisha B'Av
8369
+ new HDate(15, months.AV, year), // Tu B'Av
8370
+ new HDate(29, months.ELUL, year), // Erev Rosh Hashanah
8371
+ // Erev Yom Kippur thru Isru Chag
8372
+ range(9, 24 - (il ? 1 : 0)).map(function (mday) {
8373
+ return new HDate(mday, months.TISHREI, year);
8374
+ }), // Chanukah
8375
+ range(25, 33).map(function (mday) {
8376
+ return new HDate(mday, months.KISLEV, year);
8377
+ }), new HDate(15, months.SHVAT, year), // Tu BiShvat
8378
+ new HDate(14, months.ADAR_II, year), // Purim
8379
+ shushPurim, leap ? new HDate(14, months.ADAR_I, year) : [] // Purim Katan
8380
+ );
8381
+ var some = [].concat( // Until 14 Sivan
8382
+ range(1, 13).map(function (mday) {
8383
+ return new HDate(mday, months.SIVAN, year);
8384
+ }), // Until after Rosh Chodesh Cheshvan
8385
+ range(20, 31).map(function (mday) {
8386
+ return new HDate(mday, months.TISHREI, year);
8387
+ }), new HDate(14, months.IYYAR, year), // Pesach Sheini
8388
+ // Yom HaAtzma'ut, which changes based on day of week
8389
+ year >= 5708 ? dateYomHaZikaron(year).next() : [], // Yom Yerushalayim
8390
+ year >= 5727 ? new HDate(28, months.IYYAR, year) : []);
8391
+ var yesPrev = [].concat(new HDate(29, months.ELUL, year - 1), // Erev Rosh Hashanah
8392
+ new HDate(9, months.TISHREI, year), // Erev Yom Kippur
8393
+ new HDate(14, months.IYYAR, year) // Pesach Sheini
8394
+ );
8395
+ return {
8396
+ none: none.map(function (hd) {
8397
+ return hd.abs();
8398
+ }).sort(),
8399
+ some: some.map(function (hd) {
8400
+ return hd.abs();
8401
+ }).sort(),
8402
+ yesPrev: yesPrev.map(function (hd) {
8403
+ return hd.abs();
8404
+ }).sort()
8405
+ };
8406
+ }
8407
+
7903
8408
  var FRI = 5;
7904
8409
  var SAT = 6;
7905
8410
  var NISAN = months.NISAN; // const IYYAR = months.IYYAR;
@@ -8076,6 +8581,13 @@ function checkCandleOptions(options) {
8076
8581
  * Possible values are `true` and `false`; the default is locale dependent.
8077
8582
  */
8078
8583
 
8584
+ /**
8585
+ * @typedef {Object} TachanunResult
8586
+ * @property {boolean} shacharit Tachanun is said at Shacharit
8587
+ * @property {boolean} mincha Tachanun is said at Mincha
8588
+ * @property {boolean} allCongs All congregations say Tachanun on the day
8589
+ */
8590
+
8079
8591
  /**
8080
8592
  * Gets the R.D. days for a number, Date, or HDate
8081
8593
  * @private
@@ -8290,6 +8802,8 @@ function observedInIsrael(ev) {
8290
8802
  function observedInDiaspora(ev) {
8291
8803
  return ev.observedInDiaspora();
8292
8804
  }
8805
+
8806
+ var yearArrayCache = Object.create(null);
8293
8807
  /**
8294
8808
  * HebrewCalendar is the main interface to the `@hebcal/core` library.
8295
8809
  * This namespace is used to calculate holidays, rosh chodesh, candle lighting & havdalah times,
@@ -8297,7 +8811,6 @@ function observedInDiaspora(ev) {
8297
8811
  * Event names can be rendered in several languges using the `locale` option.
8298
8812
  */
8299
8813
 
8300
-
8301
8814
  var HebrewCalendar = /*#__PURE__*/function () {
8302
8815
  function HebrewCalendar() {
8303
8816
  _classCallCheck(this, HebrewCalendar);
@@ -8649,10 +9162,17 @@ var HebrewCalendar = /*#__PURE__*/function () {
8649
9162
  }, {
8650
9163
  key: "getHolidaysForYearArray",
8651
9164
  value: function getHolidaysForYearArray(year, il) {
9165
+ var cacheKey = "".concat(year, "-").concat(il ? 1 : 0);
9166
+ var events = yearArrayCache[cacheKey];
9167
+
9168
+ if (events) {
9169
+ return events;
9170
+ }
9171
+
8652
9172
  var yearMap = getHolidaysForYear_(year);
8653
9173
  var startAbs = HDate.hebrew2abs(year, TISHREI, 1);
8654
9174
  var endAbs = HDate.hebrew2abs(year + 1, TISHREI, 1) - 1;
8655
- var events = [];
9175
+ events = [];
8656
9176
  var myFilter = il ? observedInIsrael : observedInDiaspora;
8657
9177
 
8658
9178
  for (var absDt = startAbs; absDt <= endAbs; absDt++) {
@@ -8665,6 +9185,7 @@ var HebrewCalendar = /*#__PURE__*/function () {
8665
9185
  }
8666
9186
  }
8667
9187
 
9188
+ yearArrayCache[cacheKey] = events;
8668
9189
  return events;
8669
9190
  }
8670
9191
  /**
@@ -8746,6 +9267,56 @@ var HebrewCalendar = /*#__PURE__*/function () {
8746
9267
  value: function getSedra(hyear, il) {
8747
9268
  return getSedra_(hyear, il);
8748
9269
  }
9270
+ /**
9271
+ * Return a number containing information on what Hallel is said on that day.
9272
+ *
9273
+ * Whole Hallel is said on Chanukah, the first Yom Tov of Pesach, Shavuot, Sukkot,
9274
+ * Yom Ha'atzmaut, and Yom Yerushalayim.
9275
+ *
9276
+ * Half Hallel is said on Rosh Chodesh (not Rosh Hashanah), and the last 6 days of Pesach.
9277
+ *
9278
+ * The number is one of the following values:
9279
+ *
9280
+ * 0 - No Hallel
9281
+ * 1 - Half Hallel
9282
+ * 2 - Whole Hallel
9283
+ *
9284
+ * @param {HDate} hdate
9285
+ * @param {boolean} il
9286
+ * @return {number}
9287
+ */
9288
+
9289
+ }, {
9290
+ key: "hallel",
9291
+ value: function hallel(hdate, il) {
9292
+ var events = HebrewCalendar.getHolidaysForYearArray(hdate.getFullYear(), il);
9293
+ return hallel_(events, hdate);
9294
+ }
9295
+ /**
9296
+ * Return details on what Tachanun (or Tzidchatcha on Shabbat) is said on `hdate`.
9297
+ *
9298
+ * Tachanun is not said on Rosh Chodesh, the month of Nisan, Lag Baomer,
9299
+ * Rosh Chodesh Sivan until Isru Chag, Tisha B'av, 15 Av, Erev Rosh Hashanah,
9300
+ * Rosh Hashanah, Erev Yom Kippur until after Simchat Torah, Chanukah,
9301
+ * Tu B'shvat, Purim and Shushan Purim, and Purim and Shushan Purim Katan.
9302
+ *
9303
+ * In some congregations Tachanun is not said until from Rosh Chodesh Sivan
9304
+ * until 14th Sivan, Sukkot until after Rosh Chodesh Cheshvan, Pesach Sheini,
9305
+ * Yom Ha'atzmaut, and Yom Yerushalayim.
9306
+ *
9307
+ * Tachanun is not said at Mincha on days before it is not said at Shacharit.
9308
+ *
9309
+ * Tachanun is not said at Shacharit on Shabbat, but is at Mincha, usually.
9310
+ * @param {HDate} hdate
9311
+ * @param {boolean} il
9312
+ * @return {TachanunResult}
9313
+ */
9314
+
9315
+ }, {
9316
+ key: "tachanun",
9317
+ value: function tachanun(hdate, il) {
9318
+ return tachanun_(hdate, il);
9319
+ }
8749
9320
  }]);
8750
9321
 
8751
9322
  return HebrewCalendar;