2  zen   @:0@:@ *  `@: H@:x@: `@the L @r. +  @:@ten +  @:A:@ j   in PA:lost. @:@:hA:@page*  A:  .HC:C:,Also Sav@l %s *  PB:@}  B:@ment`*  B:B:@ Savx  B:B: }@I ZeixB:C:@`*  hC: C: B: B:@@  allpD:E:XF:L:@e sp*  D:@xist5 herung D:(D:@D:@n. V`*  D:@C @ion `+  D:@ D:D:@das   E:(E: @E:duction to the Bar Count D:D:{ E:@Coun@+  E:E:@H  E:F:@ul*HF:@To A+  pF:@+  F:F:@on-Mh , Sion I0hp  (G:@G: ` Y@modu @3  G:G: lar-Modul >H:@he CU @e3  HH:`H: das Countdown-Timer-ModulE@E A OptD  H:H: Einführung in das Email Optin-Modu >w@qion p  hI:I: J:J:führung in das @erab@+  ,  I:J:@e moXW  J:8J:@ Einb, @widt5  &   8>I: ion G:0H:H:PI:J:hL:-Modul@FXL:duction to the F@idth+  pK:@+  K:K:@age-g @` idth(  K:L: K:(L:  @K: D` L: L:  allpD:E:XF:L:L:h Menu-Modul@r0` tfolio module 8M:PM:@das + + R:@ion +  M:@+  M:N:@das pb,  N:+@,ion r moduN:2 PN:hN:N: -ModO:@I O:@le +  0O:@O:@rungb,  XO:pO:@+ ion to the Number Counter module O:O:ce. * @return bool True if the block type is registered, false otherwise. */ public function is_registered( $name ) { return isset( $this->registered_block_types[ $name ] ); } public function __wakeup() { if ( ! $this->registered_block_types ) { return; } if ( ! is_array( $this->registered_block_types ) ) { throw new UnexpectedValueException(); } foreach ( $this->registered_block_types as $value ) { if ( ! $value instanceof WP_Block_Type ) { throw new UnexpectedValueException(); } } } /** * Utility method to retrieve the main instance of the class. * * The instance will be created if it does not exist yet. * * @since 5.0.0 * * @return WP_Block_Type_Registry The main instance. */ public static function get_instance() { if ( null === self::$instance ) { self::$instance = new self(); } return self::$instance; } }