@hebcal/core 3.41.2 → 3.42.0

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.2 */
1
+ /*! @hebcal/core v3.42.0 */
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.2',
516
+ version: '3.23.3',
517
517
  mode: 'global',
518
518
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
519
- license: 'https://github.com/zloirock/core-js/blob/v3.23.2/LICENSE',
519
+ license: 'https://github.com/zloirock/core-js/blob/v3.23.3/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,14 +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
- defineProperty(value, 'name', { value: name, configurable: true });
893
+ if (DESCRIPTORS$1) defineProperty$1(value, 'name', { value: name, configurable: true });
894
+ else value.name = name;
894
895
  }
895
896
  if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
896
- defineProperty(value, 'length', { value: options.arity });
897
+ defineProperty$1(value, 'length', { value: options.arity });
897
898
  }
898
899
  try {
899
900
  if (options && hasOwn$2(options, 'constructor') && options.constructor) {
900
- if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
901
+ if (DESCRIPTORS$1) defineProperty$1(value, 'prototype', { writable: false });
901
902
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
902
903
  } else if (value.prototype) value.prototype = undefined;
903
904
  } catch (error) { /* empty */ }
@@ -914,7 +915,7 @@ Function.prototype.toString = makeBuiltIn$1(function toString() {
914
915
  }, 'toString');
915
916
 
916
917
  var isCallable$3 = isCallable$c;
917
- var definePropertyModule$2 = objectDefineProperty;
918
+ var definePropertyModule$3 = objectDefineProperty;
918
919
  var makeBuiltIn = makeBuiltIn$2.exports;
919
920
  var defineGlobalProperty$1 = defineGlobalProperty$3;
920
921
 
