├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Boost ├── boost │ ├── algorithm │ │ ├── minmax.hpp │ │ ├── minmax_element.hpp │ │ ├── string.hpp │ │ ├── string │ │ │ ├── case_conv.hpp │ │ │ ├── classification.hpp │ │ │ ├── compare.hpp │ │ │ ├── concept.hpp │ │ │ ├── config.hpp │ │ │ ├── constants.hpp │ │ │ ├── detail │ │ │ │ ├── case_conv.hpp │ │ │ │ ├── classification.hpp │ │ │ │ ├── find_format.hpp │ │ │ │ ├── find_format_all.hpp │ │ │ │ ├── find_format_store.hpp │ │ │ │ ├── find_iterator.hpp │ │ │ │ ├── finder.hpp │ │ │ │ ├── finder_regex.hpp │ │ │ │ ├── formatter.hpp │ │ │ │ ├── formatter_regex.hpp │ │ │ │ ├── predicate.hpp │ │ │ │ ├── replace_storage.hpp │ │ │ │ ├── sequence.hpp │ │ │ │ ├── trim.hpp │ │ │ │ └── util.hpp │ │ │ ├── erase.hpp │ │ │ ├── find.hpp │ │ │ ├── find_format.hpp │ │ │ ├── find_iterator.hpp │ │ │ ├── finder.hpp │ │ │ ├── formatter.hpp │ │ │ ├── iter_find.hpp │ │ │ ├── join.hpp │ │ │ ├── predicate.hpp │ │ │ ├── predicate_facade.hpp │ │ │ ├── regex.hpp │ │ │ ├── regex_find_format.hpp │ │ │ ├── replace.hpp │ │ │ ├── sequence_traits.hpp │ │ │ ├── split.hpp │ │ │ ├── std │ │ │ │ ├── list_traits.hpp │ │ │ │ ├── rope_traits.hpp │ │ │ │ ├── slist_traits.hpp │ │ │ │ └── string_traits.hpp │ │ │ ├── std_containers_traits.hpp │ │ │ ├── trim.hpp │ │ │ └── yes_no_type.hpp │ │ └── string_regex.hpp │ ├── assert.hpp │ ├── bind.hpp │ ├── bind │ │ ├── apply.hpp │ │ ├── arg.hpp │ │ ├── bind.hpp │ │ ├── bind_cc.hpp │ │ ├── bind_mf2_cc.hpp │ │ ├── bind_mf_cc.hpp │ │ ├── bind_template.hpp │ │ ├── make_adaptable.hpp │ │ ├── mem_fn.hpp │ │ ├── mem_fn_cc.hpp │ │ ├── mem_fn_template.hpp │ │ ├── mem_fn_vw.hpp │ │ ├── placeholders.hpp │ │ ├── protect.hpp │ │ └── storage.hpp │ ├── call_traits.hpp │ ├── checked_delete.hpp │ ├── circular_buffer.hpp │ ├── circular_buffer │ │ ├── base.hpp │ │ ├── debug.hpp │ │ ├── details.hpp │ │ └── space_optimized.hpp │ ├── circular_buffer_fwd.hpp │ ├── concept │ │ ├── assert.hpp │ │ ├── detail │ │ │ ├── backward_compatibility.hpp │ │ │ ├── borland.hpp │ │ │ ├── concept_def.hpp │ │ │ ├── concept_undef.hpp │ │ │ ├── general.hpp │ │ │ ├── has_constraints.hpp │ │ │ └── msvc.hpp │ │ ├── requires.hpp │ │ └── usage.hpp │ ├── concept_check.hpp │ ├── config.hpp │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ └── visualc.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vxworks.hpp │ │ │ └── win32.hpp │ │ ├── posix_features.hpp │ │ ├── requires_threads.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ └── vacpp.hpp │ │ ├── suffix.hpp │ │ └── user.hpp │ ├── cstdint.hpp │ ├── current_function.hpp │ ├── date_time.hpp │ ├── date_time │ │ ├── adjust_functors.hpp │ │ ├── c_local_time_adjustor.hpp │ │ ├── c_time.hpp │ │ ├── compiler_config.hpp │ │ ├── constrained_value.hpp │ │ ├── date.hpp │ │ ├── date_clock_device.hpp │ │ ├── date_defs.hpp │ │ ├── date_duration.hpp │ │ ├── date_duration_types.hpp │ │ ├── date_facet.hpp │ │ ├── date_format_simple.hpp │ │ ├── date_formatting.hpp │ │ ├── date_formatting_limited.hpp │ │ ├── date_formatting_locales.hpp │ │ ├── date_generator_formatter.hpp │ │ ├── date_generator_parser.hpp │ │ ├── date_generators.hpp │ │ ├── date_iterator.hpp │ │ ├── date_names_put.hpp │ │ ├── date_parsing.hpp │ │ ├── dst_rules.hpp │ │ ├── dst_transition_generators.hpp │ │ ├── filetime_functions.hpp │ │ ├── format_date_parser.hpp │ │ ├── gregorian │ │ │ ├── conversion.hpp │ │ │ ├── formatters.hpp │ │ │ ├── formatters_limited.hpp │ │ │ ├── greg_calendar.hpp │ │ │ ├── greg_date.hpp │ │ │ ├── greg_day.hpp │ │ │ ├── greg_day_of_year.hpp │ │ │ ├── greg_duration.hpp │ │ │ ├── greg_duration_types.hpp │ │ │ ├── greg_facet.hpp │ │ │ ├── greg_month.hpp │ │ │ ├── greg_serialize.hpp │ │ │ ├── greg_weekday.hpp │ │ │ ├── greg_year.hpp │ │ │ ├── greg_ymd.hpp │ │ │ ├── gregorian.hpp │ │ │ ├── gregorian_io.hpp │ │ │ ├── gregorian_types.hpp │ │ │ └── parsers.hpp │ │ ├── gregorian_calendar.hpp │ │ ├── gregorian_calendar.ipp │ │ ├── int_adapter.hpp │ │ ├── iso_format.hpp │ │ ├── local_time │ │ │ ├── conversion.hpp │ │ │ ├── custom_time_zone.hpp │ │ │ ├── date_duration_operators.hpp │ │ │ ├── dst_transition_day_rules.hpp │ │ │ ├── local_date_time.hpp │ │ │ ├── local_time.hpp │ │ │ ├── local_time_io.hpp │ │ │ ├── local_time_types.hpp │ │ │ ├── posix_time_zone.hpp │ │ │ └── tz_database.hpp │ │ ├── local_time_adjustor.hpp │ │ ├── local_timezone_defs.hpp │ │ ├── locale_config.hpp │ │ ├── microsec_time_clock.hpp │ │ ├── parse_format_base.hpp │ │ ├── period.hpp │ │ ├── period_formatter.hpp │ │ ├── period_parser.hpp │ │ ├── posix_time │ │ │ ├── conversion.hpp │ │ │ ├── date_duration_operators.hpp │ │ │ ├── posix_time.hpp │ │ │ ├── posix_time_config.hpp │ │ │ ├── posix_time_duration.hpp │ │ │ ├── posix_time_io.hpp │ │ │ ├── posix_time_legacy_io.hpp │ │ │ ├── posix_time_system.hpp │ │ │ ├── posix_time_types.hpp │ │ │ ├── ptime.hpp │ │ │ ├── time_formatters.hpp │ │ │ ├── time_formatters_limited.hpp │ │ │ ├── time_parsers.hpp │ │ │ ├── time_period.hpp │ │ │ └── time_serialize.hpp │ │ ├── special_defs.hpp │ │ ├── special_values_formatter.hpp │ │ ├── special_values_parser.hpp │ │ ├── string_convert.hpp │ │ ├── string_parse_tree.hpp │ │ ├── strings_from_facet.hpp │ │ ├── time.hpp │ │ ├── time_clock.hpp │ │ ├── time_defs.hpp │ │ ├── time_duration.hpp │ │ ├── time_facet.hpp │ │ ├── time_formatting_streams.hpp │ │ ├── time_iterator.hpp │ │ ├── time_parsing.hpp │ │ ├── time_resolution_traits.hpp │ │ ├── time_system_counted.hpp │ │ ├── time_system_split.hpp │ │ ├── time_zone_base.hpp │ │ ├── time_zone_names.hpp │ │ ├── tz_db_base.hpp │ │ ├── wrapping_int.hpp │ │ └── year_month_day.hpp │ ├── detail │ │ ├── algorithm.hpp │ │ ├── allocator_utilities.hpp │ │ ├── atomic_count.hpp │ │ ├── binary_search.hpp │ │ ├── call_traits.hpp │ │ ├── catch_exceptions.hpp │ │ ├── compressed_pair.hpp │ │ ├── container_fwd.hpp │ │ ├── dynamic_bitset.hpp │ │ ├── endian.hpp │ │ ├── has_default_constructor.hpp │ │ ├── identifier.hpp │ │ ├── indirect_traits.hpp │ │ ├── interlocked.hpp │ │ ├── is_function_ref_tester.hpp │ │ ├── is_incrementable.hpp │ │ ├── is_xxx.hpp │ │ ├── iterator.hpp │ │ ├── lcast_precision.hpp │ │ ├── lightweight_mutex.hpp │ │ ├── lightweight_test.hpp │ │ ├── lightweight_thread.hpp │ │ ├── limits.hpp │ │ ├── named_template_params.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── none_t.hpp │ │ ├── numeric_traits.hpp │ │ ├── ob_call_traits.hpp │ │ ├── ob_compressed_pair.hpp │ │ ├── quick_allocator.hpp │ │ ├── reference_content.hpp │ │ ├── scoped_enum_emulation.hpp │ │ ├── select_type.hpp │ │ ├── sp_typeinfo.hpp │ │ ├── templated_streams.hpp │ │ ├── utf8_codecvt_facet.hpp │ │ └── workaround.hpp │ ├── enable_shared_from_this.hpp │ ├── exception │ │ ├── all.hpp │ │ ├── current_exception_cast.hpp │ │ ├── detail │ │ │ ├── attribute_noreturn.hpp │ │ │ ├── error_info_impl.hpp │ │ │ ├── exception_ptr.hpp │ │ │ ├── is_output_streamable.hpp │ │ │ ├── object_hex_dump.hpp │ │ │ └── type_info.hpp │ │ ├── diagnostic_information.hpp │ │ ├── enable_current_exception.hpp │ │ ├── enable_error_info.hpp │ │ ├── errinfo_api_function.hpp │ │ ├── errinfo_at_line.hpp │ │ ├── errinfo_errno.hpp │ │ ├── errinfo_file_handle.hpp │ │ ├── errinfo_file_name.hpp │ │ ├── errinfo_file_open_mode.hpp │ │ ├── errinfo_nested_exception.hpp │ │ ├── errinfo_type_info_name.hpp │ │ ├── error_info.hpp │ │ ├── exception.hpp │ │ ├── get_error_info.hpp │ │ ├── info.hpp │ │ ├── info_tuple.hpp │ │ ├── to_string.hpp │ │ └── to_string_stub.hpp │ ├── exception_ptr.hpp │ ├── function.hpp │ ├── function │ │ ├── detail │ │ │ ├── function_iterate.hpp │ │ │ ├── gen_maybe_include.pl │ │ │ ├── maybe_include.hpp │ │ │ └── prologue.hpp │ │ ├── function0.hpp │ │ ├── function1.hpp │ │ ├── function10.hpp │ │ ├── function2.hpp │ │ ├── function3.hpp │ │ ├── function4.hpp │ │ ├── function5.hpp │ │ ├── function6.hpp │ │ ├── function7.hpp │ │ ├── function8.hpp │ │ ├── function9.hpp │ │ ├── function_base.hpp │ │ ├── function_fwd.hpp │ │ ├── function_template.hpp │ │ ├── function_typeof.hpp │ │ └── gen_function_N.pl │ ├── function_equal.hpp │ ├── get_pointer.hpp │ ├── implicit_cast.hpp │ ├── integer.hpp │ ├── integer_fwd.hpp │ ├── integer_traits.hpp │ ├── intrusive_ptr.hpp │ ├── io │ │ ├── detail │ │ │ └── quoted_manip.hpp │ │ └── ios_state.hpp │ ├── io_fwd.hpp │ ├── is_placeholder.hpp │ ├── iterator.hpp │ ├── iterator │ │ ├── counting_iterator.hpp │ │ ├── detail │ │ │ ├── any_conversion_eater.hpp │ │ │ ├── config_def.hpp │ │ │ ├── config_undef.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── facade_iterator_category.hpp │ │ │ └── minimum_category.hpp │ │ ├── filter_iterator.hpp │ │ ├── indirect_iterator.hpp │ │ ├── interoperable.hpp │ │ ├── is_lvalue_iterator.hpp │ │ ├── is_readable_iterator.hpp │ │ ├── iterator_adaptor.hpp │ │ ├── iterator_archetypes.hpp │ │ ├── iterator_categories.hpp │ │ ├── iterator_concepts.hpp │ │ ├── iterator_facade.hpp │ │ ├── iterator_traits.hpp │ │ ├── new_iterator_tests.hpp │ │ ├── permutation_iterator.hpp │ │ ├── reverse_iterator.hpp │ │ ├── transform_iterator.hpp │ │ └── zip_iterator.hpp │ ├── lexical_cast.hpp │ ├── limits.hpp │ ├── mem_fn.hpp │ ├── memory_order.hpp │ ├── mpl │ │ ├── O1_size.hpp │ │ ├── O1_size_fwd.hpp │ │ ├── accumulate.hpp │ │ ├── advance.hpp │ │ ├── advance_fwd.hpp │ │ ├── alias.hpp │ │ ├── always.hpp │ │ ├── and.hpp │ │ ├── apply.hpp │ │ ├── apply_fwd.hpp │ │ ├── apply_wrap.hpp │ │ ├── arg.hpp │ │ ├── arg_fwd.hpp │ │ ├── arithmetic.hpp │ │ ├── as_sequence.hpp │ │ ├── assert.hpp │ │ ├── at.hpp │ │ ├── at_fwd.hpp │ │ ├── aux_ │ │ │ ├── O1_size_impl.hpp │ │ │ ├── adl_barrier.hpp │ │ │ ├── advance_backward.hpp │ │ │ ├── advance_forward.hpp │ │ │ ├── apply_1st.hpp │ │ │ ├── arg_typedef.hpp │ │ │ ├── arithmetic_op.hpp │ │ │ ├── arity.hpp │ │ │ ├── arity_spec.hpp │ │ │ ├── at_impl.hpp │ │ │ ├── back_impl.hpp │ │ │ ├── basic_bind.hpp │ │ │ ├── begin_end_impl.hpp │ │ │ ├── clear_impl.hpp │ │ │ ├── common_name_wknd.hpp │ │ │ ├── comparison_op.hpp │ │ │ ├── config │ │ │ │ ├── adl.hpp │ │ │ │ ├── arrays.hpp │ │ │ │ ├── bcc.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── compiler.hpp │ │ │ │ ├── ctps.hpp │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ ├── dtp.hpp │ │ │ │ ├── eti.hpp │ │ │ │ ├── forwarding.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── integral.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── msvc.hpp │ │ │ │ ├── msvc_typename.hpp │ │ │ │ ├── nttp.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── overload_resolution.hpp │ │ │ │ ├── pp_counter.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ ├── static_constant.hpp │ │ │ │ ├── ttp.hpp │ │ │ │ ├── typeof.hpp │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── contains_impl.hpp │ │ │ ├── count_args.hpp │ │ │ ├── count_impl.hpp │ │ │ ├── empty_impl.hpp │ │ │ ├── erase_impl.hpp │ │ │ ├── erase_key_impl.hpp │ │ │ ├── filter_iter.hpp │ │ │ ├── find_if_pred.hpp │ │ │ ├── fold_impl.hpp │ │ │ ├── fold_impl_body.hpp │ │ │ ├── fold_op.hpp │ │ │ ├── fold_pred.hpp │ │ │ ├── front_impl.hpp │ │ │ ├── full_lambda.hpp │ │ │ ├── has_apply.hpp │ │ │ ├── has_begin.hpp │ │ │ ├── has_key_impl.hpp │ │ │ ├── has_rebind.hpp │ │ │ ├── has_size.hpp │ │ │ ├── has_tag.hpp │ │ │ ├── has_type.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── insert_impl.hpp │ │ │ ├── insert_range_impl.hpp │ │ │ ├── inserter_algorithm.hpp │ │ │ ├── integral_wrapper.hpp │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ ├── iter_apply.hpp │ │ │ ├── iter_fold_if_impl.hpp │ │ │ ├── iter_fold_impl.hpp │ │ │ ├── iter_push_front.hpp │ │ │ ├── joint_iter.hpp │ │ │ ├── lambda_arity_param.hpp │ │ │ ├── lambda_no_ctps.hpp │ │ │ ├── lambda_spec.hpp │ │ │ ├── lambda_support.hpp │ │ │ ├── largest_int.hpp │ │ │ ├── logical_op.hpp │ │ │ ├── msvc_dtw.hpp │ │ │ ├── msvc_eti_base.hpp │ │ │ ├── msvc_is_class.hpp │ │ │ ├── msvc_never_true.hpp │ │ │ ├── msvc_type.hpp │ │ │ ├── na.hpp │ │ │ ├── na_assert.hpp │ │ │ ├── na_fwd.hpp │ │ │ ├── na_spec.hpp │ │ │ ├── nested_type_wknd.hpp │ │ │ ├── nttp_decl.hpp │ │ │ ├── numeric_cast_utils.hpp │ │ │ ├── numeric_op.hpp │ │ │ ├── order_impl.hpp │ │ │ ├── overload_names.hpp │ │ │ ├── partition_op.hpp │ │ │ ├── pop_back_impl.hpp │ │ │ ├── pop_front_impl.hpp │ │ │ ├── preprocessed │ │ │ │ ├── bcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc551 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc_pre590 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── dmc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── gcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc60 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc70 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── mwcw │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ctps │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ttp │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ └── plain │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ ├── preprocessor │ │ │ │ ├── add.hpp │ │ │ │ ├── def_params_tail.hpp │ │ │ │ ├── default_params.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── ext_params.hpp │ │ │ │ ├── filter_params.hpp │ │ │ │ ├── is_seq.hpp │ │ │ │ ├── params.hpp │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── sub.hpp │ │ │ │ ├── token_equal.hpp │ │ │ │ └── tuple.hpp │ │ │ ├── ptr_to_ref.hpp │ │ │ ├── push_back_impl.hpp │ │ │ ├── push_front_impl.hpp │ │ │ ├── range_c │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── reverse_fold_impl.hpp │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ ├── sequence_wrapper.hpp │ │ │ ├── shift_op.hpp │ │ │ ├── single_element_iter.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── sort_impl.hpp │ │ │ ├── static_cast.hpp │ │ │ ├── template_arity.hpp │ │ │ ├── template_arity_fwd.hpp │ │ │ ├── test.hpp │ │ │ ├── test │ │ │ │ ├── assert.hpp │ │ │ │ ├── data.hpp │ │ │ │ └── test_case.hpp │ │ │ ├── traits_lambda_spec.hpp │ │ │ ├── transform_iter.hpp │ │ │ ├── type_wrapper.hpp │ │ │ ├── unwrap.hpp │ │ │ ├── value_wknd.hpp │ │ │ └── yes_no.hpp │ │ ├── back.hpp │ │ ├── back_fwd.hpp │ │ ├── back_inserter.hpp │ │ ├── base.hpp │ │ ├── begin.hpp │ │ ├── begin_end.hpp │ │ ├── begin_end_fwd.hpp │ │ ├── bind.hpp │ │ ├── bind_fwd.hpp │ │ ├── bitand.hpp │ │ ├── bitor.hpp │ │ ├── bitwise.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── bool_fwd.hpp │ │ ├── char.hpp │ │ ├── char_fwd.hpp │ │ ├── clear.hpp │ │ ├── clear_fwd.hpp │ │ ├── comparison.hpp │ │ ├── contains.hpp │ │ ├── contains_fwd.hpp │ │ ├── copy.hpp │ │ ├── copy_if.hpp │ │ ├── count.hpp │ │ ├── count_fwd.hpp │ │ ├── count_if.hpp │ │ ├── deque.hpp │ │ ├── deref.hpp │ │ ├── distance.hpp │ │ ├── distance_fwd.hpp │ │ ├── divides.hpp │ │ ├── empty.hpp │ │ ├── empty_base.hpp │ │ ├── empty_fwd.hpp │ │ ├── empty_sequence.hpp │ │ ├── end.hpp │ │ ├── equal.hpp │ │ ├── equal_to.hpp │ │ ├── erase.hpp │ │ ├── erase_fwd.hpp │ │ ├── erase_key.hpp │ │ ├── erase_key_fwd.hpp │ │ ├── eval_if.hpp │ │ ├── filter_view.hpp │ │ ├── find.hpp │ │ ├── find_if.hpp │ │ ├── fold.hpp │ │ ├── for_each.hpp │ │ ├── front.hpp │ │ ├── front_fwd.hpp │ │ ├── front_inserter.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── has_key.hpp │ │ ├── has_key_fwd.hpp │ │ ├── has_xxx.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── index_if.hpp │ │ ├── index_of.hpp │ │ ├── inherit.hpp │ │ ├── inherit_linearly.hpp │ │ ├── insert.hpp │ │ ├── insert_fwd.hpp │ │ ├── insert_range.hpp │ │ ├── insert_range_fwd.hpp │ │ ├── inserter.hpp │ │ ├── int.hpp │ │ ├── int_fwd.hpp │ │ ├── integral_c.hpp │ │ ├── integral_c_fwd.hpp │ │ ├── integral_c_tag.hpp │ │ ├── is_placeholder.hpp │ │ ├── is_sequence.hpp │ │ ├── iter_fold.hpp │ │ ├── iter_fold_if.hpp │ │ ├── iterator_category.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_tags.hpp │ │ ├── joint_view.hpp │ │ ├── key_type.hpp │ │ ├── key_type_fwd.hpp │ │ ├── lambda.hpp │ │ ├── lambda_fwd.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── limits │ │ │ ├── arity.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── set.hpp │ │ │ ├── string.hpp │ │ │ ├── unrolling.hpp │ │ │ └── vector.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── list0.hpp │ │ │ ├── list0_c.hpp │ │ │ ├── list10.hpp │ │ │ ├── list10_c.hpp │ │ │ ├── list20.hpp │ │ │ ├── list20_c.hpp │ │ │ ├── list30.hpp │ │ │ ├── list30_c.hpp │ │ │ ├── list40.hpp │ │ │ ├── list40_c.hpp │ │ │ ├── list50.hpp │ │ │ └── list50_c.hpp │ │ ├── list_c.hpp │ │ ├── logical.hpp │ │ ├── long.hpp │ │ ├── long_fwd.hpp │ │ ├── lower_bound.hpp │ │ ├── map.hpp │ │ ├── map │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── contains_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── map0.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── map0.hpp │ │ │ ├── map10.hpp │ │ │ ├── map20.hpp │ │ │ ├── map30.hpp │ │ │ ├── map40.hpp │ │ │ └── map50.hpp │ │ ├── math │ │ │ ├── fixed_c.hpp │ │ │ ├── is_even.hpp │ │ │ └── rational_c.hpp │ │ ├── max.hpp │ │ ├── max_element.hpp │ │ ├── min.hpp │ │ ├── min_element.hpp │ │ ├── min_max.hpp │ │ ├── minus.hpp │ │ ├── modulus.hpp │ │ ├── multiplies.hpp │ │ ├── multiset │ │ │ ├── aux_ │ │ │ │ ├── count_impl.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── multiset0.hpp │ │ │ │ └── tag.hpp │ │ │ └── multiset0.hpp │ │ ├── negate.hpp │ │ ├── next.hpp │ │ ├── next_prior.hpp │ │ ├── not.hpp │ │ ├── not_equal_to.hpp │ │ ├── numeric_cast.hpp │ │ ├── or.hpp │ │ ├── order.hpp │ │ ├── order_fwd.hpp │ │ ├── pair.hpp │ │ ├── pair_view.hpp │ │ ├── partition.hpp │ │ ├── placeholders.hpp │ │ ├── plus.hpp │ │ ├── pop_back.hpp │ │ ├── pop_back_fwd.hpp │ │ ├── pop_front.hpp │ │ ├── pop_front_fwd.hpp │ │ ├── print.hpp │ │ ├── prior.hpp │ │ ├── protect.hpp │ │ ├── push_back.hpp │ │ ├── push_back_fwd.hpp │ │ ├── push_front.hpp │ │ ├── push_front_fwd.hpp │ │ ├── quote.hpp │ │ ├── range_c.hpp │ │ ├── remove.hpp │ │ ├── remove_if.hpp │ │ ├── replace.hpp │ │ ├── replace_if.hpp │ │ ├── reverse.hpp │ │ ├── reverse_fold.hpp │ │ ├── reverse_iter_fold.hpp │ │ ├── same_as.hpp │ │ ├── sequence_tag.hpp │ │ ├── sequence_tag_fwd.hpp │ │ ├── set.hpp │ │ ├── set │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ └── set50_c.hpp │ │ │ │ ├── set0.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── set0.hpp │ │ │ ├── set0_c.hpp │ │ │ ├── set10.hpp │ │ │ ├── set10_c.hpp │ │ │ ├── set20.hpp │ │ │ ├── set20_c.hpp │ │ │ ├── set30.hpp │ │ │ ├── set30_c.hpp │ │ │ ├── set40.hpp │ │ │ ├── set40_c.hpp │ │ │ ├── set50.hpp │ │ │ └── set50_c.hpp │ │ ├── set_c.hpp │ │ ├── shift_left.hpp │ │ ├── shift_right.hpp │ │ ├── single_view.hpp │ │ ├── size.hpp │ │ ├── size_fwd.hpp │ │ ├── size_t.hpp │ │ ├── size_t_fwd.hpp │ │ ├── sizeof.hpp │ │ ├── sort.hpp │ │ ├── stable_partition.hpp │ │ ├── string.hpp │ │ ├── switch.hpp │ │ ├── tag.hpp │ │ ├── times.hpp │ │ ├── transform.hpp │ │ ├── transform_view.hpp │ │ ├── unique.hpp │ │ ├── unpack_args.hpp │ │ ├── upper_bound.hpp │ │ ├── value_type.hpp │ │ ├── value_type_fwd.hpp │ │ ├── vector.hpp │ │ ├── vector │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── vector0.hpp │ │ │ ├── vector0.hpp │ │ │ ├── vector0_c.hpp │ │ │ ├── vector10.hpp │ │ │ ├── vector10_c.hpp │ │ │ ├── vector20.hpp │ │ │ ├── vector20_c.hpp │ │ │ ├── vector30.hpp │ │ │ ├── vector30_c.hpp │ │ │ ├── vector40.hpp │ │ │ ├── vector40_c.hpp │ │ │ ├── vector50.hpp │ │ │ └── vector50_c.hpp │ │ ├── vector_c.hpp │ │ ├── void.hpp │ │ ├── void_fwd.hpp │ │ └── zip_view.hpp │ ├── next_prior.hpp │ ├── noncopyable.hpp │ ├── none.hpp │ ├── none_t.hpp │ ├── operators.hpp │ ├── optional.hpp │ ├── optional │ │ ├── optional.hpp │ │ ├── optional_fwd.hpp │ │ └── optional_io.hpp │ ├── preprocessor │ │ ├── arithmetic.hpp │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ └── div_base.hpp │ │ │ ├── div.hpp │ │ │ ├── inc.hpp │ │ │ ├── mod.hpp │ │ │ ├── mul.hpp │ │ │ └── sub.hpp │ │ ├── array.hpp │ │ ├── array │ │ │ ├── data.hpp │ │ │ ├── elem.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ └── size.hpp │ │ ├── assert_msg.hpp │ │ ├── cat.hpp │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── comparison.hpp │ │ ├── comparison │ │ │ ├── equal.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ └── not_equal.hpp │ │ ├── config │ │ │ ├── config.hpp │ │ │ └── limits.hpp │ │ ├── control.hpp │ │ ├── control │ │ │ ├── deduce_d.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ └── while.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ └── while.hpp │ │ ├── debug.hpp │ │ ├── debug │ │ │ ├── assert.hpp │ │ │ ├── error.hpp │ │ │ └── line.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ ├── is_binary.hpp │ │ │ ├── is_nullary.hpp │ │ │ ├── is_unary.hpp │ │ │ ├── null.hpp │ │ │ └── split.hpp │ │ ├── empty.hpp │ │ ├── enum.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── expand.hpp │ │ ├── expr_if.hpp │ │ ├── facilities.hpp │ │ ├── facilities │ │ │ ├── apply.hpp │ │ │ ├── empty.hpp │ │ │ ├── expand.hpp │ │ │ ├── identity.hpp │ │ │ ├── intercept.hpp │ │ │ ├── is_1.hpp │ │ │ ├── is_empty.hpp │ │ │ └── is_empty_or_1.hpp │ │ ├── for.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration.hpp │ │ ├── iteration │ │ │ ├── detail │ │ │ │ ├── bounds │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ └── upper5.hpp │ │ │ │ ├── finish.hpp │ │ │ │ ├── iter │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ └── reverse5.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── rlocal.hpp │ │ │ │ ├── self.hpp │ │ │ │ └── start.hpp │ │ │ ├── iterate.hpp │ │ │ ├── local.hpp │ │ │ └── self.hpp │ │ ├── library.hpp │ │ ├── limits.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── append.hpp │ │ │ ├── at.hpp │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ └── fold_right.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_tuple.hpp │ │ │ └── transform.hpp │ │ ├── logical.hpp │ │ ├── logical │ │ │ ├── and.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bitnor.hpp │ │ │ ├── bitor.hpp │ │ │ ├── bitxor.hpp │ │ │ ├── bool.hpp │ │ │ ├── compl.hpp │ │ │ ├── nor.hpp │ │ │ ├── not.hpp │ │ │ ├── or.hpp │ │ │ └── xor.hpp │ │ ├── max.hpp │ │ ├── min.hpp │ │ ├── punctuation.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── paren.hpp │ │ │ └── paren_if.hpp │ │ ├── repeat.hpp │ │ ├── repeat_2nd.hpp │ │ ├── repeat_3rd.hpp │ │ ├── repeat_from_to.hpp │ │ ├── repeat_from_to_2nd.hpp │ │ ├── repeat_from_to_3rd.hpp │ │ ├── repetition.hpp │ │ ├── repetition │ │ │ ├── deduce_r.hpp │ │ │ ├── deduce_z.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── for.hpp │ │ │ │ ├── edg │ │ │ │ │ └── for.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── msvc │ │ │ │ │ └── for.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_binary_params.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_params_with_defaults.hpp │ │ │ ├── enum_shifted.hpp │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── enum_trailing.hpp │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ ├── enum_trailing_params.hpp │ │ │ ├── for.hpp │ │ │ ├── repeat.hpp │ │ │ └── repeat_from_to.hpp │ │ ├── selection.hpp │ │ ├── selection │ │ │ ├── max.hpp │ │ │ └── min.hpp │ │ ├── seq.hpp │ │ ├── seq │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ └── split.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── seq.hpp │ │ │ ├── size.hpp │ │ │ ├── subseq.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_tuple.hpp │ │ │ └── transform.hpp │ │ ├── slot.hpp │ │ ├── slot │ │ │ ├── counter.hpp │ │ │ ├── detail │ │ │ │ ├── counter.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── shared.hpp │ │ │ │ ├── slot1.hpp │ │ │ │ ├── slot2.hpp │ │ │ │ ├── slot3.hpp │ │ │ │ ├── slot4.hpp │ │ │ │ └── slot5.hpp │ │ │ └── slot.hpp │ │ ├── stringize.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── rem.hpp │ │ │ ├── reverse.hpp │ │ │ ├── to_list.hpp │ │ │ └── to_seq.hpp │ │ ├── while.hpp │ │ └── wstringize.hpp │ ├── random.hpp │ ├── random │ │ ├── additive_combine.hpp │ │ ├── bernoulli_distribution.hpp │ │ ├── binomial_distribution.hpp │ │ ├── cauchy_distribution.hpp │ │ ├── detail │ │ │ ├── auto_link.hpp │ │ │ ├── config.hpp │ │ │ ├── const_mod.hpp │ │ │ ├── disable_warnings.hpp │ │ │ ├── enable_warnings.hpp │ │ │ ├── iterator_mixin.hpp │ │ │ ├── pass_through_engine.hpp │ │ │ ├── ptr_helper.hpp │ │ │ ├── seed.hpp │ │ │ ├── signed_unsigned_tools.hpp │ │ │ └── uniform_int_float.hpp │ │ ├── discard_block.hpp │ │ ├── exponential_distribution.hpp │ │ ├── gamma_distribution.hpp │ │ ├── geometric_distribution.hpp │ │ ├── inversive_congruential.hpp │ │ ├── lagged_fibonacci.hpp │ │ ├── linear_congruential.hpp │ │ ├── linear_feedback_shift.hpp │ │ ├── lognormal_distribution.hpp │ │ ├── mersenne_twister.hpp │ │ ├── normal_distribution.hpp │ │ ├── poisson_distribution.hpp │ │ ├── random_number_generator.hpp │ │ ├── ranlux.hpp │ │ ├── shuffle_output.hpp │ │ ├── subtract_with_carry.hpp │ │ ├── triangle_distribution.hpp │ │ ├── uniform_01.hpp │ │ ├── uniform_int.hpp │ │ ├── uniform_on_sphere.hpp │ │ ├── uniform_real.hpp │ │ ├── uniform_smallint.hpp │ │ ├── variate_generator.hpp │ │ └── xor_combine.hpp │ ├── range │ │ ├── adaptor │ │ │ ├── adjacent_filtered.hpp │ │ │ ├── argument_fwd.hpp │ │ │ ├── copied.hpp │ │ │ ├── define_adaptor.hpp │ │ │ ├── filtered.hpp │ │ │ ├── indexed.hpp │ │ │ ├── indirected.hpp │ │ │ ├── map.hpp │ │ │ ├── replaced.hpp │ │ │ ├── replaced_if.hpp │ │ │ ├── reversed.hpp │ │ │ ├── sliced.hpp │ │ │ ├── strided.hpp │ │ │ ├── tokenized.hpp │ │ │ ├── transformed.hpp │ │ │ └── uniqued.hpp │ │ ├── adaptors.hpp │ │ ├── algorithm.hpp │ │ ├── algorithm │ │ │ ├── adjacent_find.hpp │ │ │ ├── binary_search.hpp │ │ │ ├── copy.hpp │ │ │ ├── copy_backward.hpp │ │ │ ├── count.hpp │ │ │ ├── count_if.hpp │ │ │ ├── equal.hpp │ │ │ ├── equal_range.hpp │ │ │ ├── fill.hpp │ │ │ ├── fill_n.hpp │ │ │ ├── find.hpp │ │ │ ├── find_end.hpp │ │ │ ├── find_first_of.hpp │ │ │ ├── find_if.hpp │ │ │ ├── for_each.hpp │ │ │ ├── generate.hpp │ │ │ ├── heap_algorithm.hpp │ │ │ ├── inplace_merge.hpp │ │ │ ├── lexicographical_compare.hpp │ │ │ ├── lower_bound.hpp │ │ │ ├── max_element.hpp │ │ │ ├── merge.hpp │ │ │ ├── min_element.hpp │ │ │ ├── mismatch.hpp │ │ │ ├── nth_element.hpp │ │ │ ├── partial_sort.hpp │ │ │ ├── partial_sort_copy.hpp │ │ │ ├── partition.hpp │ │ │ ├── permutation.hpp │ │ │ ├── random_shuffle.hpp │ │ │ ├── remove.hpp │ │ │ ├── remove_copy.hpp │ │ │ ├── remove_copy_if.hpp │ │ │ ├── remove_if.hpp │ │ │ ├── replace.hpp │ │ │ ├── replace_copy.hpp │ │ │ ├── replace_copy_if.hpp │ │ │ ├── replace_if.hpp │ │ │ ├── reverse.hpp │ │ │ ├── reverse_copy.hpp │ │ │ ├── rotate.hpp │ │ │ ├── rotate_copy.hpp │ │ │ ├── search.hpp │ │ │ ├── search_n.hpp │ │ │ ├── set_algorithm.hpp │ │ │ ├── sort.hpp │ │ │ ├── stable_partition.hpp │ │ │ ├── stable_sort.hpp │ │ │ ├── swap_ranges.hpp │ │ │ ├── transform.hpp │ │ │ ├── unique.hpp │ │ │ ├── unique_copy.hpp │ │ │ └── upper_bound.hpp │ │ ├── algorithm_ext.hpp │ │ ├── algorithm_ext │ │ │ ├── copy_n.hpp │ │ │ ├── erase.hpp │ │ │ ├── for_each.hpp │ │ │ ├── insert.hpp │ │ │ ├── iota.hpp │ │ │ ├── is_sorted.hpp │ │ │ ├── overwrite.hpp │ │ │ ├── push_back.hpp │ │ │ └── push_front.hpp │ │ ├── as_array.hpp │ │ ├── as_literal.hpp │ │ ├── atl.hpp │ │ ├── begin.hpp │ │ ├── category.hpp │ │ ├── combine.hpp │ │ ├── concepts.hpp │ │ ├── config.hpp │ │ ├── const_iterator.hpp │ │ ├── const_reverse_iterator.hpp │ │ ├── counting_range.hpp │ │ ├── detail │ │ │ ├── as_literal.hpp │ │ │ ├── begin.hpp │ │ │ ├── collection_traits.hpp │ │ │ ├── collection_traits_detail.hpp │ │ │ ├── common.hpp │ │ │ ├── const_iterator.hpp │ │ │ ├── demote_iterator_traversal_tag.hpp │ │ │ ├── detail_str.hpp │ │ │ ├── difference_type.hpp │ │ │ ├── empty.hpp │ │ │ ├── end.hpp │ │ │ ├── extract_optional_type.hpp │ │ │ ├── implementation_help.hpp │ │ │ ├── iterator.hpp │ │ │ ├── join_iterator.hpp │ │ │ ├── microsoft.hpp │ │ │ ├── misc_concept.hpp │ │ │ ├── range_return.hpp │ │ │ ├── remove_extent.hpp │ │ │ ├── sfinae.hpp │ │ │ ├── size.hpp │ │ │ ├── size_type.hpp │ │ │ ├── sizer.hpp │ │ │ ├── str_types.hpp │ │ │ ├── value_type.hpp │ │ │ └── vc6 │ │ │ │ ├── end.hpp │ │ │ │ └── size.hpp │ │ ├── difference_type.hpp │ │ ├── distance.hpp │ │ ├── empty.hpp │ │ ├── end.hpp │ │ ├── functions.hpp │ │ ├── irange.hpp │ │ ├── istream_range.hpp │ │ ├── iterator.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_range_core.hpp │ │ ├── iterator_range_io.hpp │ │ ├── join.hpp │ │ ├── metafunctions.hpp │ │ ├── mfc.hpp │ │ ├── mutable_iterator.hpp │ │ ├── numeric.hpp │ │ ├── pointer.hpp │ │ ├── rbegin.hpp │ │ ├── reference.hpp │ │ ├── rend.hpp │ │ ├── result_iterator.hpp │ │ ├── reverse_iterator.hpp │ │ ├── reverse_result_iterator.hpp │ │ ├── size.hpp │ │ ├── size_type.hpp │ │ ├── sub_range.hpp │ │ └── value_type.hpp │ ├── ref.hpp │ ├── scoped_array.hpp │ ├── scoped_ptr.hpp │ ├── shared_array.hpp │ ├── shared_ptr.hpp │ ├── smart_ptr.hpp │ ├── smart_ptr │ │ ├── bad_weak_ptr.hpp │ │ ├── detail │ │ │ ├── atomic_count.hpp │ │ │ ├── atomic_count_gcc.hpp │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ ├── atomic_count_pthreads.hpp │ │ │ ├── atomic_count_solaris.hpp │ │ │ ├── atomic_count_sync.hpp │ │ │ ├── atomic_count_win32.hpp │ │ │ ├── lightweight_mutex.hpp │ │ │ ├── lwm_nop.hpp │ │ │ ├── lwm_pthreads.hpp │ │ │ ├── lwm_win32_cs.hpp │ │ │ ├── operator_bool.hpp │ │ │ ├── quick_allocator.hpp │ │ │ ├── shared_array_nmt.hpp │ │ │ ├── shared_count.hpp │ │ │ ├── shared_ptr_nmt.hpp │ │ │ ├── sp_convertible.hpp │ │ │ ├── sp_counted_base.hpp │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ ├── sp_counted_base_cw_x86.hpp │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ ├── sp_counted_base_nt.hpp │ │ │ ├── sp_counted_base_pt.hpp │ │ │ ├── sp_counted_base_solaris.hpp │ │ │ ├── sp_counted_base_spin.hpp │ │ │ ├── sp_counted_base_sync.hpp │ │ │ ├── sp_counted_base_w32.hpp │ │ │ ├── sp_counted_impl.hpp │ │ │ ├── sp_has_sync.hpp │ │ │ ├── spinlock.hpp │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ ├── spinlock_nt.hpp │ │ │ ├── spinlock_pool.hpp │ │ │ ├── spinlock_pt.hpp │ │ │ ├── spinlock_sync.hpp │ │ │ ├── spinlock_w32.hpp │ │ │ └── yield_k.hpp │ │ ├── enable_shared_from_this.hpp │ │ ├── enable_shared_from_this2.hpp │ │ ├── intrusive_ptr.hpp │ │ ├── make_shared.hpp │ │ ├── scoped_array.hpp │ │ ├── scoped_ptr.hpp │ │ ├── shared_array.hpp │ │ ├── shared_ptr.hpp │ │ └── weak_ptr.hpp │ ├── static_assert.hpp │ ├── thread.hpp │ ├── thread │ │ ├── barrier.hpp │ │ ├── condition.hpp │ │ ├── condition_variable.hpp │ │ ├── detail │ │ │ ├── config.hpp │ │ │ ├── force_cast.hpp │ │ │ ├── move.hpp │ │ │ ├── platform.hpp │ │ │ ├── singleton.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_group.hpp │ │ │ ├── thread_heap_alloc.hpp │ │ │ ├── thread_interruption.hpp │ │ │ └── tss_hooks.hpp │ │ ├── exceptions.hpp │ │ ├── future.hpp │ │ ├── locks.hpp │ │ ├── mutex.hpp │ │ ├── once.hpp │ │ ├── pthread │ │ │ ├── condition_variable.hpp │ │ │ ├── condition_variable_fwd.hpp │ │ │ ├── mutex.hpp │ │ │ ├── once.hpp │ │ │ ├── pthread_mutex_scoped_lock.hpp │ │ │ ├── recursive_mutex.hpp │ │ │ ├── shared_mutex.hpp │ │ │ ├── thread_data.hpp │ │ │ ├── thread_heap_alloc.hpp │ │ │ └── timespec.hpp │ │ ├── recursive_mutex.hpp │ │ ├── shared_mutex.hpp │ │ ├── thread.hpp │ │ ├── thread_time.hpp │ │ ├── tss.hpp │ │ ├── win32 │ │ │ ├── basic_recursive_mutex.hpp │ │ │ ├── basic_timed_mutex.hpp │ │ │ ├── condition_variable.hpp │ │ │ ├── interlocked_read.hpp │ │ │ ├── mutex.hpp │ │ │ ├── once.hpp │ │ │ ├── recursive_mutex.hpp │ │ │ ├── shared_mutex.hpp │ │ │ ├── thread_data.hpp │ │ │ ├── thread_heap_alloc.hpp │ │ │ └── thread_primitives.hpp │ │ └── xtime.hpp │ ├── throw_exception.hpp │ ├── token_functions.hpp │ ├── token_iterator.hpp │ ├── tokenizer.hpp │ ├── type.hpp │ ├── type_traits │ │ ├── add_const.hpp │ │ ├── add_cv.hpp │ │ ├── add_pointer.hpp │ │ ├── add_reference.hpp │ │ ├── add_volatile.hpp │ │ ├── aligned_storage.hpp │ │ ├── alignment_of.hpp │ │ ├── alignment_traits.hpp │ │ ├── arithmetic_traits.hpp │ │ ├── array_traits.hpp │ │ ├── broken_compiler_spec.hpp │ │ ├── composite_traits.hpp │ │ ├── config.hpp │ │ ├── conversion_traits.hpp │ │ ├── cv_traits.hpp │ │ ├── decay.hpp │ │ ├── detail │ │ │ ├── bool_trait_def.hpp │ │ │ ├── bool_trait_undef.hpp │ │ │ ├── cv_traits_impl.hpp │ │ │ ├── false_result.hpp │ │ │ ├── ice_and.hpp │ │ │ ├── ice_eq.hpp │ │ │ ├── ice_not.hpp │ │ │ ├── ice_or.hpp │ │ │ ├── is_function_ptr_helper.hpp │ │ │ ├── is_function_ptr_tester.hpp │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ ├── size_t_trait_def.hpp │ │ │ ├── size_t_trait_undef.hpp │ │ │ ├── template_arity_spec.hpp │ │ │ ├── type_trait_def.hpp │ │ │ ├── type_trait_undef.hpp │ │ │ ├── wrap.hpp │ │ │ └── yes_no_type.hpp │ │ ├── extent.hpp │ │ ├── floating_point_promotion.hpp │ │ ├── function_traits.hpp │ │ ├── has_new_operator.hpp │ │ ├── has_nothrow_assign.hpp │ │ ├── has_nothrow_constructor.hpp │ │ ├── has_nothrow_copy.hpp │ │ ├── has_nothrow_destructor.hpp │ │ ├── has_trivial_assign.hpp │ │ ├── has_trivial_constructor.hpp │ │ ├── has_trivial_copy.hpp │ │ ├── has_trivial_destructor.hpp │ │ ├── has_virtual_destructor.hpp │ │ ├── ice.hpp │ │ ├── integral_constant.hpp │ │ ├── integral_promotion.hpp │ │ ├── intrinsics.hpp │ │ ├── is_abstract.hpp │ │ ├── is_arithmetic.hpp │ │ ├── is_array.hpp │ │ ├── is_base_and_derived.hpp │ │ ├── is_base_of.hpp │ │ ├── is_base_of_tr1.hpp │ │ ├── is_class.hpp │ │ ├── is_complex.hpp │ │ ├── is_compound.hpp │ │ ├── is_const.hpp │ │ ├── is_convertible.hpp │ │ ├── is_empty.hpp │ │ ├── is_enum.hpp │ │ ├── is_float.hpp │ │ ├── is_floating_point.hpp │ │ ├── is_function.hpp │ │ ├── is_fundamental.hpp │ │ ├── is_integral.hpp │ │ ├── is_lvalue_reference.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_object_pointer.hpp │ │ ├── is_member_pointer.hpp │ │ ├── is_object.hpp │ │ ├── is_pod.hpp │ │ ├── is_pointer.hpp │ │ ├── is_polymorphic.hpp │ │ ├── is_reference.hpp │ │ ├── is_rvalue_reference.hpp │ │ ├── is_same.hpp │ │ ├── is_scalar.hpp │ │ ├── is_signed.hpp │ │ ├── is_stateless.hpp │ │ ├── is_union.hpp │ │ ├── is_unsigned.hpp │ │ ├── is_virtual_base_of.hpp │ │ ├── is_void.hpp │ │ ├── is_volatile.hpp │ │ ├── make_signed.hpp │ │ ├── make_unsigned.hpp │ │ ├── msvc │ │ │ ├── remove_all_extents.hpp │ │ │ ├── remove_bounds.hpp │ │ │ ├── remove_const.hpp │ │ │ ├── remove_cv.hpp │ │ │ ├── remove_extent.hpp │ │ │ ├── remove_pointer.hpp │ │ │ ├── remove_reference.hpp │ │ │ ├── remove_volatile.hpp │ │ │ └── typeof.hpp │ │ ├── object_traits.hpp │ │ ├── promote.hpp │ │ ├── rank.hpp │ │ ├── reference_traits.hpp │ │ ├── remove_all_extents.hpp │ │ ├── remove_bounds.hpp │ │ ├── remove_const.hpp │ │ ├── remove_cv.hpp │ │ ├── remove_extent.hpp │ │ ├── remove_pointer.hpp │ │ ├── remove_reference.hpp │ │ ├── remove_volatile.hpp │ │ ├── same_traits.hpp │ │ ├── transform_traits.hpp │ │ ├── transform_traits_spec.hpp │ │ └── type_with_alignment.hpp │ ├── units │ │ ├── absolute.hpp │ │ ├── base_dimension.hpp │ │ ├── base_unit.hpp │ │ ├── base_units │ │ │ ├── angle │ │ │ │ ├── arcminute.hpp │ │ │ │ ├── arcsecond.hpp │ │ │ │ ├── degree.hpp │ │ │ │ ├── gradian.hpp │ │ │ │ ├── radian.hpp │ │ │ │ ├── revolution.hpp │ │ │ │ └── steradian.hpp │ │ │ ├── astronomical │ │ │ │ ├── astronomical_unit.hpp │ │ │ │ ├── light_day.hpp │ │ │ │ ├── light_hour.hpp │ │ │ │ ├── light_minute.hpp │ │ │ │ ├── light_second.hpp │ │ │ │ ├── light_year.hpp │ │ │ │ └── parsec.hpp │ │ │ ├── cgs │ │ │ │ ├── biot.hpp │ │ │ │ ├── centimeter.hpp │ │ │ │ └── gram.hpp │ │ │ ├── imperial │ │ │ │ ├── conversions.hpp │ │ │ │ ├── drachm.hpp │ │ │ │ ├── fluid_ounce.hpp │ │ │ │ ├── foot.hpp │ │ │ │ ├── furlong.hpp │ │ │ │ ├── gallon.hpp │ │ │ │ ├── gill.hpp │ │ │ │ ├── grain.hpp │ │ │ │ ├── hundredweight.hpp │ │ │ │ ├── inch.hpp │ │ │ │ ├── league.hpp │ │ │ │ ├── mile.hpp │ │ │ │ ├── ounce.hpp │ │ │ │ ├── pint.hpp │ │ │ │ ├── pound.hpp │ │ │ │ ├── quart.hpp │ │ │ │ ├── quarter.hpp │ │ │ │ ├── stone.hpp │ │ │ │ ├── thou.hpp │ │ │ │ ├── ton.hpp │ │ │ │ └── yard.hpp │ │ │ ├── metric │ │ │ │ ├── angstrom.hpp │ │ │ │ ├── are.hpp │ │ │ │ ├── atmosphere.hpp │ │ │ │ ├── bar.hpp │ │ │ │ ├── barn.hpp │ │ │ │ ├── day.hpp │ │ │ │ ├── fermi.hpp │ │ │ │ ├── hectare.hpp │ │ │ │ ├── hour.hpp │ │ │ │ ├── knot.hpp │ │ │ │ ├── liter.hpp │ │ │ │ ├── micron.hpp │ │ │ │ ├── minute.hpp │ │ │ │ ├── mmHg.hpp │ │ │ │ ├── nautical_mile.hpp │ │ │ │ ├── ton.hpp │ │ │ │ ├── torr.hpp │ │ │ │ └── year.hpp │ │ │ ├── si │ │ │ │ ├── ampere.hpp │ │ │ │ ├── candela.hpp │ │ │ │ ├── kelvin.hpp │ │ │ │ ├── kilogram.hpp │ │ │ │ ├── meter.hpp │ │ │ │ ├── mole.hpp │ │ │ │ └── second.hpp │ │ │ ├── temperature │ │ │ │ ├── celsius.hpp │ │ │ │ ├── conversions.hpp │ │ │ │ └── fahrenheit.hpp │ │ │ └── us │ │ │ │ ├── cup.hpp │ │ │ │ ├── dram.hpp │ │ │ │ ├── fluid_dram.hpp │ │ │ │ ├── fluid_ounce.hpp │ │ │ │ ├── foot.hpp │ │ │ │ ├── gallon.hpp │ │ │ │ ├── gill.hpp │ │ │ │ ├── grain.hpp │ │ │ │ ├── hundredweight.hpp │ │ │ │ ├── inch.hpp │ │ │ │ ├── mil.hpp │ │ │ │ ├── mile.hpp │ │ │ │ ├── minim.hpp │ │ │ │ ├── ounce.hpp │ │ │ │ ├── pint.hpp │ │ │ │ ├── pound.hpp │ │ │ │ ├── pound_force.hpp │ │ │ │ ├── quart.hpp │ │ │ │ ├── tablespoon.hpp │ │ │ │ ├── teaspoon.hpp │ │ │ │ ├── ton.hpp │ │ │ │ └── yard.hpp │ │ ├── cmath.hpp │ │ ├── config.hpp │ │ ├── conversion.hpp │ │ ├── derived_dimension.hpp │ │ ├── detail │ │ │ ├── absolute_impl.hpp │ │ │ ├── cmath_impl.hpp │ │ │ ├── conversion_impl.hpp │ │ │ ├── dim_impl.hpp │ │ │ ├── dimension_impl.hpp │ │ │ ├── dimension_list.hpp │ │ │ ├── dimensionless_unit.hpp │ │ │ ├── heterogeneous_conversion.hpp │ │ │ ├── linear_algebra.hpp │ │ │ ├── one.hpp │ │ │ ├── ordinal.hpp │ │ │ ├── prevent_redefinition.hpp │ │ │ ├── push_front_if.hpp │ │ │ ├── push_front_or_add.hpp │ │ │ ├── sort.hpp │ │ │ ├── static_rational_power.hpp │ │ │ ├── unscale.hpp │ │ │ └── utility.hpp │ │ ├── dim.hpp │ │ ├── dimension.hpp │ │ ├── dimensionless_quantity.hpp │ │ ├── dimensionless_type.hpp │ │ ├── dimensionless_unit.hpp │ │ ├── get_dimension.hpp │ │ ├── get_system.hpp │ │ ├── heterogeneous_system.hpp │ │ ├── homogeneous_system.hpp │ │ ├── io.hpp │ │ ├── is_dim.hpp │ │ ├── is_dimension_list.hpp │ │ ├── is_dimensionless.hpp │ │ ├── is_dimensionless_quantity.hpp │ │ ├── is_dimensionless_unit.hpp │ │ ├── is_quantity.hpp │ │ ├── is_quantity_of_dimension.hpp │ │ ├── is_quantity_of_system.hpp │ │ ├── is_unit.hpp │ │ ├── is_unit_of_dimension.hpp │ │ ├── is_unit_of_system.hpp │ │ ├── lambda.hpp │ │ ├── limits.hpp │ │ ├── make_scaled_unit.hpp │ │ ├── make_system.hpp │ │ ├── operators.hpp │ │ ├── physical_dimensions.hpp │ │ ├── physical_dimensions │ │ │ ├── absorbed_dose.hpp │ │ │ ├── acceleration.hpp │ │ │ ├── action.hpp │ │ │ ├── activity.hpp │ │ │ ├── amount.hpp │ │ │ ├── angular_acceleration.hpp │ │ │ ├── angular_momentum.hpp │ │ │ ├── angular_velocity.hpp │ │ │ ├── area.hpp │ │ │ ├── capacitance.hpp │ │ │ ├── conductance.hpp │ │ │ ├── conductivity.hpp │ │ │ ├── current.hpp │ │ │ ├── dose_equivalent.hpp │ │ │ ├── dynamic_viscosity.hpp │ │ │ ├── electric_charge.hpp │ │ │ ├── electric_potential.hpp │ │ │ ├── energy.hpp │ │ │ ├── energy_density.hpp │ │ │ ├── force.hpp │ │ │ ├── frequency.hpp │ │ │ ├── heat_capacity.hpp │ │ │ ├── illuminance.hpp │ │ │ ├── impedance.hpp │ │ │ ├── inductance.hpp │ │ │ ├── kinematic_viscosity.hpp │ │ │ ├── length.hpp │ │ │ ├── luminance.hpp │ │ │ ├── luminous_flux.hpp │ │ │ ├── luminous_intensity.hpp │ │ │ ├── magnetic_field_intensity.hpp │ │ │ ├── magnetic_flux.hpp │ │ │ ├── magnetic_flux_density.hpp │ │ │ ├── mass.hpp │ │ │ ├── mass_density.hpp │ │ │ ├── molar_energy.hpp │ │ │ ├── molar_heat_capacity.hpp │ │ │ ├── moment_of_inertia.hpp │ │ │ ├── momentum.hpp │ │ │ ├── permeability.hpp │ │ │ ├── permittivity.hpp │ │ │ ├── plane_angle.hpp │ │ │ ├── power.hpp │ │ │ ├── pressure.hpp │ │ │ ├── reluctance.hpp │ │ │ ├── resistance.hpp │ │ │ ├── resistivity.hpp │ │ │ ├── solid_angle.hpp │ │ │ ├── specific_energy.hpp │ │ │ ├── specific_heat_capacity.hpp │ │ │ ├── specific_volume.hpp │ │ │ ├── stress.hpp │ │ │ ├── surface_density.hpp │ │ │ ├── surface_tension.hpp │ │ │ ├── temperature.hpp │ │ │ ├── thermal_conductivity.hpp │ │ │ ├── time.hpp │ │ │ ├── torque.hpp │ │ │ ├── velocity.hpp │ │ │ ├── volume.hpp │ │ │ └── wavenumber.hpp │ │ ├── pow.hpp │ │ ├── quantity.hpp │ │ ├── reduce_unit.hpp │ │ ├── scale.hpp │ │ ├── scaled_base_unit.hpp │ │ ├── static_constant.hpp │ │ ├── static_rational.hpp │ │ ├── systems │ │ │ ├── abstract.hpp │ │ │ ├── angle │ │ │ │ ├── degrees.hpp │ │ │ │ ├── gradians.hpp │ │ │ │ └── revolutions.hpp │ │ │ ├── cgs.hpp │ │ │ ├── cgs │ │ │ │ ├── acceleration.hpp │ │ │ │ ├── area.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── current.hpp │ │ │ │ ├── dimensionless.hpp │ │ │ │ ├── dynamic_viscosity.hpp │ │ │ │ ├── energy.hpp │ │ │ │ ├── force.hpp │ │ │ │ ├── frequency.hpp │ │ │ │ ├── io.hpp │ │ │ │ ├── kinematic_viscosity.hpp │ │ │ │ ├── length.hpp │ │ │ │ ├── mass.hpp │ │ │ │ ├── mass_density.hpp │ │ │ │ ├── momentum.hpp │ │ │ │ ├── power.hpp │ │ │ │ ├── pressure.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── velocity.hpp │ │ │ │ ├── volume.hpp │ │ │ │ └── wavenumber.hpp │ │ │ ├── detail │ │ │ │ └── constants.hpp │ │ │ ├── si.hpp │ │ │ ├── si │ │ │ │ ├── absorbed_dose.hpp │ │ │ │ ├── acceleration.hpp │ │ │ │ ├── action.hpp │ │ │ │ ├── activity.hpp │ │ │ │ ├── amount.hpp │ │ │ │ ├── angular_acceleration.hpp │ │ │ │ ├── angular_momentum.hpp │ │ │ │ ├── angular_velocity.hpp │ │ │ │ ├── area.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── capacitance.hpp │ │ │ │ ├── catalytic_activity.hpp │ │ │ │ ├── codata │ │ │ │ │ ├── alpha_constants.hpp │ │ │ │ │ ├── atomic-nuclear_constants.hpp │ │ │ │ │ ├── deuteron_constants.hpp │ │ │ │ │ ├── electromagnetic_constants.hpp │ │ │ │ │ ├── electron_constants.hpp │ │ │ │ │ ├── helion_constants.hpp │ │ │ │ │ ├── muon_constants.hpp │ │ │ │ │ ├── neutron_constants.hpp │ │ │ │ │ ├── physico-chemical_constants.hpp │ │ │ │ │ ├── proton_constants.hpp │ │ │ │ │ ├── tau_constants.hpp │ │ │ │ │ ├── triton_constants.hpp │ │ │ │ │ ├── typedefs.hpp │ │ │ │ │ └── universal_constants.hpp │ │ │ │ ├── codata_constants.hpp │ │ │ │ ├── conductance.hpp │ │ │ │ ├── conductivity.hpp │ │ │ │ ├── current.hpp │ │ │ │ ├── dimensionless.hpp │ │ │ │ ├── dose_equivalent.hpp │ │ │ │ ├── dynamic_viscosity.hpp │ │ │ │ ├── electric_charge.hpp │ │ │ │ ├── electric_potential.hpp │ │ │ │ ├── energy.hpp │ │ │ │ ├── force.hpp │ │ │ │ ├── frequency.hpp │ │ │ │ ├── illuminance.hpp │ │ │ │ ├── impedance.hpp │ │ │ │ ├── inductance.hpp │ │ │ │ ├── io.hpp │ │ │ │ ├── kinematic_viscosity.hpp │ │ │ │ ├── length.hpp │ │ │ │ ├── luminous_flux.hpp │ │ │ │ ├── luminous_intensity.hpp │ │ │ │ ├── magnetic_field_intensity.hpp │ │ │ │ ├── magnetic_flux.hpp │ │ │ │ ├── magnetic_flux_density.hpp │ │ │ │ ├── mass.hpp │ │ │ │ ├── mass_density.hpp │ │ │ │ ├── moment_of_inertia.hpp │ │ │ │ ├── momentum.hpp │ │ │ │ ├── permeability.hpp │ │ │ │ ├── permittivity.hpp │ │ │ │ ├── plane_angle.hpp │ │ │ │ ├── power.hpp │ │ │ │ ├── prefixes.hpp │ │ │ │ ├── pressure.hpp │ │ │ │ ├── reluctance.hpp │ │ │ │ ├── resistance.hpp │ │ │ │ ├── resistivity.hpp │ │ │ │ ├── solid_angle.hpp │ │ │ │ ├── surface_density.hpp │ │ │ │ ├── surface_tension.hpp │ │ │ │ ├── temperature.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── torque.hpp │ │ │ │ ├── velocity.hpp │ │ │ │ ├── volume.hpp │ │ │ │ └── wavenumber.hpp │ │ │ └── temperature │ │ │ │ ├── celsius.hpp │ │ │ │ └── fahrenheit.hpp │ │ ├── unit.hpp │ │ └── units_fwd.hpp │ ├── utility.hpp │ ├── utility │ │ ├── addressof.hpp │ │ ├── base_from_member.hpp │ │ ├── binary.hpp │ │ ├── compare_pointees.hpp │ │ ├── detail │ │ │ ├── in_place_factory_prefix.hpp │ │ │ ├── in_place_factory_suffix.hpp │ │ │ └── result_of_iterate.hpp │ │ ├── enable_if.hpp │ │ ├── in_place_factory.hpp │ │ ├── result_of.hpp │ │ ├── swap.hpp │ │ ├── typed_in_place_factory.hpp │ │ └── value_init.hpp │ ├── uuid │ │ ├── name_generator.hpp │ │ ├── nil_generator.hpp │ │ ├── random_generator.hpp │ │ ├── seed_rng.hpp │ │ ├── sha1.hpp │ │ ├── string_generator.hpp │ │ ├── uuid.hpp │ │ ├── uuid_generators.hpp │ │ ├── uuid_io.hpp │ │ └── uuid_serialize.hpp │ ├── version.hpp │ ├── visit_each.hpp │ └── weak_ptr.hpp └── lib │ ├── libboost_date_time-vc100-mt-1_44.lib │ ├── libboost_date_time-vc100-mt-gd-1_44.lib │ ├── libboost_date_time-vc90-mt-1_44.lib │ ├── libboost_date_time-vc90-mt-gd-1_44.lib │ ├── libboost_system-vc100-mt-1_44.lib │ ├── libboost_system-vc100-mt-gd-1_44.lib │ ├── libboost_thread-vc100-mt-1_44.lib │ ├── libboost_thread-vc100-mt-gd-1_44.lib │ ├── libboost_thread-vc90-mt-1_44.lib │ ├── libboost_thread-vc90-mt-gd-1_44.lib │ ├── libboost_thread.a │ └── pthread │ ├── once.cpp │ ├── thread.cpp │ └── timeconv.inl ├── CHANGELOG.md ├── JGE ├── Dependencies │ ├── SDL │ │ ├── Android.mk │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── INSTALL │ │ ├── VisualC │ │ │ └── SDL │ │ │ │ ├── SDL_VS2010.vcxproj │ │ │ │ ├── SDL_VS2010.vcxproj.filters │ │ │ │ ├── Version.rc │ │ │ │ └── resource.h │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_compat.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config.h.in │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_nintendods.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wiz.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_input.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_revision.h.orig │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ ├── close_code.h │ │ │ └── doxyfile │ │ └── src │ │ │ ├── SDL.c │ │ │ ├── SDL_assert.c │ │ │ ├── SDL_assert_c.h │ │ │ ├── SDL_compat.c │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_fatal.c │ │ │ ├── SDL_fatal.h │ │ │ ├── SDL_hints.c │ │ │ ├── SDL_log.c │ │ │ ├── atomic │ │ │ ├── SDL_atomic.c │ │ │ └── SDL_spinlock.c │ │ │ ├── audio │ │ │ ├── SDL_audio.c │ │ │ ├── SDL_audio_c.h │ │ │ ├── SDL_audiocvt.c │ │ │ ├── SDL_audiodev.c │ │ │ ├── SDL_audiodev_c.h │ │ │ ├── SDL_audiomem.h │ │ │ ├── SDL_audiotypecvt.c │ │ │ ├── SDL_mixer.c │ │ │ ├── SDL_sysaudio.h │ │ │ ├── SDL_wave.c │ │ │ ├── SDL_wave.h │ │ │ ├── alsa │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ └── SDL_alsa_audio.h │ │ │ ├── android │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ └── SDL_androidaudio.h │ │ │ ├── arts │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ └── SDL_artsaudio.h │ │ │ ├── baudio │ │ │ │ ├── SDL_beaudio.cc │ │ │ │ └── SDL_beaudio.h │ │ │ ├── bsd │ │ │ │ ├── SDL_bsdaudio.c │ │ │ │ └── SDL_bsdaudio.h │ │ │ ├── disk │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ └── SDL_diskaudio.h │ │ │ ├── dma │ │ │ │ ├── SDL_dmaaudio.c │ │ │ │ └── SDL_dmaaudio.h │ │ │ ├── dsp │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ └── SDL_dspaudio.h │ │ │ ├── dummy │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ └── SDL_dummyaudio.h │ │ │ ├── esd │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ └── SDL_esdaudio.h │ │ │ ├── fusionsound │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ └── SDL_fsaudio.h │ │ │ ├── iphoneos │ │ │ │ ├── SDL_coreaudio_iphone.c │ │ │ │ └── SDL_coreaudio_iphone.h │ │ │ ├── macosx │ │ │ │ ├── SDL_coreaudio.c │ │ │ │ └── SDL_coreaudio.h │ │ │ ├── nas │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ └── SDL_nasaudio.h │ │ │ ├── nds │ │ │ │ ├── SDL_ndsaudio.c │ │ │ │ └── SDL_ndsaudio.h │ │ │ ├── paudio │ │ │ │ ├── SDL_paudio.c │ │ │ │ └── SDL_paudio.h │ │ │ ├── pulseaudio │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ └── SDL_pulseaudio.h │ │ │ ├── qsa │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ └── SDL_qsa_audio.h │ │ │ ├── sdlgenaudiocvt.pl │ │ │ ├── sun │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ └── SDL_sunaudio.h │ │ │ ├── ums │ │ │ │ ├── SDL_umsaudio.c │ │ │ │ └── SDL_umsaudio.h │ │ │ ├── windib │ │ │ │ ├── SDL_dibaudio.c │ │ │ │ └── SDL_dibaudio.h │ │ │ └── windx5 │ │ │ │ ├── SDL_dx5audio.c │ │ │ │ ├── SDL_dx5audio.h │ │ │ │ └── directx.h │ │ │ ├── core │ │ │ ├── android │ │ │ │ ├── SDL_android.cpp │ │ │ │ └── SDL_android.h │ │ │ └── windows │ │ │ │ ├── SDL_windows.c │ │ │ │ └── SDL_windows.h │ │ │ ├── cpuinfo │ │ │ └── SDL_cpuinfo.c │ │ │ ├── events │ │ │ ├── SDL_clipboardevents.c │ │ │ ├── SDL_clipboardevents_c.h │ │ │ ├── SDL_events.c │ │ │ ├── SDL_events_c.h │ │ │ ├── SDL_gesture.c │ │ │ ├── SDL_gesture_c.h │ │ │ ├── SDL_keyboard.c │ │ │ ├── SDL_keyboard_c.h │ │ │ ├── SDL_mouse.c │ │ │ ├── SDL_mouse_c.h │ │ │ ├── SDL_quit.c │ │ │ ├── SDL_sysevents.h │ │ │ ├── SDL_touch.c │ │ │ ├── SDL_touch_c.h │ │ │ ├── SDL_windowevents.c │ │ │ ├── SDL_windowevents_c.h │ │ │ ├── blank_cursor.h │ │ │ ├── default_cursor.h │ │ │ ├── nds │ │ │ │ └── SDL_ndsgesture.c │ │ │ ├── scancodes_darwin.h │ │ │ ├── scancodes_linux.h │ │ │ ├── scancodes_windows.h │ │ │ └── scancodes_xfree86.h │ │ │ ├── file │ │ │ ├── SDL_rwops.c │ │ │ └── cocoa │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ │ ├── haptic │ │ │ ├── SDL_haptic.c │ │ │ ├── SDL_haptic_c.h │ │ │ ├── SDL_syshaptic.h │ │ │ ├── darwin │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── dummy │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── linux │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── nds │ │ │ │ └── SDL_syshaptic.c │ │ │ └── windows │ │ │ │ └── SDL_syshaptic.c │ │ │ ├── joystick │ │ │ ├── SDL_joystick.c │ │ │ ├── SDL_joystick_c.h │ │ │ ├── SDL_sysjoystick.h │ │ │ ├── android │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── beos │ │ │ │ └── SDL_bejoystick.cc │ │ │ ├── bsd │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── darwin │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── iphoneos │ │ │ │ ├── SDLUIAccelerationDelegate.h │ │ │ │ ├── SDLUIAccelerationDelegate.m │ │ │ │ └── SDL_sysjoystick.m │ │ │ ├── linux │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── nds │ │ │ │ └── SDL_sysjoystick.c │ │ │ └── windows │ │ │ │ ├── SDL_dxjoystick.c │ │ │ │ ├── SDL_dxjoystick_c.h │ │ │ │ └── SDL_mmjoystick.c │ │ │ ├── libm │ │ │ ├── e_atan2.c │ │ │ ├── e_log.c │ │ │ ├── e_pow.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_sqrt.c │ │ │ ├── k_cos.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── math.h │ │ │ ├── math_private.h │ │ │ ├── s_atan.c │ │ │ ├── s_copysign.c │ │ │ ├── s_cos.c │ │ │ ├── s_fabs.c │ │ │ ├── s_floor.c │ │ │ ├── s_scalbn.c │ │ │ └── s_sin.c │ │ │ ├── loadso │ │ │ ├── beos │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dlopen │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── dummy │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── macosx │ │ │ │ └── SDL_dlcompat.c │ │ │ └── windows │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── main │ │ │ ├── android │ │ │ │ └── SDL_android_main.cpp │ │ │ ├── beos │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ └── SDL_BeApp.h │ │ │ ├── dummy │ │ │ │ └── SDL_dummy_main.c │ │ │ └── windows │ │ │ │ ├── SDL_windows_main.c │ │ │ │ └── version.rc │ │ │ ├── power │ │ │ ├── SDL_power.c │ │ │ ├── beos │ │ │ │ └── SDL_syspower.c │ │ │ ├── linux │ │ │ │ └── SDL_syspower.c │ │ │ ├── macosx │ │ │ │ └── SDL_syspower.c │ │ │ ├── nds │ │ │ │ └── SDL_syspower.c │ │ │ ├── uikit │ │ │ │ └── SDL_syspower.m │ │ │ └── windows │ │ │ │ └── SDL_syspower.c │ │ │ ├── render │ │ │ ├── SDL_render.c │ │ │ ├── SDL_sysrender.h │ │ │ ├── SDL_yuv_mmx.c │ │ │ ├── SDL_yuv_sw.c │ │ │ ├── SDL_yuv_sw_c.h │ │ │ ├── direct3d │ │ │ │ └── SDL_render_d3d.c │ │ │ ├── mmx.h │ │ │ ├── nds │ │ │ │ └── SDL_ndsrender.c │ │ │ ├── opengl │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ ├── SDL_render_gl.c │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ └── SDL_shaders_gl.h │ │ │ ├── opengles │ │ │ │ └── SDL_render_gles.c │ │ │ ├── opengles2 │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ └── SDL_shaders_gles2.h │ │ │ └── software │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ ├── SDL_blendline.c │ │ │ │ ├── SDL_blendline.h │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ ├── SDL_draw.h │ │ │ │ ├── SDL_drawline.c │ │ │ │ ├── SDL_drawline.h │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ ├── SDL_render_sw.c │ │ │ │ └── SDL_render_sw_c.h │ │ │ ├── stdlib │ │ │ ├── SDL_getenv.c │ │ │ ├── SDL_iconv.c │ │ │ ├── SDL_malloc.c │ │ │ ├── SDL_qsort.c │ │ │ ├── SDL_stdlib.c │ │ │ └── SDL_string.c │ │ │ ├── thread │ │ │ ├── SDL_systhread.h │ │ │ ├── SDL_thread.c │ │ │ ├── SDL_thread_c.h │ │ │ ├── beos │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── generic │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── irix │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── nds │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_syscond_c.h │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_syssem_c.h │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ ├── pthread │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ └── SDL_systhread_c.h │ │ │ └── windows │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ ├── win_ce_semaphore.c │ │ │ │ └── win_ce_semaphore.h │ │ │ ├── timer │ │ │ ├── SDL_timer.c │ │ │ ├── SDL_timer_c.h │ │ │ ├── beos │ │ │ │ └── SDL_systimer.c │ │ │ ├── dummy │ │ │ │ └── SDL_systimer.c │ │ │ ├── nds │ │ │ │ └── SDL_systimer.c │ │ │ ├── unix │ │ │ │ └── SDL_systimer.c │ │ │ ├── wince │ │ │ │ └── SDL_systimer.c │ │ │ └── windows │ │ │ │ └── SDL_systimer.c │ │ │ └── video │ │ │ ├── SDL_RLEaccel.c │ │ │ ├── SDL_RLEaccel_c.h │ │ │ ├── SDL_blit.c │ │ │ ├── SDL_blit.h │ │ │ ├── SDL_blit_0.c │ │ │ ├── SDL_blit_1.c │ │ │ ├── SDL_blit_A.c │ │ │ ├── SDL_blit_N.c │ │ │ ├── SDL_blit_auto.c │ │ │ ├── SDL_blit_auto.h │ │ │ ├── SDL_blit_copy.c │ │ │ ├── SDL_blit_copy.h │ │ │ ├── SDL_blit_slow.c │ │ │ ├── SDL_blit_slow.h │ │ │ ├── SDL_bmp.c │ │ │ ├── SDL_clipboard.c │ │ │ ├── SDL_fillrect.c │ │ │ ├── SDL_pixels.c │ │ │ ├── SDL_pixels_c.h │ │ │ ├── SDL_rect.c │ │ │ ├── SDL_rect_c.h │ │ │ ├── SDL_shape.c │ │ │ ├── SDL_shape_internals.h │ │ │ ├── SDL_stretch.c │ │ │ ├── SDL_surface.c │ │ │ ├── SDL_sysvideo.h │ │ │ ├── SDL_video.c │ │ │ ├── android │ │ │ ├── SDL_androidevents.c │ │ │ ├── SDL_androidevents.h │ │ │ ├── SDL_androidgl.c │ │ │ ├── SDL_androidkeyboard.c │ │ │ ├── SDL_androidkeyboard.h │ │ │ ├── SDL_androidtouch.c │ │ │ ├── SDL_androidtouch.h │ │ │ ├── SDL_androidvideo.c │ │ │ ├── SDL_androidvideo.h │ │ │ ├── SDL_androidwindow.c │ │ │ └── SDL_androidwindow.h │ │ │ ├── bwindow │ │ │ ├── SDL_BView.h │ │ │ ├── SDL_BWin.h │ │ │ ├── SDL_lowvideo.h │ │ │ ├── SDL_sysevents.cc │ │ │ ├── SDL_sysevents_c.h │ │ │ ├── SDL_sysmouse.cc │ │ │ ├── SDL_sysmouse_c.h │ │ │ ├── SDL_sysvideo.cc │ │ │ ├── SDL_syswm.cc │ │ │ ├── SDL_syswm_c.h │ │ │ ├── SDL_sysyuv.cc │ │ │ └── SDL_sysyuv.h │ │ │ ├── cocoa │ │ │ ├── SDL_cocoaclipboard.h │ │ │ ├── SDL_cocoaclipboard.m │ │ │ ├── SDL_cocoaevents.h │ │ │ ├── SDL_cocoaevents.m │ │ │ ├── SDL_cocoakeyboard.h │ │ │ ├── SDL_cocoakeyboard.m │ │ │ ├── SDL_cocoamodes.h │ │ │ ├── SDL_cocoamodes.m │ │ │ ├── SDL_cocoamouse.h │ │ │ ├── SDL_cocoamouse.m │ │ │ ├── SDL_cocoaopengl.h │ │ │ ├── SDL_cocoaopengl.m │ │ │ ├── SDL_cocoashape.h │ │ │ ├── SDL_cocoashape.m │ │ │ ├── SDL_cocoavideo.h │ │ │ ├── SDL_cocoavideo.m │ │ │ ├── SDL_cocoawindow.h │ │ │ └── SDL_cocoawindow.m │ │ │ ├── directfb │ │ │ ├── SDL_DirectFB_WM.c │ │ │ ├── SDL_DirectFB_WM.h │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ ├── SDL_DirectFB_events.c │ │ │ ├── SDL_DirectFB_events.h │ │ │ ├── SDL_DirectFB_modes.c │ │ │ ├── SDL_DirectFB_modes.h │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ ├── SDL_DirectFB_render.c │ │ │ ├── SDL_DirectFB_render.h │ │ │ ├── SDL_DirectFB_shape.c │ │ │ ├── SDL_DirectFB_shape.h │ │ │ ├── SDL_DirectFB_video.c │ │ │ ├── SDL_DirectFB_video.h │ │ │ ├── SDL_DirectFB_window.c │ │ │ └── SDL_DirectFB_window.h │ │ │ ├── dummy │ │ │ ├── SDL_nullevents.c │ │ │ ├── SDL_nullevents_c.h │ │ │ ├── SDL_nullframebuffer.c │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ ├── SDL_nullvideo.c │ │ │ └── SDL_nullvideo.h │ │ │ ├── nds │ │ │ ├── SDL_ndsevents.c │ │ │ ├── SDL_ndsevents_c.h │ │ │ ├── SDL_ndsvideo.c │ │ │ ├── SDL_ndsvideo.h │ │ │ ├── SDL_ndswindow.c │ │ │ └── SDL_ndswindow.h │ │ │ ├── pandora │ │ │ ├── SDL_pandora.c │ │ │ ├── SDL_pandora.h │ │ │ ├── SDL_pandora_events.c │ │ │ └── SDL_pandora_events.h │ │ │ ├── sdlgenblit.pl │ │ │ ├── uikit │ │ │ ├── SDL_uikitappdelegate.h │ │ │ ├── SDL_uikitappdelegate.m │ │ │ ├── SDL_uikitevents.h │ │ │ ├── SDL_uikitevents.m │ │ │ ├── SDL_uikitkeyboard.h │ │ │ ├── SDL_uikitopengles.h │ │ │ ├── SDL_uikitopengles.m │ │ │ ├── SDL_uikitopenglview.h │ │ │ ├── SDL_uikitopenglview.m │ │ │ ├── SDL_uikitvideo.h │ │ │ ├── SDL_uikitvideo.m │ │ │ ├── SDL_uikitview.h │ │ │ ├── SDL_uikitview.m │ │ │ ├── SDL_uikitwindow.h │ │ │ ├── SDL_uikitwindow.m │ │ │ ├── jumphack.c │ │ │ ├── jumphack.h │ │ │ └── keyinfotable.h │ │ │ ├── windows │ │ │ ├── SDL_msctf.h │ │ │ ├── SDL_vkeys.h │ │ │ ├── SDL_windowsclipboard.c │ │ │ ├── SDL_windowsclipboard.h │ │ │ ├── SDL_windowsevents.c │ │ │ ├── SDL_windowsevents.h │ │ │ ├── SDL_windowsframebuffer.c │ │ │ ├── SDL_windowsframebuffer.h │ │ │ ├── SDL_windowskeyboard.c │ │ │ ├── SDL_windowskeyboard.h │ │ │ ├── SDL_windowsmodes.c │ │ │ ├── SDL_windowsmodes.h │ │ │ ├── SDL_windowsmouse.c │ │ │ ├── SDL_windowsmouse.h │ │ │ ├── SDL_windowsopengl.c │ │ │ ├── SDL_windowsopengl.h │ │ │ ├── SDL_windowsshape.c │ │ │ ├── SDL_windowsshape.h │ │ │ ├── SDL_windowsvideo.c │ │ │ ├── SDL_windowsvideo.h │ │ │ ├── SDL_windowswindow.c │ │ │ ├── SDL_windowswindow.h │ │ │ └── wmmsg.h │ │ │ └── x11 │ │ │ ├── SDL_x11clipboard.c │ │ │ ├── SDL_x11clipboard.h │ │ │ ├── SDL_x11dyn.c │ │ │ ├── SDL_x11dyn.h │ │ │ ├── SDL_x11events.c │ │ │ ├── SDL_x11events.h │ │ │ ├── SDL_x11framebuffer.c │ │ │ ├── SDL_x11framebuffer.h │ │ │ ├── SDL_x11keyboard.c │ │ │ ├── SDL_x11keyboard.h │ │ │ ├── SDL_x11modes.c │ │ │ ├── SDL_x11modes.h │ │ │ ├── SDL_x11mouse.c │ │ │ ├── SDL_x11mouse.h │ │ │ ├── SDL_x11opengl.c │ │ │ ├── SDL_x11opengl.h │ │ │ ├── SDL_x11opengles.c │ │ │ ├── SDL_x11opengles.h │ │ │ ├── SDL_x11shape.c │ │ │ ├── SDL_x11shape.h │ │ │ ├── SDL_x11sym.h │ │ │ ├── SDL_x11touch.c │ │ │ ├── SDL_x11touch.h │ │ │ ├── SDL_x11video.c │ │ │ ├── SDL_x11video.h │ │ │ ├── SDL_x11window.c │ │ │ ├── SDL_x11window.h │ │ │ ├── imKStoUCS.c │ │ │ └── imKStoUCS.h │ ├── dll │ │ ├── fmod.dll │ │ ├── freetype6.dll │ │ ├── giflib4.dll │ │ ├── libpng13.dll │ │ ├── libpng13d.dll │ │ ├── zlib1.dll │ │ └── zlib1d.dll │ ├── include │ │ ├── fmod.h │ │ ├── fmod_errors.h │ │ ├── fmoddyn.h │ │ ├── freetype │ │ │ ├── cache │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccmap.h │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.h │ │ │ │ └── ftcsbits.h │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsysio.h │ │ │ ├── ftsysmem.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── ftxf86.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── internal.h │ │ │ │ ├── pcftypes.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ └── svxf86nm.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ ├── freetype2 │ │ │ └── freetype │ │ │ │ ├── cache │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccmap.h │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.h │ │ │ │ └── ftcsbits.h │ │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsysio.h │ │ │ │ ├── ftsysmem.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── ftxf86.h │ │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── pcftypes.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── svbdf.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svwinfnt.h │ │ │ │ ├── svxf86nm.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ ├── ft2build.h │ │ ├── gif_lib.h │ │ ├── jconfig.h │ │ ├── jerror.h │ │ ├── jmorecfg.h │ │ ├── jpeglib.h │ │ ├── libpng13 │ │ │ ├── png.h │ │ │ └── pngconf.h │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── wincompat.h │ │ ├── zconf.h │ │ └── zlib.h │ ├── lib │ │ ├── SDL.dll │ │ ├── SDL.dll.intermediate.manifest │ │ ├── SDL.exp │ │ ├── SDL.lib │ │ ├── Version.res │ │ ├── fmodvc.lib │ │ ├── freetype.def │ │ ├── freetype.lib │ │ ├── giflib.lib │ │ ├── libjpeg-static-mt-debug.lib │ │ ├── libjpeg-static-mt.lib │ │ ├── libpng.lib │ │ ├── libpngd.lib │ │ ├── zdll.lib │ │ └── zlibd.lib │ ├── libjpeg │ │ ├── Android.mk │ │ ├── README │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jchuff.h │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jcparam.c │ │ ├── jcphuff.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdhuff.h │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdphuff.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jidctred.c │ │ ├── jinclude.h │ │ ├── jmemmgr.c │ │ ├── jmemnobs.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ └── jversion.h │ └── libpng │ │ ├── Android.mk │ │ ├── LICENSE │ │ ├── README │ │ ├── png.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngerror.c │ │ ├── pnggccrd.c │ │ ├── pngget.c │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngtrans.c │ │ ├── pngusr.h │ │ ├── pngvcrd.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ └── pngwutil.c ├── JGE.sln ├── JGE.vcproj ├── JGE.vcproj.user ├── JGE.vcxproj ├── LICENSE ├── Makefile ├── Makefile.hge ├── Makefile.input ├── docs │ └── html │ │ ├── annotated.html │ │ ├── class_j_animator-members.html │ │ ├── class_j_animator.html │ │ ├── class_j_animator_frame-members.html │ │ ├── class_j_animator_frame.html │ │ ├── class_j_animator_frame__coll__graph.dot │ │ ├── class_j_animator_frame__coll__graph.md5 │ │ ├── class_j_animator_object-members.html │ │ ├── class_j_animator_object.html │ │ ├── class_j_animator_object__coll__graph.dot │ │ ├── class_j_animator_object__coll__graph.md5 │ │ ├── class_j_app-members.html │ │ ├── class_j_app.html │ │ ├── class_j_file_system-members.html │ │ ├── class_j_file_system.html │ │ ├── class_j_file_system__coll__graph.dot │ │ ├── class_j_file_system__coll__graph.md5 │ │ ├── class_j_g_b_k_font-members.html │ │ ├── class_j_g_b_k_font.html │ │ ├── class_j_g_b_k_font__coll__graph.dot │ │ ├── class_j_g_b_k_font__coll__graph.md5 │ │ ├── class_j_g_e-members.html │ │ ├── class_j_g_e.html │ │ ├── class_j_g_e__coll__graph.dot │ │ ├── class_j_g_e__coll__graph.md5 │ │ ├── class_j_game_launcher-members.html │ │ ├── class_j_game_launcher.html │ │ ├── class_j_game_object-members.html │ │ ├── class_j_game_object.html │ │ ├── class_j_game_object__coll__graph.dot │ │ ├── class_j_game_object__coll__graph.md5 │ │ ├── class_j_game_object__inherit__graph.dot │ │ ├── class_j_game_object__inherit__graph.md5 │ │ ├── class_j_image_filter-members.html │ │ ├── class_j_image_filter.html │ │ ├── class_j_l_b_font-members.html │ │ ├── class_j_l_b_font.html │ │ ├── class_j_l_b_font__coll__graph.dot │ │ ├── class_j_l_b_font__coll__graph.md5 │ │ ├── class_j_m_d2_model-members.html │ │ ├── class_j_m_d2_model.html │ │ ├── class_j_m_d2_model__coll__graph.dot │ │ ├── class_j_m_d2_model__coll__graph.md5 │ │ ├── class_j_o_b_j_model-members.html │ │ ├── class_j_o_b_j_model.html │ │ ├── class_j_particle_effect-members.html │ │ ├── class_j_particle_effect.html │ │ ├── class_j_particle_effect__coll__graph.dot │ │ ├── class_j_particle_effect__coll__graph.md5 │ │ ├── class_j_particle_emitter-members.html │ │ ├── class_j_particle_emitter.html │ │ ├── class_j_particle_emitter__coll__graph.dot │ │ ├── class_j_particle_emitter__coll__graph.md5 │ │ ├── class_j_particle_system-members.html │ │ ├── class_j_particle_system.html │ │ ├── class_j_quad-members.html │ │ ├── class_j_quad.html │ │ ├── class_j_renderer-members.html │ │ ├── class_j_renderer.html │ │ ├── class_j_renderer__coll__graph.dot │ │ ├── class_j_renderer__coll__graph.md5 │ │ ├── class_j_sound_system-members.html │ │ ├── class_j_sound_system.html │ │ ├── class_j_sound_system__coll__graph.dot │ │ ├── class_j_sound_system__coll__graph.md5 │ │ ├── class_j_spline-members.html │ │ ├── class_j_spline.html │ │ ├── class_j_sprite-members.html │ │ ├── class_j_sprite.html │ │ ├── class_j_sprite__coll__graph.dot │ │ ├── class_j_sprite__coll__graph.md5 │ │ ├── class_j_sprite__inherit__graph.dot │ │ ├── class_j_sprite__inherit__graph.md5 │ │ ├── class_j_t_t_font-members.html │ │ ├── class_j_t_t_font.html │ │ ├── class_j_t_t_font__coll__graph.dot │ │ ├── class_j_t_t_font__coll__graph.md5 │ │ ├── class_point-members.html │ │ ├── class_point.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── functions.html │ │ ├── functions_0x62.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x67.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6a.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6d.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x78.html │ │ ├── functions_0x79.html │ │ ├── functions_0x7e.html │ │ ├── functions_enum.html │ │ ├── functions_eval.html │ │ ├── functions_func.html │ │ ├── functions_func_0x62.html │ │ ├── functions_func_0x63.html │ │ ├── functions_func_0x64.html │ │ ├── functions_func_0x65.html │ │ ├── functions_func_0x66.html │ │ ├── functions_func_0x67.html │ │ ├── functions_func_0x69.html │ │ ├── functions_func_0x6a.html │ │ ├── functions_func_0x6c.html │ │ ├── functions_func_0x6d.html │ │ ├── functions_func_0x6f.html │ │ ├── functions_func_0x70.html │ │ ├── functions_func_0x72.html │ │ ├── functions_func_0x73.html │ │ ├── functions_func_0x74.html │ │ ├── functions_func_0x75.html │ │ ├── functions_func_0x7e.html │ │ ├── functions_vars.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── inherit__graph__0.dot │ │ ├── inherit__graph__0.md5 │ │ ├── inherits.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ └── tabs.css ├── exceptionHandler │ ├── README.txt │ ├── prx │ │ ├── exception.prx │ │ ├── exception_asm.S │ │ ├── exports.exp │ │ ├── main.c │ │ └── makefile │ ├── test │ │ ├── main.c │ │ └── makefile │ └── utility │ │ ├── exception.c │ │ └── exception.h ├── include │ ├── DebugRoutines.h │ ├── Downloader.h │ ├── Encoding.h │ ├── JAnimator.h │ ├── JApp.h │ ├── JAssert.h │ ├── JAudio.h │ ├── JCooleyesMP3.h │ ├── JDistortionMesh.h │ ├── JFileSystem.h │ ├── JGBKFont.h │ ├── JGE.h │ ├── JGameLauncher.h │ ├── JGameObject.h │ ├── JGui.h │ ├── JLBFont.h │ ├── JLogger.h │ ├── JMD2Model.h │ ├── JMP3.h │ ├── JNetwork.h │ ├── JOBJModel.h │ ├── JParticle.h │ ├── JParticleEffect.h │ ├── JParticleEmitter.h │ ├── JParticleSystem.h │ ├── JRenderer.h │ ├── JResourceManager.h │ ├── JSocket.h │ ├── JSoundSystem.h │ ├── JSpline.h │ ├── JSprite.h │ ├── JTTFont.h │ ├── JTypes.h │ ├── OutputCapturer.h │ ├── Threading.h │ ├── Vector2D.h │ ├── Vector3D.h │ ├── decoder_prx.h │ ├── hge │ │ ├── hgecolor.h │ │ ├── hgedistort.h │ │ ├── hgefont.h │ │ ├── hgeparticle.h │ │ ├── hgerect.h │ │ └── hgevector.h │ ├── psp │ │ ├── freetype2 │ │ │ └── freetype │ │ │ │ ├── cache │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccmap.h │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.h │ │ │ │ └── ftcsbits.h │ │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsysio.h │ │ │ │ ├── ftsysmem.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── ftxf86.h │ │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── pcftypes.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── svbdf.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svwinfnt.h │ │ │ │ ├── svxf86nm.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ ├── ft2build.h │ │ ├── gif_lib.h │ │ ├── jconfig.h │ │ ├── jerror.h │ │ ├── jmorecfg.h │ │ ├── jpeglib.h │ │ ├── mikmod.h │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── zconf.h │ │ └── zlib.h │ ├── qt │ │ ├── corewrapper.h │ │ └── filedownloader.h │ ├── unzip │ │ ├── crypt.h │ │ ├── ioapi.h │ │ ├── iowin32.h │ │ ├── mztools.h │ │ ├── unzip.h │ │ └── zip.h │ └── vram.h ├── lib │ ├── linux │ │ ├── libhgetools.a │ │ └── libjge.a │ ├── psp │ │ ├── libfreetype.a │ │ ├── libgif.a │ │ ├── libhgetools.a │ │ ├── libjinput.a │ │ ├── libjpeg.a │ │ ├── libmikmod.a │ │ ├── libpng.a │ │ └── libz.a │ └── win │ │ └── jge.lib ├── libjinput.a ├── mk1xx.bat ├── mk3xx.bat ├── readme.txt └── src │ ├── Downloader.cpp │ ├── Encoding.cpp │ ├── JAnimator.cpp │ ├── JApp.cpp │ ├── JAudio.cpp │ ├── JCooleyesMP3.cpp │ ├── JDistortionMesh.cpp │ ├── JFileSystem.cpp │ ├── JGBKFont.cpp │ ├── JGE.cpp │ ├── JGameObject.cpp │ ├── JGfx-fake.cpp │ ├── JGfx.cpp │ ├── JGui.cpp │ ├── JLBFont.cpp │ ├── JLogger.cpp │ ├── JMD2Model.cpp │ ├── JMP3.cpp │ ├── JNetwork.cpp │ ├── JOBJModel.cpp │ ├── JParticle.cpp │ ├── JParticleEffect.cpp │ ├── JParticleEmitter.cpp │ ├── JParticleSystem.cpp │ ├── JResourceManager.cpp │ ├── JSfx.cpp │ ├── JSocket.cpp │ ├── JSpline.cpp │ ├── JSprite.cpp │ ├── JTTFont.cpp │ ├── OutputCapturer.cpp │ ├── Qtconsole.cpp │ ├── Qtmain.cpp │ ├── SDLmain.cpp │ ├── Vector2D.cpp │ ├── Xmain.cpp │ ├── android │ └── JSfx.cpp │ ├── decoder_prx.c │ ├── glutmain.cpp │ ├── hge │ ├── hgecolor.cpp │ ├── hgedistort.cpp │ ├── hgefont.cpp │ ├── hgeparticle.cpp │ ├── hgepmanager.cpp │ ├── hgerect.cpp │ └── hgevector.cpp │ ├── iOS │ ├── EAGLView.h │ ├── EAGLView.m │ ├── EAGLViewController.h │ ├── EAGLViewController.m │ ├── EAGLViewController.xib │ ├── ES2Renderer.h │ ├── ES2Renderer.m │ ├── ESRenderer.h │ ├── JSfx.cpp │ ├── MainWindow.xib │ ├── main.m │ ├── wagicAppDelegate.h │ └── wagicAppDelegate.m │ ├── main.cpp │ ├── pc │ ├── JGfx.cpp │ ├── JSfx.cpp │ └── JSocket.cpp │ ├── qt │ ├── corewrapper.cpp │ └── filedownloader.cpp │ ├── testfeatures.c │ ├── tinyxml │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp │ ├── unzip │ ├── ChangeLogUnzip │ ├── Makefile │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── miniunz.c │ ├── minizip.c │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h │ ├── vram.c │ ├── winmain.cpp │ └── zipFS │ ├── Makefile │ ├── base_data │ ├── !Pak0.cpk │ └── !Pak1.cpk │ ├── fileio.h │ ├── static_assert.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── stdint_old.h │ ├── zfs.cpp │ ├── zfs.sln │ ├── zfs.vcproj │ ├── zfs.vcxproj │ ├── zfs.vcxproj.filters │ ├── zfsystem.cpp │ ├── zfsystem.h │ ├── ziphdr.cpp │ ├── ziphdr.h │ ├── zstream.cpp │ ├── zstream.h │ └── zstream_zlib.h ├── LICENSE ├── README.md ├── admobsdk └── iOS │ ├── GoogleAdMobAdsSDKiOS-5.0.5 │ ├── GADBannerView.h │ ├── GADBannerViewDelegate.h │ ├── GADInterstitial.h │ ├── GADInterstitialDelegate.h │ ├── GADRequest.h │ ├── GADRequestError.h │ ├── README.txt │ └── libGoogleAdMobAds.a │ └── __MACOSX │ ├── ._GoogleAdMobAdsSDKiOS-5.0.5 │ └── GoogleAdMobAdsSDKiOS-5.0.5 │ ├── ._GADBannerView.h │ ├── ._GADBannerViewDelegate.h │ ├── ._GADInterstitial.h │ ├── ._GADInterstitialDelegate.h │ ├── ._GADRequest.h │ ├── ._GADRequestError.h │ └── ._README.txt ├── appveyor.yml ├── docs └── img │ ├── Wagic, The Homebrew sample playthrough.jpg │ └── shop.jpg ├── projects └── mtg │ ├── Android │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── assets │ │ └── _keystore │ │ │ └── wagic-release.keystore │ ├── build.xml │ ├── default.properties │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ ├── libs │ │ ├── armeabi-v7a │ │ │ ├── libSDL.so │ │ │ └── libmain.so │ │ ├── json-simple-1.1.jar │ │ ├── jsoup-1.11.3.jar │ │ └── zip4j-2.1.3-SNAPSHOT.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ ├── net │ │ └── wagic │ │ │ └── utils │ │ │ ├── DeckImporter.java │ │ │ ├── ImgDownloader.java │ │ │ └── StorageOptions.java │ │ └── org │ │ └── libsdl │ │ └── app │ │ └── SDLActivity.java │ ├── CardImageLinks.csv │ ├── Doxyfile │ ├── LICENSE │ ├── MacOS │ ├── Info.plist │ ├── wagic.icns │ └── wagic.launcher │ ├── Makefile │ ├── Makefile.linux │ ├── Res │ ├── Windows │ ├── Wagic.ico │ ├── mtg.rc │ └── resource.h │ ├── bin │ ├── Res.txt │ ├── Res │ │ ├── LICENSE │ │ ├── ai │ │ │ └── baka │ │ │ │ ├── avatars │ │ │ │ ├── README.txt │ │ │ │ └── baka.jpg │ │ │ │ ├── deck1.txt │ │ │ │ ├── deck10.txt │ │ │ │ ├── deck100.txt │ │ │ │ ├── deck101.txt │ │ │ │ ├── deck102.txt │ │ │ │ ├── deck103.txt │ │ │ │ ├── deck104.txt │ │ │ │ ├── deck105.txt │ │ │ │ ├── deck106.txt │ │ │ │ ├── deck107.txt │ │ │ │ ├── deck108.txt │ │ │ │ ├── deck109.txt │ │ │ │ ├── deck11.txt │ │ │ │ ├── deck110.txt │ │ │ │ ├── deck111.txt │ │ │ │ ├── deck112.txt │ │ │ │ ├── deck113.txt │ │ │ │ ├── deck114.txt │ │ │ │ ├── deck115.txt │ │ │ │ ├── deck116.txt │ │ │ │ ├── deck117.txt │ │ │ │ ├── deck118.txt │ │ │ │ ├── deck119.txt │ │ │ │ ├── deck12.txt │ │ │ │ ├── deck120.txt │ │ │ │ ├── deck121.txt │ │ │ │ ├── deck122.txt │ │ │ │ ├── deck123.txt │ │ │ │ ├── deck124.txt │ │ │ │ ├── deck125.txt │ │ │ │ ├── deck126.txt │ │ │ │ ├── deck127.txt │ │ │ │ ├── deck128.txt │ │ │ │ ├── deck129.txt │ │ │ │ ├── deck13.txt │ │ │ │ ├── deck130.txt │ │ │ │ ├── deck131.txt │ │ │ │ ├── deck132.txt │ │ │ │ ├── deck133.txt │ │ │ │ ├── deck134.txt │ │ │ │ ├── deck135.txt │ │ │ │ ├── deck136.txt │ │ │ │ ├── deck137.txt │ │ │ │ ├── deck138.txt │ │ │ │ ├── deck139.txt │ │ │ │ ├── deck14.txt │ │ │ │ ├── deck140.txt │ │ │ │ ├── deck141.txt │ │ │ │ ├── deck142.txt │ │ │ │ ├── deck143.txt │ │ │ │ ├── deck144.txt │ │ │ │ ├── deck145.txt │ │ │ │ ├── deck146.txt │ │ │ │ ├── deck147.txt │ │ │ │ ├── deck148.txt │ │ │ │ ├── deck149.txt │ │ │ │ ├── deck15.txt │ │ │ │ ├── deck150.txt │ │ │ │ ├── deck151.txt │ │ │ │ ├── deck152.txt │ │ │ │ ├── deck153.txt │ │ │ │ ├── deck154.txt │ │ │ │ ├── deck155.txt │ │ │ │ ├── deck156.txt │ │ │ │ ├── deck157.txt │ │ │ │ ├── deck158.txt │ │ │ │ ├── deck159.txt │ │ │ │ ├── deck16.txt │ │ │ │ ├── deck160.txt │ │ │ │ ├── deck161.txt │ │ │ │ ├── deck162.txt │ │ │ │ ├── deck163.txt │ │ │ │ ├── deck164.txt │ │ │ │ ├── deck17.txt │ │ │ │ ├── deck18.txt │ │ │ │ ├── deck19.txt │ │ │ │ ├── deck2.txt │ │ │ │ ├── deck20.txt │ │ │ │ ├── deck21.txt │ │ │ │ ├── deck22.txt │ │ │ │ ├── deck23.txt │ │ │ │ ├── deck24.txt │ │ │ │ ├── deck25.txt │ │ │ │ ├── deck26.txt │ │ │ │ ├── deck27.txt │ │ │ │ ├── deck28.txt │ │ │ │ ├── deck29.txt │ │ │ │ ├── deck3.txt │ │ │ │ ├── deck30.txt │ │ │ │ ├── deck31.txt │ │ │ │ ├── deck32.txt │ │ │ │ ├── deck33.txt │ │ │ │ ├── deck34.txt │ │ │ │ ├── deck35.txt │ │ │ │ ├── deck36.txt │ │ │ │ ├── deck37.txt │ │ │ │ ├── deck38.txt │ │ │ │ ├── deck39.txt │ │ │ │ ├── deck4.txt │ │ │ │ ├── deck40.txt │ │ │ │ ├── deck41.txt │ │ │ │ ├── deck42.txt │ │ │ │ ├── deck43.txt │ │ │ │ ├── deck44.txt │ │ │ │ ├── deck45.txt │ │ │ │ ├── deck46.txt │ │ │ │ ├── deck47.txt │ │ │ │ ├── deck48.txt │ │ │ │ ├── deck49.txt │ │ │ │ ├── deck5.txt │ │ │ │ ├── deck50.txt │ │ │ │ ├── deck51.txt │ │ │ │ ├── deck52.txt │ │ │ │ ├── deck53.txt │ │ │ │ ├── deck54.txt │ │ │ │ ├── deck55.txt │ │ │ │ ├── deck56.txt │ │ │ │ ├── deck57.txt │ │ │ │ ├── deck58.txt │ │ │ │ ├── deck59.txt │ │ │ │ ├── deck6.txt │ │ │ │ ├── deck60.txt │ │ │ │ ├── deck61.txt │ │ │ │ ├── deck62.txt │ │ │ │ ├── deck63.txt │ │ │ │ ├── deck64.txt │ │ │ │ ├── deck65.txt │ │ │ │ ├── deck66.txt │ │ │ │ ├── deck67.txt │ │ │ │ ├── deck68.txt │ │ │ │ ├── deck69.txt │ │ │ │ ├── deck7.txt │ │ │ │ ├── deck70.txt │ │ │ │ ├── deck71.txt │ │ │ │ ├── deck72.txt │ │ │ │ ├── deck73.txt │ │ │ │ ├── deck74.txt │ │ │ │ ├── deck75.txt │ │ │ │ ├── deck76.txt │ │ │ │ ├── deck77.txt │ │ │ │ ├── deck78.txt │ │ │ │ ├── deck79.txt │ │ │ │ ├── deck8.txt │ │ │ │ ├── deck80.txt │ │ │ │ ├── deck81.txt │ │ │ │ ├── deck82.txt │ │ │ │ ├── deck83.txt │ │ │ │ ├── deck84.txt │ │ │ │ ├── deck85.txt │ │ │ │ ├── deck86.txt │ │ │ │ ├── deck87.txt │ │ │ │ ├── deck88.txt │ │ │ │ ├── deck89.txt │ │ │ │ ├── deck9.txt │ │ │ │ ├── deck90.txt │ │ │ │ ├── deck91.txt │ │ │ │ ├── deck92.txt │ │ │ │ ├── deck93.txt │ │ │ │ ├── deck94.txt │ │ │ │ ├── deck95.txt │ │ │ │ ├── deck96.txt │ │ │ │ ├── deck97.txt │ │ │ │ ├── deck98.txt │ │ │ │ └── deck99.txt │ │ ├── campaigns │ │ │ ├── 01.Where it all begins │ │ │ │ ├── _gfx │ │ │ │ │ ├── back_green.jpg │ │ │ │ │ ├── shopkeeper.jpg │ │ │ │ │ └── willow.jpg │ │ │ │ ├── _sfx │ │ │ │ │ └── siege.mp3 │ │ │ │ ├── attack │ │ │ │ │ └── rules.txt │ │ │ │ ├── block │ │ │ │ │ └── rules.txt │ │ │ │ ├── cast_spell_1 │ │ │ │ │ └── rules.txt │ │ │ │ ├── cast_spell_2 │ │ │ │ │ └── rules.txt │ │ │ │ ├── first_duel │ │ │ │ │ ├── deck.txt │ │ │ │ │ ├── opponent_deck.txt │ │ │ │ │ └── rules.txt │ │ │ │ ├── story.xml │ │ │ │ └── tap_mana │ │ │ │ │ └── rules.txt │ │ │ ├── Game Manual │ │ │ │ ├── _gfx │ │ │ │ │ ├── 1main.png │ │ │ │ │ ├── 2main.png │ │ │ │ │ ├── BattleIcon.png │ │ │ │ │ ├── InGame.png │ │ │ │ │ ├── attacker.png │ │ │ │ │ ├── back.jpg │ │ │ │ │ ├── blocker.png │ │ │ │ │ ├── cards.png │ │ │ │ │ ├── circle.png │ │ │ │ │ ├── cleanup.png │ │ │ │ │ ├── combat_begin.png │ │ │ │ │ ├── combat_end.png │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── damage.png │ │ │ │ │ ├── deck.png │ │ │ │ │ ├── draw.png │ │ │ │ │ ├── end.png │ │ │ │ │ ├── iconspsp.png │ │ │ │ │ ├── phasebar.png │ │ │ │ │ ├── untap.png │ │ │ │ │ ├── upkeep.png │ │ │ │ │ └── zones.jpg │ │ │ │ ├── attack │ │ │ │ │ └── rules.txt │ │ │ │ ├── block │ │ │ │ │ └── rules.txt │ │ │ │ ├── cast_spell_1 │ │ │ │ │ └── rules.txt │ │ │ │ ├── cast_spell_2 │ │ │ │ │ └── rules.txt │ │ │ │ ├── interrupt │ │ │ │ │ └── rules.txt │ │ │ │ ├── play_land │ │ │ │ │ └── rules.txt │ │ │ │ ├── play_target │ │ │ │ │ └── rules.txt │ │ │ │ ├── story.xml │ │ │ │ └── tap_mana │ │ │ │ │ └── rules.txt │ │ │ └── README.txt │ │ ├── createResourceZip.py │ │ ├── graphics │ │ │ ├── BattleIcon.png │ │ │ ├── DeckEditorMenuBackdrop.png │ │ │ ├── DeckMenuBackdrop.png │ │ │ ├── DefenderIcon.png │ │ │ ├── Ok.png │ │ │ ├── ai_unlocked.png │ │ │ ├── alphabeta.png │ │ │ ├── avatar.jpg │ │ │ ├── avatar1.jpg │ │ │ ├── avatar10.jpg │ │ │ ├── avatar100.jpg │ │ │ ├── avatar101.jpg │ │ │ ├── avatar102.jpg │ │ │ ├── avatar103.jpg │ │ │ ├── avatar104.jpg │ │ │ ├── avatar105.jpg │ │ │ ├── avatar106.jpg │ │ │ ├── avatar107.jpg │ │ │ ├── avatar108.jpg │ │ │ ├── avatar109.jpg │ │ │ ├── avatar11.jpg │ │ │ ├── avatar110.jpg │ │ │ ├── avatar111.jpg │ │ │ ├── avatar112.jpg │ │ │ ├── avatar113.jpg │ │ │ ├── avatar114.jpg │ │ │ ├── avatar115.jpg │ │ │ ├── avatar116.jpg │ │ │ ├── avatar117.jpg │ │ │ ├── avatar118.jpg │ │ │ ├── avatar119.jpg │ │ │ ├── avatar12.jpg │ │ │ ├── avatar120.jpg │ │ │ ├── avatar121.jpg │ │ │ ├── avatar122.jpg │ │ │ ├── avatar123.jpg │ │ │ ├── avatar124.jpg │ │ │ ├── avatar125.jpg │ │ │ ├── avatar126.jpg │ │ │ ├── avatar127.jpg │ │ │ ├── avatar128.jpg │ │ │ ├── avatar129.jpg │ │ │ ├── avatar13.jpg │ │ │ ├── avatar130.jpg │ │ │ ├── avatar131.jpg │ │ │ ├── avatar132.jpg │ │ │ ├── avatar133.jpg │ │ │ ├── avatar134.jpg │ │ │ ├── avatar135.jpg │ │ │ ├── avatar136.jpg │ │ │ ├── avatar137.jpg │ │ │ ├── avatar138.jpg │ │ │ ├── avatar139.jpg │ │ │ ├── avatar14.jpg │ │ │ ├── avatar140.jpg │ │ │ ├── avatar141.jpg │ │ │ ├── avatar142.jpg │ │ │ ├── avatar143.jpg │ │ │ ├── avatar144.jpg │ │ │ ├── avatar145.jpg │ │ │ ├── avatar146.jpg │ │ │ ├── avatar147.jpg │ │ │ ├── avatar148.jpg │ │ │ ├── avatar149.jpg │ │ │ ├── avatar15.jpg │ │ │ ├── avatar150.jpg │ │ │ ├── avatar151.jpg │ │ │ ├── avatar152.jpg │ │ │ ├── avatar153.jpg │ │ │ ├── avatar154.jpg │ │ │ ├── avatar155.jpg │ │ │ ├── avatar156.jpg │ │ │ ├── avatar157.jpg │ │ │ ├── avatar158.jpg │ │ │ ├── avatar159.jpg │ │ │ ├── avatar16.jpg │ │ │ ├── avatar160.jpg │ │ │ ├── avatar161.jpg │ │ │ ├── avatar162.jpg │ │ │ ├── avatar163.jpg │ │ │ ├── avatar164.jpg │ │ │ ├── avatar165.jpg │ │ │ ├── avatar166.jpg │ │ │ ├── avatar167.jpg │ │ │ ├── avatar168.jpg │ │ │ ├── avatar169.jpg │ │ │ ├── avatar17.jpg │ │ │ ├── avatar170.jpg │ │ │ ├── avatar171.jpg │ │ │ ├── avatar172.jpg │ │ │ ├── avatar173.jpg │ │ │ ├── avatar174.jpg │ │ │ ├── avatar175.jpg │ │ │ ├── avatar176.jpg │ │ │ ├── avatar177.jpg │ │ │ ├── avatar178.jpg │ │ │ ├── avatar179.jpg │ │ │ ├── avatar18.jpg │ │ │ ├── avatar180.jpg │ │ │ ├── avatar181.jpg │ │ │ ├── avatar182.jpg │ │ │ ├── avatar183.jpg │ │ │ ├── avatar184.jpg │ │ │ ├── avatar185.jpg │ │ │ ├── avatar186.jpg │ │ │ ├── avatar187.jpg │ │ │ ├── avatar188.jpg │ │ │ ├── avatar189.jpg │ │ │ ├── avatar19.jpg │ │ │ ├── avatar190.jpg │ │ │ ├── avatar191.jpg │ │ │ ├── avatar192.jpg │ │ │ ├── avatar193.jpg │ │ │ ├── avatar194.jpg │ │ │ ├── avatar195.jpg │ │ │ ├── avatar196.jpg │ │ │ ├── avatar197.jpg │ │ │ ├── avatar198.jpg │ │ │ ├── avatar199.jpg │ │ │ ├── avatar2.jpg │ │ │ ├── avatar20.jpg │ │ │ ├── avatar200.jpg │ │ │ ├── avatar21.jpg │ │ │ ├── avatar22.jpg │ │ │ ├── avatar23.jpg │ │ │ ├── avatar24.jpg │ │ │ ├── avatar25.jpg │ │ │ ├── avatar26.jpg │ │ │ ├── avatar27.jpg │ │ │ ├── avatar28.jpg │ │ │ ├── avatar29.jpg │ │ │ ├── avatar3.jpg │ │ │ ├── avatar30.jpg │ │ │ ├── avatar31.jpg │ │ │ ├── avatar32.jpg │ │ │ ├── avatar33.jpg │ │ │ ├── avatar34.jpg │ │ │ ├── avatar35.jpg │ │ │ ├── avatar36.jpg │ │ │ ├── avatar37.jpg │ │ │ ├── avatar38.jpg │ │ │ ├── avatar39.jpg │ │ │ ├── avatar4.jpg │ │ │ ├── avatar40.jpg │ │ │ ├── avatar41.jpg │ │ │ ├── avatar42.jpg │ │ │ ├── avatar43.jpg │ │ │ ├── avatar44.jpg │ │ │ ├── avatar45.jpg │ │ │ ├── avatar46.jpg │ │ │ ├── avatar47.jpg │ │ │ ├── avatar48.jpg │ │ │ ├── avatar49.jpg │ │ │ ├── avatar5.jpg │ │ │ ├── avatar50.jpg │ │ │ ├── avatar51.jpg │ │ │ ├── avatar52.jpg │ │ │ ├── avatar53.jpg │ │ │ ├── avatar54.jpg │ │ │ ├── avatar55.jpg │ │ │ ├── avatar56.jpg │ │ │ ├── avatar57.jpg │ │ │ ├── avatar58.jpg │ │ │ ├── avatar59.jpg │ │ │ ├── avatar6.jpg │ │ │ ├── avatar60.jpg │ │ │ ├── avatar61.jpg │ │ │ ├── avatar62.jpg │ │ │ ├── avatar63.jpg │ │ │ ├── avatar64.jpg │ │ │ ├── avatar65.jpg │ │ │ ├── avatar66.jpg │ │ │ ├── avatar67.jpg │ │ │ ├── avatar68.jpg │ │ │ ├── avatar69.jpg │ │ │ ├── avatar7.jpg │ │ │ ├── avatar70.jpg │ │ │ ├── avatar71.jpg │ │ │ ├── avatar72.jpg │ │ │ ├── avatar73.jpg │ │ │ ├── avatar74.jpg │ │ │ ├── avatar75.jpg │ │ │ ├── avatar76.jpg │ │ │ ├── avatar77.jpg │ │ │ ├── avatar78.jpg │ │ │ ├── avatar79.jpg │ │ │ ├── avatar8.jpg │ │ │ ├── avatar80.jpg │ │ │ ├── avatar81.jpg │ │ │ ├── avatar82.jpg │ │ │ ├── avatar83.jpg │ │ │ ├── avatar84.jpg │ │ │ ├── avatar85.jpg │ │ │ ├── avatar86.jpg │ │ │ ├── avatar87.jpg │ │ │ ├── avatar88.jpg │ │ │ ├── avatar89.jpg │ │ │ ├── avatar9.jpg │ │ │ ├── avatar90.jpg │ │ │ ├── avatar91.jpg │ │ │ ├── avatar92.jpg │ │ │ ├── avatar93.jpg │ │ │ ├── avatar94.jpg │ │ │ ├── avatar95.jpg │ │ │ ├── avatar96.jpg │ │ │ ├── avatar97.jpg │ │ │ ├── avatar98.jpg │ │ │ ├── avatar99.jpg │ │ │ ├── avatarholder.png │ │ │ ├── awardback.jpg │ │ │ ├── backdrop.jpg │ │ │ ├── backdropframe.png │ │ │ ├── bgdeckeditor.jpg │ │ │ ├── blitz_unlocked.png │ │ │ ├── bottom_corner.png │ │ │ ├── button_shoulder.png │ │ │ ├── commander_unlocked.png │ │ │ ├── counters │ │ │ │ ├── default.png │ │ │ │ └── quest.png │ │ │ ├── eviltwin_unlocked.png │ │ │ ├── f3.asc │ │ │ ├── f3.dat │ │ │ ├── f3.font │ │ │ ├── f3.gbk │ │ │ ├── f3.png │ │ │ ├── fakebar.png │ │ │ ├── falsegod_unlocked.png │ │ │ ├── gold.png │ │ │ ├── goldglow.png │ │ │ ├── handback.png │ │ │ ├── hermit_unlocked.png │ │ │ ├── horde_unlocked.png │ │ │ ├── iconcard.png │ │ │ ├── iconcommandzone.png │ │ │ ├── iconexile.png │ │ │ ├── iconhand.png │ │ │ ├── iconlibrary.png │ │ │ ├── iconsideboard.png │ │ │ ├── iconspsp.png │ │ │ ├── jewel.png │ │ │ ├── magic.asc │ │ │ ├── magic.dat │ │ │ ├── magic.font │ │ │ ├── magic.gbk │ │ │ ├── magic.png │ │ │ ├── mana.psi │ │ │ ├── manablack.psi │ │ │ ├── manablue.psi │ │ │ ├── managreen.psi │ │ │ ├── manared.psi │ │ │ ├── manawhite.psi │ │ │ ├── menubar.png │ │ │ ├── menubgdeckeditor.jpg │ │ │ ├── menucorner.png │ │ │ ├── menuholder.png │ │ │ ├── menuicons.png │ │ │ ├── menupanel.jpg │ │ │ ├── menuside.png │ │ │ ├── menuside2.png │ │ │ ├── menutitle.png │ │ │ ├── miconslarge.png │ │ │ ├── momir_unlocked.png │ │ │ ├── morinfen_unlocked.png │ │ │ ├── new.png │ │ │ ├── noavatar.jpg │ │ │ ├── paradise_unlocked.png │ │ │ ├── particle1.psi │ │ │ ├── particle2.psi │ │ │ ├── particle3.psi │ │ │ ├── particle4.psi │ │ │ ├── particle5.psi │ │ │ ├── particle6.psi │ │ │ ├── particle7.psi │ │ │ ├── particles.png │ │ │ ├── phasebar.png │ │ │ ├── phaseinfo.png │ │ │ ├── preview.png │ │ │ ├── pspavatarholder.png │ │ │ ├── pspawardback.jpg │ │ │ ├── pspbackdrop.jpg │ │ │ ├── pspbackdropframe.png │ │ │ ├── pspbgdeckeditor.jpg │ │ │ ├── pspdeckmenu.png │ │ │ ├── pspf3.dat │ │ │ ├── pspf3.png │ │ │ ├── pspfakebar.png │ │ │ ├── pspmagic.dat │ │ │ ├── pspmagic.png │ │ │ ├── pspmenubgdeckeditor.jpg │ │ │ ├── pspmenubgdeckeditor.png │ │ │ ├── pspmenuholder.png │ │ │ ├── pspmenupanel.jpg │ │ │ ├── pspmenutitle.png │ │ │ ├── pspshop.jpg │ │ │ ├── pspshop_light.jpg │ │ │ ├── pspsimon.dat │ │ │ ├── pspsimon.png │ │ │ ├── pspstatsholder.png │ │ │ ├── psptaskboard.png │ │ │ ├── psptextscroller.png │ │ │ ├── psptextscrollershadow.png │ │ │ ├── psptrophy.png │ │ │ ├── psptrophy_prx_eviltwin.png │ │ │ ├── psptrophy_prx_handler.png │ │ │ ├── psptrophy_prx_rimom.png │ │ │ ├── psptrophy_prx_rnddeck.png │ │ │ ├── psptrophy_set.png │ │ │ ├── randomdeck_unlocked.png │ │ │ ├── set_unlocked.png │ │ │ ├── shadows.png │ │ │ ├── shop.jpg │ │ │ ├── shop_aliasing.png │ │ │ ├── shop_light.jpg │ │ │ ├── simon.asc │ │ │ ├── simon.dat │ │ │ ├── simon.font │ │ │ ├── simon.gbk │ │ │ ├── simon.png │ │ │ ├── simon_pink.png │ │ │ ├── smallface.asc │ │ │ ├── smallface.dat │ │ │ ├── smallface.font │ │ │ ├── smallface.gbk │ │ │ ├── smallface.png │ │ │ ├── spade.png │ │ │ ├── spade_ul.png │ │ │ ├── spade_ur.png │ │ │ ├── stars.psi │ │ │ ├── statsholder.png │ │ │ ├── stonehewer_unlocked.png │ │ │ ├── taskboard.png │ │ │ ├── textscroller.png │ │ │ ├── textscrollershadow.png │ │ │ ├── themeinfo.txt │ │ │ ├── titania_unlocked.png │ │ │ ├── tooltips.png │ │ │ ├── top_bar.png │ │ │ ├── top_corner.png │ │ │ ├── trophy.png │ │ │ ├── trophy_prx_eviltwin.png │ │ │ ├── trophy_prx_handler.png │ │ │ ├── trophy_prx_rimom.png │ │ │ ├── trophy_prx_rnddeck.png │ │ │ ├── trophy_set.png │ │ │ ├── unlocked.png │ │ │ ├── vert_bar.png │ │ │ ├── wallpapers.txt │ │ │ ├── wallpapers │ │ │ │ ├── final_saga1.jpg │ │ │ │ ├── final_saga2.jpg │ │ │ │ ├── final_saga3.jpg │ │ │ │ ├── kaioshin_chandra.jpg │ │ │ │ ├── kaioshin_elsXIII.jpg │ │ │ │ ├── kaioshin_garruk.jpg │ │ │ │ ├── kaioshin_hero_wagic.jpg │ │ │ │ ├── kaioshin_jace.jpg │ │ │ │ ├── kaioshin_ravager.jpg │ │ │ │ ├── kaioshin_sarkhan_vol.jpg │ │ │ │ ├── kaioshin_sorin.jpg │ │ │ │ └── wagic1.jpg │ │ │ └── wood.png │ │ ├── lang │ │ │ ├── cn.txt │ │ │ ├── cn_cards.txt │ │ │ ├── cn_decks.txt │ │ │ ├── de.txt │ │ │ ├── de_cards.txt │ │ │ ├── dontcare.txt │ │ │ ├── en.txt │ │ │ ├── es.txt │ │ │ ├── es_cards.txt │ │ │ ├── fr.txt │ │ │ ├── fr_cards.txt │ │ │ ├── it.txt │ │ │ ├── it_cards.txt │ │ │ ├── jp.txt │ │ │ ├── jp_cards.txt │ │ │ ├── pt.txt │ │ │ ├── rs.txt │ │ │ └── spot.rb │ │ ├── missing_cards_by_sets │ │ │ ├── 10E.txt │ │ │ ├── 2ED.txt │ │ │ ├── 2X2.txt │ │ │ ├── 2XM.txt │ │ │ ├── 4ED.txt │ │ │ ├── 5DN.txt │ │ │ ├── 5ED.txt │ │ │ ├── 6ED.txt │ │ │ ├── 7ED.txt │ │ │ ├── 8ED.txt │ │ │ ├── 9ED.txt │ │ │ ├── A25.txt │ │ │ ├── AER.txt │ │ │ ├── AKH.txt │ │ │ ├── AKR.txt │ │ │ ├── ALA.txt │ │ │ ├── ALL.txt │ │ │ ├── APC.txt │ │ │ ├── ARB.txt │ │ │ ├── ARN.txt │ │ │ ├── ATQ.txt │ │ │ ├── AVR.txt │ │ │ ├── BBD.txt │ │ │ ├── BFZ.txt │ │ │ ├── BNG.txt │ │ │ ├── BOK.txt │ │ │ ├── BRC.txt │ │ │ ├── BRR.txt │ │ │ ├── BTD.txt │ │ │ ├── C13.txt │ │ │ ├── C14.txt │ │ │ ├── C15.txt │ │ │ ├── C16.txt │ │ │ ├── C17.txt │ │ │ ├── C18.txt │ │ │ ├── C19.txt │ │ │ ├── C20.txt │ │ │ ├── C21.txt │ │ │ ├── CFX.txt │ │ │ ├── CHK.txt │ │ │ ├── CHR.txt │ │ │ ├── CLB.txt │ │ │ ├── CM1.txt │ │ │ ├── CM2.txt │ │ │ ├── CMA.txt │ │ │ ├── CMD.txt │ │ │ ├── CMM.txt │ │ │ ├── CMR.txt │ │ │ ├── CN2.txt │ │ │ ├── CNS.txt │ │ │ ├── CSP.txt │ │ │ ├── DBL.txt │ │ │ ├── DDN.txt │ │ │ ├── DDS.txt │ │ │ ├── DDT.txt │ │ │ ├── DDU.txt │ │ │ ├── DGM.txt │ │ │ ├── DIS.txt │ │ │ ├── DKA.txt │ │ │ ├── DM.txt │ │ │ ├── DMC.txt │ │ │ ├── DMR.txt │ │ │ ├── DOM.txt │ │ │ ├── DRK.txt │ │ │ ├── DST.txt │ │ │ ├── DTK.txt │ │ │ ├── E01.txt │ │ │ ├── ELD.txt │ │ │ ├── EMA.txt │ │ │ ├── EMN.txt │ │ │ ├── EVE.txt │ │ │ ├── EXO.txt │ │ │ ├── FEM.txt │ │ │ ├── FRF.txt │ │ │ ├── FUT.txt │ │ │ ├── FVE.txt │ │ │ ├── GK1.txt │ │ │ ├── GK2.txt │ │ │ ├── GPT.txt │ │ │ ├── GRN.txt │ │ │ ├── GTC.txt │ │ │ ├── H17.txt │ │ │ ├── HA4.txt │ │ │ ├── HA5.txt │ │ │ ├── HML.txt │ │ │ ├── HOP.txt │ │ │ ├── HOU.txt │ │ │ ├── HTR.txt │ │ │ ├── ICE.txt │ │ │ ├── IKO.txt │ │ │ ├── IMA.txt │ │ │ ├── INV.txt │ │ │ ├── ISD.txt │ │ │ ├── IVG.txt │ │ │ ├── J22.txt │ │ │ ├── JOU.txt │ │ │ ├── JUD.txt │ │ │ ├── JVC.txt │ │ │ ├── KHM.txt │ │ │ ├── KLD.txt │ │ │ ├── KLR.txt │ │ │ ├── KTK.txt │ │ │ ├── KVD.txt │ │ │ ├── LEA.txt │ │ │ ├── LEB.txt │ │ │ ├── LEG.txt │ │ │ ├── LGN.txt │ │ │ ├── LRW.txt │ │ │ ├── LTC.txt │ │ │ ├── LTR.txt │ │ │ ├── M10.txt │ │ │ ├── M11.txt │ │ │ ├── M12.txt │ │ │ ├── M13.txt │ │ │ ├── M14.txt │ │ │ ├── M15.txt │ │ │ ├── M19.txt │ │ │ ├── M20.txt │ │ │ ├── M21.txt │ │ │ ├── MAT.txt │ │ │ ├── MB1.txt │ │ │ ├── MBS.txt │ │ │ ├── ME1.txt │ │ │ ├── ME2.txt │ │ │ ├── ME3.txt │ │ │ ├── ME4.txt │ │ │ ├── MH1.txt │ │ │ ├── MH2.txt │ │ │ ├── MIC.txt │ │ │ ├── MID.txt │ │ │ ├── MIR.txt │ │ │ ├── MM2.txt │ │ │ ├── MM3.txt │ │ │ ├── MMA.txt │ │ │ ├── MOC.txt │ │ │ ├── MOM.txt │ │ │ ├── MOR.txt │ │ │ ├── MP2.txt │ │ │ ├── MPS.txt │ │ │ ├── MRD.txt │ │ │ ├── MRQ.txt │ │ │ ├── MUL.txt │ │ │ ├── NCC.txt │ │ │ ├── NEC.txt │ │ │ ├── NEO.txt │ │ │ ├── NMS.txt │ │ │ ├── NPH.txt │ │ │ ├── ODY.txt │ │ │ ├── OGW.txt │ │ │ ├── ONC.txt │ │ │ ├── ONE.txt │ │ │ ├── ONS.txt │ │ │ ├── ORI.txt │ │ │ ├── P02.txt │ │ │ ├── PAL04.txt │ │ │ ├── PC2.txt │ │ │ ├── PCA.txt │ │ │ ├── PCY.txt │ │ │ ├── PDS.txt │ │ │ ├── PHPR.txt │ │ │ ├── PI13.txt │ │ │ ├── PLC.txt │ │ │ ├── PLIST.txt │ │ │ ├── PLS.txt │ │ │ ├── PRM.txt │ │ │ ├── PS11.txt │ │ │ ├── PSAL.txt │ │ │ ├── PTK.txt │ │ │ ├── PUMA.txt │ │ │ ├── PZ1.txt │ │ │ ├── PZ2.txt │ │ │ ├── Q06.txt │ │ │ ├── RAV.txt │ │ │ ├── RNA.txt │ │ │ ├── ROE.txt │ │ │ ├── RTR.txt │ │ │ ├── RV.txt │ │ │ ├── S99.txt │ │ │ ├── SCG.txt │ │ │ ├── SHM.txt │ │ │ ├── SIR.txt │ │ │ ├── SIS.txt │ │ │ ├── SOI.txt │ │ │ ├── SOK.txt │ │ │ ├── SOM.txt │ │ │ ├── SS1.txt │ │ │ ├── STA.txt │ │ │ ├── STH.txt │ │ │ ├── TD0.txt │ │ │ ├── THB.txt │ │ │ ├── THS.txt │ │ │ ├── TMP.txt │ │ │ ├── TOR.txt │ │ │ ├── TPR.txt │ │ │ ├── TSB.txt │ │ │ ├── TSP.txt │ │ │ ├── TSR.txt │ │ │ ├── UDS.txt │ │ │ ├── UGL.txt │ │ │ ├── ULG.txt │ │ │ ├── UMA.txt │ │ │ ├── UND.txt │ │ │ ├── UNH.txt │ │ │ ├── USG.txt │ │ │ ├── UST.txt │ │ │ ├── VIS.txt │ │ │ ├── VMA.txt │ │ │ ├── VOC.txt │ │ │ ├── VVK.txt │ │ │ ├── WAR.txt │ │ │ ├── WTH.txt │ │ │ ├── WWK.txt │ │ │ ├── ZNC.txt │ │ │ └── missingCardList.txt │ │ ├── oldthemes │ │ │ ├── Christmas │ │ │ │ ├── artifact_thumb.jpg │ │ │ │ ├── back.jpg │ │ │ │ ├── back_thumb.jpg │ │ │ │ ├── backdrop.jpg │ │ │ │ ├── black_thumb.jpg │ │ │ │ ├── blue_thumb.jpg │ │ │ │ ├── gold_thumb.jpg │ │ │ │ ├── green_thumb.jpg │ │ │ │ ├── handback.png │ │ │ │ ├── land_thumb.jpg │ │ │ │ ├── menuicons.png │ │ │ │ ├── menuside.png │ │ │ │ ├── menutitle.png │ │ │ │ ├── particles.png │ │ │ │ ├── preview.png │ │ │ │ ├── red_thumb.jpg │ │ │ │ ├── shop.jpg │ │ │ │ ├── shop_aliasing.png │ │ │ │ ├── shop_light.jpg │ │ │ │ ├── spade_ul.png │ │ │ │ ├── spade_ur.png │ │ │ │ ├── themeinfo.txt │ │ │ │ ├── white_thumb.jpg │ │ │ │ └── wood.png │ │ │ ├── Classic │ │ │ │ ├── artifact.jpg │ │ │ │ ├── artifact_thumb.jpg │ │ │ │ ├── avatar.jpg │ │ │ │ ├── avatar1.jpg │ │ │ │ ├── avatar2.jpg │ │ │ │ ├── avatar3.jpg │ │ │ │ ├── avatar4.jpg │ │ │ │ ├── avatar5.jpg │ │ │ │ ├── avatar6.jpg │ │ │ │ ├── awardback.jpg │ │ │ │ ├── back.jpg │ │ │ │ ├── back_thumb.jpg │ │ │ │ ├── backdrop.jpg │ │ │ │ ├── baka.jpg │ │ │ │ ├── black.jpg │ │ │ │ ├── black_thumb.jpg │ │ │ │ ├── blue.jpg │ │ │ │ ├── blue_thumb.jpg │ │ │ │ ├── eviltwin_unlocked.png │ │ │ │ ├── f3.dat │ │ │ │ ├── f3.png │ │ │ │ ├── gold.jpg │ │ │ │ ├── gold.png │ │ │ │ ├── gold_thumb.jpg │ │ │ │ ├── goldglow.png │ │ │ │ ├── green.jpg │ │ │ │ ├── green_thumb.jpg │ │ │ │ ├── handback.png │ │ │ │ ├── land.jpg │ │ │ │ ├── land_thumb.jpg │ │ │ │ ├── magic.dat │ │ │ │ ├── magic.png │ │ │ │ ├── menuicons.png │ │ │ │ ├── menuside.png │ │ │ │ ├── menuside2.png │ │ │ │ ├── menutitle.png │ │ │ │ ├── momir_unlocked.png │ │ │ │ ├── phasebar.png │ │ │ │ ├── preview.png │ │ │ │ ├── randomdeck_unlocked.png │ │ │ │ ├── red.jpg │ │ │ │ ├── red_thumb.jpg │ │ │ │ ├── set_unlocked.png │ │ │ │ ├── simon.dat │ │ │ │ ├── simon.png │ │ │ │ ├── spade_ul.png │ │ │ │ ├── spade_ur.png │ │ │ │ ├── themeinfo.txt │ │ │ │ ├── trophy.png │ │ │ │ ├── trophy_prx_eviltwin.png │ │ │ │ ├── trophy_prx_handler.png │ │ │ │ ├── trophy_prx_rimom.png │ │ │ │ ├── trophy_prx_rnddeck.png │ │ │ │ ├── trophy_set.png │ │ │ │ ├── unlocked.png │ │ │ │ ├── white.jpg │ │ │ │ ├── white_thumb.jpg │ │ │ │ └── wood.png │ │ │ ├── Gemstones │ │ │ │ ├── backdrop_black.jpg │ │ │ │ ├── backdrop_blue.jpg │ │ │ │ ├── backdrop_green.jpg │ │ │ │ ├── backdrop_red.jpg │ │ │ │ ├── backdrop_white.jpg │ │ │ │ ├── gold.png │ │ │ │ ├── goldglow.png │ │ │ │ ├── handback.png │ │ │ │ ├── handback_white.png │ │ │ │ ├── menutitle.png │ │ │ │ ├── menutitle_black.png │ │ │ │ ├── menutitle_blue.png │ │ │ │ ├── menutitle_green.png │ │ │ │ ├── menutitle_red.png │ │ │ │ ├── menutitle_white.png │ │ │ │ ├── phasebar_black.png │ │ │ │ ├── phasebar_blue.png │ │ │ │ ├── phasebar_green.png │ │ │ │ ├── phasebar_red.png │ │ │ │ ├── phasebar_white.png │ │ │ │ ├── preview.png │ │ │ │ ├── style.txt │ │ │ │ ├── themeinfo.txt │ │ │ │ ├── wood_black.png │ │ │ │ ├── wood_blue.png │ │ │ │ ├── wood_green.png │ │ │ │ ├── wood_red.png │ │ │ │ └── wood_white.png │ │ │ ├── Green │ │ │ │ ├── back.jpg │ │ │ │ ├── back_thumb.jpg │ │ │ │ ├── backdrop.jpg │ │ │ │ ├── preview.png │ │ │ │ └── themeinfo.txt │ │ │ ├── Inverted │ │ │ │ ├── manablack.psi │ │ │ │ ├── manablue.psi │ │ │ │ ├── managreen.psi │ │ │ │ ├── manared.psi │ │ │ │ ├── manawhite.psi │ │ │ │ ├── menuicons.png │ │ │ │ ├── menutitle.png │ │ │ │ ├── particle1.psi │ │ │ │ ├── particle2.psi │ │ │ │ ├── particle3.psi │ │ │ │ ├── particle4.psi │ │ │ │ ├── particle5.psi │ │ │ │ ├── preview.png │ │ │ │ └── themeinfo.txt │ │ │ ├── White Shrine │ │ │ │ ├── back.jpg │ │ │ │ ├── back_thumb.JPG │ │ │ │ ├── backdrop.JPG │ │ │ │ ├── handback.png │ │ │ │ ├── preview.png │ │ │ │ ├── themeinfo.txt │ │ │ │ └── wood.png │ │ │ └── readme.txt │ │ ├── packs │ │ │ ├── artifact_booster.txt │ │ │ ├── black_booster.txt │ │ │ ├── blue_booster.txt │ │ │ ├── elf_pack.txt │ │ │ ├── goblin_pack.txt │ │ │ ├── green_booster.txt │ │ │ ├── lotto_pack.txt │ │ │ ├── mage_pack.txt │ │ │ ├── red_booster.txt │ │ │ ├── soldier_pack.txt │ │ │ └── white_booster.txt │ │ ├── player │ │ │ ├── options.orig.txt │ │ │ └── premade │ │ │ │ └── deck1.txt │ │ ├── rules │ │ │ ├── Blitzkrieg.txt │ │ │ ├── Commander.txt │ │ │ ├── awards.dat │ │ │ ├── classic.txt │ │ │ ├── falseGod.txt │ │ │ ├── hermit.txt │ │ │ ├── horde.txt │ │ │ ├── modrules.xml │ │ │ ├── momir.txt │ │ │ ├── morinfen.txt │ │ │ ├── mtg.txt │ │ │ ├── paradise.txt │ │ │ ├── random1.txt │ │ │ ├── random2.txt │ │ │ ├── random3.txt │ │ │ ├── random5.txt │ │ │ ├── randomCommander.txt │ │ │ ├── randomCommanderFromFile.txt │ │ │ ├── setLimited.txt │ │ │ ├── stonehewer.txt │ │ │ ├── story.txt │ │ │ ├── testsuite.txt │ │ │ └── titania.txt │ │ ├── sets │ │ │ ├── 10E │ │ │ │ └── _cards.dat │ │ │ ├── 2ED │ │ │ │ └── _cards.dat │ │ │ ├── 2X2 │ │ │ │ └── _cards.dat │ │ │ ├── 2XM │ │ │ │ └── _cards.dat │ │ │ ├── 4ED │ │ │ │ └── _cards.dat │ │ │ ├── 5DN │ │ │ │ └── _cards.dat │ │ │ ├── 5ED │ │ │ │ └── _cards.dat │ │ │ ├── 6ED │ │ │ │ └── _cards.dat │ │ │ ├── 7ED │ │ │ │ └── _cards.dat │ │ │ ├── 8ED │ │ │ │ └── _cards.dat │ │ │ ├── 9ED │ │ │ │ └── _cards.dat │ │ │ ├── A25 │ │ │ │ └── _cards.dat │ │ │ ├── AER │ │ │ │ └── _cards.dat │ │ │ ├── AFC │ │ │ │ └── _cards.dat │ │ │ ├── AFR │ │ │ │ └── _cards.dat │ │ │ ├── AKH │ │ │ │ └── _cards.dat │ │ │ ├── AKR │ │ │ │ └── _cards.dat │ │ │ ├── ALA │ │ │ │ └── _cards.dat │ │ │ ├── ALL │ │ │ │ └── _cards.dat │ │ │ ├── ANA │ │ │ │ └── _cards.dat │ │ │ ├── ANB │ │ │ │ └── _cards.dat │ │ │ ├── APC │ │ │ │ └── _cards.dat │ │ │ ├── ARB │ │ │ │ └── _cards.dat │ │ │ ├── ARC │ │ │ │ └── _cards.dat │ │ │ ├── ARN │ │ │ │ └── _cards.dat │ │ │ ├── ATH │ │ │ │ └── _cards.dat │ │ │ ├── ATQ │ │ │ │ └── _cards.dat │ │ │ ├── AVN │ │ │ │ └── _cards.dat │ │ │ ├── AVR │ │ │ │ └── _cards.dat │ │ │ ├── BBD │ │ │ │ └── _cards.dat │ │ │ ├── BFZ │ │ │ │ └── _cards.dat │ │ │ ├── BIG │ │ │ │ └── _cards.dat │ │ │ ├── BLB │ │ │ │ └── _cards.dat │ │ │ ├── BLC │ │ │ │ └── _cards.dat │ │ │ ├── BNG │ │ │ │ └── _cards.dat │ │ │ ├── BOK │ │ │ │ └── _cards.dat │ │ │ ├── BRB │ │ │ │ └── _cards.dat │ │ │ ├── BRC │ │ │ │ └── _cards.dat │ │ │ ├── BRO │ │ │ │ └── _cards.dat │ │ │ ├── BRR │ │ │ │ └── _cards.dat │ │ │ ├── BTD │ │ │ │ └── _cards.dat │ │ │ ├── BVC │ │ │ │ └── _cards.dat │ │ │ ├── C13 │ │ │ │ └── _cards.dat │ │ │ ├── C14 │ │ │ │ └── _cards.dat │ │ │ ├── C15 │ │ │ │ └── _cards.dat │ │ │ ├── C16 │ │ │ │ └── _cards.dat │ │ │ ├── C17 │ │ │ │ └── _cards.dat │ │ │ ├── C18 │ │ │ │ └── _cards.dat │ │ │ ├── C19 │ │ │ │ └── _cards.dat │ │ │ ├── C20 │ │ │ │ └── _cards.dat │ │ │ ├── C21 │ │ │ │ └── _cards.dat │ │ │ ├── CC1 │ │ │ │ └── _cards.dat │ │ │ ├── CC2 │ │ │ │ └── _cards.dat │ │ │ ├── CFX │ │ │ │ └── _cards.dat │ │ │ ├── CHK │ │ │ │ └── _cards.dat │ │ │ ├── CHR │ │ │ │ └── _cards.dat │ │ │ ├── CLB │ │ │ │ └── _cards.dat │ │ │ ├── CLU │ │ │ │ └── _cards.dat │ │ │ ├── CM1 │ │ │ │ └── _cards.dat │ │ │ ├── CM2 │ │ │ │ └── _cards.dat │ │ │ ├── CMA │ │ │ │ └── _cards.dat │ │ │ ├── CMD │ │ │ │ └── _cards.dat │ │ │ ├── CMM │ │ │ │ └── _cards.dat │ │ │ ├── CMR │ │ │ │ └── _cards.dat │ │ │ ├── CN2 │ │ │ │ └── _cards.dat │ │ │ ├── CNS │ │ │ │ └── _cards.dat │ │ │ ├── CSP │ │ │ │ └── _cards.dat │ │ │ ├── DBL │ │ │ │ └── _cards.dat │ │ │ ├── DDN │ │ │ │ └── _cards.dat │ │ │ ├── DDR │ │ │ │ └── _cards.dat │ │ │ ├── DDS │ │ │ │ └── _cards.dat │ │ │ ├── DDT │ │ │ │ └── _cards.dat │ │ │ ├── DDU │ │ │ │ └── _cards.dat │ │ │ ├── DFT │ │ │ │ └── _cards.dat │ │ │ ├── DGM │ │ │ │ └── _cards.dat │ │ │ ├── DIS │ │ │ │ └── _cards.dat │ │ │ ├── DKA │ │ │ │ ├── _cards.dat │ │ │ │ └── booster.txt │ │ │ ├── DM │ │ │ │ └── _cards.dat │ │ │ ├── DMC │ │ │ │ └── _cards.dat │ │ │ ├── DMR │ │ │ │ └── _cards.dat │ │ │ ├── DMU │ │ │ │ └── _cards.dat │ │ │ ├── DOM │ │ │ │ └── _cards.dat │ │ │ ├── DPA │ │ │ │ └── _cards.dat │ │ │ ├── DRC │ │ │ │ └── _cards.dat │ │ │ ├── DRK │ │ │ │ └── _cards.dat │ │ │ ├── DSC │ │ │ │ └── _cards.dat │ │ │ ├── DSK │ │ │ │ └── _cards.dat │ │ │ ├── DST │ │ │ │ └── _cards.dat │ │ │ ├── DTK │ │ │ │ ├── _cards.dat │ │ │ │ └── booster.txt │ │ │ ├── DVD │ │ │ │ └── _cards.dat │ │ │ ├── E01 │ │ │ │ └── _cards.dat │ │ │ ├── E02 │ │ │ │ └── _cards.dat │ │ │ ├── ELD │ │ │ │ └── _cards.dat │ │ │ ├── EMA │ │ │ │ └── _cards.dat │ │ │ ├── EMN │ │ │ │ └── _cards.dat │ │ │ ├── EVE │ │ │ │ └── _cards.dat │ │ │ ├── EVG │ │ │ │ └── _cards.dat │ │ │ ├── EVK │ │ │ │ └── _cards.dat │ │ │ ├── EVT │ │ │ │ └── _cards.dat │ │ │ ├── EXO │ │ │ │ └── _cards.dat │ │ │ ├── EXP │ │ │ │ └── _cards.dat │ │ │ ├── FDN │ │ │ │ └── _cards.dat │ │ │ ├── FEM │ │ │ │ └── _cards.dat │ │ │ ├── FRF │ │ │ │ ├── _cards.dat │ │ │ │ └── booster.txt │ │ │ ├── FUT │ │ │ │ └── _cards.dat │ │ │ ├── FVD │ │ │ │ └── _cards.dat │ │ │ ├── FVE │ │ │ │ └── _cards.dat │ │ │ ├── FVL │ │ │ │ └── _cards.dat │ │ │ ├── FVR │ │ │ │ └── _cards.dat │ │ │ ├── GK1 │ │ │ │ └── _cards.dat │ │ │ ├── GK2 │ │ │ │ └── _cards.dat │ │ │ ├── GN2 │ │ │ │ └── _cards.dat │ │ │ ├── GNT │ │ │ │ └── _cards.dat │ │ │ ├── GPT │ │ │ │ └── _cards.dat │ │ │ ├── GRN │ │ │ │ └── _cards.dat │ │ │ ├── GS1 │ │ │ │ └── _cards.dat │ │ │ ├── GTC │ │ │ │ └── _cards.dat │ │ │ ├── GVL │ │ │ │ └── _cards.dat │ │ │ ├── H17 │ │ │ │ └── _cards.dat │ │ │ ├── H1R │ │ │ │ └── _cards.dat │ │ │ ├── HA1 │ │ │ │ └── _cards.dat │ │ │ ├── HA2 │ │ │ │ └── _cards.dat │ │ │ ├── HA3 │ │ │ │ └── _cards.dat │ │ │ ├── HA4 │ │ │ │ └── _cards.dat │ │ │ ├── HA5 │ │ │ │ └── _cards.dat │ │ │ ├── HML │ │ │ │ └── _cards.dat │ │ │ ├── HOP │ │ │ │ └── _cards.dat │ │ │ ├── HOU │ │ │ │ └── _cards.dat │ │ │ ├── HTR │ │ │ │ └── _cards.dat │ │ │ ├── HTR17 │ │ │ │ └── _cards.dat │ │ │ ├── HTR18 │ │ │ │ └── _cards.dat │ │ │ ├── HTR19 │ │ │ │ └── _cards.dat │ │ │ ├── HVM │ │ │ │ └── _cards.dat │ │ │ ├── ICE │ │ │ │ └── _cards.dat │ │ │ ├── IKO │ │ │ │ └── _cards.dat │ │ │ ├── IMA │ │ │ │ └── _cards.dat │ │ │ ├── INR │ │ │ │ └── _cards.dat │ │ │ ├── INV │ │ │ │ └── _cards.dat │ │ │ ├── ISD │ │ │ │ └── _cards.dat │ │ │ ├── IVG │ │ │ │ └── _cards.dat │ │ │ ├── J21 │ │ │ │ └── _cards.dat │ │ │ ├── J22 │ │ │ │ └── _cards.dat │ │ │ ├── J25 │ │ │ │ └── _cards.dat │ │ │ ├── JMP │ │ │ │ └── _cards.dat │ │ │ ├── JOU │ │ │ │ ├── _cards.dat │ │ │ │ └── booster.txt │ │ │ ├── JUD │ │ │ │ └── _cards.dat │ │ │ ├── JVC │ │ │ │ └── _cards.dat │ │ │ ├── JVV │ │ │ │ └── _cards.dat │ │ │ ├── KHC │ │ │ │ └── _cards.dat │ │ │ ├── KHM │ │ │ │ └── _cards.dat │ │ │ ├── KLD │ │ │ │ └── _cards.dat │ │ │ ├── KLR │ │ │ │ └── _cards.dat │ │ │ ├── KTK │ │ │ │ ├── _cards.dat │ │ │ │ └── booster.txt │ │ │ ├── KVD │ │ │ │ └── _cards.dat │ │ │ ├── LCC │ │ │ │ └── _cards.dat │ │ │ ├── LCI │ │ │ │ └── _cards.dat │ │ │ ├── LEA │ │ │ │ └── _cards.dat │ │ │ ├── LEB │ │ │ │ └── _cards.dat │ │ │ ├── LEG │ │ │ │ └── _cards.dat │ │ │ ├── LGN │ │ │ │ └── _cards.dat │ │ │ ├── LRW │ │ │ │ └── _cards.dat │ │ │ ├── LTC │ │ │ │ └── _cards.dat │ │ │ ├── LTR │ │ │ │ └── _cards.dat │ │ │ ├── M10 │ │ │ │ └── _cards.dat │ │ │ ├── M11 │ │ │ │ └── _cards.dat │ │ │ ├── M12 │ │ │ │ └── _cards.dat │ │ │ ├── M13 │ │ │ │ └── _cards.dat │ │ │ ├── M14 │ │ │ │ └── _cards.dat │ │ │ ├── M15 │ │ │ │ └── _cards.dat │ │ │ ├── M19 │ │ │ │ └── _cards.dat │ │ │ ├── M20 │ │ │ │ └── _cards.dat │ │ │ ├── M21 │ │ │ │ └── _cards.dat │ │ │ ├── M3C │ │ │ │ └── _cards.dat │ │ │ ├── MAT │ │ │ │ └── _cards.dat │ │ │ ├── MB1 │ │ │ │ └── _cards.dat │ │ │ ├── MBS │ │ │ │ └── _cards.dat │ │ │ ├── MD1 │ │ │ │ └── _cards.dat │ │ │ ├── ME1 │ │ │ │ └── _cards.dat │ │ │ ├── ME2 │ │ │ │ └── _cards.dat │ │ │ ├── ME3 │ │ │ │ └── _cards.dat │ │ │ ├── ME4 │ │ │ │ └── _cards.dat │ │ │ ├── MED │ │ │ │ └── _cards.dat │ │ │ ├── MH1 │ │ │ │ └── _cards.dat │ │ │ ├── MH2 │ │ │ │ └── _cards.dat │ │ │ ├── MH3 │ │ │ │ └── _cards.dat │ │ │ ├── MIC │ │ │ │ └── _cards.dat │ │ │ ├── MID │ │ │ │ └── _cards.dat │ │ │ ├── MIR │ │ │ │ └── _cards.dat │ │ │ ├── MKC │ │ │ │ └── _cards.dat │ │ │ ├── MKM │ │ │ │ └── _cards.dat │ │ │ ├── MM2 │ │ │ │ └── _cards.dat │ │ │ ├── MM3 │ │ │ │ └── _cards.dat │ │ │ ├── MMA │ │ │ │ └── _cards.dat │ │ │ ├── MOC │ │ │ │ └── _cards.dat │ │ │ ├── MOM │ │ │ │ └── _cards.dat │ │ │ ├── MOR │ │ │ │ └── _cards.dat │ │ │ ├── MP2 │ │ │ │ └── _cards.dat │ │ │ ├── MPS │ │ │ │ └── _cards.dat │ │ │ ├── MRD │ │ │ │ └── _cards.dat │ │ │ ├── MRQ │ │ │ │ └── _cards.dat │ │ │ ├── MUL │ │ │ │ └── _cards.dat │ │ │ ├── NCC │ │ │ │ └── _cards.dat │ │ │ ├── NEC │ │ │ │ └── _cards.dat │ │ │ ├── NEO │ │ │ │ └── _cards.dat │ │ │ ├── NMS │ │ │ │ └── _cards.dat │ │ │ ├── NPH │ │ │ │ └── _cards.dat │ │ │ ├── ODY │ │ │ │ └── _cards.dat │ │ │ ├── OGW │ │ │ │ └── _cards.dat │ │ │ ├── ONC │ │ │ │ └── _cards.dat │ │ │ ├── ONE │ │ │ │ └── _cards.dat │ │ │ ├── ONS │ │ │ │ └── _cards.dat │ │ │ ├── ORI │ │ │ │ └── _cards.dat │ │ │ ├── OTC │ │ │ │ └── _cards.dat │ │ │ ├── OTJ │ │ │ │ └── _cards.dat │ │ │ ├── OTP │ │ │ │ └── _cards.dat │ │ │ ├── P02 │ │ │ │ └── _cards.dat │ │ │ ├── PAL00 │ │ │ │ └── _cards.dat │ │ │ ├── PAL01 │ │ │ │ └── _cards.dat │ │ │ ├── PAL02 │ │ │ │ └── _cards.dat │ │ │ ├── PAL03 │ │ │ │ └── _cards.dat │ │ │ ├── PAL04 │ │ │ │ └── _cards.dat │ │ │ ├── PAL05 │ │ │ │ └── _cards.dat │ │ │ ├── PAL06 │ │ │ │ └── _cards.dat │ │ │ ├── PAL99 │ │ │ │ └── _cards.dat │ │ │ ├── PARL │ │ │ │ └── _cards.dat │ │ │ ├── PC2 │ │ │ │ └── _cards.dat │ │ │ ├── PCA │ │ │ │ └── _cards.dat │ │ │ ├── PCY │ │ │ │ └── _cards.dat │ │ │ ├── PD2 │ │ │ │ └── _cards.dat │ │ │ ├── PD3 │ │ │ │ └── _cards.dat │ │ │ ├── PDP10 │ │ │ │ └── _cards.dat │ │ │ ├── PDP11 │ │ │ │ └── _cards.dat │ │ │ ├── PDP12 │ │ │ │ └── _cards.dat │ │ │ ├── PDP13 │ │ │ │ └── _cards.dat │ │ │ ├── PDP14 │ │ │ │ └── _cards.dat │ │ │ ├── PDS │ │ │ │ └── _cards.dat │ │ │ ├── PGRU │ │ │ │ └── _cards.dat │ │ │ ├── PHPR │ │ │ │ └── _cards.dat │ │ │ ├── PI13 │ │ │ │ └── _cards.dat │ │ │ ├── PI14 │ │ │ │ └── _cards.dat │ │ │ ├── PIDW │ │ │ │ └── _cards.dat │ │ │ ├── PLC │ │ │ │ └── _cards.dat │ │ │ ├── PLG21 │ │ │ │ └── _cards.dat │ │ │ ├── PLIST │ │ │ │ └── _cards.dat │ │ │ ├── PLS │ │ │ │ └── _cards.dat │ │ │ ├── PMPS │ │ │ │ └── _cards.dat │ │ │ ├── PMPS06 │ │ │ │ └── _cards.dat │ │ │ ├── PMPS07 │ │ │ │ └── _cards.dat │ │ │ ├── PMPS08 │ │ │ │ └── _cards.dat │ │ │ ├── PMPS09 │ │ │ │ └── _cards.dat │ │ │ ├── PMPS10 │ │ │ │ └── _cards.dat │ │ │ ├── PMPS11 │ │ │ │ └── _cards.dat │ │ │ ├── POR │ │ │ │ └── _cards.dat │ │ │ ├── PRM │ │ │ │ └── _cards.dat │ │ │ ├── PS11 │ │ │ │ └── _cards.dat │ │ │ ├── PSAL │ │ │ │ └── _cards.dat │ │ │ ├── PTK │ │ │ │ └── _cards.dat │ │ │ ├── PUMA │ │ │ │ └── _cards.dat │ │ │ ├── PVC │ │ │ │ └── _cards.dat │ │ │ ├── PZ1 │ │ │ │ └── _cards.dat │ │ │ ├── PZ2 │ │ │ │ └── _cards.dat │ │ │ ├── Q06 │ │ │ │ └── _cards.dat │ │ │ ├── RAV │ │ │ │ └── _cards.dat │ │ │ ├── REX │ │ │ │ └── _cards.dat │ │ │ ├── RIX │ │ │ │ └── _cards.dat │ │ │ ├── RNA │ │ │ │ └── _cards.dat │ │ │ ├── ROE │ │ │ │ └── _cards.dat │ │ │ ├── RTR │ │ │ │ └── _cards.dat │ │ │ ├── RV │ │ │ │ └── _cards.dat │ │ │ ├── RVR │ │ │ │ └── _cards.dat │ │ │ ├── S00 │ │ │ │ └── _cards.dat │ │ │ ├── S99 │ │ │ │ └── _cards.dat │ │ │ ├── SCG │ │ │ │ └── _cards.dat │ │ │ ├── SHM │ │ │ │ └── _cards.dat │ │ │ ├── SIR │ │ │ │ └── _cards.dat │ │ │ ├── SIS │ │ │ │ └── _cards.dat │ │ │ ├── SLD │ │ │ │ └── _cards.dat │ │ │ ├── SNC │ │ │ │ └── _cards.dat │ │ │ ├── SOI │ │ │ │ └── _cards.dat │ │ │ ├── SOK │ │ │ │ └── _cards.dat │ │ │ ├── SOM │ │ │ │ └── _cards.dat │ │ │ ├── SPG │ │ │ │ └── _cards.dat │ │ │ ├── SS1 │ │ │ │ └── _cards.dat │ │ │ ├── SS2 │ │ │ │ └── _cards.dat │ │ │ ├── SS3 │ │ │ │ └── _cards.dat │ │ │ ├── STA │ │ │ │ └── _cards.dat │ │ │ ├── STH │ │ │ │ └── _cards.dat │ │ │ ├── STX │ │ │ │ └── _cards.dat │ │ │ ├── SVT │ │ │ │ └── _cards.dat │ │ │ ├── TD0 │ │ │ │ └── _cards.dat │ │ │ ├── TD2 │ │ │ │ └── _cards.dat │ │ │ ├── TDC │ │ │ │ └── _cards.dat │ │ │ ├── TDM │ │ │ │ └── _cards.dat │ │ │ ├── THB │ │ │ │ └── _cards.dat │ │ │ ├── THS │ │ │ │ └── _cards.dat │ │ │ ├── TMP │ │ │ │ └── _cards.dat │ │ │ ├── TOR │ │ │ │ └── _cards.dat │ │ │ ├── TPR │ │ │ │ └── _cards.dat │ │ │ ├── TSB │ │ │ │ └── _cards.dat │ │ │ ├── TSP │ │ │ │ ├── _cards.dat │ │ │ │ └── booster.txt │ │ │ ├── TSR │ │ │ │ └── _cards.dat │ │ │ ├── UDS │ │ │ │ └── _cards.dat │ │ │ ├── UGIN │ │ │ │ └── _cards.dat │ │ │ ├── UGL │ │ │ │ └── _cards.dat │ │ │ ├── ULG │ │ │ │ └── _cards.dat │ │ │ ├── UMA │ │ │ │ └── _cards.dat │ │ │ ├── UND │ │ │ │ └── _cards.dat │ │ │ ├── UNH │ │ │ │ └── _cards.dat │ │ │ ├── USG │ │ │ │ └── _cards.dat │ │ │ ├── UST │ │ │ │ └── _cards.dat │ │ │ ├── V12 │ │ │ │ └── _cards.dat │ │ │ ├── V13 │ │ │ │ └── _cards.dat │ │ │ ├── V14 │ │ │ │ └── _cards.dat │ │ │ ├── V15 │ │ │ │ └── _cards.dat │ │ │ ├── V16 │ │ │ │ └── _cards.dat │ │ │ ├── V17 │ │ │ │ └── _cards.dat │ │ │ ├── VIS │ │ │ │ └── _cards.dat │ │ │ ├── VMA │ │ │ │ └── _cards.dat │ │ │ ├── VOC │ │ │ │ └── _cards.dat │ │ │ ├── VOW │ │ │ │ └── _cards.dat │ │ │ ├── VVK │ │ │ │ └── _cards.dat │ │ │ ├── W16 │ │ │ │ └── _cards.dat │ │ │ ├── W17 │ │ │ │ └── _cards.dat │ │ │ ├── WAR │ │ │ │ └── _cards.dat │ │ │ ├── WOC │ │ │ │ └── _cards.dat │ │ │ ├── WOE │ │ │ │ └── _cards.dat │ │ │ ├── WOT │ │ │ │ └── _cards.dat │ │ │ ├── WTH │ │ │ │ └── _cards.dat │ │ │ ├── WWK │ │ │ │ └── _cards.dat │ │ │ ├── XLN │ │ │ │ └── _cards.dat │ │ │ ├── YMID │ │ │ │ └── _cards.dat │ │ │ ├── ZEN │ │ │ │ └── _cards.dat │ │ │ ├── ZNC │ │ │ │ └── _cards.dat │ │ │ ├── ZNE │ │ │ │ └── _cards.dat │ │ │ ├── ZNR │ │ │ │ └── _cards.dat │ │ │ ├── ZVE │ │ │ │ └── _cards.dat │ │ │ ├── artifact.jpg │ │ │ ├── artifact_thumb.jpg │ │ │ ├── back.jpg │ │ │ ├── back_thumb.jpg │ │ │ ├── black.jpg │ │ │ ├── black_thumb.jpg │ │ │ ├── blue.jpg │ │ │ ├── blue_thumb.jpg │ │ │ ├── gold.jpg │ │ │ ├── gold_thumb.jpg │ │ │ ├── green.jpg │ │ │ ├── green_thumb.jpg │ │ │ ├── land.jpg │ │ │ ├── land_thumb.jpg │ │ │ ├── morph.jpg │ │ │ ├── primitives │ │ │ │ ├── _macros.txt │ │ │ │ ├── borderline.txt │ │ │ │ ├── mtg.txt │ │ │ │ ├── planeswalkers.txt │ │ │ │ └── unsupported.txt │ │ │ ├── red.jpg │ │ │ ├── red_thumb.jpg │ │ │ ├── scheme_todo.dat │ │ │ ├── white.jpg │ │ │ └── white_thumb.jpg │ │ ├── settings │ │ │ └── options.orig.txt │ │ ├── sound │ │ │ ├── README.txt │ │ │ ├── Track0.mp3 │ │ │ ├── Track1.mp3 │ │ │ ├── ai_baka_music.mp3 │ │ │ └── sfx │ │ │ │ ├── README.txt │ │ │ │ ├── artifact.wav │ │ │ │ ├── bear.wav │ │ │ │ ├── beast.wav │ │ │ │ ├── bonus.wav │ │ │ │ ├── cat.wav │ │ │ │ ├── chain.wav │ │ │ │ ├── creature.wav │ │ │ │ ├── dragon.wav │ │ │ │ ├── enchantment.wav │ │ │ │ ├── faerie.wav │ │ │ │ ├── flying.wav │ │ │ │ ├── goblin.wav │ │ │ │ ├── graveyard.wav │ │ │ │ ├── human.wav │ │ │ │ ├── imp.wav │ │ │ │ ├── instant.wav │ │ │ │ ├── knight.wav │ │ │ │ ├── mana.wav │ │ │ │ ├── sorcery.wav │ │ │ │ ├── troll.wav │ │ │ │ ├── tutorial.wav │ │ │ │ ├── vampire.wav │ │ │ │ ├── wurm.wav │ │ │ │ └── zombie.wav │ │ ├── test │ │ │ ├── Alluring_Scent.txt │ │ │ ├── Amugaba.txt │ │ │ ├── Angel_of_Vitality.txt │ │ │ ├── Angel_of_Vitality_2.txt │ │ │ ├── Angel_of_Vitality_3.txt │ │ │ ├── Apex_Hawks_MULTIKICKER.txt │ │ │ ├── Armillary_Sphere.txt │ │ │ ├── Armillary_Sphere2.txt │ │ │ ├── Auriok_Sunchaser_ASLONGAS_1.txt │ │ │ ├── Auriok_Sunchaser_ASLONGAS_2.txt │ │ │ ├── Auriok_Sunchaser_ASLONGAS_BUG.txt │ │ │ ├── Blink.txt │ │ │ ├── Blink_and_X_counters.txt │ │ │ ├── CDA#1.txt │ │ │ ├── CDA#2.txt │ │ │ ├── Call_to_Heel_1.txt │ │ │ ├── Call_to_Heel_2.txt │ │ │ ├── Charge_Across_the_Araba.txt │ │ │ ├── Contagion_Clasp.txt │ │ │ ├── Covetous_Dragon_ASLONGAS_3.txt │ │ │ ├── Covetous_Dragon_ASLONGAS_4.txt │ │ │ ├── Distorting_Wake.txt │ │ │ ├── Distorting_Wake2.txt │ │ │ ├── Doran.txt │ │ │ ├── Emperor Crocodile aslongas while tag 2.txt │ │ │ ├── Emperor Crocodile aslongas while tag.txt │ │ │ ├── ExchangeController.txt │ │ │ ├── Faceless_Butcher.txt │ │ │ ├── Frogmite.txt │ │ │ ├── Glimmervoid-ASLONGAS 2.txt │ │ │ ├── Glimmervoid.txt │ │ │ ├── Glimmervoid_ASLONGAS&TRIGGER.txt │ │ │ ├── Gravebane_Zombie.txt │ │ │ ├── Keeper_of_the_Beasts.txt │ │ │ ├── Keeper_of_the_Beasts2.txt │ │ │ ├── Kor_Spiritdancer.txt │ │ │ ├── Lethargy_Trap.txt │ │ │ ├── Lethargy_Trap2.txt │ │ │ ├── Living_Death.txt │ │ │ ├── Mimics#1.txt │ │ │ ├── Mimics#2.txt │ │ │ ├── Morph#1.txt │ │ │ ├── Morph#2.txt │ │ │ ├── Morph#3.txt │ │ │ ├── Morph#4.txt │ │ │ ├── Morph#5.txt │ │ │ ├── Mortician_Beetle.txt │ │ │ ├── Multicolor.txt │ │ │ ├── Nevinyrrals_Disk.txt │ │ │ ├── Nevinyrrals_Disk2.txt │ │ │ ├── Nim_Devourer.txt │ │ │ ├── Nyxathid.txt │ │ │ ├── Oak_Street_Innkeeper.txt │ │ │ ├── OneDozenEyes.txt │ │ │ ├── Oracle_of_Nectars.txt │ │ │ ├── Oriss_Samite_Guardian.txt │ │ │ ├── PTInstant.txt │ │ │ ├── PT_M15_errata.txt │ │ │ ├── PT_M15_errata2.txt │ │ │ ├── PTswitch.txt │ │ │ ├── Pain_Magnification.txt │ │ │ ├── Quillspike.txt │ │ │ ├── Rack_and_Ruin.txt │ │ │ ├── Rack_and_Ruin2.txt │ │ │ ├── Raka_Sanctuary.txt │ │ │ ├── Raka_Sanctuary2.txt │ │ │ ├── Raka_Sanctuary3.txt │ │ │ ├── Rending_Vines.txt │ │ │ ├── Rending_Vines2.txt │ │ │ ├── Replenish.txt │ │ │ ├── SPIRITLINK_keyword#1.txt │ │ │ ├── SPIRITLINK_keyword#2.txt │ │ │ ├── SPIRITLINK_keyword#3.txt │ │ │ ├── Savra_Queen_of_the_Golgari.txt │ │ │ ├── Shifting_Sliver_i936.txt │ │ │ ├── Show_and_Tell.txt │ │ │ ├── Sphere_of_Resistance.txt │ │ │ ├── Taunting_Elf.txt │ │ │ ├── Timely_Reinforcements.txt │ │ │ ├── TirelessGraf.txt │ │ │ ├── TirelessTracker.txt │ │ │ ├── Winds_of_Rath.txt │ │ │ ├── Zombie_Infestation.txt │ │ │ ├── [at]Vampired#1.txt │ │ │ ├── _tests.txt │ │ │ ├── abyssal_hunter_POWERSTRIKE.txt │ │ │ ├── abyssal_nocturnus.txt │ │ │ ├── academy_rector.txt │ │ │ ├── accelerated_mutation.txt │ │ │ ├── act_of_treason.txt │ │ │ ├── adarkar_valkyrie.txt │ │ │ ├── aegis_of_the_meek.txt │ │ │ ├── aether_flash.txt │ │ │ ├── aether_mutation.txt │ │ │ ├── afflict.txt │ │ │ ├── ageless_entity.txt │ │ │ ├── ai │ │ │ │ ├── goblin_artillery.txt │ │ │ │ └── proliferate_simple.txt │ │ │ ├── akron_legionnaire.txt │ │ │ ├── alabaster_dragon.txt │ │ │ ├── alabaster_leech.txt │ │ │ ├── alabaster_leech2.txt │ │ │ ├── alluring_siren.txt │ │ │ ├── anarchy.txt │ │ │ ├── ancestors_chosen.txt │ │ │ ├── ancient_ooze.txt │ │ │ ├── angelic_chorus_TOUGHNESSLIFEGAIN.txt │ │ │ ├── angry_mob1.txt │ │ │ ├── angry_mob2.txt │ │ │ ├── angry_mob3.txt │ │ │ ├── angry_mob4.txt │ │ │ ├── angry_mob4b.txt │ │ │ ├── angry_mob5.txt │ │ │ ├── angry_mob7.txt │ │ │ ├── animal_boneyard.txt │ │ │ ├── animate_artifact.txt │ │ │ ├── animate_artifact2.txt │ │ │ ├── animate_dead.txt │ │ │ ├── animate_dead2.txt │ │ │ ├── animate_dead3.txt │ │ │ ├── animated_legendaries1_i221.txt │ │ │ ├── ankh_of_mishra.txt │ │ │ ├── arcanis_the_omnipotent.txt │ │ │ ├── arcanis_the_omnipotent2.txt │ │ │ ├── arcbound.txt │ │ │ ├── ardakar_wastes.txt │ │ │ ├── ardent_soldier.txt │ │ │ ├── argothian_enchantress.txt │ │ │ ├── armadillo_cloak.txt │ │ │ ├── ascendant_evincar.txt │ │ │ ├── ascendant_evincar2.txt │ │ │ ├── ascendant_evincar3.txt │ │ │ ├── ashen_firebeast.txt │ │ │ ├── ashen_firebeast2.txt │ │ │ ├── aura_mutation.txt │ │ │ ├── auriok_bladewarden_POWERPUMPBOTH.txt │ │ │ ├── avarice_totem.txt │ │ │ ├── avatar_of_woe1.txt │ │ │ ├── avatar_of_woe2.txt │ │ │ ├── aven_riftwatcher.txt │ │ │ ├── aven_riftwatcher2.txt │ │ │ ├── aysen_bureaucrats.txt │ │ │ ├── balduvian_conjurer.txt │ │ │ ├── baneslayer_angel.txt │ │ │ ├── baneslayer_angel2.txt │ │ │ ├── barbed_shocker.txt │ │ │ ├── barbed_sliver.txt │ │ │ ├── basal_sliver.txt │ │ │ ├── beacon_of_creation.txt │ │ │ ├── beacon_of_destruction.txt │ │ │ ├── beacon_of_unrest.txt │ │ │ ├── behemoth_sledge.txt │ │ │ ├── behemoth_sledge2.txt │ │ │ ├── behemoth_sledge3.txt │ │ │ ├── behemoth_sledge4.txt │ │ │ ├── behemoth_sledge5.txt │ │ │ ├── belligerent_hatchling.txt │ │ │ ├── benalish_knight.txt │ │ │ ├── berserk1.txt │ │ │ ├── berserk2.txt │ │ │ ├── biorhythm.txt │ │ │ ├── black_market.txt │ │ │ ├── black_vise.txt │ │ │ ├── blade_ofthe_bloodchief.txt │ │ │ ├── blessed_wind.txt │ │ │ ├── blessed_wine.txt │ │ │ ├── blinking_spirit.txt │ │ │ ├── blinkmoth_nexus.txt │ │ │ ├── bloated_toad1.txt │ │ │ ├── bloated_toad2.txt │ │ │ ├── bloodbond_march.txt │ │ │ ├── bloodfire_colossus.txt │ │ │ ├── bloodhall_ooze.txt │ │ │ ├── bloodscale_prowler.txt │ │ │ ├── body_double.txt │ │ │ ├── boggart_arsonists.txt │ │ │ ├── borderland_behemoth.txt │ │ │ ├── bottle_gnomes.txt │ │ │ ├── bottle_gnomes2.txt │ │ │ ├── brainstorm.txt │ │ │ ├── bramblewood_paragon.txt │ │ │ ├── brass_man.txt │ │ │ ├── brass_man_i161.txt │ │ │ ├── briarhorn.txt │ │ │ ├── bringer_of_the_red_dawn.txt │ │ │ ├── bugs │ │ │ │ ├── ability_stacking_i175.txt │ │ │ │ ├── angry_mob6_i240.txt │ │ │ │ ├── blocking_modifiers_i160.txt │ │ │ │ ├── drain_life_nonblack_i164.txt │ │ │ │ ├── fallowsage_ailoop_i227.txt │ │ │ │ ├── fallowsage_i227.txt │ │ │ │ └── miraculous_recovery_i306.txt │ │ │ ├── buyback.txt │ │ │ ├── cage_of_hands.txt │ │ │ ├── castle.txt │ │ │ ├── cathodion.txt │ │ │ ├── celestial_mantle.txt │ │ │ ├── celestial_purge.txt │ │ │ ├── celestial_sword.txt │ │ │ ├── chainbreaker.txt │ │ │ ├── circle_of_protection.txt │ │ │ ├── circle_of_protection_i211.txt │ │ │ ├── civic_wayfinder.txt │ │ │ ├── clone.txt │ │ │ ├── clone2.txt │ │ │ ├── clone3.txt │ │ │ ├── clone4.txt │ │ │ ├── cockatrice.txt │ │ │ ├── cockatrice_i228.txt │ │ │ ├── colossus_of_sardia1.txt │ │ │ ├── colossus_of_sardia2.txt │ │ │ ├── composite_golem.txt │ │ │ ├── conservator.txt │ │ │ ├── consign_to_dream.txt │ │ │ ├── control_magic.txt │ │ │ ├── control_magic2.txt │ │ │ ├── control_magic3.txt │ │ │ ├── control_magic4.txt │ │ │ ├── corrupt.txt │ │ │ ├── counsel_of_the_soratami.txt │ │ │ ├── counter_unless_pay_x.txt │ │ │ ├── countershroud.txt │ │ │ ├── counterspell.txt │ │ │ ├── counterspell2.txt │ │ │ ├── counterspell3.txt │ │ │ ├── counterspell4.txt │ │ │ ├── cranial_plating.txt │ │ │ ├── creature_bond.txt │ │ │ ├── crimson_kobolds.txt │ │ │ ├── crosis_s_catacombs_1.txt │ │ │ ├── crosis_s_catacombs_2.txt │ │ │ ├── crucible_of_worlds.txt │ │ │ ├── crumble.txt │ │ │ ├── crystal_rod_i172.txt │ │ │ ├── curiosity1_i217.txt │ │ │ ├── curiosity2_i217.txt │ │ │ ├── cursed_land1_i188.txt │ │ │ ├── cursed_land3_i188.txt │ │ │ ├── cursed_land4_i188.txt │ │ │ ├── dark_banishing.txt │ │ │ ├── dauntless_escort.txt │ │ │ ├── dauthi_embrace.txt │ │ │ ├── dawn_of_the_dead.txt │ │ │ ├── deadshot.txt │ │ │ ├── death_grasp.txt │ │ │ ├── death_ward.txt │ │ │ ├── decree_of_justice.txt │ │ │ ├── defense_of_the_heart.txt │ │ │ ├── deja_vu.txt │ │ │ ├── delusions_of_mediocrity.txt │ │ │ ├── dematerialize_flashback.txt │ │ │ ├── dingus_egg.txt │ │ │ ├── dingus_staff_i153.txt │ │ │ ├── divergent_growth.txt │ │ │ ├── doomed_necromancer.txt │ │ │ ├── double_strike2_i145.txt │ │ │ ├── double_strike_i145.txt │ │ │ ├── double_strike_vs_regen_i563.txt │ │ │ ├── dragon_broodmother_i491.txt │ │ │ ├── dragon_fodder.txt │ │ │ ├── dragon_fodder2.txt │ │ │ ├── dragon_whelp_i154.txt │ │ │ ├── drain_life.txt │ │ │ ├── dream_fracture_i142.txt │ │ │ ├── dregscape_zombie_unearth.txt │ │ │ ├── drift_of_the_dead.txt │ │ │ ├── dromad_purebred.txt │ │ │ ├── dross_golem.txt │ │ │ ├── dross_harvester.txt │ │ │ ├── duskwalker.txt │ │ │ ├── dust_corona.txt │ │ │ ├── dwarven_warriors.txt │ │ │ ├── ebony_horse.txt │ │ │ ├── ekundu_cyclops1_i218.txt │ │ │ ├── ekundu_cyclops2_i218.txt │ │ │ ├── elvish_piper.txt │ │ │ ├── elvish_promenade.txt │ │ │ ├── emblem_of_the_warmind.txt │ │ │ ├── enchanted evening.txt │ │ │ ├── enchantress_s_presence.txt │ │ │ ├── endrek_sahr.txt │ │ │ ├── enervate.txt │ │ │ ├── erg_raiders_i157.txt │ │ │ ├── evil_presence.txt │ │ │ ├── evil_presence2.txt │ │ │ ├── evil_presence3.txt │ │ │ ├── evil_presence_i647.txt │ │ │ ├── evil_presence_i647_2.txt │ │ │ ├── exaltedsourcekilled.txt │ │ │ ├── executioners_swing.txt │ │ │ ├── executioners_swing2.txt │ │ │ ├── executioners_swing3.txt │ │ │ ├── explore.txt │ │ │ ├── exquisite_blood_i953.txt │ │ │ ├── fading.txt │ │ │ ├── fangren_pathcutter.txt │ │ │ ├── farhaven_elf.txt │ │ │ ├── farmstead.txt │ │ │ ├── fastbond.txt │ │ │ ├── fastbond2.txt │ │ │ ├── fatal_frenzy.txt │ │ │ ├── fault_line.txt │ │ │ ├── feral_hydra.txt │ │ │ ├── fieldmist_borderpost.txt │ │ │ ├── fire_tempest.txt │ │ │ ├── fireball_i583.txt │ │ │ ├── firebreathing.txt │ │ │ ├── fists_of_ironwood.txt │ │ │ ├── fizzleto_exile.txt │ │ │ ├── fizzleto_hand.txt │ │ │ ├── fizzleto_librarytop.txt │ │ │ ├── flagstones.txt │ │ │ ├── flame_fusillade_i265.txt │ │ │ ├── flare.txt │ │ │ ├── fledgling_imp.txt │ │ │ ├── fledgling_imp2.txt │ │ │ ├── fleshformer.txt │ │ │ ├── flowstone_hellion.txt │ │ │ ├── flowstone_slide.txt │ │ │ ├── fog.txt │ │ │ ├── fog_bank.txt │ │ │ ├── fog_effect_i286.txt │ │ │ ├── foratog.txt │ │ │ ├── force_of_nature.txt │ │ │ ├── force_of_nature2.txt │ │ │ ├── force_of_nature3.txt │ │ │ ├── force_of_will.txt │ │ │ ├── formidable.txt │ │ │ ├── fountain_of_youth.txt │ │ │ ├── fungus_sliver.txt │ │ │ ├── fury_charm.txt │ │ │ ├── gamble.txt │ │ │ ├── gelatinous_genesis.txt │ │ │ ├── gempalm_avenger.txt │ │ │ ├── generic │ │ │ │ ├── attacks_each_turn.txt │ │ │ │ ├── becomes_transform_i559.txt │ │ │ │ ├── becomes_transform_i559_2.txt │ │ │ │ ├── bushido_1.txt │ │ │ │ ├── bushido_2.txt │ │ │ │ ├── changeling_i501.txt │ │ │ │ ├── cycling.txt │ │ │ │ ├── cycling2.txt │ │ │ │ ├── deathtouch.txt │ │ │ │ ├── devotion.txt │ │ │ │ ├── doesnotuntap.txt │ │ │ │ ├── doesnotuntap2.txt │ │ │ │ ├── double_strike.txt │ │ │ │ ├── equip_landfall_buff.txt │ │ │ │ ├── equip_reach.txt │ │ │ │ ├── equip_shroud.txt │ │ │ │ ├── equip_shroud2.txt │ │ │ │ ├── equip_wither.txt │ │ │ │ ├── equipment_i252.txt │ │ │ │ ├── evolve.txt │ │ │ │ ├── exalted.txt │ │ │ │ ├── exalted_i143.txt │ │ │ │ ├── exalted_i310.txt │ │ │ │ ├── extra_turn.txt │ │ │ │ ├── fear.txt │ │ │ │ ├── fear_i147.txt │ │ │ │ ├── first_and_double_strike1_i187.txt │ │ │ │ ├── first_and_double_strike2_i187.txt │ │ │ │ ├── first_strike.txt │ │ │ │ ├── first_strike2.txt │ │ │ │ ├── first_strike3.txt │ │ │ │ ├── flanking.txt │ │ │ │ ├── fresh.txt │ │ │ │ ├── hybrid_mana.txt │ │ │ │ ├── hybrid_mana_2.txt │ │ │ │ ├── hybrid_mana_3.txt │ │ │ │ ├── indestructible.txt │ │ │ │ ├── indestructible_2_i570.txt │ │ │ │ ├── kicker.txt │ │ │ │ ├── kicker2.txt │ │ │ │ ├── lands_max_per_turn.txt │ │ │ │ ├── landwalk.txt │ │ │ │ ├── legendary.txt │ │ │ │ ├── level_up.txt │ │ │ │ ├── level_up2.txt │ │ │ │ ├── lifelink.txt │ │ │ │ ├── lord_counter.txt │ │ │ │ ├── lord_counter_any.txt │ │ │ │ ├── m10_blockers.txt │ │ │ │ ├── m10_blockers2.txt │ │ │ │ ├── must1.txt │ │ │ │ ├── must2.txt │ │ │ │ ├── nofizzle.txt │ │ │ │ ├── oneblocker.txt │ │ │ │ ├── persist.txt │ │ │ │ ├── persist2.txt │ │ │ │ ├── persist3.txt │ │ │ │ ├── phases.txt │ │ │ │ ├── preventalldamage.txt │ │ │ │ ├── rampage.txt │ │ │ │ ├── rampage2.txt │ │ │ │ ├── rampage3.txt │ │ │ │ ├── rampage_vs_first_strike.txt │ │ │ │ ├── regenerate.txt │ │ │ │ ├── regenerate_wither_i146.txt │ │ │ │ ├── sacrifice.txt │ │ │ │ ├── skip_turn.txt │ │ │ │ ├── summoning_sickness.txt │ │ │ │ ├── sunburst.txt │ │ │ │ ├── tap_other_card_as_cost.txt │ │ │ │ ├── targetController_damage.txt │ │ │ │ ├── targetController_life.txt │ │ │ │ ├── targetController_life2.txt │ │ │ │ ├── thisforeach.txt │ │ │ │ ├── tokens.txt │ │ │ │ ├── tokens2.txt │ │ │ │ ├── trample.txt │ │ │ │ ├── trample_vs_indestructible.txt │ │ │ │ ├── trample_vs_multiblock.txt │ │ │ │ ├── trigger_attacking.txt │ │ │ │ ├── trigger_blocked.txt │ │ │ │ ├── trigger_blocking.txt │ │ │ │ ├── trigger_combatdamaged_1.txt │ │ │ │ ├── trigger_combatdamaged_2.txt │ │ │ │ ├── trigger_drawn.txt │ │ │ │ ├── trigger_noncombatdamaged.txt │ │ │ │ ├── trigger_untapped.txt │ │ │ │ ├── triggers_at_movedto_i179.txt │ │ │ │ └── wither.txt │ │ │ ├── ghost_warden.txt │ │ │ ├── giant_growth.txt │ │ │ ├── giant_growth2.txt │ │ │ ├── glen_elendra_archmage_i222.txt │ │ │ ├── glimpse_the_unthinkable.txt │ │ │ ├── gnarled_effigy.txt │ │ │ ├── gnat_alley_creeper1.txt │ │ │ ├── gnat_alley_creeper2.txt │ │ │ ├── goblin_balloon_brigade.txt │ │ │ ├── goblin_balloon_brigade2.txt │ │ │ ├── goblin_gardener.txt │ │ │ ├── goblin_king.txt │ │ │ ├── goblin_lackey1.txt │ │ │ ├── goblin_lackey2.txt │ │ │ ├── goblin_lackey3.txt │ │ │ ├── goblin_lackey4.txt │ │ │ ├── goblin_offensive.txt │ │ │ ├── goblin_razerunners.txt │ │ │ ├── golgari_germination_i153.txt │ │ │ ├── gravedigger.txt │ │ │ ├── gravity_well.txt │ │ │ ├── gravity_well2.txt │ │ │ ├── great_defender.txt │ │ │ ├── griselbrand.txt │ │ │ ├── guild_keyword.txt │ │ │ ├── hannas_custody.txt │ │ │ ├── harpoon_sniper.txt │ │ │ ├── haunting_echoes.txt │ │ │ ├── hellfire.txt │ │ │ ├── helm_of_kaldra1.txt │ │ │ ├── high_tide.txt │ │ │ ├── hollowhenge scavenger2_MORBID.txt │ │ │ ├── hollowhenge scavenger_MORBID.txt │ │ │ ├── holy_day_i226.txt │ │ │ ├── hopping_automaton_i232.txt │ │ │ ├── horned_helm.txt │ │ │ ├── howl_from_beyond.txt │ │ │ ├── howl_of_the_night_pack.txt │ │ │ ├── howling_mine_i614.txt │ │ │ ├── hunted_dragon.txt │ │ │ ├── hunting_grounds.txt │ │ │ ├── hunting_pack.txt │ │ │ ├── hurricane.txt │ │ │ ├── hyalopterous_lemure.txt │ │ │ ├── hymn_of_rebirth.txt │ │ │ ├── hypnotic_specter.txt │ │ │ ├── icatian_priest.txt │ │ │ ├── imaginary_pet.txt │ │ │ ├── immaculate_magistrate.txt │ │ │ ├── impending_disaster.txt │ │ │ ├── incinerate.txt │ │ │ ├── instill_energy_i166.txt │ │ │ ├── invigorate#2.txt │ │ │ ├── invigorate.txt │ │ │ ├── iron_will_i270.txt │ │ │ ├── ironclaw_orcs.txt │ │ │ ├── ivy_elemental.txt │ │ │ ├── jodahs_avenger.txt │ │ │ ├── juggernaut.txt │ │ │ ├── jump.txt │ │ │ ├── juniper_order_ranger.txt │ │ │ ├── kaldra.txt │ │ │ ├── karns_touch_i233.txt │ │ │ ├── keldon_warlord.txt │ │ │ ├── keldon_warlord2.txt │ │ │ ├── khalni_hydra.txt │ │ │ ├── kird_ape.txt │ │ │ ├── kjeldoran_frostbeast1.txt │ │ │ ├── kjeldoran_frostbeast2_i167.txt │ │ │ ├── knight_captain_of_eos_i294.txt │ │ │ ├── knight_captain_of_eos_i294_2.txt │ │ │ ├── knight_of_new_alara.txt │ │ │ ├── kormus_bell_i301.txt │ │ │ ├── kraken_eye.txt │ │ │ ├── kraken_eye2.txt │ │ │ ├── kraken_eye3.txt │ │ │ ├── kraken_eye4.txt │ │ │ ├── krosan_beast.txt │ │ │ ├── krosan_beast2.txt │ │ │ ├── kudzu.txt │ │ │ ├── kudzu2.txt │ │ │ ├── kudzu_i168.txt │ │ │ ├── leveler.txt │ │ │ ├── leyline_of_the_void.txt │ │ │ ├── lhurgoyf.txt │ │ │ ├── liability.txt │ │ │ ├── library_of_alexandria1.txt │ │ │ ├── library_of_alexandria2.txt │ │ │ ├── library_of_alexandria3.txt │ │ │ ├── lifeforce.txt │ │ │ ├── lifeline.txt │ │ │ ├── lifetap.txt │ │ │ ├── lifetap2.txt │ │ │ ├── lightmine_field.txt │ │ │ ├── lightmine_field2.txt │ │ │ ├── living_artifact_i169.txt │ │ │ ├── living_lands.txt │ │ │ ├── livingweapon.txt │ │ │ ├── lord_of_the_pit.txt │ │ │ ├── lord_of_the_pit2.txt │ │ │ ├── magma_spray.txt │ │ │ ├── manabarbs_dual_lands_i562.txt │ │ │ ├── manual │ │ │ │ ├── README.txt │ │ │ │ ├── ai_clone_i209.txt │ │ │ │ ├── ai_fear.txt │ │ │ │ ├── attackers.txt │ │ │ │ ├── control.txt │ │ │ │ ├── control_change_untap_i192.txt │ │ │ │ ├── deathtouch_assign.txt │ │ │ │ ├── fetchland_shuffle_i170.txt │ │ │ │ ├── first_strike.txt │ │ │ │ ├── first_strike2.txt │ │ │ │ ├── howl_from_beyond_ai.txt │ │ │ │ ├── kicker_crash_i149.txt │ │ │ │ ├── knight_reliquary.txt │ │ │ │ ├── legendary_ai.txt │ │ │ │ ├── library.txt │ │ │ │ ├── limitor_i140.txt │ │ │ │ ├── m10_blockers.txt │ │ │ │ ├── order_blockers.txt │ │ │ │ ├── p2_attacks.txt │ │ │ │ ├── serpent_assassin_ai.txt │ │ │ │ ├── slide_i251.txt │ │ │ │ ├── tokens.txt │ │ │ │ └── torture_ai.txt │ │ │ ├── master_decoy.txt │ │ │ ├── master_of_etherium.txt │ │ │ ├── masticore.txt │ │ │ ├── masticore2.txt │ │ │ ├── maze_of_ith.txt │ │ │ ├── meekstone.txt │ │ │ ├── meliras_keepers.txt │ │ │ ├── memnarch.txt │ │ │ ├── memory_erosion.txt │ │ │ ├── mephidross_vampire.txt │ │ │ ├── merfolk_looter.txt │ │ │ ├── merrow_reejerey.txt │ │ │ ├── millstone.txt │ │ │ ├── miraculous_recovery.txt │ │ │ ├── mirri_the_cursed.txt │ │ │ ├── mirri_the_cursed2_i284.txt │ │ │ ├── misc01.txt │ │ │ ├── misty_rainforest_i604.txt │ │ │ ├── moat.txt │ │ │ ├── mobile_fort.txt │ │ │ ├── mogg_flunkies1_i193.txt │ │ │ ├── momir │ │ │ │ ├── keldon_warlord.txt │ │ │ │ ├── overcost.txt │ │ │ │ └── persist_i304.txt │ │ │ ├── mortuary.txt │ │ │ ├── nantuko_husk.txt │ │ │ ├── natural_order.txt │ │ │ ├── necrogenesis.txt │ │ │ ├── nightmare.txt │ │ │ ├── northern_paladin.txt │ │ │ ├── northern_paladin2.txt │ │ │ ├── ondu_cleric.txt │ │ │ ├── orcish_artillery.txt │ │ │ ├── orcish_lumberjack.txt │ │ │ ├── orims_chant2.txt │ │ │ ├── orims_chant_i595.txt │ │ │ ├── overrun.txt │ │ │ ├── ovinize.txt │ │ │ ├── ovinize2.txt │ │ │ ├── paradise_mantle.txt │ │ │ ├── paralysis.txt │ │ │ ├── paralysis2.txt │ │ │ ├── pattern_of_rebirth.txt │ │ │ ├── persuasion.txt │ │ │ ├── phytohydra.txt │ │ │ ├── pillory_of_the_sleepless1_i188.txt │ │ │ ├── pillory_of_the_sleepless2_i188.txt │ │ │ ├── pillory_of_the_sleepless3_i188.txt │ │ │ ├── pillory_of_the_sleepless4_i188.txt │ │ │ ├── plague_rats.txt │ │ │ ├── pledge_protection.txt │ │ │ ├── plumes_of_peace_i260.txt │ │ │ ├── pouncing_jaguar_i425.txt │ │ │ ├── power_armor.txt │ │ │ ├── previousbattlefield.txt │ │ │ ├── primeval_titan_1.txt │ │ │ ├── primeval_titan_2.txt │ │ │ ├── promise_of_bunrei_i305.txt │ │ │ ├── prosperity.txt │ │ │ ├── protomatter_powder.txt │ │ │ ├── prowess_of_the_fair.txt │ │ │ ├── prowess_of_the_fair2.txt │ │ │ ├── prowess_of_the_fair3.txt │ │ │ ├── pygmy_troll.txt │ │ │ ├── pyknite_i426.txt │ │ │ ├── pyroclasm.txt │ │ │ ├── quick_sliver_FORCEDALIVE.txt │ │ │ ├── quilled_sliver.txt │ │ │ ├── rain_of_filth_i206.txt │ │ │ ├── rain_of_filth_i283.txt │ │ │ ├── rainbow_efreet_phase_out.txt │ │ │ ├── rakdos_pit_dragon_i555_1.txt │ │ │ ├── rakdos_pit_dragon_i555_2.txt │ │ │ ├── rakdos_pit_dragon_i555_3.txt │ │ │ ├── rakdos_pit_dragon_i555_4.txt │ │ │ ├── rampant_growth.txt │ │ │ ├── rancid_earth_with_threshold.txt │ │ │ ├── rancid_earth_without_threshold.txt │ │ │ ├── rancor.txt │ │ │ ├── rancor_i749.txt │ │ │ ├── ray_of_command.txt │ │ │ ├── ray_of_command_i176.txt │ │ │ ├── razor_golem.txt │ │ │ ├── razor_hippogriff.txt │ │ │ ├── reclusive_wight.txt │ │ │ ├── reclusive_wight2.txt │ │ │ ├── recover.txt │ │ │ ├── regal_force.txt │ │ │ ├── reinforcements_1.txt │ │ │ ├── resounding_roar.txt │ │ │ ├── restinpeace.txt │ │ │ ├── resurrection.txt │ │ │ ├── resuscitate_i210.txt │ │ │ ├── righteous_cause.txt │ │ │ ├── rise_from_the_grave.txt │ │ │ ├── rockslide_elemental.txt │ │ │ ├── rootwalla.txt │ │ │ ├── royal_assassin.txt │ │ │ ├── sacred_foundry_i275.txt │ │ │ ├── safe passage.txt │ │ │ ├── safehold_duo.txt │ │ │ ├── samite_healer.txt │ │ │ ├── scourge_of_kher_ridges.txt │ │ │ ├── scourge_of_kher_ridges2.txt │ │ │ ├── scourglass.txt │ │ │ ├── scouts_warning.txt │ │ │ ├── scute_mob.txt │ │ │ ├── sedge_sliver.txt │ │ │ ├── seedcradle_witch.txt │ │ │ ├── seismic_assault.txt │ │ │ ├── seismic_spike_i191.txt │ │ │ ├── selesnya_guildmage.txt │ │ │ ├── setpower_settoughness.txt │ │ │ ├── shard_volley.txt │ │ │ ├── shepherd_of_rot.txt │ │ │ ├── shimmer_myr_FORCEDALIVE.txt │ │ │ ├── shivan_hellkite.txt │ │ │ ├── shock.txt │ │ │ ├── shock2.txt │ │ │ ├── siege_gang_commander.txt │ │ │ ├── sigil_captain_i467.txt │ │ │ ├── silence.txt │ │ │ ├── silent_arbiter.txt │ │ │ ├── silver_seraph_i300.txt │ │ │ ├── simic_initiate.txt │ │ │ ├── skullcage0_i239.txt │ │ │ ├── skullcage1_i239.txt │ │ │ ├── skullcage2_i239.txt │ │ │ ├── skullcage3_i239.txt │ │ │ ├── skullcage4_i239.txt │ │ │ ├── skullcage5_i239.txt │ │ │ ├── skullcage6_i239.txt │ │ │ ├── skullcage7_i239.txt │ │ │ ├── skullclamp.txt │ │ │ ├── skullclamp2_i439.txt │ │ │ ├── slate_of_ancestry.txt │ │ │ ├── sleeper_agent.txt │ │ │ ├── slith_bloodletter.txt │ │ │ ├── sneak_attack.txt │ │ │ ├── solfatara.txt │ │ │ ├── soul's grace_POWERLIFEGAIN.txt │ │ │ ├── soulblast.txt │ │ │ ├── souls_attendant_i489.txt │ │ │ ├── spark_elemental.txt │ │ │ ├── spectral_shield_CANTBETARGETOF.txt │ │ │ ├── spell_rupture.txt │ │ │ ├── spell_rupture_2.txt │ │ │ ├── sphinx_summoner.txt │ │ │ ├── spirit_link.txt │ │ │ ├── spirit_link_i173.txt │ │ │ ├── spitting_earth.txt │ │ │ ├── spitting_image.txt │ │ │ ├── spoils_of_evil.txt │ │ │ ├── spore_frog.txt │ │ │ ├── stacking_flanking.txt │ │ │ ├── stasis.txt │ │ │ ├── steelclad_serpent1.txt │ │ │ ├── steelclad_serpent2.txt │ │ │ ├── stillmoon_cavalier.txt │ │ │ ├── stonebrow2.txt │ │ │ ├── stonebrow_i159.txt │ │ │ ├── stronghold_discipline.txt │ │ │ ├── sun_titan_1.txt │ │ │ ├── sun_titan_2.txt │ │ │ ├── sword_to_plowshares.txt │ │ │ ├── sylvan_basilisk_i182.txt │ │ │ ├── sylvan_scrying_i195.txt │ │ │ ├── symbiotic_wurm.txt │ │ │ ├── tangle_golem.txt │ │ │ ├── tanglesap.txt │ │ │ ├── telekinetic_sliver.txt │ │ │ ├── terror.txt │ │ │ ├── terror2.txt │ │ │ ├── thallid.txt │ │ │ ├── the_tabernacle_at_pendrell_vale.txt │ │ │ ├── thelon_of_havenwood.txt │ │ │ ├── thraximundar.txt │ │ │ ├── threaten.txt │ │ │ ├── throne_of_bone.txt │ │ │ ├── thunder-thrash_elder.txt │ │ │ ├── tidal_warrior_i646.txt │ │ │ ├── tidal_warrior_i649.txt │ │ │ ├── tidal_warrior_i652.txt │ │ │ ├── titanic_ultimatum.txt │ │ │ ├── tokenizer.txt │ │ │ ├── tokenizer2.txt │ │ │ ├── torture.txt │ │ │ ├── toymaker.txt │ │ │ ├── tranquil_domain.txt │ │ │ ├── turn_to_slag.txt │ │ │ ├── turn_to_slag2.txt │ │ │ ├── twinstrike.txt │ │ │ ├── twinstrike2.txt │ │ │ ├── twinstrike3.txt │ │ │ ├── twitch.txt │ │ │ ├── uncle_istvan.txt │ │ │ ├── undermine_i408.txt │ │ │ ├── underworld_dreams.txt │ │ │ ├── unearth1.txt │ │ │ ├── unearth2.txt │ │ │ ├── unearth3.txt │ │ │ ├── unstable_mutation.txt │ │ │ ├── unstable_mutation2.txt │ │ │ ├── unwilling_recruit.txt │ │ │ ├── urzas_lands.txt │ │ │ ├── urzas_lands2.txt │ │ │ ├── urzas_mine_i287.txt │ │ │ ├── vampire_bats.txt │ │ │ ├── vampiric_link.txt │ │ │ ├── vanishing.txt │ │ │ ├── vendetta_TOUGHNESSLIFELOSS.txt │ │ │ ├── vesuva_landlimit_i718.txt │ │ │ ├── vine_dryad.txt │ │ │ ├── volcanic_eruption.txt │ │ │ ├── walking_wall.txt │ │ │ ├── wall_of_diffusion.txt │ │ │ ├── wall_of_diffusion2.txt │ │ │ ├── warren_instigator.txt │ │ │ ├── welkin_hawk.txt │ │ │ ├── whispers_of_the_muse.txt │ │ │ ├── white_knight1.txt │ │ │ ├── windswept_heath.txt │ │ │ ├── wontfix │ │ │ │ ├── angel_of_despair.txt │ │ │ │ ├── befoul.txt │ │ │ │ ├── bravado_i190.txt │ │ │ │ ├── disrupting_scepter_i163.txt │ │ │ │ ├── glimpse_of_nature_i186.txt │ │ │ │ ├── hammerfist_giant.txt │ │ │ │ ├── looming_hoverguard.txt │ │ │ │ ├── mind_rot.txt │ │ │ │ ├── ogre_gatecrasher.txt │ │ │ │ ├── psionic_sliver_i207.txt │ │ │ │ ├── spitting_hydra.txt │ │ │ │ └── viridian_shaman.txt │ │ │ ├── wrath_of_god.txt │ │ │ ├── wrath_of_god2.txt │ │ │ ├── wreak_havoc.txt │ │ │ ├── zombie_master.txt │ │ │ └── zombify.txt │ │ └── themes │ │ │ └── readme.txt │ ├── createWindowsZip.py │ ├── fmod.dll │ ├── freetype6.dll │ ├── giflib4.dll │ ├── libpng13.dll │ └── zlib1.dll │ ├── build.number.properties │ ├── build.properties │ ├── build.xml │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ └── rules │ ├── debian_harmattan │ ├── README │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── wagic.conf │ └── wagic.desktop │ ├── doc │ ├── JPEG version of manual.zip │ ├── LICENSE │ ├── README.txt │ ├── Wagic Manual ITA.pdf │ ├── Wagic Manual.pdf │ ├── manual.odt │ └── psplink_tutorial.txt │ ├── extra │ ├── dirent.h │ ├── graphic sources │ │ └── shop_light.png │ └── stdint.h │ ├── iOS │ ├── Makefile │ ├── Reachability │ │ ├── Reachability 2.0.4ddg │ │ │ └── DDG Reachability │ │ │ │ ├── Airport.png │ │ │ │ ├── Classes │ │ │ │ ├── ReachabilityAppDelegate.h │ │ │ │ └── ReachabilityAppDelegate.m │ │ │ │ ├── Default.png │ │ │ │ ├── MainWindow.xib │ │ │ │ ├── Network.png │ │ │ │ ├── Reachability-Info.plist │ │ │ │ ├── Reachability.xcodeproj │ │ │ │ ├── awd.mode1v3 │ │ │ │ ├── awd.pbxuser │ │ │ │ └── project.pbxproj │ │ │ │ ├── Reachability_Prefix.pch │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── WWAN5.png │ │ │ │ ├── icon.png │ │ │ │ ├── main.m │ │ │ │ ├── red.png │ │ │ │ └── stop-32.png │ │ └── Reachability │ │ │ ├── Reachability.h │ │ │ └── Reachability.m │ ├── Res │ │ └── rules │ │ │ └── modrules.xml │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Landscape.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait~ipad.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── EAGLViewController.xib │ │ ├── Info.plist │ │ ├── MainWindow.xib │ │ ├── ResourceRules.plist │ │ └── wagic-64x64.png │ ├── SoundManager │ │ ├── MyOpenALSupport.c │ │ ├── MyOpenALSupport.h │ │ ├── SoundManager.h │ │ ├── SoundManager.m │ │ └── SynthesizeSingleton.h │ ├── UI │ │ ├── WagicDownloadProgressViewController.h │ │ └── WagicDownloadProgressViewController.m │ ├── ZipArchive │ │ ├── ZipArchive.h │ │ └── ZipArchive.mm │ ├── asi-http-request │ │ ├── ASIAuthenticationDialog.h │ │ ├── ASIAuthenticationDialog.m │ │ ├── ASICacheDelegate.h │ │ ├── ASIDataCompressor.h │ │ ├── ASIDataCompressor.m │ │ ├── ASIDataDecompressor.h │ │ ├── ASIDataDecompressor.m │ │ ├── ASIDownloadCache.h │ │ ├── ASIDownloadCache.m │ │ ├── ASIFormDataRequest.h │ │ ├── ASIFormDataRequest.m │ │ ├── ASIHTTPRequest.h │ │ ├── ASIHTTPRequest.m │ │ ├── ASIHTTPRequestConfig.h │ │ ├── ASIHTTPRequestDelegate.h │ │ ├── ASIInputStream.h │ │ ├── ASIInputStream.m │ │ ├── ASINetworkQueue.h │ │ ├── ASINetworkQueue.m │ │ ├── ASIProgressDelegate.h │ │ ├── ASIWebPageRequest │ │ │ ├── ASIWebPageRequest.h │ │ │ └── ASIWebPageRequest.m │ │ ├── CloudFiles │ │ │ ├── ASICloudFilesCDNRequest.h │ │ │ ├── ASICloudFilesCDNRequest.m │ │ │ ├── ASICloudFilesContainer.h │ │ │ ├── ASICloudFilesContainer.m │ │ │ ├── ASICloudFilesContainerRequest.h │ │ │ ├── ASICloudFilesContainerRequest.m │ │ │ ├── ASICloudFilesContainerXMLParserDelegate.h │ │ │ ├── ASICloudFilesContainerXMLParserDelegate.m │ │ │ ├── ASICloudFilesObject.h │ │ │ ├── ASICloudFilesObject.m │ │ │ ├── ASICloudFilesObjectRequest.h │ │ │ ├── ASICloudFilesObjectRequest.m │ │ │ ├── ASICloudFilesRequest.h │ │ │ └── ASICloudFilesRequest.m │ │ ├── S3 │ │ │ ├── ASINSXMLParserCompat.h │ │ │ ├── ASIS3Bucket.h │ │ │ ├── ASIS3Bucket.m │ │ │ ├── ASIS3BucketObject.h │ │ │ ├── ASIS3BucketObject.m │ │ │ ├── ASIS3BucketRequest.h │ │ │ ├── ASIS3BucketRequest.m │ │ │ ├── ASIS3ObjectRequest.h │ │ │ ├── ASIS3ObjectRequest.m │ │ │ ├── ASIS3Request.h │ │ │ ├── ASIS3Request.m │ │ │ ├── ASIS3ServiceRequest.h │ │ │ └── ASIS3ServiceRequest.m │ │ └── Tests │ │ │ ├── ASICloudFilesRequestTests.h │ │ │ ├── ASICloudFilesRequestTests.m │ │ │ ├── ASIDataCompressorTests.h │ │ │ ├── ASIDataCompressorTests.m │ │ │ ├── ASIDownloadCacheTests.h │ │ │ ├── ASIDownloadCacheTests.m │ │ │ ├── ASIFormDataRequestTests.h │ │ │ ├── ASIFormDataRequestTests.m │ │ │ ├── ASIHTTPRequestTests.h │ │ │ ├── ASIHTTPRequestTests.m │ │ │ ├── ASINetworkQueueTests.h │ │ │ ├── ASINetworkQueueTests.m │ │ │ ├── ASIS3RequestTests.h │ │ │ ├── ASIS3RequestTests.m │ │ │ ├── ASITestCase.h │ │ │ ├── ASITestCase.m │ │ │ ├── ASIWebPageRequestTests.h │ │ │ ├── ASIWebPageRequestTests.m │ │ │ ├── BlocksTests.h │ │ │ ├── BlocksTests.m │ │ │ ├── ClientCertificateTests.h │ │ │ ├── ClientCertificateTests.m │ │ │ ├── GHUnitTestMain.m │ │ │ ├── PerformanceTests.h │ │ │ ├── PerformanceTests.m │ │ │ ├── ProxyTests.h │ │ │ ├── ProxyTests.m │ │ │ ├── StressTests.h │ │ │ └── StressTests.m │ └── control │ ├── icon.png │ ├── include │ ├── AIHints.h │ ├── AIMomirPlayer.h │ ├── AIPlayer.h │ ├── AIPlayerBaka.h │ ├── AIPlayerBakaB.h │ ├── AIStats.h │ ├── AbilityParser.h │ ├── ActionElement.h │ ├── ActionLayer.h │ ├── ActionStack.h │ ├── AllAbilities.h │ ├── CacheEngine.h │ ├── CardDescriptor.h │ ├── CardDisplay.h │ ├── CardGui.h │ ├── CardPrimitive.h │ ├── CardSelector.h │ ├── CardSelectorSingleton.h │ ├── CarouselDeckView.h │ ├── Counters.h │ ├── Credits.h │ ├── Damage.h │ ├── DamagerDamaged.h │ ├── DeckDataWrapper.h │ ├── DeckEditorMenu.h │ ├── DeckManager.h │ ├── DeckMenu.h │ ├── DeckMenuItem.h │ ├── DeckMetaData.h │ ├── DeckStats.h │ ├── DeckView.h │ ├── DuelLayers.h │ ├── Easing.h │ ├── ExtraCost.h │ ├── GameApp.h │ ├── GameObserver.h │ ├── GameOptions.h │ ├── GameState.h │ ├── GameStateAwards.h │ ├── GameStateDeckViewer.h │ ├── GameStateDuel.h │ ├── GameStateMenu.h │ ├── GameStateOptions.h │ ├── GameStateShop.h │ ├── GameStateStory.h │ ├── GameStateTransitions.h │ ├── GridDeckView.h │ ├── GuiAvatars.h │ ├── GuiBackground.h │ ├── GuiCardsController.h │ ├── GuiCombat.h │ ├── GuiFrame.h │ ├── GuiHand.h │ ├── GuiLayers.h │ ├── GuiMana.h │ ├── GuiPhaseBar.h │ ├── GuiPlay.h │ ├── GuiStatic.h │ ├── IconButton.h │ ├── InteractiveButton.h │ ├── MTGAbility.h │ ├── MTGCard.h │ ├── MTGCardInstance.h │ ├── MTGDeck.h │ ├── MTGDefinitions.h │ ├── MTGGamePhase.h │ ├── MTGGameZones.h │ ├── MTGPack.h │ ├── MTGRules.h │ ├── ManaCost.h │ ├── ManaCostHybrid.h │ ├── MenuItem.h │ ├── ModRules.h │ ├── Navigator.h │ ├── NetworkPlayer.h │ ├── ObjectAnalytics.h │ ├── OptionItem.h │ ├── PhaseRing.h │ ├── PlayGuiObject.h │ ├── PlayGuiObjectController.h │ ├── PlayRestrictions.h │ ├── Player.h │ ├── PlayerData.h │ ├── Pos.h │ ├── PrecompiledHeader.h │ ├── PriceList.h │ ├── ReplacementEffects.h │ ├── Rules.h │ ├── SimpleButton.h │ ├── SimpleMenu.h │ ├── SimpleMenuItem.h │ ├── SimplePad.h │ ├── SimplePopup.h │ ├── StoryFlow.h │ ├── StyleManager.h │ ├── Subtypes.h │ ├── TargetChooser.h │ ├── Targetable.h │ ├── TargetsList.h │ ├── Tasks.h │ ├── TestSuiteAI.h │ ├── TextScroller.h │ ├── ThisDescriptor.h │ ├── Token.h │ ├── Translate.h │ ├── TranslateKeys.h │ ├── Trash.h │ ├── WCachedResource.h │ ├── WDataSrc.h │ ├── WEvent.h │ ├── WFilter.h │ ├── WFont.h │ ├── WGui.h │ ├── WParsedInt.h │ ├── WResourceManager.h │ ├── WResourceManagerImpl.h │ ├── WResource_Fwd.h │ ├── Wagic_Version.h │ ├── config.h │ └── utils.h │ ├── mk3xx.bat │ ├── mtg.props │ ├── mtg_vs2010.sln │ ├── pic0.png │ ├── pic1.png │ ├── qml │ ├── QmlWagic │ │ ├── ProgressBar.qml │ │ └── main.qml │ └── qmlapplicationviewer │ │ ├── qmlapplicationviewer.cpp │ │ ├── qmlapplicationviewer.h │ │ └── qmlapplicationviewer.pri │ ├── src │ ├── AIHints.cpp │ ├── AIMomirPlayer.cpp │ ├── AIPlayer.cpp │ ├── AIPlayerBaka.cpp │ ├── AIPlayerBakaB.cpp │ ├── AIStats.cpp │ ├── AbilityParser.cpp │ ├── ActionElement.cpp │ ├── ActionLayer.cpp │ ├── ActionStack.cpp │ ├── AllAbilities.cpp │ ├── CardDescriptor.cpp │ ├── CardDisplay.cpp │ ├── CardGui.cpp │ ├── CardPrimitive.cpp │ ├── CardSelector.cpp │ ├── CardSelectorSingleton.cpp │ ├── CarouselDeckView.cpp │ ├── Closest.cpp │ ├── Counters.cpp │ ├── Credits.cpp │ ├── Damage.cpp │ ├── DamagerDamaged.cpp │ ├── DeckDataWrapper.cpp │ ├── DeckEditorMenu.cpp │ ├── DeckManager.cpp │ ├── DeckMenu.cpp │ ├── DeckMenuItem.cpp │ ├── DeckMetaData.cpp │ ├── DeckStats.cpp │ ├── DeckView.cpp │ ├── DuelLayers.cpp │ ├── ExtraCost.cpp │ ├── GameApp.cpp │ ├── GameLauncher.cpp │ ├── GameObserver.cpp │ ├── GameOptions.cpp │ ├── GameState.cpp │ ├── GameStateAwards.cpp │ ├── GameStateDeckViewer.cpp │ ├── GameStateDuel.cpp │ ├── GameStateMenu.cpp │ ├── GameStateOptions.cpp │ ├── GameStateShop.cpp │ ├── GameStateStory.cpp │ ├── GameStateTransitions.cpp │ ├── GridDeckView.cpp │ ├── GuiAvatars.cpp │ ├── GuiBackground.cpp │ ├── GuiCardsController.cpp │ ├── GuiCombat.cpp │ ├── GuiFrame.cpp │ ├── GuiHand.cpp │ ├── GuiLayers.cpp │ ├── GuiMana.cpp │ ├── GuiPhaseBar.cpp │ ├── GuiPlay.cpp │ ├── GuiStatic.cpp │ ├── IconButton.cpp │ ├── InteractiveButton.cpp │ ├── MTGAbility.cpp │ ├── MTGCard.cpp │ ├── MTGCardInstance.cpp │ ├── MTGDeck.cpp │ ├── MTGDefinitions.cpp │ ├── MTGGamePhase.cpp │ ├── MTGGameZones.cpp │ ├── MTGPack.cpp │ ├── MTGRules.cpp │ ├── ManaCost.cpp │ ├── ManaCostHybrid.cpp │ ├── MenuItem.cpp │ ├── ModRules.cpp │ ├── Navigator.cpp │ ├── NetworkPlayer.cpp │ ├── ObjectAnalytics.cpp │ ├── OptionItem.cpp │ ├── PhaseRing.cpp │ ├── PlayGuiObject.cpp │ ├── PlayGuiObjectController.cpp │ ├── PlayRestrictions.cpp │ ├── Player.cpp │ ├── PlayerData.cpp │ ├── Pos.cpp │ ├── PrecompiledHeader.cpp │ ├── PriceList.cpp │ ├── ReplacementEffects.cpp │ ├── Rules.cpp │ ├── SimpleButton.cpp │ ├── SimpleMenu.cpp │ ├── SimpleMenuItem.cpp │ ├── SimplePad.cpp │ ├── SimplePopup.cpp │ ├── StoryFlow.cpp │ ├── StyleManager.cpp │ ├── Subtypes.cpp │ ├── TargetChooser.cpp │ ├── TargetsList.cpp │ ├── Tasks.cpp │ ├── TestSuiteAI.cpp │ ├── TextScroller.cpp │ ├── ThisDescriptor.cpp │ ├── Token.cpp │ ├── Translate.cpp │ ├── TranslateKeys.cpp │ ├── Trash.cpp │ ├── WCachedResource.cpp │ ├── WDataSrc.cpp │ ├── WEvent.cpp │ ├── WFilter.cpp │ ├── WFont.cpp │ ├── WGui.cpp │ ├── WParsedInt.cpp │ ├── WResourceManager.cpp │ ├── testfeatures.c │ └── utils.cpp │ ├── template.vcxproj │ ├── template.vcxproj.filters │ ├── tools │ ├── Check Resources.bat │ ├── build │ │ └── lib │ │ │ ├── groovy-all-1.8.6.jar │ │ │ └── pyjavaproperties-0.6 │ │ │ ├── MANIFEST.in │ │ │ ├── PKG-INFO │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── pyjavaproperties.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ └── top_level.txt │ │ │ ├── pyjavaproperties.py │ │ │ ├── pyjavaproperties_test.py │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── testdata │ │ │ └── complex.properties │ ├── gatherer │ │ ├── buildCardSkel.pl │ │ └── cards.pl │ ├── miki │ │ ├── README │ │ ├── cardList.html │ │ ├── createHTMLList_SupportedCards.pl │ │ ├── getSupportedCardNames.bash │ │ ├── supported_cards.txt │ │ ├── todoList.html │ │ └── todo_cards.txt │ ├── neofont │ │ ├── Makefile │ │ ├── README │ │ ├── fallback.ttf │ │ ├── gkai00mp.ttf │ │ ├── mono.ttf │ │ └── neofont.c │ └── validateAbilities.pl │ ├── updateAndroidManifest.groovy │ ├── valgrind.supp │ ├── wagic copy-Info.plist │ ├── wagic-64x64.png │ ├── wagic-80x80.png │ ├── wagic-Info.plist │ ├── wagic-SDL.pro │ ├── wagic-qt.pro │ ├── wagic.desktop │ ├── wagic.pri │ ├── wagic.svg │ ├── wagic.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── mnguyen.xcuserdatad │ │ └── xcschemes │ │ ├── wagic-opengl1.1.xcscheme │ │ ├── wagic.xcscheme │ │ └── xcschememanagement.plist │ └── wagic_Prefix.pch ├── pspsdk ├── EasyPBPRX_103.zip └── signing.zip └── tools ├── travis-script.sh └── upload-binaries.py /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/.travis.yml -------------------------------------------------------------------------------- /Boost/boost/algorithm/minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/algorithm/minmax.hpp -------------------------------------------------------------------------------- /Boost/boost/algorithm/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/algorithm/string.hpp -------------------------------------------------------------------------------- /Boost/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/assert.hpp -------------------------------------------------------------------------------- /Boost/boost/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/apply.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/arg.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/bind.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/bind_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/bind_cc.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/bind_mf2_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/bind_mf2_cc.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/bind_mf_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/bind_mf_cc.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/bind_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/bind_template.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/mem_fn.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/mem_fn_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/mem_fn_cc.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/mem_fn_vw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/mem_fn_vw.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/placeholders.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/protect.hpp -------------------------------------------------------------------------------- /Boost/boost/bind/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/bind/storage.hpp -------------------------------------------------------------------------------- /Boost/boost/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/call_traits.hpp -------------------------------------------------------------------------------- /Boost/boost/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/checked_delete.hpp -------------------------------------------------------------------------------- /Boost/boost/circular_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/circular_buffer.hpp -------------------------------------------------------------------------------- /Boost/boost/concept/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/concept/assert.hpp -------------------------------------------------------------------------------- /Boost/boost/concept/requires.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/concept/requires.hpp -------------------------------------------------------------------------------- /Boost/boost/concept/usage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/concept/usage.hpp -------------------------------------------------------------------------------- /Boost/boost/concept_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/concept_check.hpp -------------------------------------------------------------------------------- /Boost/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/config.hpp -------------------------------------------------------------------------------- /Boost/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /Boost/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /Boost/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /Boost/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /Boost/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /Boost/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/config/suffix.hpp -------------------------------------------------------------------------------- /Boost/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/config/user.hpp -------------------------------------------------------------------------------- /Boost/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/cstdint.hpp -------------------------------------------------------------------------------- /Boost/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/current_function.hpp -------------------------------------------------------------------------------- /Boost/boost/date_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/date_time.hpp -------------------------------------------------------------------------------- /Boost/boost/date_time/c_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/date_time/c_time.hpp -------------------------------------------------------------------------------- /Boost/boost/date_time/date.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/date_time/date.hpp -------------------------------------------------------------------------------- /Boost/boost/date_time/period.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/date_time/period.hpp -------------------------------------------------------------------------------- /Boost/boost/date_time/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/date_time/time.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/algorithm.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/call_traits.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/endian.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/identifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/identifier.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/interlocked.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/is_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/is_xxx.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/limits.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/none_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/none_t.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/select_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/select_type.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/sp_typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/sp_typeinfo.hpp -------------------------------------------------------------------------------- /Boost/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /Boost/boost/exception/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/exception/all.hpp -------------------------------------------------------------------------------- /Boost/boost/exception/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/exception/info.hpp -------------------------------------------------------------------------------- /Boost/boost/exception_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/exception_ptr.hpp -------------------------------------------------------------------------------- /Boost/boost/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function0.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function1.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function2.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function3.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function4.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function5.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function6.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function7.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function8.hpp -------------------------------------------------------------------------------- /Boost/boost/function/function9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function/function9.hpp -------------------------------------------------------------------------------- /Boost/boost/function_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/function_equal.hpp -------------------------------------------------------------------------------- /Boost/boost/get_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/get_pointer.hpp -------------------------------------------------------------------------------- /Boost/boost/implicit_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/implicit_cast.hpp -------------------------------------------------------------------------------- /Boost/boost/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/integer.hpp -------------------------------------------------------------------------------- /Boost/boost/integer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/integer_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/integer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/integer_traits.hpp -------------------------------------------------------------------------------- /Boost/boost/intrusive_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/intrusive_ptr.hpp -------------------------------------------------------------------------------- /Boost/boost/io/ios_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/io/ios_state.hpp -------------------------------------------------------------------------------- /Boost/boost/io_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/io_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/is_placeholder.hpp -------------------------------------------------------------------------------- /Boost/boost/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/iterator.hpp -------------------------------------------------------------------------------- /Boost/boost/lexical_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/lexical_cast.hpp -------------------------------------------------------------------------------- /Boost/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/limits.hpp -------------------------------------------------------------------------------- /Boost/boost/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mem_fn.hpp -------------------------------------------------------------------------------- /Boost/boost/memory_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/memory_order.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/O1_size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/O1_size_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/accumulate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/accumulate.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/advance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/advance.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/advance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/advance_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/alias.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/always.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/and.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/arithmetic.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/as_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/as_sequence.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/at.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/apply_1st.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/apply_1st.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/at_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/at_impl.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/back_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/back_impl.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/fold_impl.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/fold_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/fold_op.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/fold_pred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/fold_pred.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/has_apply.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/has_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/has_begin.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/has_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/has_size.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/has_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/has_tag.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/has_type.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/msvc_dtw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/msvc_dtw.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/msvc_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/msvc_type.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/na_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/na_assert.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/shift_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/shift_op.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/size_impl.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/sort_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/sort_impl.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/test.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/test/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/test/data.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/unwrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/unwrap.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/back.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/back_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/back_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/back_inserter.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/base.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/begin_end.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/begin_end_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/begin_end_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/bitand.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/bitor.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/bitwise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/bitwise.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/bitxor.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/char.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/char_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/char_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/clear_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/comparison.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/contains.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/contains_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/contains_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/copy_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/copy_if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/count.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/count_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/count_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/count_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/count_if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/deque.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/distance.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/distance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/distance_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/divides.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/empty.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/empty_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/empty_base.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/empty_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/empty_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/empty_sequence.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/end.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/equal.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/equal_to.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/erase.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/erase_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/erase_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/erase_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/erase_key.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/erase_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/erase_key_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/filter_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/filter_view.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/find.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/find_if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/for_each.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/front.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/front_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/front_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/front_inserter.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/greater.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/greater_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/greater_equal.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/has_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/has_key.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/has_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/has_key_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/index_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/index_if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/index_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/index_of.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/inherit.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/insert.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/insert_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/insert_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/insert_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/insert_range.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/inserter.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/int.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/integral_c_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/integral_c_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/is_placeholder.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/is_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/is_sequence.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/iter_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/iter_fold.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/iter_fold_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/iter_fold_if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/iterator_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/iterator_range.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/iterator_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/iterator_tags.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/joint_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/joint_view.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/key_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/key_type.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/key_type_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/key_type_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/less.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/less_equal.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/limits/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/limits/list.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/limits/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/limits/map.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/limits/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/limits/set.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/limits/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/limits/string.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/limits/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/limits/vector.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/aux_/item.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/aux_/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/aux_/size.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/aux_/tag.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list0.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list0_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list10.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list10_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list20.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list20_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list30.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list30_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list40.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list40_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list50.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list/list50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list/list50_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/list_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/long.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/long_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/long_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/lower_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/lower_bound.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/aux_/item.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/aux_/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/aux_/map0.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/aux_/tag.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/map0.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/map10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/map10.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/map20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/map20.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/map30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/map30.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/map40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/map40.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/map/map50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/map/map50.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/math/fixed_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/math/fixed_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/math/is_even.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/math/is_even.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/max.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/max_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/max_element.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/min.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/min_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/min_element.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/min_max.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/modulus.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/multiplies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/multiplies.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/next.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/not.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/not_equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/not_equal_to.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/numeric_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/numeric_cast.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/or.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/order.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/order_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/order_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/pair_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/pair_view.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/partition.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/placeholders.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/pop_back.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/pop_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/pop_back_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/pop_front.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/pop_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/pop_front_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/print.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/push_back.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/push_front.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/range_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/range_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/remove.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/remove_if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/replace.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/replace_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/replace_if.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/reverse.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/reverse_fold.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/sequence_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/sequence_tag.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/aux_/tag.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set0.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set0_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set10.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set10_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set20.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set20_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set30.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set30_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set40.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set40_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set50.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set/set50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set/set50_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/set_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/shift_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/shift_left.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/shift_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/shift_right.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/single_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/single_view.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/size.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/size_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/size_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/size_t.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/size_t_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/size_t_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/sizeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/sizeof.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/sort.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/string.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/switch.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/times.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/transform.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/unique.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/unpack_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/unpack_args.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/upper_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/upper_bound.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/value_type.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/vector_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/vector_c.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/void.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/mpl/zip_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/mpl/zip_view.hpp -------------------------------------------------------------------------------- /Boost/boost/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/next_prior.hpp -------------------------------------------------------------------------------- /Boost/boost/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/noncopyable.hpp -------------------------------------------------------------------------------- /Boost/boost/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/none.hpp -------------------------------------------------------------------------------- /Boost/boost/none_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/none_t.hpp -------------------------------------------------------------------------------- /Boost/boost/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/operators.hpp -------------------------------------------------------------------------------- /Boost/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/optional.hpp -------------------------------------------------------------------------------- /Boost/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /Boost/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /Boost/boost/preprocessor/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/preprocessor/for.hpp -------------------------------------------------------------------------------- /Boost/boost/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/preprocessor/if.hpp -------------------------------------------------------------------------------- /Boost/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /Boost/boost/preprocessor/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/preprocessor/max.hpp -------------------------------------------------------------------------------- /Boost/boost/preprocessor/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/preprocessor/min.hpp -------------------------------------------------------------------------------- /Boost/boost/preprocessor/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/preprocessor/seq.hpp -------------------------------------------------------------------------------- /Boost/boost/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/random.hpp -------------------------------------------------------------------------------- /Boost/boost/random/ranlux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/random/ranlux.hpp -------------------------------------------------------------------------------- /Boost/boost/range/adaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/adaptors.hpp -------------------------------------------------------------------------------- /Boost/boost/range/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/algorithm.hpp -------------------------------------------------------------------------------- /Boost/boost/range/as_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/as_array.hpp -------------------------------------------------------------------------------- /Boost/boost/range/as_literal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/as_literal.hpp -------------------------------------------------------------------------------- /Boost/boost/range/atl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/atl.hpp -------------------------------------------------------------------------------- /Boost/boost/range/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/begin.hpp -------------------------------------------------------------------------------- /Boost/boost/range/category.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/category.hpp -------------------------------------------------------------------------------- /Boost/boost/range/combine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/combine.hpp -------------------------------------------------------------------------------- /Boost/boost/range/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/concepts.hpp -------------------------------------------------------------------------------- /Boost/boost/range/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/config.hpp -------------------------------------------------------------------------------- /Boost/boost/range/detail/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/detail/end.hpp -------------------------------------------------------------------------------- /Boost/boost/range/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/distance.hpp -------------------------------------------------------------------------------- /Boost/boost/range/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/empty.hpp -------------------------------------------------------------------------------- /Boost/boost/range/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/end.hpp -------------------------------------------------------------------------------- /Boost/boost/range/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/functions.hpp -------------------------------------------------------------------------------- /Boost/boost/range/irange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/irange.hpp -------------------------------------------------------------------------------- /Boost/boost/range/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/iterator.hpp -------------------------------------------------------------------------------- /Boost/boost/range/join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/join.hpp -------------------------------------------------------------------------------- /Boost/boost/range/mfc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/mfc.hpp -------------------------------------------------------------------------------- /Boost/boost/range/numeric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/numeric.hpp -------------------------------------------------------------------------------- /Boost/boost/range/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/pointer.hpp -------------------------------------------------------------------------------- /Boost/boost/range/rbegin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/rbegin.hpp -------------------------------------------------------------------------------- /Boost/boost/range/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/reference.hpp -------------------------------------------------------------------------------- /Boost/boost/range/rend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/rend.hpp -------------------------------------------------------------------------------- /Boost/boost/range/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/size.hpp -------------------------------------------------------------------------------- /Boost/boost/range/size_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/size_type.hpp -------------------------------------------------------------------------------- /Boost/boost/range/sub_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/sub_range.hpp -------------------------------------------------------------------------------- /Boost/boost/range/value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/range/value_type.hpp -------------------------------------------------------------------------------- /Boost/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/ref.hpp -------------------------------------------------------------------------------- /Boost/boost/scoped_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/scoped_array.hpp -------------------------------------------------------------------------------- /Boost/boost/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/scoped_ptr.hpp -------------------------------------------------------------------------------- /Boost/boost/shared_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/shared_array.hpp -------------------------------------------------------------------------------- /Boost/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/shared_ptr.hpp -------------------------------------------------------------------------------- /Boost/boost/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/smart_ptr.hpp -------------------------------------------------------------------------------- /Boost/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/static_assert.hpp -------------------------------------------------------------------------------- /Boost/boost/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/barrier.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/condition.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/future.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/locks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/locks.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/mutex.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/once.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/once.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/thread.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/tss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/tss.hpp -------------------------------------------------------------------------------- /Boost/boost/thread/xtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/thread/xtime.hpp -------------------------------------------------------------------------------- /Boost/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/throw_exception.hpp -------------------------------------------------------------------------------- /Boost/boost/token_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/token_functions.hpp -------------------------------------------------------------------------------- /Boost/boost/token_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/token_iterator.hpp -------------------------------------------------------------------------------- /Boost/boost/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/tokenizer.hpp -------------------------------------------------------------------------------- /Boost/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/type.hpp -------------------------------------------------------------------------------- /Boost/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /Boost/boost/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/type_traits/rank.hpp -------------------------------------------------------------------------------- /Boost/boost/units/absolute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/absolute.hpp -------------------------------------------------------------------------------- /Boost/boost/units/base_unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/base_unit.hpp -------------------------------------------------------------------------------- /Boost/boost/units/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/cmath.hpp -------------------------------------------------------------------------------- /Boost/boost/units/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/config.hpp -------------------------------------------------------------------------------- /Boost/boost/units/conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/conversion.hpp -------------------------------------------------------------------------------- /Boost/boost/units/detail/one.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/detail/one.hpp -------------------------------------------------------------------------------- /Boost/boost/units/dim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/dim.hpp -------------------------------------------------------------------------------- /Boost/boost/units/dimension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/dimension.hpp -------------------------------------------------------------------------------- /Boost/boost/units/get_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/get_system.hpp -------------------------------------------------------------------------------- /Boost/boost/units/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/io.hpp -------------------------------------------------------------------------------- /Boost/boost/units/is_dim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/is_dim.hpp -------------------------------------------------------------------------------- /Boost/boost/units/is_unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/is_unit.hpp -------------------------------------------------------------------------------- /Boost/boost/units/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/lambda.hpp -------------------------------------------------------------------------------- /Boost/boost/units/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/limits.hpp -------------------------------------------------------------------------------- /Boost/boost/units/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/operators.hpp -------------------------------------------------------------------------------- /Boost/boost/units/pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/pow.hpp -------------------------------------------------------------------------------- /Boost/boost/units/quantity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/quantity.hpp -------------------------------------------------------------------------------- /Boost/boost/units/scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/scale.hpp -------------------------------------------------------------------------------- /Boost/boost/units/systems/si.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/systems/si.hpp -------------------------------------------------------------------------------- /Boost/boost/units/unit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/unit.hpp -------------------------------------------------------------------------------- /Boost/boost/units/units_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/units/units_fwd.hpp -------------------------------------------------------------------------------- /Boost/boost/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/utility.hpp -------------------------------------------------------------------------------- /Boost/boost/utility/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/utility/binary.hpp -------------------------------------------------------------------------------- /Boost/boost/utility/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/utility/swap.hpp -------------------------------------------------------------------------------- /Boost/boost/uuid/seed_rng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/uuid/seed_rng.hpp -------------------------------------------------------------------------------- /Boost/boost/uuid/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/uuid/sha1.hpp -------------------------------------------------------------------------------- /Boost/boost/uuid/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/uuid/uuid.hpp -------------------------------------------------------------------------------- /Boost/boost/uuid/uuid_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/uuid/uuid_io.hpp -------------------------------------------------------------------------------- /Boost/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/version.hpp -------------------------------------------------------------------------------- /Boost/boost/visit_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/visit_each.hpp -------------------------------------------------------------------------------- /Boost/boost/weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/boost/weak_ptr.hpp -------------------------------------------------------------------------------- /Boost/lib/libboost_thread.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/lib/libboost_thread.a -------------------------------------------------------------------------------- /Boost/lib/pthread/once.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/lib/pthread/once.cpp -------------------------------------------------------------------------------- /Boost/lib/pthread/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/lib/pthread/thread.cpp -------------------------------------------------------------------------------- /Boost/lib/pthread/timeconv.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/Boost/lib/pthread/timeconv.inl -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /JGE/Dependencies/SDL/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/SDL/Android.mk -------------------------------------------------------------------------------- /JGE/Dependencies/SDL/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/SDL/COPYING -------------------------------------------------------------------------------- /JGE/Dependencies/SDL/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/SDL/CREDITS -------------------------------------------------------------------------------- /JGE/Dependencies/SDL/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/SDL/INSTALL -------------------------------------------------------------------------------- /JGE/Dependencies/SDL/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/SDL/src/SDL.c -------------------------------------------------------------------------------- /JGE/Dependencies/dll/fmod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/dll/fmod.dll -------------------------------------------------------------------------------- /JGE/Dependencies/dll/giflib4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/dll/giflib4.dll -------------------------------------------------------------------------------- /JGE/Dependencies/dll/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/dll/zlib1.dll -------------------------------------------------------------------------------- /JGE/Dependencies/dll/zlib1d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/dll/zlib1d.dll -------------------------------------------------------------------------------- /JGE/Dependencies/include/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/include/fmod.h -------------------------------------------------------------------------------- /JGE/Dependencies/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/include/png.h -------------------------------------------------------------------------------- /JGE/Dependencies/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/include/zconf.h -------------------------------------------------------------------------------- /JGE/Dependencies/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/include/zlib.h -------------------------------------------------------------------------------- /JGE/Dependencies/lib/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/SDL.dll -------------------------------------------------------------------------------- /JGE/Dependencies/lib/SDL.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/SDL.exp -------------------------------------------------------------------------------- /JGE/Dependencies/lib/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/SDL.lib -------------------------------------------------------------------------------- /JGE/Dependencies/lib/Version.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/Version.res -------------------------------------------------------------------------------- /JGE/Dependencies/lib/fmodvc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/fmodvc.lib -------------------------------------------------------------------------------- /JGE/Dependencies/lib/giflib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/giflib.lib -------------------------------------------------------------------------------- /JGE/Dependencies/lib/libpng.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/libpng.lib -------------------------------------------------------------------------------- /JGE/Dependencies/lib/libpngd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/libpngd.lib -------------------------------------------------------------------------------- /JGE/Dependencies/lib/zdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/zdll.lib -------------------------------------------------------------------------------- /JGE/Dependencies/lib/zlibd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/lib/zlibd.lib -------------------------------------------------------------------------------- /JGE/Dependencies/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libjpeg/README -------------------------------------------------------------------------------- /JGE/Dependencies/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libjpeg/jdct.h -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/LICENSE -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/README -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/png.c -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/png.h -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/pngget.c -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/pngmem.c -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/pngrio.c -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/pngset.c -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/pngusr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/pngusr.h -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/pngvcrd.c: -------------------------------------------------------------------------------- 1 | /* pnggvrd.c was removed from libpng-1.2.20. */ 2 | -------------------------------------------------------------------------------- /JGE/Dependencies/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Dependencies/libpng/pngwio.c -------------------------------------------------------------------------------- /JGE/JGE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/JGE.sln -------------------------------------------------------------------------------- /JGE/JGE.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/JGE.vcproj -------------------------------------------------------------------------------- /JGE/JGE.vcproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/JGE.vcproj.user -------------------------------------------------------------------------------- /JGE/JGE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/JGE.vcxproj -------------------------------------------------------------------------------- /JGE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/LICENSE -------------------------------------------------------------------------------- /JGE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Makefile -------------------------------------------------------------------------------- /JGE/Makefile.hge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Makefile.hge -------------------------------------------------------------------------------- /JGE/Makefile.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/Makefile.input -------------------------------------------------------------------------------- /JGE/docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/annotated.html -------------------------------------------------------------------------------- /JGE/docs/html/class_j_animator_frame__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5ce78f2d9688bba8955dfe0fc737eb39 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_animator_object__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1b7f4b66660397d8bca0627f823a6e43 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/class_j_app.html -------------------------------------------------------------------------------- /JGE/docs/html/class_j_file_system__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2f77c7ededff6270d1fa4f17e9da451a -------------------------------------------------------------------------------- /JGE/docs/html/class_j_g_b_k_font__coll__graph.md5: -------------------------------------------------------------------------------- 1 | df27a27ee190b4ffc4701e826c2c5e78 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_g_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/class_j_g_e.html -------------------------------------------------------------------------------- /JGE/docs/html/class_j_g_e__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b84463c279f22a087a09d385fa3f6365 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_game_object__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f34a40ec1e40b6f4f5f0806c36a2c93f -------------------------------------------------------------------------------- /JGE/docs/html/class_j_game_object__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 6eb290c3e8e9cd71b48a2a2df229c758 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_l_b_font__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3e927d3be0e1eebdc4e364200b4b8afb -------------------------------------------------------------------------------- /JGE/docs/html/class_j_m_d2_model__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5528f48ff3b1406d1dbf351c4b885deb -------------------------------------------------------------------------------- /JGE/docs/html/class_j_particle_effect__coll__graph.md5: -------------------------------------------------------------------------------- 1 | fa9a5174ca5c83422694e2b3f6985546 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_particle_emitter__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 73f998a724d73bf9cfffeebe0293d3da -------------------------------------------------------------------------------- /JGE/docs/html/class_j_quad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/class_j_quad.html -------------------------------------------------------------------------------- /JGE/docs/html/class_j_renderer__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ba4449db5ebbebb0ffa76aeb72cd73c0 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_sound_system__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 9d5e7d97ac865100c7bae4e72e2de5e0 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_sprite__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5f859c60480896bfb6d76c5e54e253a3 -------------------------------------------------------------------------------- /JGE/docs/html/class_j_sprite__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f17ba219cf0bd5f2944b9782850e804d -------------------------------------------------------------------------------- /JGE/docs/html/class_j_t_t_font__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 58e051e516cd055de05ded4b644ecd69 -------------------------------------------------------------------------------- /JGE/docs/html/class_point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/class_point.html -------------------------------------------------------------------------------- /JGE/docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/doxygen.css -------------------------------------------------------------------------------- /JGE/docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/doxygen.png -------------------------------------------------------------------------------- /JGE/docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/functions.html -------------------------------------------------------------------------------- /JGE/docs/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/hierarchy.html -------------------------------------------------------------------------------- /JGE/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/index.html -------------------------------------------------------------------------------- /JGE/docs/html/inherit__graph__0.md5: -------------------------------------------------------------------------------- 1 | 029e4f8e7cd77ad34d086aea5bcb70bc -------------------------------------------------------------------------------- /JGE/docs/html/inherits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/inherits.html -------------------------------------------------------------------------------- /JGE/docs/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/tab_b.gif -------------------------------------------------------------------------------- /JGE/docs/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/tab_l.gif -------------------------------------------------------------------------------- /JGE/docs/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/tab_r.gif -------------------------------------------------------------------------------- /JGE/docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/docs/html/tabs.css -------------------------------------------------------------------------------- /JGE/exceptionHandler/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/exceptionHandler/README.txt -------------------------------------------------------------------------------- /JGE/exceptionHandler/prx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/exceptionHandler/prx/main.c -------------------------------------------------------------------------------- /JGE/exceptionHandler/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/exceptionHandler/test/main.c -------------------------------------------------------------------------------- /JGE/include/DebugRoutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/DebugRoutines.h -------------------------------------------------------------------------------- /JGE/include/Downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/Downloader.h -------------------------------------------------------------------------------- /JGE/include/Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/Encoding.h -------------------------------------------------------------------------------- /JGE/include/JAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JAnimator.h -------------------------------------------------------------------------------- /JGE/include/JApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JApp.h -------------------------------------------------------------------------------- /JGE/include/JAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JAssert.h -------------------------------------------------------------------------------- /JGE/include/JAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JAudio.h -------------------------------------------------------------------------------- /JGE/include/JCooleyesMP3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JCooleyesMP3.h -------------------------------------------------------------------------------- /JGE/include/JDistortionMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JDistortionMesh.h -------------------------------------------------------------------------------- /JGE/include/JFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JFileSystem.h -------------------------------------------------------------------------------- /JGE/include/JGBKFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JGBKFont.h -------------------------------------------------------------------------------- /JGE/include/JGE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JGE.h -------------------------------------------------------------------------------- /JGE/include/JGameLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JGameLauncher.h -------------------------------------------------------------------------------- /JGE/include/JGameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JGameObject.h -------------------------------------------------------------------------------- /JGE/include/JGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JGui.h -------------------------------------------------------------------------------- /JGE/include/JLBFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JLBFont.h -------------------------------------------------------------------------------- /JGE/include/JLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JLogger.h -------------------------------------------------------------------------------- /JGE/include/JMD2Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JMD2Model.h -------------------------------------------------------------------------------- /JGE/include/JMP3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JMP3.h -------------------------------------------------------------------------------- /JGE/include/JNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JNetwork.h -------------------------------------------------------------------------------- /JGE/include/JOBJModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JOBJModel.h -------------------------------------------------------------------------------- /JGE/include/JParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JParticle.h -------------------------------------------------------------------------------- /JGE/include/JParticleEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JParticleEffect.h -------------------------------------------------------------------------------- /JGE/include/JParticleEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JParticleEmitter.h -------------------------------------------------------------------------------- /JGE/include/JParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JParticleSystem.h -------------------------------------------------------------------------------- /JGE/include/JRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JRenderer.h -------------------------------------------------------------------------------- /JGE/include/JResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JResourceManager.h -------------------------------------------------------------------------------- /JGE/include/JSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JSocket.h -------------------------------------------------------------------------------- /JGE/include/JSoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JSoundSystem.h -------------------------------------------------------------------------------- /JGE/include/JSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JSpline.h -------------------------------------------------------------------------------- /JGE/include/JSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JSprite.h -------------------------------------------------------------------------------- /JGE/include/JTTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JTTFont.h -------------------------------------------------------------------------------- /JGE/include/JTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/JTypes.h -------------------------------------------------------------------------------- /JGE/include/OutputCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/OutputCapturer.h -------------------------------------------------------------------------------- /JGE/include/Threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/Threading.h -------------------------------------------------------------------------------- /JGE/include/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/Vector2D.h -------------------------------------------------------------------------------- /JGE/include/Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/Vector3D.h -------------------------------------------------------------------------------- /JGE/include/decoder_prx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/decoder_prx.h -------------------------------------------------------------------------------- /JGE/include/hge/hgecolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/hge/hgecolor.h -------------------------------------------------------------------------------- /JGE/include/hge/hgedistort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/hge/hgedistort.h -------------------------------------------------------------------------------- /JGE/include/hge/hgefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/hge/hgefont.h -------------------------------------------------------------------------------- /JGE/include/hge/hgeparticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/hge/hgeparticle.h -------------------------------------------------------------------------------- /JGE/include/hge/hgerect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/hge/hgerect.h -------------------------------------------------------------------------------- /JGE/include/hge/hgevector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/hge/hgevector.h -------------------------------------------------------------------------------- /JGE/include/psp/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/ft2build.h -------------------------------------------------------------------------------- /JGE/include/psp/gif_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/gif_lib.h -------------------------------------------------------------------------------- /JGE/include/psp/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/jconfig.h -------------------------------------------------------------------------------- /JGE/include/psp/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/jerror.h -------------------------------------------------------------------------------- /JGE/include/psp/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/jmorecfg.h -------------------------------------------------------------------------------- /JGE/include/psp/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/jpeglib.h -------------------------------------------------------------------------------- /JGE/include/psp/mikmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/mikmod.h -------------------------------------------------------------------------------- /JGE/include/psp/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/png.h -------------------------------------------------------------------------------- /JGE/include/psp/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/pngconf.h -------------------------------------------------------------------------------- /JGE/include/psp/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/zconf.h -------------------------------------------------------------------------------- /JGE/include/psp/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/psp/zlib.h -------------------------------------------------------------------------------- /JGE/include/qt/corewrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/qt/corewrapper.h -------------------------------------------------------------------------------- /JGE/include/qt/filedownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/qt/filedownloader.h -------------------------------------------------------------------------------- /JGE/include/unzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/unzip/crypt.h -------------------------------------------------------------------------------- /JGE/include/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/unzip/ioapi.h -------------------------------------------------------------------------------- /JGE/include/unzip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/unzip/iowin32.h -------------------------------------------------------------------------------- /JGE/include/unzip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/unzip/mztools.h -------------------------------------------------------------------------------- /JGE/include/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/unzip/unzip.h -------------------------------------------------------------------------------- /JGE/include/unzip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/unzip/zip.h -------------------------------------------------------------------------------- /JGE/include/vram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/include/vram.h -------------------------------------------------------------------------------- /JGE/lib/linux/libhgetools.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/linux/libhgetools.a -------------------------------------------------------------------------------- /JGE/lib/linux/libjge.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/linux/libjge.a -------------------------------------------------------------------------------- /JGE/lib/psp/libfreetype.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/psp/libfreetype.a -------------------------------------------------------------------------------- /JGE/lib/psp/libgif.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/psp/libgif.a -------------------------------------------------------------------------------- /JGE/lib/psp/libhgetools.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/psp/libhgetools.a -------------------------------------------------------------------------------- /JGE/lib/psp/libjinput.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/psp/libjinput.a -------------------------------------------------------------------------------- /JGE/lib/psp/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/psp/libjpeg.a -------------------------------------------------------------------------------- /JGE/lib/psp/libmikmod.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/psp/libmikmod.a -------------------------------------------------------------------------------- /JGE/lib/psp/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/psp/libpng.a -------------------------------------------------------------------------------- /JGE/lib/psp/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/psp/libz.a -------------------------------------------------------------------------------- /JGE/lib/win/jge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/lib/win/jge.lib -------------------------------------------------------------------------------- /JGE/libjinput.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/libjinput.a -------------------------------------------------------------------------------- /JGE/mk1xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/mk1xx.bat -------------------------------------------------------------------------------- /JGE/mk3xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/mk3xx.bat -------------------------------------------------------------------------------- /JGE/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/readme.txt -------------------------------------------------------------------------------- /JGE/src/Downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/Downloader.cpp -------------------------------------------------------------------------------- /JGE/src/Encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/Encoding.cpp -------------------------------------------------------------------------------- /JGE/src/JAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JAnimator.cpp -------------------------------------------------------------------------------- /JGE/src/JApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JApp.cpp -------------------------------------------------------------------------------- /JGE/src/JAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JAudio.cpp -------------------------------------------------------------------------------- /JGE/src/JCooleyesMP3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JCooleyesMP3.cpp -------------------------------------------------------------------------------- /JGE/src/JDistortionMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JDistortionMesh.cpp -------------------------------------------------------------------------------- /JGE/src/JFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JFileSystem.cpp -------------------------------------------------------------------------------- /JGE/src/JGBKFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JGBKFont.cpp -------------------------------------------------------------------------------- /JGE/src/JGE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JGE.cpp -------------------------------------------------------------------------------- /JGE/src/JGameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JGameObject.cpp -------------------------------------------------------------------------------- /JGE/src/JGfx-fake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JGfx-fake.cpp -------------------------------------------------------------------------------- /JGE/src/JGfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JGfx.cpp -------------------------------------------------------------------------------- /JGE/src/JGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JGui.cpp -------------------------------------------------------------------------------- /JGE/src/JLBFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JLBFont.cpp -------------------------------------------------------------------------------- /JGE/src/JLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JLogger.cpp -------------------------------------------------------------------------------- /JGE/src/JMD2Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JMD2Model.cpp -------------------------------------------------------------------------------- /JGE/src/JMP3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JMP3.cpp -------------------------------------------------------------------------------- /JGE/src/JNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JNetwork.cpp -------------------------------------------------------------------------------- /JGE/src/JOBJModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JOBJModel.cpp -------------------------------------------------------------------------------- /JGE/src/JParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JParticle.cpp -------------------------------------------------------------------------------- /JGE/src/JParticleEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JParticleEffect.cpp -------------------------------------------------------------------------------- /JGE/src/JParticleEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JParticleEmitter.cpp -------------------------------------------------------------------------------- /JGE/src/JParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JParticleSystem.cpp -------------------------------------------------------------------------------- /JGE/src/JResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JResourceManager.cpp -------------------------------------------------------------------------------- /JGE/src/JSfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JSfx.cpp -------------------------------------------------------------------------------- /JGE/src/JSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JSocket.cpp -------------------------------------------------------------------------------- /JGE/src/JSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JSpline.cpp -------------------------------------------------------------------------------- /JGE/src/JSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JSprite.cpp -------------------------------------------------------------------------------- /JGE/src/JTTFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/JTTFont.cpp -------------------------------------------------------------------------------- /JGE/src/OutputCapturer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/OutputCapturer.cpp -------------------------------------------------------------------------------- /JGE/src/Qtconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/Qtconsole.cpp -------------------------------------------------------------------------------- /JGE/src/Qtmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/Qtmain.cpp -------------------------------------------------------------------------------- /JGE/src/SDLmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/SDLmain.cpp -------------------------------------------------------------------------------- /JGE/src/Vector2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/Vector2D.cpp -------------------------------------------------------------------------------- /JGE/src/Xmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/Xmain.cpp -------------------------------------------------------------------------------- /JGE/src/android/JSfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/android/JSfx.cpp -------------------------------------------------------------------------------- /JGE/src/decoder_prx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/decoder_prx.c -------------------------------------------------------------------------------- /JGE/src/glutmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/glutmain.cpp -------------------------------------------------------------------------------- /JGE/src/hge/hgecolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/hge/hgecolor.cpp -------------------------------------------------------------------------------- /JGE/src/hge/hgedistort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/hge/hgedistort.cpp -------------------------------------------------------------------------------- /JGE/src/hge/hgefont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/hge/hgefont.cpp -------------------------------------------------------------------------------- /JGE/src/hge/hgeparticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/hge/hgeparticle.cpp -------------------------------------------------------------------------------- /JGE/src/hge/hgepmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/hge/hgepmanager.cpp -------------------------------------------------------------------------------- /JGE/src/hge/hgerect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/hge/hgerect.cpp -------------------------------------------------------------------------------- /JGE/src/hge/hgevector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/hge/hgevector.cpp -------------------------------------------------------------------------------- /JGE/src/iOS/EAGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/EAGLView.h -------------------------------------------------------------------------------- /JGE/src/iOS/EAGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/EAGLView.m -------------------------------------------------------------------------------- /JGE/src/iOS/EAGLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/EAGLViewController.h -------------------------------------------------------------------------------- /JGE/src/iOS/EAGLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/EAGLViewController.m -------------------------------------------------------------------------------- /JGE/src/iOS/ES2Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/ES2Renderer.h -------------------------------------------------------------------------------- /JGE/src/iOS/ES2Renderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/ES2Renderer.m -------------------------------------------------------------------------------- /JGE/src/iOS/ESRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/ESRenderer.h -------------------------------------------------------------------------------- /JGE/src/iOS/JSfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/JSfx.cpp -------------------------------------------------------------------------------- /JGE/src/iOS/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/MainWindow.xib -------------------------------------------------------------------------------- /JGE/src/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/main.m -------------------------------------------------------------------------------- /JGE/src/iOS/wagicAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/wagicAppDelegate.h -------------------------------------------------------------------------------- /JGE/src/iOS/wagicAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/iOS/wagicAppDelegate.m -------------------------------------------------------------------------------- /JGE/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/main.cpp -------------------------------------------------------------------------------- /JGE/src/pc/JGfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/pc/JGfx.cpp -------------------------------------------------------------------------------- /JGE/src/pc/JSfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/pc/JSfx.cpp -------------------------------------------------------------------------------- /JGE/src/pc/JSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/pc/JSocket.cpp -------------------------------------------------------------------------------- /JGE/src/qt/corewrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/qt/corewrapper.cpp -------------------------------------------------------------------------------- /JGE/src/qt/filedownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/qt/filedownloader.cpp -------------------------------------------------------------------------------- /JGE/src/testfeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/testfeatures.c -------------------------------------------------------------------------------- /JGE/src/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /JGE/src/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/tinyxml/tinystr.h -------------------------------------------------------------------------------- /JGE/src/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /JGE/src/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /JGE/src/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /JGE/src/unzip/ChangeLogUnzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/ChangeLogUnzip -------------------------------------------------------------------------------- /JGE/src/unzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/Makefile -------------------------------------------------------------------------------- /JGE/src/unzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/crypt.h -------------------------------------------------------------------------------- /JGE/src/unzip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/ioapi.c -------------------------------------------------------------------------------- /JGE/src/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/ioapi.h -------------------------------------------------------------------------------- /JGE/src/unzip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/iowin32.c -------------------------------------------------------------------------------- /JGE/src/unzip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/iowin32.h -------------------------------------------------------------------------------- /JGE/src/unzip/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/miniunz.c -------------------------------------------------------------------------------- /JGE/src/unzip/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/minizip.c -------------------------------------------------------------------------------- /JGE/src/unzip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/mztools.c -------------------------------------------------------------------------------- /JGE/src/unzip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/mztools.h -------------------------------------------------------------------------------- /JGE/src/unzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/unzip.c -------------------------------------------------------------------------------- /JGE/src/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/unzip.h -------------------------------------------------------------------------------- /JGE/src/unzip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/zip.c -------------------------------------------------------------------------------- /JGE/src/unzip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/unzip/zip.h -------------------------------------------------------------------------------- /JGE/src/vram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/vram.c -------------------------------------------------------------------------------- /JGE/src/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/winmain.cpp -------------------------------------------------------------------------------- /JGE/src/zipFS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/Makefile -------------------------------------------------------------------------------- /JGE/src/zipFS/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/fileio.h -------------------------------------------------------------------------------- /JGE/src/zipFS/static_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/static_assert.h -------------------------------------------------------------------------------- /JGE/src/zipFS/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/stdafx.cpp -------------------------------------------------------------------------------- /JGE/src/zipFS/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/stdafx.h -------------------------------------------------------------------------------- /JGE/src/zipFS/stdint_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/stdint_old.h -------------------------------------------------------------------------------- /JGE/src/zipFS/zfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zfs.cpp -------------------------------------------------------------------------------- /JGE/src/zipFS/zfs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zfs.sln -------------------------------------------------------------------------------- /JGE/src/zipFS/zfs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zfs.vcproj -------------------------------------------------------------------------------- /JGE/src/zipFS/zfs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zfs.vcxproj -------------------------------------------------------------------------------- /JGE/src/zipFS/zfsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zfsystem.cpp -------------------------------------------------------------------------------- /JGE/src/zipFS/zfsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zfsystem.h -------------------------------------------------------------------------------- /JGE/src/zipFS/ziphdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/ziphdr.cpp -------------------------------------------------------------------------------- /JGE/src/zipFS/ziphdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/ziphdr.h -------------------------------------------------------------------------------- /JGE/src/zipFS/zstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zstream.cpp -------------------------------------------------------------------------------- /JGE/src/zipFS/zstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zstream.h -------------------------------------------------------------------------------- /JGE/src/zipFS/zstream_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/JGE/src/zipFS/zstream_zlib.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/img/shop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/docs/img/shop.jpg -------------------------------------------------------------------------------- /projects/mtg/Android/.gitignore: -------------------------------------------------------------------------------- 1 | /gen 2 | /bin 3 | /libs 4 | 5 | -------------------------------------------------------------------------------- /projects/mtg/Android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/Android/build.xml -------------------------------------------------------------------------------- /projects/mtg/CardImageLinks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/CardImageLinks.csv -------------------------------------------------------------------------------- /projects/mtg/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/Doxyfile -------------------------------------------------------------------------------- /projects/mtg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/LICENSE -------------------------------------------------------------------------------- /projects/mtg/MacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/MacOS/Info.plist -------------------------------------------------------------------------------- /projects/mtg/MacOS/wagic.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/MacOS/wagic.icns -------------------------------------------------------------------------------- /projects/mtg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/Makefile -------------------------------------------------------------------------------- /projects/mtg/Makefile.linux: -------------------------------------------------------------------------------- 1 | FMOD= 2 | -------------------------------------------------------------------------------- /projects/mtg/Res: -------------------------------------------------------------------------------- 1 | bin/Res -------------------------------------------------------------------------------- /projects/mtg/Windows/Wagic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/Windows/Wagic.ico -------------------------------------------------------------------------------- /projects/mtg/Windows/mtg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/Windows/mtg.rc -------------------------------------------------------------------------------- /projects/mtg/Windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/Windows/resource.h -------------------------------------------------------------------------------- /projects/mtg/bin/Res.txt: -------------------------------------------------------------------------------- 1 | ../../wagic_res/ 2 | -------------------------------------------------------------------------------- /projects/mtg/bin/Res/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/LICENSE -------------------------------------------------------------------------------- /projects/mtg/bin/Res/graphics/themeinfo.txt: -------------------------------------------------------------------------------- 1 | Ilya Baranovsky 2 | 3 | -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/cn.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/de.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/en.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/es.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/fr.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/it.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/jp.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/pt.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/lang/rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/Res/lang/rs.txt -------------------------------------------------------------------------------- /projects/mtg/bin/Res/oldthemes/Christmas/themeinfo.txt: -------------------------------------------------------------------------------- 1 | Lakeesha 2 | 3 | -------------------------------------------------------------------------------- /projects/mtg/bin/Res/oldthemes/Green/themeinfo.txt: -------------------------------------------------------------------------------- 1 | FS2 -------------------------------------------------------------------------------- /projects/mtg/bin/Res/oldthemes/White Shrine/themeinfo.txt: -------------------------------------------------------------------------------- 1 | Ilya B -------------------------------------------------------------------------------- /projects/mtg/bin/Res/rules/story.txt: -------------------------------------------------------------------------------- 1 | include mtg.txt 2 | name=Story 3 | [INIT] 4 | mode=story -------------------------------------------------------------------------------- /projects/mtg/bin/Res/rules/testsuite.txt: -------------------------------------------------------------------------------- 1 | include mtg.txt 2 | hidden 3 | [INIT] 4 | mode=mtg 5 | -------------------------------------------------------------------------------- /projects/mtg/bin/Res/settings/options.orig.txt: -------------------------------------------------------------------------------- 1 | Profile=Default 2 | -------------------------------------------------------------------------------- /projects/mtg/bin/fmod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/fmod.dll -------------------------------------------------------------------------------- /projects/mtg/bin/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/freetype6.dll -------------------------------------------------------------------------------- /projects/mtg/bin/giflib4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/giflib4.dll -------------------------------------------------------------------------------- /projects/mtg/bin/libpng13.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/libpng13.dll -------------------------------------------------------------------------------- /projects/mtg/bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/bin/zlib1.dll -------------------------------------------------------------------------------- /projects/mtg/build.properties: -------------------------------------------------------------------------------- 1 | groovy.dir=tools/build/lib 2 | -------------------------------------------------------------------------------- /projects/mtg/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/build.xml -------------------------------------------------------------------------------- /projects/mtg/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/debian/changelog -------------------------------------------------------------------------------- /projects/mtg/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /projects/mtg/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/debian/control -------------------------------------------------------------------------------- /projects/mtg/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/debian/copyright -------------------------------------------------------------------------------- /projects/mtg/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/debian/rules -------------------------------------------------------------------------------- /projects/mtg/debian_harmattan/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /projects/mtg/doc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/doc/LICENSE -------------------------------------------------------------------------------- /projects/mtg/doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/doc/README.txt -------------------------------------------------------------------------------- /projects/mtg/doc/manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/doc/manual.odt -------------------------------------------------------------------------------- /projects/mtg/extra/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/extra/dirent.h -------------------------------------------------------------------------------- /projects/mtg/extra/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/extra/stdint.h -------------------------------------------------------------------------------- /projects/mtg/iOS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/iOS/Makefile -------------------------------------------------------------------------------- /projects/mtg/iOS/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/iOS/control -------------------------------------------------------------------------------- /projects/mtg/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/icon.png -------------------------------------------------------------------------------- /projects/mtg/include/AIHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/AIHints.h -------------------------------------------------------------------------------- /projects/mtg/include/AIPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/AIPlayer.h -------------------------------------------------------------------------------- /projects/mtg/include/AIStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/AIStats.h -------------------------------------------------------------------------------- /projects/mtg/include/CardGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/CardGui.h -------------------------------------------------------------------------------- /projects/mtg/include/Counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Counters.h -------------------------------------------------------------------------------- /projects/mtg/include/Credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Credits.h -------------------------------------------------------------------------------- /projects/mtg/include/Damage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Damage.h -------------------------------------------------------------------------------- /projects/mtg/include/DeckMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/DeckMenu.h -------------------------------------------------------------------------------- /projects/mtg/include/DeckStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/DeckStats.h -------------------------------------------------------------------------------- /projects/mtg/include/DeckView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/DeckView.h -------------------------------------------------------------------------------- /projects/mtg/include/Easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Easing.h -------------------------------------------------------------------------------- /projects/mtg/include/ExtraCost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/ExtraCost.h -------------------------------------------------------------------------------- /projects/mtg/include/GameApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GameApp.h -------------------------------------------------------------------------------- /projects/mtg/include/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GameState.h -------------------------------------------------------------------------------- /projects/mtg/include/GuiCombat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GuiCombat.h -------------------------------------------------------------------------------- /projects/mtg/include/GuiFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GuiFrame.h -------------------------------------------------------------------------------- /projects/mtg/include/GuiHand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GuiHand.h -------------------------------------------------------------------------------- /projects/mtg/include/GuiLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GuiLayers.h -------------------------------------------------------------------------------- /projects/mtg/include/GuiMana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GuiMana.h -------------------------------------------------------------------------------- /projects/mtg/include/GuiPlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GuiPlay.h -------------------------------------------------------------------------------- /projects/mtg/include/GuiStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/GuiStatic.h -------------------------------------------------------------------------------- /projects/mtg/include/MTGCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/MTGCard.h -------------------------------------------------------------------------------- /projects/mtg/include/MTGDeck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/MTGDeck.h -------------------------------------------------------------------------------- /projects/mtg/include/MTGPack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/MTGPack.h -------------------------------------------------------------------------------- /projects/mtg/include/MTGRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/MTGRules.h -------------------------------------------------------------------------------- /projects/mtg/include/ManaCost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/ManaCost.h -------------------------------------------------------------------------------- /projects/mtg/include/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/MenuItem.h -------------------------------------------------------------------------------- /projects/mtg/include/ModRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/ModRules.h -------------------------------------------------------------------------------- /projects/mtg/include/Navigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Navigator.h -------------------------------------------------------------------------------- /projects/mtg/include/PhaseRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/PhaseRing.h -------------------------------------------------------------------------------- /projects/mtg/include/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Player.h -------------------------------------------------------------------------------- /projects/mtg/include/Pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Pos.h -------------------------------------------------------------------------------- /projects/mtg/include/PriceList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/PriceList.h -------------------------------------------------------------------------------- /projects/mtg/include/Rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Rules.h -------------------------------------------------------------------------------- /projects/mtg/include/SimplePad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/SimplePad.h -------------------------------------------------------------------------------- /projects/mtg/include/StoryFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/StoryFlow.h -------------------------------------------------------------------------------- /projects/mtg/include/Subtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Subtypes.h -------------------------------------------------------------------------------- /projects/mtg/include/Tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Tasks.h -------------------------------------------------------------------------------- /projects/mtg/include/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Token.h -------------------------------------------------------------------------------- /projects/mtg/include/Translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Translate.h -------------------------------------------------------------------------------- /projects/mtg/include/Trash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/Trash.h -------------------------------------------------------------------------------- /projects/mtg/include/WDataSrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/WDataSrc.h -------------------------------------------------------------------------------- /projects/mtg/include/WEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/WEvent.h -------------------------------------------------------------------------------- /projects/mtg/include/WFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/WFilter.h -------------------------------------------------------------------------------- /projects/mtg/include/WFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/WFont.h -------------------------------------------------------------------------------- /projects/mtg/include/WGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/WGui.h -------------------------------------------------------------------------------- /projects/mtg/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/config.h -------------------------------------------------------------------------------- /projects/mtg/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/include/utils.h -------------------------------------------------------------------------------- /projects/mtg/mk3xx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/mk3xx.bat -------------------------------------------------------------------------------- /projects/mtg/mtg.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/mtg.props -------------------------------------------------------------------------------- /projects/mtg/mtg_vs2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/mtg_vs2010.sln -------------------------------------------------------------------------------- /projects/mtg/pic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/pic0.png -------------------------------------------------------------------------------- /projects/mtg/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/pic1.png -------------------------------------------------------------------------------- /projects/mtg/src/AIHints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/AIHints.cpp -------------------------------------------------------------------------------- /projects/mtg/src/AIPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/AIPlayer.cpp -------------------------------------------------------------------------------- /projects/mtg/src/AIStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/AIStats.cpp -------------------------------------------------------------------------------- /projects/mtg/src/ActionLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/ActionLayer.cpp -------------------------------------------------------------------------------- /projects/mtg/src/ActionStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/ActionStack.cpp -------------------------------------------------------------------------------- /projects/mtg/src/CardDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/CardDisplay.cpp -------------------------------------------------------------------------------- /projects/mtg/src/CardGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/CardGui.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Closest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Closest.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Counters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Counters.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Credits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Credits.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Damage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Damage.cpp -------------------------------------------------------------------------------- /projects/mtg/src/DeckManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/DeckManager.cpp -------------------------------------------------------------------------------- /projects/mtg/src/DeckMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/DeckMenu.cpp -------------------------------------------------------------------------------- /projects/mtg/src/DeckStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/DeckStats.cpp -------------------------------------------------------------------------------- /projects/mtg/src/DeckView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/DeckView.cpp -------------------------------------------------------------------------------- /projects/mtg/src/DuelLayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/DuelLayers.cpp -------------------------------------------------------------------------------- /projects/mtg/src/ExtraCost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/ExtraCost.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GameApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GameApp.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GameOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GameOptions.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GameState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GameState.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiAvatars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiAvatars.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiCombat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiCombat.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiFrame.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiHand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiHand.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiLayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiLayers.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiMana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiMana.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiPhaseBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiPhaseBar.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiPlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiPlay.cpp -------------------------------------------------------------------------------- /projects/mtg/src/GuiStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/GuiStatic.cpp -------------------------------------------------------------------------------- /projects/mtg/src/IconButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/IconButton.cpp -------------------------------------------------------------------------------- /projects/mtg/src/MTGAbility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/MTGAbility.cpp -------------------------------------------------------------------------------- /projects/mtg/src/MTGCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/MTGCard.cpp -------------------------------------------------------------------------------- /projects/mtg/src/MTGDeck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/MTGDeck.cpp -------------------------------------------------------------------------------- /projects/mtg/src/MTGPack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/MTGPack.cpp -------------------------------------------------------------------------------- /projects/mtg/src/MTGRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/MTGRules.cpp -------------------------------------------------------------------------------- /projects/mtg/src/ManaCost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/ManaCost.cpp -------------------------------------------------------------------------------- /projects/mtg/src/MenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/MenuItem.cpp -------------------------------------------------------------------------------- /projects/mtg/src/ModRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/ModRules.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Navigator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Navigator.cpp -------------------------------------------------------------------------------- /projects/mtg/src/OptionItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/OptionItem.cpp -------------------------------------------------------------------------------- /projects/mtg/src/PhaseRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/PhaseRing.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Player.cpp -------------------------------------------------------------------------------- /projects/mtg/src/PlayerData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/PlayerData.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Pos.cpp -------------------------------------------------------------------------------- /projects/mtg/src/PrecompiledHeader.cpp: -------------------------------------------------------------------------------- 1 | #include "PrecompiledHeader.h" 2 | -------------------------------------------------------------------------------- /projects/mtg/src/PriceList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/PriceList.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Rules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Rules.cpp -------------------------------------------------------------------------------- /projects/mtg/src/SimpleMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/SimpleMenu.cpp -------------------------------------------------------------------------------- /projects/mtg/src/SimplePad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/SimplePad.cpp -------------------------------------------------------------------------------- /projects/mtg/src/SimplePopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/SimplePopup.cpp -------------------------------------------------------------------------------- /projects/mtg/src/StoryFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/StoryFlow.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Subtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Subtypes.cpp -------------------------------------------------------------------------------- /projects/mtg/src/TargetsList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/TargetsList.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Tasks.cpp -------------------------------------------------------------------------------- /projects/mtg/src/TestSuiteAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/TestSuiteAI.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Token.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Translate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Translate.cpp -------------------------------------------------------------------------------- /projects/mtg/src/Trash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/Trash.cpp -------------------------------------------------------------------------------- /projects/mtg/src/WDataSrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/WDataSrc.cpp -------------------------------------------------------------------------------- /projects/mtg/src/WEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/WEvent.cpp -------------------------------------------------------------------------------- /projects/mtg/src/WFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/WFilter.cpp -------------------------------------------------------------------------------- /projects/mtg/src/WFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/WFont.cpp -------------------------------------------------------------------------------- /projects/mtg/src/WGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/WGui.cpp -------------------------------------------------------------------------------- /projects/mtg/src/WParsedInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/WParsedInt.cpp -------------------------------------------------------------------------------- /projects/mtg/src/testfeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/testfeatures.c -------------------------------------------------------------------------------- /projects/mtg/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/src/utils.cpp -------------------------------------------------------------------------------- /projects/mtg/template.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/template.vcxproj -------------------------------------------------------------------------------- /projects/mtg/tools/build/lib/pyjavaproperties-0.6/pyjavaproperties.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects/mtg/tools/build/lib/pyjavaproperties-0.6/pyjavaproperties.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | pyjavaproperties 3 | -------------------------------------------------------------------------------- /projects/mtg/tools/miki/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/tools/miki/README -------------------------------------------------------------------------------- /projects/mtg/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/valgrind.supp -------------------------------------------------------------------------------- /projects/mtg/wagic-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic-64x64.png -------------------------------------------------------------------------------- /projects/mtg/wagic-80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic-80x80.png -------------------------------------------------------------------------------- /projects/mtg/wagic-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic-Info.plist -------------------------------------------------------------------------------- /projects/mtg/wagic-SDL.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic-SDL.pro -------------------------------------------------------------------------------- /projects/mtg/wagic-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic-qt.pro -------------------------------------------------------------------------------- /projects/mtg/wagic.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic.desktop -------------------------------------------------------------------------------- /projects/mtg/wagic.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic.pri -------------------------------------------------------------------------------- /projects/mtg/wagic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic.svg -------------------------------------------------------------------------------- /projects/mtg/wagic_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/projects/mtg/wagic_Prefix.pch -------------------------------------------------------------------------------- /pspsdk/EasyPBPRX_103.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/pspsdk/EasyPBPRX_103.zip -------------------------------------------------------------------------------- /pspsdk/signing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/pspsdk/signing.zip -------------------------------------------------------------------------------- /tools/travis-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/tools/travis-script.sh -------------------------------------------------------------------------------- /tools/upload-binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WagicProject/wagic/HEAD/tools/upload-binaries.py --------------------------------------------------------------------------------