@@ -927,10 +928,12 @@ var defineBuiltIn$1 = function (O, key, value, options) {
927
928
  if (simple) O[key] = value;
928
929
  else defineGlobalProperty$1(key, value);
929
930
  } else {
930
- if (!options.unsafe) delete O[key];
931
- else if (O[key]) simple = true;
931
+ try {
932
+ if (!options.unsafe) delete O[key];
933
+ else if (O[key]) simple = true;
934
+ } catch (error) { /* empty */ }
932
935
  if (simple) O[key] = value;
933
- else definePropertyModule$2.f(O, key, {
936
+ else definePropertyModule$3.f(O, key, {
934
937
  value: value,
935
938
  enumerable: false,
936
939
  configurable: !options.nonConfigurable,
@@ -965,42 +968,42 @@ var toIntegerOrInfinity$2 = function (argument) {
965
968
  var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
966
969
 
967
970
  var max$2 = Math.max;
968
- var min$1 = Math.min;
971
+ var min$2 = Math.min;
969
972
 
970
973
  // Helper for a popular repeating case of the spec:
971
974
  // Let integer be ? ToInteger(index).
972
975
  // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
973
976
  var toAbsoluteIndex$4 = function (index, length) {
974
977
  var integer = toIntegerOrInfinity$1(index);
975
- 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);
976
979
  };
977
980
 
978
981
  var toIntegerOrInfinity = toIntegerOrInfinity$2;
979
982
 
980
- var min = Math.min;
983
+ var min$1 = Math.min;
981
984
 
982
985
  // `ToLength` abstract operation
983
986
  // https://tc39.es/ecma262/#sec-tolength
984
- var toLength$1 = function (argument) {
985
- 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
986
989
  };
987
990
 
988
- var toLength = toLength$1;
991
+ var toLength$1 = toLength$2;
989
992
 
990
993
  // `LengthOfArrayLike` abstract operation
991
994
  // https://tc39.es/ecma262/#sec-lengthofarraylike
992
995
  var lengthOfArrayLike$5 = function (obj) {
993
- return toLength(obj.length);
996
+ return toLength$1(obj.length);
994
997
  };
995
998
 
996
- var toIndexedObject$2 = toIndexedObject$4;
999
+ var toIndexedObject$3 = toIndexedObject$5;
997
1000
  var toAbsoluteIndex$3 = toAbsoluteIndex$4;
998
1001
  var lengthOfArrayLike$4 = lengthOfArrayLike$5;
999
1002
 
1000
1003
  // `Array.prototype.{ indexOf, includes }` methods implementation
1001
1004
  var createMethod$1 = function (IS_INCLUDES) {
1002
1005
  return function ($this, el, fromIndex) {
1003
- var O = toIndexedObject$2($this);
1006
+ var O = toIndexedObject$3($this);
1004
1007
  var length = lengthOfArrayLike$4(O);
1005
1008
  var index = toAbsoluteIndex$3(fromIndex, length);
1006
1009
  var value;
@@ -1026,20 +1029,20 @@ var arrayIncludes = {
1026
1029
  indexOf: createMethod$1(false)
1027
1030
  };
1028
1031
 
1029
- var uncurryThis$7 = functionUncurryThis;
1032
+ var uncurryThis$9 = functionUncurryThis;
1030
1033
  var hasOwn$1 = hasOwnProperty_1;
1031
- var toIndexedObject$1 = toIndexedObject$4;
1034
+ var toIndexedObject$2 = toIndexedObject$5;
1032
1035
  var indexOf = arrayIncludes.indexOf;
1033
- var hiddenKeys$1 = hiddenKeys$3;
1036
+ var hiddenKeys$2 = hiddenKeys$4;
1034
1037
 
1035
- var push$1 = uncurryThis$7([].push);
1038
+ var push$1 = uncurryThis$9([].push);
1036
1039
 
1037
1040
  var objectKeysInternal = function (object, names) {
1038
- var O = toIndexedObject$1(object);
1041
+ var O = toIndexedObject$2(object);
1039
1042
  var i = 0;
1040
1043
  var result = [];
1041
1044
  var key;
1042
- 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);
1043
1046
  // Don't enum bug & hidden keys
1044
1047
  while (names.length > i) if (hasOwn$1(O, key = names[i++])) {
1045
1048
  ~indexOf(result, key) || push$1(result, key);
@@ -1048,7 +1051,7 @@ var objectKeysInternal = function (object, names) {
1048
1051
  };
1049
1052
 
1050
1053
  // IE8- don't enum bug keys
1051
- var enumBugKeys$1 = [
1054
+ var enumBugKeys$3 = [
1052
1055
  'constructor',
1053
1056
  'hasOwnProperty',
1054
1057
  'isPrototypeOf',
@@ -1058,16 +1061,16 @@ var enumBugKeys$1 = [
1058
1061
  'valueOf'
1059
1062
  ];
1060
1063
 
1061
- var internalObjectKeys = objectKeysInternal;
1062
- var enumBugKeys = enumBugKeys$1;
1064
+ var internalObjectKeys$1 = objectKeysInternal;
1065
+ var enumBugKeys$2 = enumBugKeys$3;
1063
1066
 
1064
- var hiddenKeys = enumBugKeys.concat('length', 'prototype');
1067
+ var hiddenKeys$1 = enumBugKeys$2.concat('length', 'prototype');
1065
1068
 
1066
1069
  // `Object.getOwnPropertyNames` method
1067
1070
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
1068
1071
  // eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
1069
1072
  objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1070
- return internalObjectKeys(O, hiddenKeys);
1073
+ return internalObjectKeys$1(O, hiddenKeys$1);
1071
1074
  };
1072
1075
 
1073
1076
  var objectGetOwnPropertySymbols = {};
@@ -1075,17 +1078,17 @@ var objectGetOwnPropertySymbols = {};
1075
1078
  // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
1076
1079
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1077
1080
 
1078
- var getBuiltIn$1 = getBuiltIn$4;
1079
- var uncurryThis$6 = functionUncurryThis;
1081
+ var getBuiltIn$2 = getBuiltIn$5;
1082
+ var uncurryThis$8 = functionUncurryThis;
1080
1083
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1081
1084
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1082
- var anObject$3 = anObject$5;
1085
+ var anObject$5 = anObject$7;
1083
1086
 
1084
- var concat = uncurryThis$6([].concat);
1087
+ var concat = uncurryThis$8([].concat);
1085
1088
 
1086
1089
  // all object keys, includes non-enumerable and symbols
1087
- var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
1088
- 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));
1089
1092
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1090
1093
  return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
1091
1094
  };
@@ -1093,11 +1096,11 @@ var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
1093
1096
  var hasOwn = hasOwnProperty_1;
1094
1097
  var ownKeys = ownKeys$1;
1095
1098
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
1096
- var definePropertyModule$1 = objectDefineProperty;
1099
+ var definePropertyModule$2 = objectDefineProperty;
1097
1100
 
1098
1101
  var copyConstructorProperties$1 = function (target, source, exceptions) {
1099
1102
  var keys = ownKeys(source);
1100
- var defineProperty = definePropertyModule$1.f;
1103
+ var defineProperty = definePropertyModule$2.f;
1101
1104
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1102
1105
  for (var i = 0; i < keys.length; i++) {
1103
1106
  var key = keys[i];
@@ -1107,7 +1110,7 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
1107
1110
  }
1108
1111
  };
1109
1112
 
1110
- var fails$5 = fails$d;
1113
+ var fails$6 = fails$e;
1111
1114
  var isCallable$2 = isCallable$c;
1112
1115
 
1113
1116
  var replacement = /#|\.prototype\./;
@@ -1116,7 +1119,7 @@ var isForced$1 = function (feature, detection) {
1116
1119
  var value = data[normalize(feature)];
1117
1120
  return value == POLYFILL ? true
1118
1121
  : value == NATIVE ? false
1119
- : isCallable$2(detection) ? fails$5(detection)
1122
+ : isCallable$2(detection) ? fails$6(detection)
1120
1123
  : !!detection;
1121
1124
  };
1122
1125
 
@@ -1131,7 +1134,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
1131
1134
  var isForced_1 = isForced$1;
1132
1135
 
1133
1136
  var global$1 = global$a;
1134
- var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
1137
+ var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1135
1138
  var createNonEnumerableProperty = createNonEnumerableProperty$2;
1136
1139
  var defineBuiltIn = defineBuiltIn$1;
1137
1140
  var defineGlobalProperty = defineGlobalProperty$3;
@@ -1168,7 +1171,7 @@ var _export = function (options, source) {
1168
1171
  if (target) for (key in source) {
1169
1172
  sourceProperty = source[key];
1170
1173
  if (options.dontCallGetSet) {
1171
- descriptor = getOwnPropertyDescriptor(target, key);
1174
+ descriptor = getOwnPropertyDescriptor$1(target, key);
1172
1175
  targetProperty = descriptor && descriptor.value;
1173
1176
  } else targetProperty = target[key];
1174
1177
  FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
@@ -1185,18 +1188,18 @@ var _export = function (options, source) {
1185
1188
  }
1186
1189
  };
1187
1190
 
1188
- var classof$4 = classofRaw$1;
1191
+ var classof$5 = classofRaw$1;
1189
1192
 
1190
1193
  // `IsArray` abstract operation
1191
1194
  // https://tc39.es/ecma262/#sec-isarray
1192
1195
  // eslint-disable-next-line es-x/no-array-isarray -- safe
1193
1196
  var isArray$1 = Array.isArray || function isArray(argument) {
1194
- return classof$4(argument) == 'Array';
1197
+ return classof$5(argument) == 'Array';
1195
1198
  };
1196
1199
 
1197
- var wellKnownSymbol$6 = wellKnownSymbol$8;
1200
+ var wellKnownSymbol$9 = wellKnownSymbol$b;
1198
1201
 
1199
- var TO_STRING_TAG$1 = wellKnownSymbol$6('toStringTag');
1202
+ var TO_STRING_TAG$1 = wellKnownSymbol$9('toStringTag');
1200
1203
  var test$1 = {};
1201
1204
 
1202
1205
  test$1[TO_STRING_TAG$1] = 'z';
@@ -1206,9 +1209,9 @@ var toStringTagSupport = String(test$1) === '[object z]';
1206
1209
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1207
1210
  var isCallable$1 = isCallable$c;
1208
1211
  var classofRaw = classofRaw$1;
1209
- var wellKnownSymbol$5 = wellKnownSymbol$8;
1212
+ var wellKnownSymbol$8 = wellKnownSymbol$b;
1210
1213
 
1211
- var TO_STRING_TAG = wellKnownSymbol$5('toStringTag');
1214
+ var TO_STRING_TAG = wellKnownSymbol$8('toStringTag');
1212
1215
  var $Object = Object;
1213
1216
 
1214
1217
  // ES3 wrong here
@@ -1222,7 +1225,7 @@ var tryGet = function (it, key) {
1222
1225
  };
1223
1226
 
1224
1227
  // getting tag from ES6+ `Object.prototype.toString`
1225
- var classof$3 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1228
+ var classof$4 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1226
1229
  var O, tag, result;
1227
1230
  return it === undefined ? 'Undefined' : it === null ? 'Null'
1228
1231
  // @@toStringTag case
@@ -1233,18 +1236,18 @@ var classof$3 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1233
1236
  : (result = classofRaw(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
1234
1237
  };
1235
1238
 
1236
- var uncurryThis$5 = functionUncurryThis;
1237
- var fails$4 = fails$d;
1239
+ var uncurryThis$7 = functionUncurryThis;
1240
+ var fails$5 = fails$e;
1238
1241
  var isCallable = isCallable$c;
1239
- var classof$2 = classof$3;
1240
- var getBuiltIn = getBuiltIn$4;
1242
+ var classof$3 = classof$4;
1243
+ var getBuiltIn$1 = getBuiltIn$5;
1241
1244
  var inspectSource = inspectSource$3;
1242
1245
 
1243
1246
  var noop = function () { /* empty */ };
1244
1247
  var empty = [];
1245
- var construct = getBuiltIn('Reflect', 'construct');
1248
+ var construct = getBuiltIn$1('Reflect', 'construct');
1246
1249
  var constructorRegExp = /^\s*(?:class|function)\b/;
1247
- var exec = uncurryThis$5(constructorRegExp.exec);
1250
+ var exec = uncurryThis$7(constructorRegExp.exec);
1248
1251
  var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
1249
1252
 
1250
1253
  var isConstructorModern = function isConstructor(argument) {
@@ -1259,7 +1262,7 @@ var isConstructorModern = function isConstructor(argument) {
1259
1262
 
1260
1263
  var isConstructorLegacy = function isConstructor(argument) {
1261
1264
  if (!isCallable(argument)) return false;
1262
- switch (classof$2(argument)) {
1265
+ switch (classof$3(argument)) {
1263
1266
  case 'AsyncFunction':
1264
1267
  case 'GeneratorFunction':
1265
1268
  case 'AsyncGeneratorFunction': return false;
@@ -1278,7 +1281,7 @@ isConstructorLegacy.sham = true;
1278
1281
 
1279
1282
  // `IsConstructor` abstract operation
1280
1283
  // https://tc39.es/ecma262/#sec-isconstructor
1281
- var isConstructor$2 = !construct || fails$4(function () {
1284
+ var isConstructor$2 = !construct || fails$5(function () {
1282
1285
  var called;
1283
1286
  return isConstructorModern(isConstructorModern.call)
1284
1287
  || !isConstructorModern(Object)
@@ -1287,26 +1290,26 @@ var isConstructor$2 = !construct || fails$4(function () {
1287
1290
  }) ? isConstructorLegacy : isConstructorModern;
1288
1291
 
1289
1292
  var toPropertyKey = toPropertyKey$3;
1290
- var definePropertyModule = objectDefineProperty;
1293
+ var definePropertyModule$1 = objectDefineProperty;
1291
1294
  var createPropertyDescriptor = createPropertyDescriptor$3;
1292
1295
 
1293
1296
  var createProperty$3 = function (object, key, value) {
1294
1297
  var propertyKey = toPropertyKey(key);
1295
- if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
1298
+ if (propertyKey in object) definePropertyModule$1.f(object, propertyKey, createPropertyDescriptor(0, value));
1296
1299
  else object[propertyKey] = value;
1297
1300
  };
1298
1301
 
1299
- var fails$3 = fails$d;
1300
- var wellKnownSymbol$4 = wellKnownSymbol$8;
1302
+ var fails$4 = fails$e;
1303
+ var wellKnownSymbol$7 = wellKnownSymbol$b;
1301
1304
  var V8_VERSION = engineV8Version;
1302
1305
 
1303
- var SPECIES$1 = wellKnownSymbol$4('species');
1306
+ var SPECIES$1 = wellKnownSymbol$7('species');
1304
1307
 
1305
1308
  var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
1306
1309
  // We can't use this feature detection in V8 since it causes
1307
1310
  // deoptimization and serious performance degradation
1308
1311
  // https://github.com/zloirock/core-js/issues/677
1309
- return V8_VERSION >= 51 || !fails$3(function () {
1312
+ return V8_VERSION >= 51 || !fails$4(function () {
1310
1313
  var array = [];
1311
1314
  var constructor = array.constructor = {};
1312
1315
  constructor[SPECIES$1] = function () {
@@ -1316,34 +1319,34 @@ var arrayMethodHasSpeciesSupport$1 = function (METHOD_NAME) {
1316
1319
  });
1317
1320
  };
1318
1321
 
1319
- var uncurryThis$4 = functionUncurryThis;
1322
+ var uncurryThis$6 = functionUncurryThis;
1320
1323
 
1321
- var arraySlice$1 = uncurryThis$4([].slice);
1324
+ var arraySlice$1 = uncurryThis$6([].slice);
1322
1325
 
1323
- var $$4 = _export;
1326
+ var $$7 = _export;
1324
1327
  var isArray = isArray$1;
1325
1328
  var isConstructor$1 = isConstructor$2;
1326
- var isObject = isObject$6;
1329
+ var isObject$1 = isObject$7;
1327
1330
  var toAbsoluteIndex$2 = toAbsoluteIndex$4;
1328
1331
  var lengthOfArrayLike$3 = lengthOfArrayLike$5;
1329
- var toIndexedObject = toIndexedObject$4;
1332
+ var toIndexedObject$1 = toIndexedObject$5;
1330
1333
  var createProperty$2 = createProperty$3;
1331
- var wellKnownSymbol$3 = wellKnownSymbol$8;
1334
+ var wellKnownSymbol$6 = wellKnownSymbol$b;
1332
1335
  var arrayMethodHasSpeciesSupport = arrayMethodHasSpeciesSupport$1;
1333
1336
  var un$Slice = arraySlice$1;
1334
1337
 
1335
1338
  var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
1336
1339
 
1337
- var SPECIES = wellKnownSymbol$3('species');
1340
+ var SPECIES = wellKnownSymbol$6('species');
1338
1341
  var $Array$2 = Array;
1339
1342
  var max$1 = Math.max;
1340
1343
 
1341
1344
  // `Array.prototype.slice` method
1342
1345
  // https://tc39.es/ecma262/#sec-array.prototype.slice
1343
1346
  // fallback for not array-like ES3 strings and DOM objects
1344
- $$4({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1347
+ $$7({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1345
1348
  slice: function slice(start, end) {
1346
- var O = toIndexedObject(this);
1349
+ var O = toIndexedObject$1(this);
1347
1350
  var length = lengthOfArrayLike$3(O);
1348
1351
  var k = toAbsoluteIndex$2(start, length);
1349
1352
  var fin = toAbsoluteIndex$2(end === undefined ? length : end, length);
@@ -1354,7 +1357,7 @@ $$4({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1354
1357
  // cross-realm fallback
1355
1358
  if (isConstructor$1(Constructor) && (Constructor === $Array$2 || isArray(Constructor.prototype))) {
1356
1359
  Constructor = undefined;
1357
- } else if (isObject(Constructor)) {
1360
+ } else if (isObject$1(Constructor)) {
1358
1361
  Constructor = Constructor[SPECIES];
1359
1362
  if (Constructor === null) Constructor = undefined;
1360
1363
  }
@@ -1432,32 +1435,11 @@ function daysInMonth$1(month, year) {
1432
1435
  function isDate(obj) {
1433
1436
  return _typeof(obj) === 'object' && Date.prototype === obj.__proto__;
1434
1437
  }
1435
- /**
1436
- * Returns number of days since January 1 of that year
1437
- * @private
1438
- * @param {Date} date Gregorian date
1439
- * @return {number}
1440
- */
1441
-
1442
- function dayOfYear(date) {
1443
- if (!isDate(date)) {
1444
- throw new TypeError("Argument not a Date: ".concat(date));
1445
- }
1446
-
1447
- var month = date.getMonth();
1448
- var doy = date.getDate() + 31 * month;
1449
-
1450
- if (month > 1) {
1451
- // FEB
1452
- doy -= Math.floor((4 * (month + 1) + 23) / 10);
1453
-
1454
- if (isLeapYear$1(date.getFullYear())) {
1455
- doy++;
1456
- }
1457
- }
1438
+ /*
1439
+ const ABS_14SEP1752 = 639797;
1440
+ const ABS_2SEP1752 = 639785;
1441
+ */
1458
1442
 
1459
- return doy;
1460
- }
1461
1443
  /**
1462
1444
  * Converts Gregorian date to absolute R.D. (Rata Die) days
1463
1445
  * @private
@@ -1470,12 +1452,14 @@ function greg2abs(date) {
1470
1452
  throw new TypeError("Argument not a Date: ".concat(date));
1471
1453
  }
1472
1454
 
1473
- var year = date.getFullYear() - 1;
1474
- return dayOfYear(date) + // days this year
1475
- 365 * year + ( // + days in prior years
1476
- Math.floor(year / 4) - // + Julian Leap years
1477
- Math.floor(year / 100) + // - century years
1478
- Math.floor(year / 400)); // + Gregorian leap years
1455
+ var abs = toFixed(date.getFullYear(), date.getMonth() + 1, date.getDate());
1456
+ /*
1457
+ if (abs < ABS_14SEP1752 && abs > ABS_2SEP1752) {
1458
+ throw new RangeError(`Invalid Date: ${date}`);
1459
+ }
1460
+ */
1461
+
1462
+ return abs;
1479
1463
  }
1480
1464
  /**
1481
1465
  * @private
@@ -1498,8 +1482,8 @@ function yearFromFixed(abs) {
1498
1482
  /**
1499
1483
  * @private
1500
1484
  * @param {number} year
1501
- * @param {number} month
1502
- * @param {number} day
1485
+ * @param {number} month (1-12)
1486
+ * @param {number} day (1-31)
1503
1487
  * @return {number}
1504
1488
  */
1505
1489
 
@@ -1526,6 +1510,12 @@ function abs2greg(abs) {
1526
1510
  }
1527
1511
 
1528
1512
  abs = Math.trunc(abs);
1513
+ /*
1514
+ if (abs < ABS_14SEP1752 && abs > ABS_2SEP1752) {
1515
+ throw new RangeError(`Invalid Date: ${abs}`);
1516
+ }
1517
+ */
1518
+
1529
1519
  var year = yearFromFixed(abs);
1530
1520
  var priorDays = abs - toFixed(year, 1, 1);
1531
1521
  var correction = abs < toFixed(year, 3, 1) ? 0 : isLeapYear$1(year) ? 1 : 2;
@@ -1591,14 +1581,31 @@ var greg = /*#__PURE__*/function () {
1591
1581
  }
1592
1582
  /**
1593
1583
  * Returns number of days since January 1 of that year
1584
+ * @deprecated
1594
1585
  * @param {Date} date Gregorian date
1595
1586
  * @return {number}
1596
1587
  */
1597
1588
 
1598
1589
  }, {
1599
1590
  key: "dayOfYear",
1600
- value: function dayOfYear$1(date) {
1601
- return dayOfYear(date);
1591
+ value: function dayOfYear(date) {
1592
+ if (!isDate(date)) {
1593
+ throw new TypeError("Argument not a Date: ".concat(date));
1594
+ }
1595
+
1596
+ var month = date.getMonth();
1597
+ var doy = date.getDate() + 31 * month;
1598
+
1599
+ if (month > 1) {
1600
+ // FEB
1601
+ doy -= Math.floor((4 * (month + 1) + 23) / 10);
1602
+
1603
+ if (isLeapYear$1(date.getFullYear())) {
1604
+ doy++;
1605
+ }
1606
+ }
1607
+
1608
+ return doy;
1602
1609
  }
1603
1610
  /**
1604
1611
  * Converts Gregorian date to absolute R.D. (Rata Die) days
@@ -1800,18 +1807,18 @@ function gematriya(number) {
1800
1807
 
1801
1808
  var tryToString$1 = tryToString$3;
1802
1809
 
1803
- var $TypeError$1 = TypeError;
1810
+ var $TypeError$2 = TypeError;
1804
1811
 
1805
1812
  var deletePropertyOrThrow$1 = function (O, P) {
1806
- 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));
1807
1814
  };
1808
1815
 
1809
- var classof$1 = classof$3;
1816
+ var classof$2 = classof$4;
1810
1817
 
1811
1818
  var $String = String;
1812
1819
 
1813
- var toString$2 = function (argument) {
1814
- 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');
1815
1822
  return $String(argument);
1816
1823
  };
1817
1824
 
@@ -1877,11 +1884,11 @@ var merge = function (array, left, right, comparefn) {
1877
1884
 
1878
1885
  var arraySort = mergeSort;
1879
1886
 
1880
- var fails$2 = fails$d;
1887
+ var fails$3 = fails$e;
1881
1888
 
1882
1889
  var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
1883
1890
  var method = [][METHOD_NAME];
1884
- return !!method && fails$2(function () {
1891
+ return !!method && fails$3(function () {
1885
1892
  // eslint-disable-next-line no-useless-call -- required for testing
1886
1893
  method.call(null, argument || function () { return 1; }, 1);
1887
1894
  });
@@ -1903,14 +1910,14 @@ var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
1903
1910
 
1904
1911
  var engineWebkitVersion = !!webkit && +webkit[1];
1905
1912
 
1906
- var $$3 = _export;
1907
- var uncurryThis$3 = functionUncurryThis;
1913
+ var $$6 = _export;
1914
+ var uncurryThis$5 = functionUncurryThis;
1908
1915
  var aCallable$2 = aCallable$4;
1909
1916
  var toObject$1 = toObject$3;
1910
1917
  var lengthOfArrayLike$1 = lengthOfArrayLike$5;
1911
1918
  var deletePropertyOrThrow = deletePropertyOrThrow$1;
1912
- var toString$1 = toString$2;
1913
- var fails$1 = fails$d;
1919
+ var toString$3 = toString$4;
1920
+ var fails$2 = fails$e;
1914
1921
  var internalSort = arraySort;
1915
1922
  var arrayMethodIsStrict = arrayMethodIsStrict$1;
1916
1923
  var FF = engineFfVersion;
@@ -1919,21 +1926,21 @@ var V8 = engineV8Version;
1919
1926
  var WEBKIT = engineWebkitVersion;
1920
1927
 
1921
1928
  var test = [];
1922
- var un$Sort = uncurryThis$3(test.sort);
1923
- var push = uncurryThis$3(test.push);
1929
+ var un$Sort = uncurryThis$5(test.sort);
1930
+ var push = uncurryThis$5(test.push);
1924
1931
 
1925
1932
  // IE8-
1926
- var FAILS_ON_UNDEFINED = fails$1(function () {
1933
+ var FAILS_ON_UNDEFINED = fails$2(function () {
1927
1934
  test.sort(undefined);
1928
1935
  });
1929
1936
  // V8 bug
1930
- var FAILS_ON_NULL = fails$1(function () {
1937
+ var FAILS_ON_NULL = fails$2(function () {
1931
1938
  test.sort(null);
1932
1939
  });
1933
1940
  // Old WebKit
1934
1941
  var STRICT_METHOD = arrayMethodIsStrict('sort');
1935
1942
 
1936
- var STABLE_SORT = !fails$1(function () {
1943
+ var STABLE_SORT = !fails$2(function () {
1937
1944
  // feature detection can be too slow, so check engines versions
1938
1945
  if (V8) return V8 < 70;
1939
1946
  if (FF && FF > 3) return;
@@ -1975,13 +1982,13 @@ var getSortCompare = function (comparefn) {
1975
1982
  if (y === undefined) return -1;
1976
1983
  if (x === undefined) return 1;
1977
1984
  if (comparefn !== undefined) return +comparefn(x, y) || 0;
1978
- return toString$1(x) > toString$1(y) ? 1 : -1;
1985
+ return toString$3(x) > toString$3(y) ? 1 : -1;
1979
1986
  };
1980
1987
  };
1981
1988
 
1982
1989
  // `Array.prototype.sort` method
1983
1990
  // https://tc39.es/ecma262/#sec-array.prototype.sort
1984
- $$3({ target: 'Array', proto: true, forced: FORCED }, {
1991
+ $$6({ target: 'Array', proto: true, forced: FORCED }, {
1985
1992
  sort: function sort(comparefn) {
1986
1993
  if (comparefn !== undefined) aCallable$2(comparefn);
1987
1994
 
@@ -2220,8 +2227,8 @@ Locale.useLocale('en');
2220
2227
  /*
2221
2228
  * More minimal HDate
2222
2229
  */
2223
- var NISAN$3 = 1;
2224
- var IYYAR$1 = 2; // const SIVAN = 3;
2230
+ var NISAN$4 = 1;
2231
+ var IYYAR$2 = 2; // const SIVAN = 3;
2225
2232
 
2226
2233
  var TAMUZ$1 = 4; // const AV = 5;
2227
2234
 
@@ -2310,7 +2317,7 @@ function hebrew2abs(year, month, day) {
2310
2317
  tempabs += daysInMonth(m, year);
2311
2318
  }
2312
2319
 
2313
- for (var _m = NISAN$3; _m < month; _m++) {
2320
+ for (var _m = NISAN$4; _m < month; _m++) {
2314
2321
  tempabs += daysInMonth(_m, year);
2315
2322
  }
2316
2323
  } else {
@@ -2395,7 +2402,7 @@ function monthsInYear(year) {
2395
2402
 
2396
2403
  function daysInMonth(month, year) {
2397
2404
  switch (month) {
2398
- case IYYAR$1:
2405
+ case IYYAR$2:
2399
2406
  case TAMUZ$1:
2400
2407
  case ELUL$2:
2401
2408
  case TEVET$2:
@@ -3554,7 +3561,10 @@ var flags = {
3554
3561
  CHOL_HAMOED: 0x200000,
3555
3562
 
3556
3563
  /** Mishna Yomi */
3557
- MISHNA_YOMI: 0x400000
3564
+ MISHNA_YOMI: 0x400000,
3565
+
3566
+ /** Yom Kippur Katan, minor day of atonement on the day preceeding each Rosh Chodesh */
3567
+ YOM_KIPPUR_KATAN: 0x800000
3558
3568
  };
3559
3569
  /** Represents an Event with a title, date, and flags */
3560
3570
 
@@ -5083,6 +5093,7 @@ var Location = /*#__PURE__*/function () {
5083
5093
  }
5084
5094
  /**
5085
5095
  * Builds a city description from geonameid string components
5096
+ * @deprecated
5086
5097
  * @param {string} cityName e.g. 'Tel Aviv' or 'Chicago'
5087
5098
  * @param {string} admin1 e.g. 'England' or 'Massachusetts'
5088
5099
  * @param {string} countryName full country name, e.g. 'Israel' or 'United States'
@@ -5574,22 +5585,22 @@ var MoladEvent = /*#__PURE__*/function (_Event) {
5574
5585
  return MoladEvent;
5575
5586
  }(Event);
5576
5587
 
5577
- var $$2 = _export;
5578
- var uncurryThis$2 = functionUncurryThis;
5588
+ var $$5 = _export;
5589
+ var uncurryThis$4 = functionUncurryThis;
5579
5590
  var toAbsoluteIndex = toAbsoluteIndex$4;
5580
5591
 
5581
5592
  var $RangeError = RangeError;
5582
5593
  var fromCharCode = String.fromCharCode;
5583
5594
  // eslint-disable-next-line es-x/no-string-fromcodepoint -- required for testing
5584
5595
  var $fromCodePoint = String.fromCodePoint;
5585
- var join = uncurryThis$2([].join);
5596
+ var join = uncurryThis$4([].join);
5586
5597
 
5587
5598
  // length should be 1, old FF problem
5588
5599
  var INCORRECT_LENGTH = !!$fromCodePoint && $fromCodePoint.length != 1;
5589
5600
 
5590
5601
  // `String.fromCodePoint` method
5591
5602
  // https://tc39.es/ecma262/#sec-string.fromcodepoint
5592
- $$2({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
5603
+ $$5({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
5593
5604
  // eslint-disable-next-line no-unused-vars -- required for `.length`
5594
5605
  fromCodePoint: function fromCodePoint(x) {
5595
5606
  var elements = [];
@@ -5610,12 +5621,12 @@ $$2({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
5610
5621
  var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
5611
5622
  '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
5612
5623
 
5613
- var uncurryThis$1 = functionUncurryThis;
5614
- var requireObjectCoercible = requireObjectCoercible$3;
5615
- var toString = toString$2;
5624
+ var uncurryThis$3 = functionUncurryThis;
5625
+ var requireObjectCoercible$2 = requireObjectCoercible$5;
5626
+ var toString$2 = toString$4;
5616
5627
  var whitespaces$1 = whitespaces$2;
5617
5628
 
5618
- var replace = uncurryThis$1(''.replace);
5629
+ var replace = uncurryThis$3(''.replace);
5619
5630
  var whitespace = '[' + whitespaces$1 + ']';
5620
5631
  var ltrim = RegExp('^' + whitespace + whitespace + '*');
5621
5632
  var rtrim = RegExp(whitespace + whitespace + '*$');
@@ -5623,7 +5634,7 @@ var rtrim = RegExp(whitespace + whitespace + '*$');
5623
5634
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
5624
5635
  var createMethod = function (TYPE) {
5625
5636
  return function ($this) {
5626
- var string = toString(requireObjectCoercible($this));
5637
+ var string = toString$2(requireObjectCoercible$2($this));
5627
5638
  if (TYPE & 1) string = replace(string, ltrim, '');
5628
5639
  if (TYPE & 2) string = replace(string, rtrim, '');
5629
5640
  return string;
@@ -5643,7 +5654,7 @@ var stringTrim = {
5643
5654
  };
5644
5655
 
5645
5656
  var PROPER_FUNCTION_NAME = functionName.PROPER;
5646
- var fails = fails$d;
5657
+ var fails$1 = fails$e;
5647
5658
  var whitespaces = whitespaces$2;
5648
5659
 
5649
5660
  var non = '\u200B\u0085\u180E';
@@ -5651,20 +5662,20 @@ var non = '\u200B\u0085\u180E';
5651
5662
  // check that a method works with the correct list
5652
5663
  // of whitespaces and has a correct name
5653
5664
  var stringTrimForced = function (METHOD_NAME) {
5654
- return fails(function () {
5665
+ return fails$1(function () {
5655
5666
  return !!whitespaces[METHOD_NAME]()
5656
5667
  || non[METHOD_NAME]() !== non
5657
5668
  || (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);
5658
5669
  });
5659
5670
  };
5660
5671
 
5661
- var $$1 = _export;
5672
+ var $$4 = _export;
5662
5673
  var $trim = stringTrim.trim;
5663
5674
  var forcedStringTrimMethod = stringTrimForced;
5664
5675
 
5665
5676
  // `String.prototype.trim` method
5666
5677
  // https://tc39.es/ecma262/#sec-string.prototype.trim
5667
- $$1({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
5678
+ $$4({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
5668
5679
  trim: function trim() {
5669
5680
  return $trim(this);
5670
5681
  }
@@ -6115,11 +6126,11 @@ var DafYomiEvent = /*#__PURE__*/function (_Event) {
6115
6126
  return DafYomiEvent;
6116
6127
  }(Event);
6117
6128
 
6118
- var uncurryThis = functionUncurryThis;
6129
+ var uncurryThis$2 = functionUncurryThis;
6119
6130
  var aCallable$1 = aCallable$4;
6120
6131
  var NATIVE_BIND = functionBindNative;
6121
6132
 
6122
- var bind$1 = uncurryThis(uncurryThis.bind);
6133
+ var bind$1 = uncurryThis$2(uncurryThis$2.bind);
6123
6134
 
6124
6135
  // optional / simple context binding
6125
6136
  var functionBindContext = function (fn, that) {
@@ -6130,12 +6141,12 @@ var functionBindContext = function (fn, that) {
6130
6141
  };
6131
6142
 
6132
6143
  var call$2 = functionCall;
6133
- var anObject$2 = anObject$5;
6144
+ var anObject$4 = anObject$7;
6134
6145
  var getMethod$1 = getMethod$3;
6135
6146
 
6136
6147
  var iteratorClose$1 = function (iterator, kind, value) {
6137
6148
  var innerResult, innerError;
6138
- anObject$2(iterator);
6149
+ anObject$4(iterator);
6139
6150
  try {
6140
6151
  innerResult = getMethod$1(iterator, 'return');
6141
6152
  if (!innerResult) {
@@ -6149,17 +6160,17 @@ var iteratorClose$1 = function (iterator, kind, value) {
6149
6160
  }
6150
6161
  if (kind === 'throw') throw value;
6151
6162
  if (innerError) throw innerResult;
6152
- anObject$2(innerResult);
6163
+ anObject$4(innerResult);
6153
6164
  return value;
6154
6165
  };
6155
6166
 
6156
- var anObject$1 = anObject$5;
6167
+ var anObject$3 = anObject$7;
6157
6168
  var iteratorClose = iteratorClose$1;
6158
6169
 
6159
6170
  // call something on iterator step with safe closing on error
6160
6171
  var callWithSafeIterationClosing$1 = function (iterator, fn, value, ENTRIES) {
6161
6172
  try {
6162
- return ENTRIES ? fn(anObject$1(value)[0], value[1]) : fn(value);
6173
+ return ENTRIES ? fn(anObject$3(value)[0], value[1]) : fn(value);
6163
6174
  } catch (error) {
6164
6175
  iteratorClose(iterator, 'throw', error);
6165
6176
  }
@@ -6167,42 +6178,42 @@ var callWithSafeIterationClosing$1 = function (iterator, fn, value, ENTRIES) {
6167
6178
 
6168
6179
  var iterators = {};
6169
6180
 
6170
- var wellKnownSymbol$2 = wellKnownSymbol$8;
6181
+ var wellKnownSymbol$5 = wellKnownSymbol$b;
6171
6182
  var Iterators$1 = iterators;
6172
6183
 
6173
- var ITERATOR$2 = wellKnownSymbol$2('iterator');
6174
- var ArrayPrototype = Array.prototype;
6184
+ var ITERATOR$2 = wellKnownSymbol$5('iterator');
6185
+ var ArrayPrototype$1 = Array.prototype;
6175
6186
 
6176
6187
  // check on default Array iterator
6177
6188
  var isArrayIteratorMethod$1 = function (it) {
6178
- return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
6189
+ return it !== undefined && (Iterators$1.Array === it || ArrayPrototype$1[ITERATOR$2] === it);
6179
6190
  };
6180
6191
 
6181
- var classof = classof$3;
6192
+ var classof$1 = classof$4;
6182
6193
  var getMethod = getMethod$3;
6183
6194
  var Iterators = iterators;
6184
- var wellKnownSymbol$1 = wellKnownSymbol$8;
6195
+ var wellKnownSymbol$4 = wellKnownSymbol$b;
6185
6196
 
6186
- var ITERATOR$1 = wellKnownSymbol$1('iterator');
6197
+ var ITERATOR$1 = wellKnownSymbol$4('iterator');
6187
6198
 
6188
6199
  var getIteratorMethod$2 = function (it) {
6189
6200
  if (it != undefined) return getMethod(it, ITERATOR$1)
6190
6201
  || getMethod(it, '@@iterator')
6191
- || Iterators[classof(it)];
6202
+ || Iterators[classof$1(it)];
6192
6203
  };
6193
6204
 
6194
6205
  var call$1 = functionCall;
6195
6206
  var aCallable = aCallable$4;
6196
- var anObject = anObject$5;
6207
+ var anObject$2 = anObject$7;
6197
6208
  var tryToString = tryToString$3;
6198
6209
  var getIteratorMethod$1 = getIteratorMethod$2;
6199
6210
 
6200
- var $TypeError = TypeError;
6211
+ var $TypeError$1 = TypeError;
6201
6212
 
6202
6213
  var getIterator$1 = function (argument, usingIterator) {
6203
6214
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
6204
- if (aCallable(iteratorMethod)) return anObject(call$1(iteratorMethod, argument));
6205
- throw $TypeError(tryToString(argument) + ' is not iterable');
6215
+ if (aCallable(iteratorMethod)) return anObject$2(call$1(iteratorMethod, argument));
6216
+ throw $TypeError$1(tryToString(argument) + ' is not iterable');
6206
6217
  };
6207
6218
 
6208
6219
  var bind = functionBindContext;
@@ -6251,9 +6262,9 @@ var arrayFrom = function from(arrayLike /* , mapfn = undefined, thisArg = undefi
6251
6262
  return result;
6252
6263
  };
6253
6264
 
6254
- var wellKnownSymbol = wellKnownSymbol$8;
6265
+ var wellKnownSymbol$3 = wellKnownSymbol$b;
6255
6266
 
6256
- var ITERATOR = wellKnownSymbol('iterator');
6267
+ var ITERATOR = wellKnownSymbol$3('iterator');
6257
6268
  var SAFE_CLOSING = false;
6258
6269
 
6259
6270
  try {
@@ -6290,7 +6301,7 @@ var checkCorrectnessOfIteration$1 = function (exec, SKIP_CLOSING) {
6290
6301
  return ITERATION_SUPPORT;
6291
6302
  };
6292
6303
 
6293
- var $ = _export;
6304
+ var $$3 = _export;
6294
6305
  var from = arrayFrom;
6295
6306
  var checkCorrectnessOfIteration = checkCorrectnessOfIteration$1;
6296
6307
 
@@ -6301,7 +6312,7 @@ var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
6301
6312
 
6302
6313
  // `Array.from` method
6303
6314
  // https://tc39.es/ecma262/#sec-array.from
6304
- $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
6315
+ $$3({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
6305
6316
  from: from
6306
6317
  });
6307
6318
 
@@ -6626,7 +6637,7 @@ var SHAVUOT = 'Shavuot'; // 33
6626
6637
  * @return {number[]}
6627
6638
  */
6628
6639
 
6629
- function range(start, stop) {
6640
+ function range$1(start, stop) {
6630
6641
  return Array.from({
6631
6642
  length: stop - start + 1
6632
6643
  }, function (v, k) {
@@ -6646,78 +6657,78 @@ var types = {
6646
6657
  /* Hebrew year that starts on Monday, is `incomplete' (Heshvan and
6647
6658
  * Kislev each have 29 days), and has Passover start on Tuesday. */
6648
6659
  // e.g. 5753
6649
- '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)),
6660
+ '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)),
6650
6661
 
6651
6662
  /* Hebrew year that starts on Monday, is `complete' (Heshvan and
6652
6663
  * Kislev each have 30 days), and has Passover start on Thursday. */
6653
6664
  // e.g. 5756
6654
- '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)),
6665
+ '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)),
6655
6666
 
6656
6667
  /* Hebrew year that starts on Thursday, is `regular' (Heshvan has 29
6657
6668
  * days and Kislev has 30 days), and has Passover start on Saturday. */
6658
6669
  // e.g. 5701
6659
- '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)),
6670
+ '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)),
6660
6671
 
6661
6672
  /* Hebrew year that starts on Thursday, is `regular' (Heshvan has 29
6662
6673
  * days and Kislev has 30 days), and has Passover start on Saturday. */
6663
6674
  // e.g. 5745
6664
- '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)),
6675
+ '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)),
6665
6676
 
6666
6677
  /* Hebrew year that starts on Thursday, is `complete' (Heshvan and
6667
6678
  * Kislev each have 30 days), and has Passover start on Sunday. */
6668
6679
  // e.g. 5754
6669
- '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)),
6680
+ '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)),
6670
6681
 
6671
6682
  /* Hebrew year that starts on Saturday, is `incomplete' (Heshvan and Kislev
6672
6683
  * each have 29 days), and has Passover start on Sunday. */
6673
6684
  // e.g. 5761
6674
- '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)),
6685
+ '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)),
6675
6686
 
6676
6687
  /* Hebrew year that starts on Saturday, is `complete' (Heshvan and
6677
6688
  * Kislev each have 30 days), and has Passover start on Tuesday. */
6678
6689
  // e.g. 5716
6679
- '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)),
6690
+ '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)),
6680
6691
 
6681
6692
  /* -- The leap year types (keviot) -- */
6682
6693
 
6683
6694
  /* Hebrew year that starts on Monday, is `incomplete' (Heshvan and
6684
6695
  * Kislev each have 29 days), and has Passover start on Thursday. */
6685
6696
  // e.g. 5746
6686
- '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)),
6697
+ '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)),
6687
6698
 
6688
6699
  /* Hebrew year that starts on Monday, is `incomplete' (Heshvan and
6689
6700
  * Kislev each have 29 days), and has Passover start on Thursday. */
6690
6701
  // e.g. 5746
6691
- '1201': [51, 52].concat(CHMSUKOT, range(0, 27), CHMPESACH, range(28, 40), D(41), range(43, 49), D(50)),
6702
+ '1201': [51, 52].concat(CHMSUKOT, range$1(0, 27), CHMPESACH, range$1(28, 40), D(41), range$1(43, 49), D(50)),
6692
6703
 
6693
6704
  /* Hebrew year that starts on Monday, is `complete' (Heshvan and
6694
6705
  * Kislev each have 30 days), and has Passover start on Saturday. */
6695
6706
  // e.g.5752
6696
- '1220': [51, 52].concat(CHMSUKOT, range(0, 27), PESACH1, PESACH8, range(28, 40), D(41), range(43, 50)),
6707
+ '1220': [51, 52].concat(CHMSUKOT, range$1(0, 27), PESACH1, PESACH8, range$1(28, 40), D(41), range$1(43, 50)),
6697
6708
 
6698
6709
  /* Hebrew year that starts on Monday, is `complete' (Heshvan and
6699
6710
  * Kislev each have 30 days), and has Passover start on Saturday. */
6700
6711
  // e.g.5752
6701
- '1221': [51, 52].concat(CHMSUKOT, range(0, 27), PESACH, range(28, 50)),
6712
+ '1221': [51, 52].concat(CHMSUKOT, range$1(0, 27), PESACH, range$1(28, 50)),
6702
6713
 
6703
6714
  /* Hebrew year that starts on Thursday, is `incomplete' (Heshvan and
6704
6715
  * Kislev both have 29 days), and has Passover start on Sunday. */
6705
6716
  // e.g. 5768
6706
- '150': [52].concat(YK, CHMSUKOT, range(0, 28), PESACH7, range(29, 50)),
6717
+ '150': [52].concat(YK, CHMSUKOT, range$1(0, 28), PESACH7, range$1(29, 50)),
6707
6718
 
6708
6719
  /* Hebrew year that starts on Thursday, is `complete' (Heshvan and
6709
6720
  * Kislev both have 30 days), and has Passover start on Tuesday. */
6710
6721
  // eg. 5771
6711
- '152': [52].concat(YK, CHMSUKOT, range(0, 28), CHMPESACH, range(29, 49), D(50)),
6722
+ '152': [52].concat(YK, CHMSUKOT, range$1(0, 28), CHMPESACH, range$1(29, 49), D(50)),
6712
6723
 
6713
6724
  /* Hebrew year that starts on Saturday, is `incomplete' (Heshvan and
6714
6725
  * Kislev each have 29 days), and has Passover start on Tuesday. */
6715
6726
  // e.g.5757
6716
- '170': [].concat(RH, 52, SUKKOT, SHMINI, range(0, 27), CHMPESACH, range(28, 40), D(41), range(43, 49), D(50)),
6727
+ '170': [].concat(RH, 52, SUKKOT, SHMINI, range$1(0, 27), CHMPESACH, range$1(28, 40), D(41), range$1(43, 49), D(50)),
6717
6728
 
6718
6729
  /* Hebrew year that starts on Saturday, is `complete' (Heshvan and
6719
6730
  * Kislev each have 30 days), and has Passover start on Thursday. */
6720
- '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))
6731
+ '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))
6721
6732
  };
6722
6733
  /* Hebrew year that starts on Monday, is `complete' (Heshvan and
6723
6734
  * Kislev each have 30 days), and has Passover start on Thursday. */
@@ -6835,6 +6846,70 @@ var ParshaEvent = /*#__PURE__*/function (_Event) {
6835
6846
  return ParshaEvent;
6836
6847
  }(Event);
6837
6848
 
6849
+ var SUN$1 = 0;
6850
+ var TUE$1 = 2;
6851
+ var FRI$2 = 5;
6852
+ var SAT$2 = 6;
6853
+ var NISAN$3 = months.NISAN;
6854
+ var IYYAR$1 = months.IYYAR;
6855
+ /**
6856
+ * Yom HaShoah first observed in 1951.
6857
+ * When the actual date of Yom Hashoah falls on a Friday, the
6858
+ * state of Israel observes Yom Hashoah on the preceding
6859
+ * Thursday. When it falls on a Sunday, Yom Hashoah is observed
6860
+ * on the following Monday.
6861
+ * http://www.ushmm.org/remembrance/dor/calendar/
6862
+ * @private
6863
+ * @param {number} year
6864
+ * @return {HDate|null}
6865
+ */
6866
+
6867
+ function dateYomHaShoah(year) {
6868
+ if (year < 5711) {
6869
+ return null;
6870
+ }
6871
+
6872
+ var nisan27dt = new HDate(27, NISAN$3, year);
6873
+
6874
+ if (nisan27dt.getDay() === FRI$2) {
6875
+ nisan27dt = new HDate(26, NISAN$3, year);
6876
+ } else if (nisan27dt.getDay() === SUN$1) {
6877
+ nisan27dt = new HDate(28, NISAN$3, year);
6878
+ }
6879
+
6880
+ return nisan27dt;
6881
+ }
6882
+ /**
6883
+ * Yom HaAtzma'ut only celebrated after 1948
6884
+ * @private
6885
+ * @param {number} year
6886
+ * @return {HDate|null}
6887
+ */
6888
+
6889
+ function dateYomHaZikaron(year) {
6890
+ if (year < 5708) {
6891
+ return null;
6892
+ }
6893
+
6894
+ var day;
6895
+ var pesach = new HDate(15, NISAN$3, year);
6896
+ var pdow = pesach.getDay();
6897
+
6898
+ if (pdow === SUN$1) {
6899
+ day = 2;
6900
+ } else if (pdow === SAT$2) {
6901
+ day = 3;
6902
+ } else if (year < 5764) {
6903
+ day = 4;
6904
+ } else if (pdow === TUE$1) {
6905
+ day = 5;
6906
+ } else {
6907
+ day = 4;
6908
+ }
6909
+
6910
+ return new HDate(day, IYYAR$1, year);
6911
+ }
6912
+
6838
6913
  /** Represents a built-in holiday like Pesach, Purim or Tu BiShvat */
6839
6914
 
6840
6915
  var HolidayEvent = /*#__PURE__*/function (_Event) {
@@ -7094,7 +7169,7 @@ var YomKippurKatanEvent = /*#__PURE__*/function (_HolidayEvent4) {
7094
7169
 
7095
7170
  _classCallCheck(this, YomKippurKatanEvent);
7096
7171
 
7097
- _this3 = _super6.call(this, date, "".concat(ykk, " ").concat(nextMonthName), flags.MINOR_FAST);
7172
+ _this3 = _super6.call(this, date, "".concat(ykk, " ").concat(nextMonthName), flags.MINOR_FAST | flags.YOM_KIPPUR_KATAN);
7098
7173
  _this3.nextMonthName = nextMonthName;
7099
7174
  _this3.memo = "Minor Day of Atonement on the day preceeding Rosh Chodesh ".concat(nextMonthName);
7100
7175
  return _this3;
@@ -7456,42 +7531,16 @@ function getHolidaysForYear_(year) {
7456
7531
  }));
7457
7532
  }
7458
7533
 
7459
- if (year >= 5711) {
7460
- // Yom HaShoah first observed in 1951
7461
- var nisan27dt = new HDate(27, NISAN$2, year);
7462
- /* When the actual date of Yom Hashoah falls on a Friday, the
7463
- * state of Israel observes Yom Hashoah on the preceding
7464
- * Thursday. When it falls on a Sunday, Yom Hashoah is observed
7465
- * on the following Monday.
7466
- * http://www.ushmm.org/remembrance/dor/calendar/
7467
- */
7468
-
7469
- if (nisan27dt.getDay() == FRI$1) {
7470
- nisan27dt = new HDate(26, NISAN$2, year);
7471
- } else if (nisan27dt.getDay() == SUN) {
7472
- nisan27dt = new HDate(28, NISAN$2, year);
7473
- }
7534
+ var nisan27dt = dateYomHaShoah(year);
7474
7535
 
7536
+ if (nisan27dt) {
7475
7537
  add(new HolidayEvent(nisan27dt, 'Yom HaShoah', MODERN_HOLIDAY$1));
7476
7538
  }
7477
7539
 
7478
- if (year >= 5708) {
7479
- // Yom HaAtzma'ut only celebrated after 1948
7480
- var day;
7481
-
7482
- if (pesach.getDay() == SUN) {
7483
- day = 2;
7484
- } else if (pesach.getDay() == SAT$1) {
7485
- day = 3;
7486
- } else if (year < 5764) {
7487
- day = 4;
7488
- } else if (pesach.getDay() == TUE) {
7489
- day = 5;
7490
- } else {
7491
- day = 4;
7492
- }
7540
+ var yomHaZikaronDt = dateYomHaZikaron(year);
7493
7541
 
7494
- 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));
7542
+ if (yomHaZikaronDt) {
7543
+ add(new HolidayEvent(yomHaZikaronDt, 'Yom HaZikaron', MODERN_HOLIDAY$1, emojiIsraelFlag), new HolidayEvent(yomHaZikaronDt.next(), 'Yom HaAtzma\'ut', MODERN_HOLIDAY$1, emojiIsraelFlag));
7495
7544
  }
7496
7545
 
7497
7546
  if (year >= 5727) {
@@ -7865,9 +7914,9 @@ function getBirthdayOrAnniversary_(hyear, gdate) {
7865
7914
  return new HDate(day, month, hyear);
7866
7915
  }
7867
7916
 
7868
- var version="3.41.2";
7917
+ var version="3.42.0";
7869
7918
 
7870
- 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"]}};var poAshkenazi = {headers:headers$1,contexts:contexts$1};
7919
+ 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};
7871
7920
 
7872
7921
  Locale.addLocale('ashkenazi', poAshkenazi);
7873
7922
  Locale.addLocale('a', poAshkenazi);
@@ -7889,6 +7938,469 @@ var poHeNoNikud = {
7889
7938
  };
7890
7939
  Locale.addLocale('he-x-NoNikud', poHeNoNikud);
7891
7940
 
7941
+ var isObject = isObject$7;
7942
+ var classof = classofRaw$1;
7943
+ var wellKnownSymbol$2 = wellKnownSymbol$b;
7944
+
7945
+ var MATCH$1 = wellKnownSymbol$2('match');
7946
+
7947
+ // `IsRegExp` abstract operation
7948
+ // https://tc39.es/ecma262/#sec-isregexp
7949
+ var isRegexp = function (it) {
7950
+ var isRegExp;
7951
+ return isObject(it) && ((isRegExp = it[MATCH$1]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');
7952
+ };
7953
+
7954
+ var isRegExp = isRegexp;
7955
+
7956
+ var $TypeError = TypeError;
7957
+
7958
+ var notARegexp = function (it) {
7959
+ if (isRegExp(it)) {
7960
+ throw $TypeError("The method doesn't accept regular expressions");
7961
+ } return it;
7962
+ };
7963
+
7964
+ var wellKnownSymbol$1 = wellKnownSymbol$b;
7965
+
7966
+ var MATCH = wellKnownSymbol$1('match');
7967
+
7968
+ var correctIsRegexpLogic = function (METHOD_NAME) {
7969
+ var regexp = /./;
7970
+ try {
7971
+ '/./'[METHOD_NAME](regexp);
7972
+ } catch (error1) {
7973
+ try {
7974
+ regexp[MATCH] = false;
7975
+ return '/./'[METHOD_NAME](regexp);
7976
+ } catch (error2) { /* empty */ }
7977
+ } return false;
7978
+ };
7979
+
7980
+ var $$2 = _export;
7981
+ var uncurryThis$1 = functionUncurryThis;
7982
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
7983
+ var toLength = toLength$2;
7984
+ var toString$1 = toString$4;
7985
+ var notARegExp$1 = notARegexp;
7986
+ var requireObjectCoercible$1 = requireObjectCoercible$5;
7987
+ var correctIsRegExpLogic$1 = correctIsRegexpLogic;
7988
+
7989
+ // eslint-disable-next-line es-x/no-string-prototype-startswith -- safe
7990
+ var un$StartsWith = uncurryThis$1(''.startsWith);
7991
+ var stringSlice = uncurryThis$1(''.slice);
7992
+ var min = Math.min;
7993
+
7994
+ var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic$1('startsWith');
7995
+ // https://github.com/zloirock/core-js/pull/702
7996
+ var MDN_POLYFILL_BUG = !CORRECT_IS_REGEXP_LOGIC && !!function () {
7997
+ var descriptor = getOwnPropertyDescriptor(String.prototype, 'startsWith');
7998
+ return descriptor && !descriptor.writable;
7999
+ }();
8000
+
8001
+ // `String.prototype.startsWith` method
8002
+ // https://tc39.es/ecma262/#sec-string.prototype.startswith
8003
+ $$2({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
8004
+ startsWith: function startsWith(searchString /* , position = 0 */) {
8005
+ var that = toString$1(requireObjectCoercible$1(this));
8006
+ notARegExp$1(searchString);
8007
+ var index = toLength(min(arguments.length > 1 ? arguments[1] : undefined, that.length));
8008
+ var search = toString$1(searchString);
8009
+ return un$StartsWith
8010
+ ? un$StartsWith(that, search, index)
8011
+ : stringSlice(that, index, index + search.length) === search;
8012
+ }
8013
+ });
8014
+
8015
+ var objectDefineProperties = {};
8016
+
8017
+ var internalObjectKeys = objectKeysInternal;
8018
+ var enumBugKeys$1 = enumBugKeys$3;
8019
+
8020
+ // `Object.keys` method
8021
+ // https://tc39.es/ecma262/#sec-object.keys
8022
+ // eslint-disable-next-line es-x/no-object-keys -- safe
8023
+ var objectKeys$1 = Object.keys || function keys(O) {
8024
+ return internalObjectKeys(O, enumBugKeys$1);
8025
+ };
8026
+
8027
+ var DESCRIPTORS = descriptors;
8028
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
8029
+ var definePropertyModule = objectDefineProperty;
8030
+ var anObject$1 = anObject$7;
8031
+ var toIndexedObject = toIndexedObject$5;
8032
+ var objectKeys = objectKeys$1;
8033
+
8034
+ // `Object.defineProperties` method
8035
+ // https://tc39.es/ecma262/#sec-object.defineproperties
8036
+ // eslint-disable-next-line es-x/no-object-defineproperties -- safe
8037
+ objectDefineProperties.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
8038
+ anObject$1(O);
8039
+ var props = toIndexedObject(Properties);
8040
+ var keys = objectKeys(Properties);
8041
+ var length = keys.length;
8042
+ var index = 0;
8043
+ var key;
8044
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
8045
+ return O;
8046
+ };
8047
+
8048
+ var getBuiltIn = getBuiltIn$5;
8049
+
8050
+ var html$1 = getBuiltIn('document', 'documentElement');
8051
+
8052
+ /* global ActiveXObject -- old IE, WSH */
8053
+
8054
+ var anObject = anObject$7;
8055
+ var definePropertiesModule = objectDefineProperties;
8056
+ var enumBugKeys = enumBugKeys$3;
8057
+ var hiddenKeys = hiddenKeys$4;
8058
+ var html = html$1;
8059
+ var documentCreateElement = documentCreateElement$1;
8060
+ var sharedKey = sharedKey$2;
8061
+
8062
+ var GT = '>';
8063
+ var LT = '<';
8064
+ var PROTOTYPE = 'prototype';
8065
+ var SCRIPT = 'script';
8066
+ var IE_PROTO = sharedKey('IE_PROTO');
8067
+
8068
+ var EmptyConstructor = function () { /* empty */ };
8069
+
8070
+ var scriptTag = function (content) {
8071
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
8072
+ };
8073
+
8074
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
8075
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
8076
+ activeXDocument.write(scriptTag(''));
8077
+ activeXDocument.close();
8078
+ var temp = activeXDocument.parentWindow.Object;
8079
+ activeXDocument = null; // avoid memory leak
8080
+ return temp;
8081
+ };
8082
+
8083
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
8084
+ var NullProtoObjectViaIFrame = function () {
8085
+ // Thrash, waste and sodomy: IE GC bug
8086
+ var iframe = documentCreateElement('iframe');
8087
+ var JS = 'java' + SCRIPT + ':';
8088
+ var iframeDocument;
8089
+ iframe.style.display = 'none';
8090
+ html.appendChild(iframe);
8091
+ // https://github.com/zloirock/core-js/issues/475
8092
+ iframe.src = String(JS);
8093
+ iframeDocument = iframe.contentWindow.document;
8094
+ iframeDocument.open();
8095
+ iframeDocument.write(scriptTag('document.F=Object'));
8096
+ iframeDocument.close();
8097
+ return iframeDocument.F;
8098
+ };
8099
+
8100
+ // Check for document.domain and active x support
8101
+ // No need to use active x approach when document.domain is not set
8102
+ // see https://github.com/es-shims/es5-shim/issues/150
8103
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
8104
+ // avoid IE GC bug
8105
+ var activeXDocument;
8106
+ var NullProtoObject = function () {
8107
+ try {
8108
+ activeXDocument = new ActiveXObject('htmlfile');
8109
+ } catch (error) { /* ignore */ }
8110
+ NullProtoObject = typeof document != 'undefined'
8111
+ ? document.domain && activeXDocument
8112
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
8113
+ : NullProtoObjectViaIFrame()
8114
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
8115
+ var length = enumBugKeys.length;
8116
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
8117
+ return NullProtoObject();
8118
+ };
8119
+
8120
+ hiddenKeys[IE_PROTO] = true;
8121
+
8122
+ // `Object.create` method
8123
+ // https://tc39.es/ecma262/#sec-object.create
8124
+ // eslint-disable-next-line es-x/no-object-create -- safe
8125
+ var objectCreate = Object.create || function create(O, Properties) {
8126
+ var result;
8127
+ if (O !== null) {
8128
+ EmptyConstructor[PROTOTYPE] = anObject(O);
8129
+ result = new EmptyConstructor();
8130
+ EmptyConstructor[PROTOTYPE] = null;
8131
+ // add "__proto__" for Object.getPrototypeOf polyfill
8132
+ result[IE_PROTO] = O;
8133
+ } else result = NullProtoObject();
8134
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
8135
+ };
8136
+
8137
+ var wellKnownSymbol = wellKnownSymbol$b;
8138
+ var create = objectCreate;
8139
+ var defineProperty = objectDefineProperty.f;
8140
+
8141
+ var UNSCOPABLES = wellKnownSymbol('unscopables');
8142
+ var ArrayPrototype = Array.prototype;
8143
+
8144
+ // Array.prototype[@@unscopables]
8145
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
8146
+ if (ArrayPrototype[UNSCOPABLES] == undefined) {
8147
+ defineProperty(ArrayPrototype, UNSCOPABLES, {
8148
+ configurable: true,
8149
+ value: create(null)
8150
+ });
8151
+ }
8152
+
8153
+ // add a key to Array.prototype[@@unscopables]
8154
+ var addToUnscopables$1 = function (key) {
8155
+ ArrayPrototype[UNSCOPABLES][key] = true;
8156
+ };
8157
+
8158
+ var $$1 = _export;
8159
+ var $includes = arrayIncludes.includes;
8160
+ var fails = fails$e;
8161
+ var addToUnscopables = addToUnscopables$1;
8162
+
8163
+ // FF99+ bug
8164
+ var BROKEN_ON_SPARSE = fails(function () {
8165
+ return !Array(1).includes();
8166
+ });
8167
+
8168
+ // `Array.prototype.includes` method
8169
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
8170
+ $$1({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
8171
+ includes: function includes(el /* , fromIndex = 0 */) {
8172
+ return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
8173
+ }
8174
+ });
8175
+
8176
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
8177
+ addToUnscopables('includes');
8178
+
8179
+ var $ = _export;
8180
+ var uncurryThis = functionUncurryThis;
8181
+ var notARegExp = notARegexp;
8182
+ var requireObjectCoercible = requireObjectCoercible$5;
8183
+ var toString = toString$4;
8184
+ var correctIsRegExpLogic = correctIsRegexpLogic;
8185
+
8186
+ var stringIndexOf = uncurryThis(''.indexOf);
8187
+
8188
+ // `String.prototype.includes` method
8189
+ // https://tc39.es/ecma262/#sec-string.prototype.includes
8190
+ $({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
8191
+ includes: function includes(searchString /* , position = 0 */) {
8192
+ return !!~stringIndexOf(
8193
+ toString(requireObjectCoercible(this)),
8194
+ toString(notARegExp(searchString)),
8195
+ arguments.length > 1 ? arguments[1] : undefined
8196
+ );
8197
+ }
8198
+ });
8199
+
8200
+ var NONE$1 = 0;
8201
+ var HALF = 1;
8202
+ var WHOLE = 2;
8203
+ /**
8204
+ * @private
8205
+ * @param {Event[]} events
8206
+ * @param {HDate} hdate
8207
+ * @return {number}
8208
+ */
8209
+
8210
+ function hallel_(events, hdate) {
8211
+ var whole = events.filter(function (ev) {
8212
+ /** @type {string} */
8213
+ var desc = ev.getDesc();
8214
+ /** @type {HDate} */
8215
+
8216
+ var hd = ev.getDate();
8217
+ var month = hd.getMonth();
8218
+ var mday = hd.getDate();
8219
+ return desc.startsWith('Chanukah') || desc.startsWith('Shavuot') || desc.startsWith('Sukkot') || month === months.NISAN && (mday === 15 || mday === 16) && ev.getFlags() & flags.CHAG || // Pesach
8220
+ desc === 'Yom HaAtzma\'ut' || desc === 'Yom Yerushalayim';
8221
+ }).map(function (ev) {
8222
+ return ev.getDate().abs();
8223
+ });
8224
+ var abs = hdate.abs();
8225
+
8226
+ if (whole.includes(abs)) {
8227
+ return WHOLE;
8228
+ }
8229
+
8230
+ var half = events.filter(function (ev) {
8231
+ var desc = ev.getDesc();
8232
+ return ev.getFlags() & flags.ROSH_CHODESH || desc.startsWith('Pesach') && desc !== 'Pesach I' && desc !== 'Pesach II';
8233
+ }).map(function (ev) {
8234
+ return ev.getDate().abs();
8235
+ });
8236
+
8237
+ if (half.includes(abs)) {
8238
+ return HALF;
8239
+ }
8240
+
8241
+ return NONE$1;
8242
+ }
8243
+
8244
+ /**
8245
+ * @private
8246
+ * @param {number} start
8247
+ * @param {number} end
8248
+ * @return {number[]}
8249
+ */
8250
+
8251
+ function range(start, end) {
8252
+ var arr = [];
8253
+
8254
+ for (var i = start; i <= end; i++) {
8255
+ arr.push(i);
8256
+ }
8257
+
8258
+ return arr;
8259
+ }
8260
+
8261
+ var cache = Object.create(null);
8262
+ var NONE = {
8263
+ shacharit: false,
8264
+ mincha: false,
8265
+ allCongs: false
8266
+ };
8267
+ /**
8268
+ * @private
8269
+ * @param {HDate} hdate
8270
+ * @param {boolean} il
8271
+ * @return {TachanunResult}
8272
+ */
8273
+
8274
+ function tachanun_(hdate, il) {
8275
+ return tachanun0(hdate, il, true);
8276
+ }
8277
+ /**
8278
+ * @private
8279
+ * @param {HDate} hdate
8280
+ * @param {boolean} il
8281
+ * @param {boolean} checkNext
8282
+ * @return {TachanunResult}
8283
+ */
8284
+
8285
+ function tachanun0(hdate, il, checkNext) {
8286
+ var year = hdate.getFullYear();
8287
+ var key = "".concat(year, "-").concat(il ? 1 : 0);
8288
+ var dates = cache[key] = cache[key] || tachanunYear(year, il);
8289
+ var abs = hdate.abs();
8290
+
8291
+ if (dates.none.indexOf(abs) > -1) {
8292
+ return NONE;
8293
+ }
8294
+
8295
+ var dow = hdate.getDay();
8296
+ var ret = {
8297
+ shacharit: false,
8298
+ mincha: false,
8299
+ allCongs: false
8300
+ };
8301
+
8302
+ if (dates.some.indexOf(abs) === -1) {
8303
+ ret.allCongs = true;
8304
+ }
8305
+
8306
+ if (dow !== 6) {
8307
+ ret.shacharit = true;
8308
+ }
8309
+
8310
+ var tomorrow = abs + 1;
8311
+
8312
+ if (checkNext && dates.yesPrev.indexOf(tomorrow) === -1) {
8313
+ var tmp = tachanun0(new HDate(tomorrow), il, false);
8314
+ ret.mincha = tmp.shacharit;
8315
+ } else {
8316
+ ret.mincha = dow !== 5;
8317
+ }
8318
+
8319
+ if (ret.allCongs && !ret.mincha && !ret.shacharit) {
8320
+ return NONE;
8321
+ }
8322
+
8323
+ return ret;
8324
+ }
8325
+ /**
8326
+ * @private
8327
+ * @param {number} year
8328
+ * @param {boolean} il
8329
+ * @return {*}
8330
+ */
8331
+
8332
+
8333
+ function tachanunYear(year, il) {
8334
+ var leap = HDate.isLeapYear(year);
8335
+ var monthsInYear = 12 + leap;
8336
+ var av9dt = new HDate(9, months.AV, year);
8337
+
8338
+ if (av9dt.getDay() === 6) {
8339
+ av9dt = av9dt.next();
8340
+ }
8341
+
8342
+ var shushPurim = new HDate(15, months.ADAR_II, year);
8343
+
8344
+ if (shushPurim.getDay() === 6) {
8345
+ shushPurim = shushPurim.next();
8346
+ }
8347
+
8348
+ var none = [].concat( // Rosh Chodesh - 1st of every month. Also includes RH day 1 (1 Tishrei)
8349
+ range(1, monthsInYear).map(function (month) {
8350
+ return new HDate(1, month, year);
8351
+ }), // Rosh Chodesh - 30th of months that have one
8352
+ range(1, monthsInYear).filter(function (month) {
8353
+ return HDate.daysInMonth(month, year) === 30;
8354
+ }).map(function (month) {
8355
+ return new HDate(30, month, year);
8356
+ }), new HDate(2, months.TISHREI, year), // Rosh Hashana II
8357
+ // entire month of Nisan
8358
+ range(1, HDate.daysInMonth(months.NISAN, year)).map(function (mday) {
8359
+ return new HDate(mday, months.NISAN, year);
8360
+ }), new HDate(18, months.IYYAR, year), // Lag BaOmer
8361
+ // Rosh Chodesh Sivan thru Isru Chag
8362
+ range(1, 8 - (il ? 1 : 0)).map(function (mday) {
8363
+ return new HDate(mday, months.SIVAN, year);
8364
+ }), av9dt, // Tisha B'Av
8365
+ new HDate(15, months.AV, year), // Tu B'Av
8366
+ new HDate(29, months.ELUL, year), // Erev Rosh Hashanah
8367
+ // Erev Yom Kippur thru Isru Chag
8368
+ range(9, 24 - (il ? 1 : 0)).map(function (mday) {
8369
+ return new HDate(mday, months.TISHREI, year);
8370
+ }), // Chanukah
8371
+ range(25, 33).map(function (mday) {
8372
+ return new HDate(mday, months.KISLEV, year);
8373
+ }), new HDate(15, months.SHVAT, year), // Tu BiShvat
8374
+ new HDate(14, months.ADAR_II, year), // Purim
8375
+ shushPurim, leap ? new HDate(14, months.ADAR_I, year) : [] // Purim Katan
8376
+ );
8377
+ var some = [].concat( // Until 14 Sivan
8378
+ range(1, 13).map(function (mday) {
8379
+ return new HDate(mday, months.SIVAN, year);
8380
+ }), // Until after Rosh Chodesh Cheshvan
8381
+ range(20, 31).map(function (mday) {
8382
+ return new HDate(mday, months.TISHREI, year);
8383
+ }), new HDate(14, months.IYYAR, year), // Pesach Sheini
8384
+ // Yom HaAtzma'ut, which changes based on day of week
8385
+ year >= 5708 ? dateYomHaZikaron(year).next() : [], // Yom Yerushalayim
8386
+ year >= 5727 ? new HDate(28, months.IYYAR, year) : []);
8387
+ var yesPrev = [].concat(new HDate(29, months.ELUL, year - 1), // Erev Rosh Hashanah
8388
+ new HDate(9, months.TISHREI, year), // Erev Yom Kippur
8389
+ new HDate(14, months.IYYAR, year) // Pesach Sheini
8390
+ );
8391
+ return {
8392
+ none: none.map(function (hd) {
8393
+ return hd.abs();
8394
+ }).sort(),
8395
+ some: some.map(function (hd) {
8396
+ return hd.abs();
8397
+ }).sort(),
8398
+ yesPrev: yesPrev.map(function (hd) {
8399
+ return hd.abs();
8400
+ }).sort()
8401
+ };
8402
+ }
8403
+
7892
8404
  var FRI = 5;
7893
8405
  var SAT = 6;
7894
8406
  var NISAN = months.NISAN; // const IYYAR = months.IYYAR;
@@ -8065,6 +8577,13 @@ function checkCandleOptions(options) {
8065
8577
  * Possible values are `true` and `false`; the default is locale dependent.
8066
8578
  */
8067
8579
 
8580
+ /**
8581
+ * @typedef {Object} TachanunResult
8582
+ * @property {boolean} shacharit Tachanun is said at Shacharit
8583
+ * @property {boolean} mincha Tachanun is said at Mincha
8584
+ * @property {boolean} allCongs All congregations say Tachanun on the day
8585
+ */
8586
+
8068
8587
  /**
8069
8588
  * Gets the R.D. days for a number, Date, or HDate
8070
8589
  * @private
@@ -8176,6 +8695,7 @@ function getMaskFromOptions(options) {
8176
8695
  if (m & OMER_COUNT) options.omer = true;
8177
8696
  if (m & SHABBAT_MEVARCHIM) options.shabbatMevarchim = true;
8178
8697
  if (m & flags.MISHNA_YOMI) options.mishnaYomi = true;
8698
+ if (m & flags.YOM_KIPPUR_KATAN) options.yomKippurKatan = true;
8179
8699
  options.userMask = true;
8180
8700
  return m;
8181
8701
  }
@@ -8236,6 +8756,10 @@ function getMaskFromOptions(options) {
8236
8756
  mask |= SHABBAT_MEVARCHIM;
8237
8757
  }
8238
8758
 
8759
+ if (options.yomKippurKatan) {
8760
+ mask |= flags.YOM_KIPPUR_KATAN;
8761
+ }
8762
+
8239
8763
  return mask;
8240
8764
  }
8241
8765
 
@@ -8274,6 +8798,8 @@ function observedInIsrael(ev) {
8274
8798
  function observedInDiaspora(ev) {
8275
8799
  return ev.observedInDiaspora();
8276
8800
  }
8801
+
8802
+ var yearArrayCache = Object.create(null);
8277
8803
  /**
8278
8804
  * HebrewCalendar is the main interface to the `@hebcal/core` library.
8279
8805
  * This namespace is used to calculate holidays, rosh chodesh, candle lighting & havdalah times,
@@ -8281,7 +8807,6 @@ function observedInDiaspora(ev) {
8281
8807
  * Event names can be rendered in several languges using the `locale` option.
8282
8808
  */
8283
8809
 
8284
-
8285
8810
  var HebrewCalendar = /*#__PURE__*/function () {
8286
8811
  function HebrewCalendar() {
8287
8812
  _classCallCheck(this, HebrewCalendar);
@@ -8325,6 +8850,7 @@ var HebrewCalendar = /*#__PURE__*/function () {
8325
8850
  * * Mishna Yomi (`options.mishnaYomi`)
8326
8851
  * * Shabbat Mevarchim HaChodesh on Saturday before Rosh Chodesh (`options.shabbatMevarchim`)
8327
8852
  * * Molad announcement on Saturday before Rosh Chodesh (`options.molad`)
8853
+ * * Yom Kippur Katan (`options.yomKippurKatan`)
8328
8854
  *
8329
8855
  * Candle-lighting and Havdalah times are approximated using latitude and longitude
8330
8856
  * specified by the {@link Location} class. The `Location` class contains a small
@@ -8632,10 +9158,17 @@ var HebrewCalendar = /*#__PURE__*/function () {
8632
9158
  }, {
8633
9159
  key: "getHolidaysForYearArray",
8634
9160
  value: function getHolidaysForYearArray(year, il) {
9161
+ var cacheKey = "".concat(year, "-").concat(il ? 1 : 0);
9162
+ var events = yearArrayCache[cacheKey];
9163
+
9164
+ if (events) {
9165
+ return events;
9166
+ }
9167
+
8635
9168
  var yearMap = getHolidaysForYear_(year);
8636
9169
  var startAbs = HDate.hebrew2abs(year, TISHREI, 1);
8637
9170
  var endAbs = HDate.hebrew2abs(year + 1, TISHREI, 1) - 1;
8638
- var events = [];
9171
+ events = [];
8639
9172
  var myFilter = il ? observedInIsrael : observedInDiaspora;
8640
9173
 
8641
9174
  for (var absDt = startAbs; absDt <= endAbs; absDt++) {
@@ -8648,6 +9181,7 @@ var HebrewCalendar = /*#__PURE__*/function () {
8648
9181
  }
8649
9182
  }
8650
9183
 
9184
+ yearArrayCache[cacheKey] = events;
8651
9185
  return events;
8652
9186
  }
8653
9187
  /**
@@ -8729,6 +9263,56 @@ var HebrewCalendar = /*#__PURE__*/function () {
8729
9263
  value: function getSedra(hyear, il) {
8730
9264
  return getSedra_(hyear, il);
8731
9265
  }
9266
+ /**
9267
+ * Return a number containing information on what Hallel is said on that day.
9268
+ *
9269
+ * Whole Hallel is said on Chanukah, the first Yom Tov of Pesach, Shavuot, Sukkot,
9270
+ * Yom Ha'atzmaut, and Yom Yerushalayim.
9271
+ *
9272
+ * Half Hallel is said on Rosh Chodesh (not Rosh Hashanah), and the last 6 days of Pesach.
9273
+ *
9274
+ * The number is one of the following values:
9275
+ *
9276
+ * 0 - No Hallel
9277
+ * 1 - Half Hallel
9278
+ * 2 - Whole Hallel
9279
+ *
9280
+ * @param {HDate} hdate
9281
+ * @param {boolean} il
9282
+ * @return {number}
9283
+ */
9284
+
9285
+ }, {
9286
+ key: "hallel",
9287
+ value: function hallel(hdate, il) {
9288
+ var events = HebrewCalendar.getHolidaysForYearArray(hdate.getFullYear(), il);
9289
+ return hallel_(events, hdate);
9290
+ }
9291
+ /**
9292
+ * Return details on what Tachanun (or Tzidchatcha on Shabbat) is said on `hdate`.
9293
+ *
9294
+ * Tachanun is not said on Rosh Chodesh, the month of Nisan, Lag Baomer,
9295
+ * Rosh Chodesh Sivan until Isru Chag, Tisha B'av, 15 Av, Erev Rosh Hashanah,
9296
+ * Rosh Hashanah, Erev Yom Kippur until after Simchat Torah, Chanukah,
9297
+ * Tu B'shvat, Purim and Shushan Purim, and Purim and Shushan Purim Katan.
9298
+ *
9299
+ * In some congregations Tachanun is not said until from Rosh Chodesh Sivan
9300
+ * until 14th Sivan, Sukkot until after Rosh Chodesh Cheshvan, Pesach Sheini,
9301
+ * Yom Ha'atzmaut, and Yom Yerushalayim.
9302
+ *
9303
+ * Tachanun is not said at Mincha on days before it is not said at Shacharit.
9304
+ *
9305
+ * Tachanun is not said at Shacharit on Shabbat, but is at Mincha, usually.
9306
+ * @param {HDate} hdate
9307
+ * @param {boolean} il
9308
+ * @return {TachanunResult}
9309
+ */
9310
+
9311
+ }, {
9312
+ key: "tachanun",
9313
+ value: function tachanun(hdate, il) {
9314
+ return tachanun_(hdate, il);
9315
+ }
8732
9316
  }]);
8733
9317
 
8734
9318
  return HebrewCalendar;
@@ -8752,11 +9336,12 @@ function appendHolidayAndRelated(events, ev, options, candlesEv, dow) {
8752
9336
  return candlesEv; // holiday isn't observed here; bail out early
8753
9337
  }
8754
9338
 
8755
- if (ev instanceof YomKippurKatanEvent && !options.yomKippurKatan) {
9339
+ var eFlags = ev.getFlags();
9340
+
9341
+ if (!options.yomKippurKatan && eFlags & flags.YOM_KIPPUR_KATAN) {
8756
9342
  return candlesEv; // bail out early
8757
9343
  }
8758
9344
 
8759
- var eFlags = ev.getFlags();
8760
9345
  var location = options.location;
8761
9346
  var isMajorFast = Boolean(eFlags & MAJOR_FAST);
8762
9347
  var isMinorFast = Boolean(eFlags & MINOR_FAST);
@@ -8790,7 +9375,9 @@ function appendHolidayAndRelated(events, ev, options, candlesEv, dow) {
8790
9375
  }
8791
9376
  }
8792
9377
 
8793
- if (!options.noHolidays) {
9378
+ if (options.yomKippurKatan && eFlags & flags.YOM_KIPPUR_KATAN) {
9379
+ events.push(ev);
9380
+ } else if (!options.noHolidays) {
8794
9381
  events.push(ev); // the original event itself
8795
9382
  }
8796
9383
  }