Skip to content

Instantly share code, notes, and snippets.

@pablocelis
Created May 20, 2013 14:31
Show Gist options
  • Save pablocelis/5612592 to your computer and use it in GitHub Desktop.
Save pablocelis/5612592 to your computer and use it in GitHub Desktop.
ShakeContact
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="lib" path="lib/sensorsimulator-lib-1.1.1.jar"/>
<classpathentry kind="lib" path="lib/jid3lib-0.5.4.jar"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<option name="DEFAULT_COMPILER" value="Javac" />
<resourceExtensions />
<wildcardResourcePatterns>
<entry name="!?*.java" />
<entry name="!?*.form" />
<entry name="!?*.class" />
<entry name="!?*.groovy" />
<entry name="!?*.scala" />
<entry name="!?*.flex" />
<entry name="!?*.kt" />
<entry name="!?*.clj" />
</wildcardResourcePatterns>
<annotationProcessing>
<profile default="true" name="Default" enabled="false">
<processorPath useClasspath="true" />
</profile>
</annotationProcessing>
</component>
</project>
<component name="ProjectDictionaryState">
<dictionary name="Pablo" />
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
</project>
<component name="libraryTable">
<library name="lib">
<CLASSES>
<root url="jar://$PROJECT_DIR$/lib/sensorsimulator-lib-1.1.1.jar!/" />
<root url="jar://$PROJECT_DIR$/lib/jid3lib-0.5.4.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>
<component name="libraryTable">
<library name="sensorsimulator-1.1.1">
<CLASSES>
<root url="jar://$PROJECT_DIR$/opt/sensorsimulator-1.1.1.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="EntryPointsManager">
<entry_points version="2.0" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true" project-jdk-name="1.6" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
<component name="SvnBranchConfigurationManager">
<option name="mySupportsUserInfoFilter" value="true" />
</component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/ShakeContact.iml" filepath="$PROJECT_DIR$/ShakeContact.iml" />
</modules>
</component>
</project>
<component name="DependencyValidationManager">
<state>
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
</state>
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="svn" />
</component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ShakeContact</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
#Fri Nov 25 20:32:14 CET 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.5
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="linz.jku"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/>
<application
android:debuggable="true"
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name=".Main"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ProgressSharing"
android:label="@string/app_name"
android:screenOrientation="landscape" >
</activity>
<activity
android:name="linz.jku.Shaking"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.Shaking" />
</intent-filter>
</activity>
<activity
android:name="linz.jku.Configuration"
android:label="string/app_name" >
<intent-filter>
<action android:name="android.intent.action.PICK" />
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
<service android:name="service.ShakeContactService" >
</service>
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="linz.jku"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/>
<application
android:debuggable="true"
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name=".Main"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ProgressSharing"
android:label="@string/app_name"
android:screenOrientation="landscape" >
</activity>
<activity
android:name="linz.jku.Shaking"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.Shaking" />
</intent-filter>
</activity>
<activity
android:name="linz.jku.Configuration"
android:label="string/app_name" >
<intent-filter>
<action android:name="android.intent.action.PICK" />
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
<service android:name="service.ShakeContactService" >
</service>
</application>
</manifest>
dex
035���#���
F���!P3ƻ�I�P�pxV4��p�� ����x�%@&p��*�g�g�g h0h>hChFhJhMhgh�h�h�h�h�h�h�h�h�hi iiii0i>iQigi�i�i�i�i�i�i�i�ijj!j)j2j;jEjRj[jkj�j�j�j�j�j�j�j�j�jkk&k<kHkOk]kuk�k�k�k�k�k�k�k�k l!l3lol�l�l�l�l�lm%mdmumxmm�m�m�m�m�m�m�m�m�m�mnnn nnnn n'n-n2n8n@nGnMn]nan�n�n�n�n#oBo`owo�o�o�op7pXp{p�p�p�pq(qTqyq�q�q�q�q"rDrar|r�r�r�r�r�r�rs,sBs[sts�s�s�stt4tOtst�t�t�t�tu uCubu~u�u�u�u�uvv3vKv`vzv�v�v�v�vw#wFwhw|w�w�w�w�w�w
xx?xcx�x�x�x�x9yy�y�y�y�yz]z�z�z�z{S{y{�{�{�{�{�{|+|D|[|r|�|�|�|�|�|}}$}8}T}g}~}�}�}�}�}�}�} ~2~V~j~�~�~�~�~�~R����3�;�B�N�T�_�h�v�}�������Հ���� ��2�:�E�O�l�����������ҁہ���#�6�F�Y�j�������̂Ղ����#�6�;�?�E�R�b�x�����������������ǃ̃ЃՃڃ��������� �����#�)�-�I�]�r�������������DŽфۄ�������"�,�6�C�M�U�_�k�t�y�����������I�����ӆ�!�?�a�������������LJه߇������ �'�6�?�P�X�_�k�v�������������Έӈۈ������6�l�����Љ�� ��(�1�;�C�K�R�b�g�m�����׊��$�,�8�A�S�e�����������NjЋ׋����>�Q�T�Z�f�p�y�������������nj׌����������,�>�G�O�V�]�f�n�}�������ɍ؍܍�������%�3�;�@�G�K�P�[�e�|���������ȎҎ܎����#�-�6�E�Y�q���������Ϗ����"�4�A�Q�]�h�t�}���������Ґ��
��%�7�A�I�R�Z�c�m�z���������������������ÑՑ��� ��'�1�<�N�[�e�h�t�������������͒�����,�6�R�`�h�s�}�������“דݓ������.�8�A�N�Z�c�n�������������ʔД������!�+�6�A�J�Y�d�n����������������ǕΕ֕ܕ���
���&�7�@�M�Z�j�p�z���������������і֖��� ���5�B�G�[�`�h�w�����������Ηٗ���!�2�;�O�_�o�y�����������֘��������� �'�6�N�^�l�u�{�����������������ę֙ۙ��������)�=�B�H�N�Q�X�_�h�p�w�������������TY`qrstuvwxyz{|}~������������������������������������������������������������������������������������������������������������������>LQSTUVWYZ�e\�eZ�e[�e`f�ef �ea f �ec �ed �em �ej �eb�ehfi fnff$faab�ej,fj4ff�eg<faj�eg<fj4flDfb�ef �ea!j!4ff!�ef"Tfa%f($ff*�eb/�ek3\fa;a<a@aApBhfaDbH�efH�eaLfLpfjLxffL�efLTfaObO�eeO�ffOpffO�ejO�efO�efO�efOTfbP�eeP�ffPpffP�eaRfX�ffY�ej[�fa]a^b^�ef^�fa_aafa�ef|�ef}�ea�b��ej��f>�@��eA��fB��fC��fC��eE��fF��fE��fE��fC��eC��fC�$fD��fD��fC�gC�gC�gC�gC�|eC� gC�(gD�0gC�8gC�pfC��eE�@gG�HgH�TgC�\gC�dgC�lgC��eE�tgC�|gC��gC��eD��gE��gE��gE��gH��gD��gC��gC��gC��gI�hfC��eL�M�$fP��gM�8gM�pfN��gM��eO��gM��eP��ga�f�Tfa�a�f��e=O�O����$O+!1+!2,!K;O�BD5HD5TT0TTUTToTTTTTT5VV&`3`O3` n`a�` o`Ox` �`_�aO/aOaO3a_=a naa�a��a �a �b�<ce�de�eO/eO3e neaeke lepe �e�e_�f3fO3f@mfpgO3gAngpg �h�h_hvhwh^�i�kp�lp�mp�np�op�pGppO3pO<p.�p.�p2�p��p.�p1�p.�p!�p`p��qOsqOxqO�q!�t�t;uLuu�u�u�u�u�u�u�vhv�w�w8y~�z~�{~�|O3|~�}O3}~�~'~~O3~0�~.�~0�~.�~a�~|�~}�~��~�~~~ �~O�~��~!�O3������O3�������O(�O)�O*�O+�O,�O-�3�O�O3�Os�O�����L�O�[�_�a�v�w���������^��O����TT�V�f�T�T�I)J* Y T� f� k� ^� k� T�
T �� �� ��  7$ �H �J W �� �� 7$ ] T�T�T�, -%T7 ��5/�`����X�T]mnq7!7%'&;.�5����Tmmp����<-+� 8-�F�r�s��d� T !� �!#�!7�!"�"T#T%5&*&7'T'��)s-�-�-9-�/(�/0g�1�G1��1g�2e�2U�2g�3)i3T�:j;m;��;��;7$;7';T;7�<i<�=7�>i>p>�?m?7!?T�?7�@�@T�@�@�AT�A�B.�D7D�DEDFDGDG"D7$E7!ET�E7�HmH@H0�H1�LTL��L/
L7�NTNmNqOmO�O��O��O�O��O7�O8�O9�O:�PmP@�PA�PB�PC�P7�Q�QT�X6yX��Y3Y��ZD [4E[��\T]�7]2z^�o^HM_W`T`6�`?�`$�`l�`m�aTaTa7�aY�aY�aMaL2a�IaZQa[RaT�aT�bTctc\�dtdT�eZeuae be=ceT�e6�e?�e$�e��el�em�fTf6�f��f$�fTPfl�f��fm�gTg6�g?�g$�gl�gm�hTh6�hK�h$�hl�hr�iTivjTj�j�j�j
Vj Vj Wkwkh�lwlh�mwmh�nwnh�owoh�pTp!^pT�p(�pp�p+p5/pV�pf�pT�p��pU�p`�pa�p�qoq7q7$q70q!1qm�qm�qm�qe�rYrf�rU�sTtTuTvTwTxTyxyh�zxzh�{x{_�|x|{|\�}x}|}\�~T~T~y^~N_~>`~{a~Ob~zc~|d~Pe~}f~g~�h~(�~T�~~~ ~!1~f�~T�~U�~U�~��~U�~e�~`�~�T\��i�Q��6�7�7�7,�T��R�S/���������(�\����\��T����T#�5/��K��L�b��~��&��T��T��T��c����T��a��T����r��`��T��X�&Lle2�cC�&Lle7�cK�`"�cS�aL$����bL%�ĩc7�c�dLte7�c�e"7�c�f"?�c]�Ʃg"A�c��h"Xd��iN_,dޫɩjL_<d�kL|e |d�lL|e |d2�mL|e |dG�nL|e |d\�oL|e �dq�p ��̩qL Ӭr �sL�d"�tL�d.�ԩuL�d>�ߩvL�d\� �wL�dl��xL�d|�yL|e.�d��zL|e.�d��{L�e.�d��|. eǭ}.e�~.,e�#��������&��,<eϮ�
�e,Le�)�O�V�O�i�v�������������ʨ٨������#�.���5���=�D�=�P�=�\�=�h�=�t�����������������������pW[���n �!  ��j)F  [�F O[�F _[�4F [�DF  [�TF a[�T�T�T�n0T [�T�8q aTT�0un T 8��]0q aT"fp�#��MT�Mn �A (� (�+ 8?f?h��On ��/T1nT1n�T1n  �q `!T1n�T1n (� T2n�T2n '?##�i �@p�"_pS� #[@#[@[A[A"\@!q [@"Pp �!TBn �! n� q aT@9 q `.�ab 9q�b  ' 6�a"ap�i  ' =�2T n [ T n �
8 T *n T T n #Wq bT (� '/L�#TCn
9TCn8q0l nm"\C!(� ' y�"up 1n >wn0;n + '��T '�� Tn
 ' ��A[F# "P�p �!TB"n �! n� q a#1q a"eTA#p0�P1#�TCMM"TCMn � ';>��-[F#"`p�a#�TCMM"TCM2MBTC#MRMn � ''*ś6#"P)p �!T2n �! n� q _T08 T0T1n U0!9T08#Eq _T0nԛp�ٛ[%p#�jn4 zn �
8E6q a2TS%{n 8'  q �#TR%q� 8)TR%q� n 8TR%q� n TS%q� n �2
8TR%n� 6"P p �Cn� n �C n� q `2(�<EP�[&p��T&n��0pW[A/6[A("cp �A[A*n' [A+[F.TA.n !"'p\"dp �A0un@]26�[,=�T,C�T'I�T.n P��n �! V�86 q a!FO[1'F [1)!F_[106Vq a!"zp @T1+T2*n0*!T1)n
j��6q aeT�,T�0q0�e [�/T�/[�-T�,8�6"P
p �vT�,n n �v n� q aeT�.Dn eT�,n T�'n �e
8�T�)n
8T�)n6"P p �vT�,n n �v n� q aeT�.!n e6 q aeT�-n  "P�p �vT�,n n �v n� q ae"gp�6#f�T�-MM'T�.Mn �e 6n� q `e)Q� 6Oq aST�-nC(� 6Nq aS(� 6Sq `SC(� 6J��3�� �E�?�K�?�K�K���On �ÜT1-8T1-nT1+T2*n .! 6Rq `!(�?ٜpWޜA"p/n <"P�p �!qZ nu n �! b n �! �n �! n� qT �n0=n >T11n +�� ";p o�nq
8
np">p yT
#��T�3n�
=
T�3  n@�
�"
O" Op �  n ��  F p ��q�
n�
"
Oq� p ��n�
!��
ъ#��
=" P /p ��n �� n� q b�ъ7�Kъ4�n {
#���
�4��
H
O
��(�
5�'�
�
�#p�T�3n�
=
T�3 n@�
{!
��n {(� 
=n} q `�(�(��
�#��!4�n {(��
H
O
�(���?����n �!  ���=>q avF [�4F [�1T�4n! [�3#��T�3n �F"H"Op �Gp �vn�
3�[=9q _v"PqZ nu q� p �vb n �v �n �v n� p �jp�
 ="PPp ��n} n �� n� q `v(� n~(� =n� q `v(�&3a��=:q _v"PqZ nu q� p �vb n �v un �v n� p �j(�!6+?e?E�"��n �(�T14n =Jq `!n~(�?=�pW@[5D��n �! J�D ; :q a� F   [�7+F   [�8
T�7n"
[�6 @ Kq `�qC
�2�+
  @ Qq `�(�q  T�6 n� n �� @" P 9p ��" Op � n �� n� q b�!T�6" Pq� q� p �� n �� n� n� n ��T�6n � (�  @" P Mp ��n} n �� n� q `�(� @ Iq b�T�6 n� n ��";qD nU p o�nt  @ Hq b�T�6" Pq �� q� p �� n �� n� n� n �� @" P p ��nr n ��  n �� n0�� n� q b�":" <p vk p0n�  #��n �
�3�T�6n� qH n�)��T�6n �(�x
;N��?2?��On ��T18n T17n BJq `!n~(�? ��pW��n �!  ��F"\p�[�=q�@#�ZMXM YM0[Mn( b45t& [�<T�<rI
Y�9qq[ n �
8T�<Xr H
T�<rLT�<rK
8T�=T�<r Jp " �";p o�p P nR
8 nQ "
qnT nU nS qT pT
1T�=r �� T�<rM(� n�(�d.E�h�^n �n�qt|�p���p���p���q@�!0  ���v#f�b Mb M'b
M7b
MG MWb Mg)Mn �e 9"N�p �e' "Np �'n �P6n �e n �Rn �R Hn�
u#V�q� M�q� M%q� M5q� MEM Uq�
Mg8 ")p ^�Mn �` (� "Np �' "Np �' "Np �' n�  U?8 n� ?'"Nn� p �e'6?VJ7I�F�G�Z���q@�2 �q0�! %�  N#�b Mb
M/b
M?b Mn �� 9" N�p ��' " Np �-' n �� 6n �� n �� n ��  Hn�
 Fn �� n �� n ��  Hn�
M#ݏq� M q� M .w� M >w� M n �� �  n� cn �� n ��n �� n� �#��n0�� n �� #ݏn0��

Hn�
834" ip ��' " Np �-' 8%n n� �#��b Mn0�� #�q� Mn0�� " Np �-' " Np �-' n� �?8 n�  ?' " Nn� p ��' (�'0��� J(I�F�G�Z�?�J(I�F�G�Z�� t� !P49U"N�v�' "Np �p'F4"P�v�n� t� t� w`n� "P t� w� v�t� t� t�
8#(��(�#�_Mn � 9"N�v�' "Np �p'#�Mn � {#�n0� n �#�n0� Ht�
��3"? v|' "Np �p'q � t� bt� n � n � n� r#�OM)Mb M(Mt� n � #�M")p ^Mq� M"#vXMn0�� Ht�
��3
't"?"Pv�n � t� v|' "Np �p't� ]t� n �n � t� �#�'Mb Mt� n �#�M q�
Mn0� n�  ?8 n� ?'"Nn� v�' )�� )d�%`�O��}r"u�WJI�F�G�Z�i�JI�F�G�Z�?�JI�F�G�Z�d�[?p�n�5n c 1nf
8nd "nd �p00!n ,nd "nd �p00!n -(�}�[@p���
nd n��[Ap���/.q _!q 9"|bp02TQAn0TQA"q p022n0!(���[Bp���q 8T@B"q p02!n0Ǣ[Cp�Ѣ"T1C~p00T1Cn ߢ p"kp �[N"lp �[I"mp �[H"np [L�bO��iKt bOt& rL Xr H
r J
bq V� t �n0%� nF nG �#�iKbKn w "ObKp �"PqZ nu q� p �b n � n �� n� " >p0z�n� n� n { Jn� q _ �n� q _(�&\E�R�bKX�1ln % ���n r� r�
9r� Tn$ +n �C
8��(�p�7�o@Tv9263%-36+q _2n5 iOn6 TBPrD ;r0C!rBpTBJbOn i2 ���o �n Gn G 1[tMn G 0n G 0n G 0n G 2[tJ"op tn eBp
\tQTtMnf
8UtQ9 "�p00tn GTtMUuQn gTTtMTuNn hTTtIn eAC%n0
G [tPTtP;r0ET [tGTtG8 TtGqT iOpTtHn e@TtJn jTTtJTuLn kT n� q _T(��E�Σp
9T Mn go֣ p�[S[T[Rn @�TR�TS�TT��TU�[R�[S �[T�[U�p
$�
o !n -�p�2�p�7�p�<�p�A�p�F�p�K�[ep�
U��T�enA T�eq 4T�q0l  nmT�eq5 n�
8@T�eq5 n �T�e"|T�ep0-eq 7TT�eq8 "tp @en0*@T�eT�eq5 n� q 9TT�eq5 n �T�e"}T�ep00eq :TT�eq; "vp @en0*@T�eq5 n �(���[fp�
��nT�fnA T�fq 4d�q0l  nm-4q aTT�fq <dT�fq5 n�
8T�fq5 n �T�fq5 T�fq= n0�T�f"}T�fp00eq :TT�fq; "vp @en0*@T�fq5 n �(���[gp�ƤTgq>
8 Tgq5 n�Tgn@Ѥ
[ip#[h٤p ,�<n7 xn� n Y n �!
8'TAiq8 n ."q a!TAiq5 TBiq= TCiq6 n@�Q2�
[kp#�[j�p /
��n7 yn :
8;yn Y  q� n �!
8)�!q b!TQkq>
8TQkq5 TRkq= n0�aTQkq; n .TQk"|TSkp0-2q 7!TQkq8 "tp @2n0*TQkTRkq5 n� q 9!TQkq5 n �aTQkq; n .(�.�gwi|4�(p-[ n\!{q� [ s\!v"yp & [ r"zp ( [ p"{p * [ xK�p GR�TsX�Tz^�[te�Ttk�[zr�[uy�Tu�\v��Ty��Uv��`w��b|��;" p
[ yT yT!xn 9T y#n T yn T yn3��T y5n T y n T yn(���gw��i|åCo Tn JnB "nB �p00!n -
\@{n ? 0[@qn ? 0[@oT@qTArn eT@oTApn eӥoU0{8"nB �p00n M-'q a
ܥK";8p oc">p y5n ��n�T" pQns n S`"|nR p02an L =nx q `v(� =n q `v(� T(� T(� =/?:=H?E;�p#�[}B�5n7 yn :
8*yn Y  q� n �!
8 �!q b!�yn Y n� q b!W�p#[�`�6n4 }n �
8�q _T �nmn4 ~n �
8���q _T �n\
n0q@(�o�[�p#x�wn4 �n 9' ^"Pq� p �Cn �C n � n� q _2TR��n 97 [#�TR�sn 97 [#�TR��n 97 [#� "PTT�TD�q� p �Cn �C TT�TD�n �C n �C TT�TD�n �C n� q _2��p"�p ^[�[���b���7Td�9 ln )G [d�Td�n r� r�
9r� Rd3T��Tp0fF
9��(��"hp�#�b�Mn � �?8
n �7
8CTc�9 ln )8 [c�Tc�'n S r� r�
9C(�r� T#n �s
8��(�� b�n �
�!pvna p c6 9"b�~p00Cn 3C n u=�U0�8T0�T1�n W! n@Y0!T0�T1�n N! 2n@O0!(�N�i�]�U�8T�n ZT�n P(�f�p�z���w+$q aCi�pg
\S�"�p [S[S�"~p @0"}p @1TS�n0s5TS�n0s5US�85+q _C�q X5 [S�TS�nV"p?�n A2�n A2�n A2�n A2TS�n0s5+q _C�n e5 [S�(���pvT �n wT �n w+%q a�� pv+&q a §1T��?D�?��Ƈ�Ƈ=W�B�q� @-: S��� �1 ;Z��pp (� ��5R�~3�+T��?D�?��Ƈ�Ƈ=W�B�q� @-: S��� �1 ;Z��pp (�C� pr+(q a�*�*�*+ ++ +=(+�0+�8+@+L+�T+�T+�T+�T+�\+�T+d+p+|+�+�+�+�+�+�+�+�+�+�+�(+t8+SM.�OOO��~e��� O_�O_ _� � _�!OO!�O�O�C�LL��O��O  OD!%/;@CO!OOO!O�R^_e ip~~O~|~}~�����MO��
Adapter: #
Bluetooth NOT supported. Aborting. --- TAM:  / (([)----------DEVICE FOUND: ----------Device discovered: ----------STARTING THE THREAD$----------STARTING THE THREAD1111111
---Error: .RfcommChannelPicker12:<<clinit><init>>;>;)V>;>;ACTION_USER_PRESENT AcceptThreadAcceptThread.javaAccepting connectionBLUETOOTHDEVICE ACTION FOuNDBTNameChangeReceiverBTStateReceiver Bluetooth
Bluetooth Bluetooth ON Bluetooth onBluetoothManagerBluetoothManager.javaBuildConfig.javaCLASSCLIENTCMDNAMECMDNEXTCMDPAUSE CMDPREVIOUSCMDSTOPCMDTOGGLEPAUSECONFIGURATION PRESSEDCONNECTION_KEY CONSTRUCTOR CONTENT_URICONTENT_VCARD_URICONTEXTClient launchedClient launching... ConnectThreadConnectThread.javaContact
Contacto: DATA SENDER STARTING
DATASENDERDEBUG DataReceiverDataReceiver Launched.DataReceiver.java
DataSenderDataSender.java DataTransferDefaultContactFile Device foundDisabling Bluetooth
EADDRINUSEEDIT_CONTACT_REQUESTENVIAMOS EL TAMANOOENVIAMOS EL TIPO:EXCEPTION HANDLED CLOSING BLUETOOTH SOCKET ON POST EXECUTEEXTERNAL_CONTENT_URIEmisor%Error Writing throught outStream... Error closing mmSocketError connecting mmSocketError getting InputStream... Error getting OutputStream...=Error in OnPostExecute closing socket/unregistering receiver.Error, RetryingFFIELDFinding device.........Friendly name changed: OJETEGetMp3List.javaIILILIIILLINFOInUseInsecureBluetooth.javaJLLILIZLIZZLJLLLLILLILZLLIZLLLLLLILLLLLLLLLLZLLLZLOCAL_VARIABLELZ!Landroid/annotation/SuppressLint;Landroid/annotation/TargetApi;Landroid/app/Activity;3Landroid/app/ActivityManager$RunningAppProcessInfo;0Landroid/app/ActivityManager$RunningServiceInfo;Landroid/app/ActivityManager;Landroid/app/ProgressDialog;Landroid/app/Service;$Landroid/bluetooth/BluetoothAdapter;#Landroid/bluetooth/BluetoothDevice;)Landroid/bluetooth/BluetoothServerSocket;#Landroid/bluetooth/BluetoothSocket;#Landroid/content/BroadcastReceiver;Landroid/content/ComponentName;!Landroid/content/ContentResolver;Landroid/content/Context;3Landroid/content/DialogInterface$OnDismissListener;!Landroid/content/DialogInterface;Landroid/content/Intent;Landroid/content/IntentFilter;*Landroid/content/SharedPreferences$Editor;#Landroid/content/SharedPreferences;)Landroid/content/res/AssetFileDescriptor;Landroid/database/Cursor;Landroid/hardware/Sensor;Landroid/hardware/SensorEvent;&Landroid/hardware/SensorEventListener; Landroid/hardware/SensorManager;Landroid/media/MediaPlayer;Landroid/net/Uri$Builder;Landroid/net/Uri;Landroid/os/AsyncTaskLandroid/os/AsyncTask;Landroid/os/Binder;Landroid/os/Build;Landroid/os/Bundle;Landroid/os/Environment;Landroid/os/Handler;Landroid/os/IBinder;Landroid/os/ParcelUuid;Landroid/os/Parcelable;,Landroid/provider/ContactsContract$Contacts;)Landroid/provider/MediaStore$Audio$Media;Landroid/util/Log;#Landroid/view/View$OnClickListener;Landroid/view/View;Landroid/widget/Button;Landroid/widget/CheckBox;"Landroid/widget/QuickContactBadge;Landroid/widget/Toast;Launching the ServerLaunching the client"Ldalvik/annotation/EnclosingClass;#Ldalvik/annotation/EnclosingMethod;Ldalvik/annotation/InnerClass;!Ldalvik/annotation/MemberClasses;Ldalvik/annotation/Signature;Ldalvik/annotation/Throws;Ljava/io/BufferedInputStream;Ljava/io/File;Ljava/io/FileInputStream;Ljava/io/FileNotFoundException;Ljava/io/FileOutputStream;Ljava/io/IOException;Ljava/io/InputStream;Ljava/io/OutputStream;Ljava/lang/Boolean;Ljava/lang/CharSequence;Ljava/lang/Class;Ljava/lang/Exception;"Ljava/lang/IllegalAccessException;"Ljava/lang/InstantiationException;Ljava/lang/Integer; Ljava/lang/NoSuchFieldException;!Ljava/lang/NoSuchMethodException; Ljava/lang/NullPointerException;Ljava/lang/Object;Ljava/lang/Runnable;Ljava/lang/RuntimeException;Ljava/lang/String;Ljava/lang/StringBuilder;Ljava/lang/System;Ljava/lang/Throwable;Ljava/lang/Void;!Ljava/lang/annotation/Annotation;"Ljava/lang/annotation/ElementType; Ljava/lang/annotation/Retention;&Ljava/lang/annotation/RetentionPolicy;Ljava/lang/annotation/Target;Ljava/lang/reflect/Constructor;JLjava/lang/reflect/Constructor<Landroid/bluetooth/BluetoothServerSocket;>;DLjava/lang/reflect/Constructor<Landroid/bluetooth/BluetoothSocket;>;Ljava/lang/reflect/Field;-Ljava/lang/reflect/InvocationTargetException;Ljava/lang/reflect/Method;Ljava/util/ArrayList;Ljava/util/Iterator;ILjava/util/Iterator<Landroid/app/ActivityManager$RunningAppProcessInfo;>;FLjava/util/Iterator<Landroid/app/ActivityManager$RunningServiceInfo;>;Ljava/util/ListLjava/util/List;ELjava/util/List<Landroid/app/ActivityManager$RunningAppProcessInfo;>;BLjava/util/List<Landroid/app/ActivityManager$RunningServiceInfo;>;$Ljava/util/List<Llinz/jku/Mp3Data;>;Ljava/util/UUID;Llinz/jku/AcceptThread;Llinz/jku/BluetoothManager;Llinz/jku/BuildConfig;Llinz/jku/ConnectThread$1;Llinz/jku/ConnectThread$2;Llinz/jku/ConnectThread;Llinz/jku/DataReceiver;Llinz/jku/DataSender;Llinz/jku/GetMp3List;"Llinz/jku/InsecureBluetooth$InUse;Llinz/jku/InsecureBluetooth;Llinz/jku/Main$1;Llinz/jku/Main$2;Llinz/jku/Main$3;Llinz/jku/Main$4;Llinz/jku/Main$5;Llinz/jku/Main;Llinz/jku/Mp3Data;Llinz/jku/ProgressSharing;Llinz/jku/R$attr;Llinz/jku/R$drawable;Llinz/jku/R$id;Llinz/jku/R$layout;Llinz/jku/R$string; Llinz/jku/R;Llinz/jku/Shaking$1;Llinz/jku/Shaking$2;Llinz/jku/Shaking$3;'Llinz/jku/Shaking$BTNameChangeReceiver;"Llinz/jku/Shaking$BTStateReceiver;Llinz/jku/Shaking;Llinz/jku/btStateReceiver;LockScreenReceiverLockScreenReceiver.javaLorg/farng/mp3/MP3File;Lorg/farng/mp3/id3/ID3v1;1Lorg/openintents/sensorsimulator/hardware/Sensor;6Lorg/openintents/sensorsimulator/hardware/SensorEvent;>Lorg/openintents/sensorsimulator/hardware/SensorEventListener;ALorg/openintents/sensorsimulator/hardware/SensorManagerSimulator;Lservice/LockScreenReceiver;Lservice/ShakeContactService$1;Lservice/ShakeContactService;METHODMODEL
MP3 File: Main Main.javaMessage Mp3Data.javaMusicNo available channels$Not able to register SDP record for OJETEON_ACTIVITY_RESULT PARAMETERPICK_CONTACT_REQUESTPOContactsRestore.vcf PREVIOUS_NAMEProgressSharing.javaR.java ReceivingReceptorRunning in real device modeRunning in simulator mode
SCREEN_OFFSERVER
SERVICECMDSTARTING FIND DEVICESearching device...SendingSending data...Server launchedServer launching...Service CreatedService destroyedService pausedService restartedService startedSetting bt to previous state. Shake Contact RoxShakeContactServiceShakeContactService.javaShaking Shaking.javaSize of content: Starting data transferStarting the threadSuppressLint.javaTAGTOTYPE TYPE_RFCOMMTargetApi.javaTurning bluetooth onType is CONTACT Type is MP3URIURIEncodedStringUUIDVVCardVIVIILVJJVLVLIVLLVLLLVLLLLVLZVZVcardWRITING MESSAGEZZLZLJZLLZLLI[B[B>;[F[Landroid/content/Context;[Ljava/lang/Class;[Ljava/lang/Object;[Ljava/lang/String;_data _display_name_id_sizeaccelationSquareRootacceptaccess$0access$1 access$10access$2access$3access$4access$5access$6access$7access$8access$9 accessFlagsaccuracyactionactivity
actualTimeadapteradd addActionaddFlagsaddRfcommServiceRecordalbum3android.bluetooth.adapter.action.LOCAL_NAME_CHANGED5android.bluetooth.adapter.action.REQUEST_DISCOVERABLE.android.bluetooth.adapter.action.STATE_CHANGED5android.bluetooth.adapter.extra.DISCOVERABLE_DURATION*android.bluetooth.adapter.extra.LOCAL_NAME%android.bluetooth.adapter.extra.STATE%android.bluetooth.device.action.FOUND%android.bluetooth.device.extra.DEVICEandroid.intent.action.INSERT android.intent.action.SCREEN_OFF"android.intent.action.USER_PRESENTandroid.intent.action.VIEWapp_nameappendarg0argsartistassignContactUriattr availablebbClientbClientListenerbConfigbConfigurationbExit bExitListenerbServerbServerListenerbSharebadge
bindListen bluetoothbluetoothWasRunningbt btManagerbtNCRbtSRbtStateReceiverbtStateReceiver.javabufbufferbuildbuilder byteContactcc_rfcomm_channel_pickercacacan't find the constructor4can't find the constructor for rfcomm channel picker%can't find the constructor for socket*can't find the rfcomm channel picker classcancelDiscoverycbBadgeListenercbEnableServicecbEnableServiceListenercbServiceEnable
changeNamechannelchildrenclass clientclosecloseExceptioncmdcodecom.android.music.metachanged%com.android.music.musicservicecommand"com.android.music.playbackcomplete"com.android.music.playstatechangedcom.android.music.queuechangedcommandcommit
conect to:connectconnectExceptionconnectSimulator#connected, sending info to device: constructor contact.vcfcontactToBytescontainscontentcontextcount counterBytes createContactcreateInputStreamcreateRfcommSocket!createRfcommSocketToServiceRecordcurrentTimeMillisddata
dataColumndataTypedataURIdefaultContactdeletedevicedialogdisablediscoverableIntentdismissdoInBackgrounddrawabledroiddurationee1 e_addr_in_useediteditorenable enableDeviceenableVisibilityencryptequalserrnoeventexecuteexists fOutputStreamf_e_addr_in_usef_internal_handlerf_internal_servicef_internal_socket f_rfcomm_typefdfilefile://filenamefilter filterAUPfilterScreenOff
findDevice findViewByIdfinishfisfoundgcget getActiongetAlbumgetApplicationContext getArtistgetBaseContextgetBluetoothManagergetBytesgetCanonicalNamegetCausegetClass getClassNamegetCodegetColumnIndexgetContentResolver
getContextgetCountgetData getDataStringgetDeclaredClassesgetDeclaredConstructorgetDeclaredFieldgetDeclaredLengthgetDeclaredMethodgetDefaultAdaptergetDefaultContactgetDefaultSensorgetExternalStorageDirectorygetExternalStorageState getExtrasgetForegroundApp getID3v1TaggetInputStream
getMessage getMethod
getMp3ListgetNamegetOutputStreamgetParcelableExtragetPath getResultCodegetRunningAppProcessesgetRunningServicesgetSharedPreferences getSongTitle getStringgetStringExtragetSystemServicegetTrackgetUrigetUuidhandlehandlerhasExtra hasID3v1TaghasNexthelloiiFiconid
importanceininfointValueintentinternal_handlerinternal_serviceinternal_socketinvoke isAfterLast isChecked isDiscoveringisEnable isEnabledisRunningService isSimulatoriteratorl
lastUpdatelaunchContactAdder launchEmisor launchServerlayoutlengthlistlistenUsingRfcomm"listenUsingRfcommWithServiceRecordlookup lookupKeymmActivityManagermFileOutputStreammHandlermIntentReceiver.onReceive mMediaPlayermPrefs mReceivermServicemSocketm_add_rfcomm_service_record m_bind_listenm_next_channelm_set_close_handlermainmakeTextmanager mmContextmmDevice
mmInStream mmOutStreammmServerSocketmmSocketmounted moveToFirst
moveToNextmp3file music.mp3music_column_index musiccursorname newInstancenext nextChannelnextLoopContentSizenoppodlProgressDialogoffsetonAccuracyChangedonActivityResultonBindonClickonCreate onDestroy onDismissonPause onPostExecute onReceiveonResumeonSensorChangedonShuffonStartopenAssetFileDescriptoroutpparamsparsepathpausephonesportposExecute Exception postDelayed powerSaveppprevious previousNameprintStackTraceprocess processName processnameprogressDialogprojputExtra putStringqueryquickContactBadge1rrai rawDataTypereadreadToFileFromBufferrecregisterListenerregisterReceiverreqCoderesult
resultCodereuserfcomm_channel_picker rfcomm_typerunsavedInstanceStatesdksensor sensorManagersensorManagerSim separatorserialVersionUIDserviceserviceRunning setAccessible setActionsetAlbumsetBluetoothManagersetBluetoothToPreviousState
setCheckedsetCloseHandlersetCodesetContactInDevicesetContentViewsetDataAndTypesetFlagssetImageResource
setMessage
setMp3ListsetNamesetOnClickListenersetOnDismissListenersetTitlesetTracksetUrishakeshow sizeOfContentsocketsongListsplit startActivitystartActivityForResultstartDiscovery startServicestartidstop stopServicestreamstringtagtamtext text/x-vcardthisthis$0throwErrnoNativetmptmpIntmpOuttoStringtoast togglepausetracktypeunregisterListenerunregisterReceiveruriuri2uuidvvCardvaluevalueOfvaluesvfilewidget0widget32withAppendedPathwritexyzByJ�;iiixxx!��/"�Kx�-xZ�g�u,�@pI�]Z\y�@yZfZZ@;t;xO-/?iKy<x=G8�+[��x0*xxx;l��Z3�D�K�4<y,-zJ�<+=�[I=<z,��I��=x��>w,0���>v={,�KyKKx\�,���L�P�z-�=`�F&,)Z ��y;=�J�wi-yZ�(](@�Z1�xxxy{x�{[E,}-:pLKx�Z- >y} Y��?IDM�F��@yl�@ ��L ��KZ~{�@-+�Z�\x���)?ZZZ�,Z�<i<[�?L����x�� ���L��O��O<MJ Y i* ;KK�0�j-J �@j� K>Hg�xxi"�Am."��.��]��.{i @ ;T�@ �@J�F�?xi ��_{�@-+=?F&�xyx"
�Bm0yL�<;;�;�@�L����I=)h- ]Jx���<L�x �>�A�M���>ZL{YSh��[_{�@-+=!�,.�x=�ZZK��KIk�-IK0-l�Z�m;l �P� ��iK ��i�=
�r[
 " d�FT�_�<����������i" L�Y�-��KyhK��ZK��:-0�Ji�Gi�Hi�[�y�������l��� ��Y�-��KchK��ZK� ���ZK��(��ZKK�M� �\Ky
�M
K�K�  �Jvh  .= "  �Gi�Hi�[�yp�  �����Ei���-4��KC�-�E#E�Y-2��JN��M�\y1��i'��G\�o� �Zxj �M* �\y6
�j= 
  �Hp� 
  ��Zxj �M�\y& 
   �[�yW�; 
  �,���K�AK��,����,��|i--*>�n�,��i�,G���Z�;w�w�~w,}-�P>�+L �?gN
�P+P�"��L �=�[x�P�L �Pi �?��   �F���� �n{,i������=KZ{iM�Pi�Z>=z:�<\���1��1��1��læzx\��K�=Zx|�Fpij<����=---<D$4TL�-,�-<�-\�-
�=�<j   
�,��i�i-�D�K�4>ØÇX>�ÇX=�,��i�Z-�D�K�4<x[Ö�{҇X=�,����[�[����L�&�+K-�y�[����M�&�igK-x�� �v҇X=�*<=K-q�, ww�~wO (&&('')%)��P�xx-xx_{<xx��.��.3�<kK�k��yxD<K�yf�x�<�BZ�B<RZ�!z-g=�>p�>��@�
=H��K�&�y��<-"���x^�x;,@��K�Pi�P���2%;wJ;�����L�.-K�_�K�^�py-i�������uL�.��_�K�^�}{i������<6��-�i�@�KKKD{-i��_�-�K]������d�ix-mxx�-+=�\]Kyg.aZ�ZZZ[`mx�<ZZx�<x��.��-�<�.��:.�K�j�-��K.��-�-�.��:.�K�j�z-���<xU�W�  W� 8�����4�e6��5��8����7R8������8���8����8���4�j6�
�^7�i9�?9�?i4�p5�: 4�x6��7�6��7�6��7<6��7S6��7�7�stuvw4�~6��6��7�|}4��7?=7dd ddddddddddddd� 7�7z7�7�7�7�7�7+������W��!�X��X� �Z�Z
����[���[���]���]����]���_���_���`���`���a���b�c$����d%� ����d��d&� ����f��f
'����g� �h� �h� �h��h�!�h��i�j� �n�n21����o�o�p��!�t��t� �w�x5����x��!�x��y� �~�~9������!���� ��܂>������������� ��
؃ �� ��
Ї ܌?� ��������@� ��������A� �������B� �������C� ���ș�� D

G������ �� ��Н�ĞğȢR���������ԣ�������̤�����������V����� X���Хa����c����������e� ������̦f� �������g� ��������h� ���Ы�������j� ����������Э l

n��������� �� ��� ��� ��� ̱� �� �� ��� ��� IJ� ܲ �� ���� �� Ĵ�ܴ����}�������������������� ������Ժ

�

����Լ ������̾ܿ ���� �����������������������p�� ����x�%@&�* ��+ �cKle �g ��� O� �� %C���
����1Flinz/jku/AcceptThreadjava/lang/ObjectmmServerSocketLBluetoothServerSocket;adapterLBluetoothAdapter;uuidLUUID;nameLjava/lang/String;progressDialogLProgressDialog;TAG ConstantValue AcceptThread btManagerLlinz/jku/BluetoothManager;CONTEXT LContext;<init>()VCodejava/lang/Error LUnresolved compilation problems:
The type java.lang.Throwable cannot be resolved. It is indirectly referenced from required .class files
The import java.io.IOException cannot be resolved
The import java.util.UUID cannot be resolved
The import android.app cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.content.Context cannot be resolved
The import android.os cannot be resolved
The import android.util cannot be resolved
AsyncTask cannot be resolved to a type
Object cannot be resolved to a type
Void cannot be resolved to a type
String cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
UUID cannot be resolved to a type
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
String cannot be resolved to a type
Context cannot be resolved to a type
Override cannot be resolved to a type
String cannot be resolved to a type
Object cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
UUID cannot be resolved to a type
Context cannot be resolved to a type
Context cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
IOException cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
Context cannot be resolved to a type
Override cannot be resolved to a type
String cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
  (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/AcceptThread;doInBackground'([Ljava/lang/Object;)Ljava/lang/String;RuntimeInvisibleAnnotations
LOverride;*kUnresolved compilation problems:
Override cannot be resolved to a type
String cannot be resolved to a type
Object cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
UUID cannot be resolved to a type
Context cannot be resolved to a type
Context cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
IOException cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
Context cannot be resolved to a type
 onPostExecute-6Unresolved compilation problems:
Override cannot be resolved to a type
String cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type

SourceFileAcceptThread.java Signature-LAsyncTask<Ljava/lang/Object;LVoid;LString;>;InconsistentHierarchy4 AsyncTask6BluetoothAdapter8BluetoothServerSocket:Context<ProgressDialog>String@UUIDBVoidDjava/lang/String MissingTypes!
   4
�Y��!" 
#$�%&'(4
�Y)��!" 
#$+ '(4
�Y,��!E" 
#$./012E
3579;=?AC
����1Xlinz/jku/BluetoothManagerjava/lang/Object bluetoothLlinz/jku/BluetoothManager;UUIDLUUID;TAGLjava/lang/String; ConstantValue BluetoothManagerCONNECTION_KEYOJETEadapterLBluetoothAdapter;deviceLBluetoothDevice;progressDialogLProgressDialog; PREVIOUS_NAMEbluetoothWasRunningZ<init>()VCodejava/lang/Error  Unresolved compilation problems:
The import java.util.UUID cannot be resolved
The import android.app cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.content.Context cannot be resolved
The import android.content.Intent cannot be resolved
The import android.util cannot be resolved
The import android.widget cannot be resolved
UUID cannot be resolved to a type
UUID cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
ProgressDialog cannot be resolved to a type
String cannot be resolved to a type
Implicit super constructor Object() is undefined. Must explicitly invoke another constructor
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved
Log cannot be resolved
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Log cannot be resolved
Context cannot be resolved to a type
ProgressDialog cannot be resolved to a type
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Context cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Log cannot be resolved
BluetoothDevice cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
Context cannot be resolved to a type
CharSequence cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Toast cannot be resolved to a variable
Toast cannot be resolved to a type
Toast cannot be resolved
Context cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
BluetoothAdapter cannot be resolved to a variable
Intent cannot be resolved to a variable
BluetoothAdapter cannot be resolved to a variable
BluetoothAdapter cannot be resolved to a type
UUID cannot be resolved to a type
UUID cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
" #(Ljava/lang/String;)VLineNumberTableLocalVariableTablethis launchServer.(LContext;LProgressDialog;Ljava/lang/String;)V*kUnresolved compilation problems:
Context cannot be resolved to a type
ProgressDialog cannot be resolved to a type
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
ProgressDialog cannot be resolved to a type
setBluetoothManager-!Unresolved compilation problem:
getBluetoothManager()Llinz/jku/BluetoothManager; launchEmisor(LContext;LProgressDialog;)V3�Unresolved compilation problems:
Context cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Log cannot be resolved
BluetoothDevice cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type

changeName()Ljava/lang/String;7Unresolved compilation problems:
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
 enableDevice (LContext;)V;7Unresolved compilation problems:
Context cannot be resolved to a type
CharSequence cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Toast cannot be resolved to a variable
Toast cannot be resolved to a type
Toast cannot be resolved
enableVisibility>!Unresolved compilation problems:
Context cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
BluetoothAdapter cannot be resolved to a variable
Intent cannot be resolved to a variable
BluetoothAdapter cannot be resolved to a variable
isEnable()ZBPUnresolved compilation problem:
BluetoothAdapter cannot be resolved to a type
getUuid()LUUID;FhUnresolved compilation problems:
UUID cannot be resolved to a type
UUID cannot be resolved to a type
setBluetoothToPreviousStateI�Unresolved compilation problems:
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type

SourceFileBluetoothManager.javaMBluetoothAdapterOBluetoothDeviceQContextSProgressDialogVjava/lang/String MissingTypes!

  
 
 4
�Y�!�$% 
&!'(4
�Y)�!�$-% 
&*+*
�Y,�!�$7%)./*
�Y,�!�$;%!014
�Y2�!�$H% 
&!454
�Y6�!�$Y% 
&!894
�Y:�!�$j% 
&!<94
�Y=�!�$~% 
&!?@4
�YA�!�$�% 
&!CD4
�YE�!�$�% 
&G4
�YH�!�$�% 
&JKWLNPRTU
����1*linz/jku/btStateReceiverjava/lang/ObjectTAGLjava/lang/String; ConstantValue btStateReceiver<init>()VCodejava/lang/Error�Unresolved compilation problems:
The import android.bluetooth cannot be resolved
The import android.content.BroadcastReceiver cannot be resolved
The import android.content.Context cannot be resolved
The import android.content.Intent cannot be resolved
The import android.os cannot be resolved
The import android.util cannot be resolved
BroadcastReceiver cannot be resolved to a type
String cannot be resolved to a type
Override cannot be resolved to a type
Context cannot be resolved to a type
Intent cannot be resolved to a type
Bundle cannot be resolved to a type
BluetoothAdapter cannot be resolved to a variable
BluetoothAdapter cannot be resolved to a variable
BluetoothAdapter cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a variable

(Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/btStateReceiver; onReceive(LContext;LIntent;)VRuntimeInvisibleAnnotations
LOverride;�Unresolved compilation problems:
Override cannot be resolved to a type
Context cannot be resolved to a type
Intent cannot be resolved to a type
Bundle cannot be resolved to a type
BluetoothAdapter cannot be resolved to a variable
BluetoothAdapter cannot be resolved to a variable
BluetoothAdapter cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a variable

SourceFilebtStateReceiver.javaInconsistentHierarchy"BroadcastReceiver$Context&Intent(java/lang/String MissingTypes!
 4
� Y�� 
 4
� Y�� 
 )
!#%'
����1linz/jku/BuildConfigjava/lang/ObjectDEBUGZ ConstantValue<init>()VCode java/lang/Error�Unresolved compilation problem:
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/BuildConfig;
SourceFileBuildConfig.java1
 4
� Y�� 

����1Ulinz/jku/ConnectThreadjava/lang/ObjectmmSocketLBluetoothSocket;mmDeviceLBluetoothDevice; mmContext LContext;CONNECTION_KEYLjava/lang/String;adapterLBluetoothAdapter;tmpuuidLUUID;TAG ConstantValue ConnectThreadprogressDialogLProgressDialog; mReceiverLBroadcastReceiver;<init>(LContext;LProgressDialog;)VCodejava/lang/Error *Unresolved compilation problems:
The import java.io.IOException cannot be resolved
The import java.util.UUID cannot be resolved
The import android.app cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.content.BroadcastReceiver cannot be resolved
The import android.content.Context cannot be resolved
The import android.content.Intent cannot be resolved
The import android.content.IntentFilter cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.util cannot be resolved
AsyncTask cannot be resolved to a type
Object cannot be resolved to a type
Void cannot be resolved to a type
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
Context cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
UUID cannot be resolved to a type
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Context cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Context cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Handler cannot be resolved to a type
Handler cannot be resolved to a type
Runnable cannot be resolved to a type
Override cannot be resolved to a type
String cannot be resolved to a type
Object cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
UUID cannot be resolved to a type
UUID cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
IntentFilter cannot be resolved to a type
IntentFilter cannot be resolved to a type
BluetoothDevice cannot be resolved to a variable
Context cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
UUID cannot be resolved to a type
Exception cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
Log cannot be resolved
BluetoothDevice cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
ProgressDialog cannot be resolved to a type
NullPointerException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Override cannot be resolved to a type
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
Context cannot be resolved to a type
" #(Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/ConnectThread;doInBackground'([Ljava/lang/Object;)Ljava/lang/String;RuntimeInvisibleAnnotations
LOverride;-Unresolved compilation problems:
Override cannot be resolved to a type
String cannot be resolved to a type
Object cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
UUID cannot be resolved to a type
UUID cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
IntentFilter cannot be resolved to a type
IntentFilter cannot be resolved to a type
BluetoothDevice cannot be resolved to a variable
Context cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type

findDevice()Z1�Unresolved compilation problems:
Log cannot be resolved
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
UUID cannot be resolved to a type
Exception cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
String cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothDevice cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
Log cannot be resolved
BluetoothDevice cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
ProgressDialog cannot be resolved to a type
NullPointerException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
 onPostExecute4�Unresolved compilation problems:
Override cannot be resolved to a type
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
dismiss()V8NUnresolved compilation problem:
ProgressDialog cannot be resolved to a type

SourceFileConnectThread.java Signature-LAsyncTask<Ljava/lang/Object;LVoid;LString;>;InconsistentHierarchy? AsyncTaskABluetoothAdapterCBluetoothDeviceEBluetoothSocketGBroadcastReceiverIContextKProgressDialogMStringOUUIDQVoidSjava/lang/String MissingTypes!

   4
�Y�!�$% 
&'�()*+4
�Y,�!�$.% 
&'./4
�Y0�!�$E% 
&'2#*+4
�Y3�!�$�% 
&'564
�Y7�!�$�% 
&'9:;<=T >@BDFHJLNPR
����1@linz/jku/DataReceiverjava/lang/ObjectmmSocketLBluetoothSocket;
mmInStream LInputStream;TAGLjava/lang/String; ConstantValue  DataReceiverCONTEXT LContext;<init>()VCodejava/lang/Error �Unresolved compilation problems:
The import java.io.File cannot be resolved
The import java.io.FileOutputStream cannot be resolved
The import java.io.IOException cannot be resolved
The import java.io.InputStream cannot be resolved
The import android.bluetooth cannot be resolved
The import android.content.Context cannot be resolved
The import android.content.Intent cannot be resolved
The import android.net cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.util cannot be resolved
AsyncTask cannot be resolved to a type
Object cannot be resolved to a type
Void cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
InputStream cannot be resolved to a type
String cannot be resolved to a type
Context cannot be resolved to a type
Override cannot be resolved to a type
Object cannot be resolved to a type
Log cannot be resolved
BluetoothSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
Context cannot be resolved to a type
Context cannot be resolved to a type
InputStream cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
InputStream cannot be resolved to a type
InputStream cannot be resolved to a type
IOException cannot be resolved to a type
Integer cannot be resolved to a type
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Environment cannot be resolved
File cannot be resolved to a variable
Exception cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Environment cannot be resolved
File cannot be resolved to a variable
String cannot be resolved to a type
File cannot be resolved to a type
File cannot be resolved to a type
FileOutputStream cannot be resolved to a type
FileOutputStream cannot be resolved to a type
InputStream cannot be resolved to a type
InputStream cannot be resolved to a type
Integer cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved
Log cannot be resolved
String cannot be resolved to a type
InputStream cannot be resolved to a type
InputStream cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
android.content.Intent cannot be resolved to a variable
Uri cannot be resolved
Environment cannot be resolved
File cannot be resolved to a variable
Intent cannot be resolved to a variable
Context cannot be resolved to a type
Override cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/DataReceiver;doInBackground([Ljava/lang/Object;)[BRuntimeInvisibleAnnotations
LOverride;##Unresolved compilation problems:
Override cannot be resolved to a type
Object cannot be resolved to a type
Log cannot be resolved
BluetoothSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
Context cannot be resolved to a type
Context cannot be resolved to a type
InputStream cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
InputStream cannot be resolved to a type
InputStream cannot be resolved to a type
IOException cannot be resolved to a type
Integer cannot be resolved to a type
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Environment cannot be resolved
File cannot be resolved to a variable
Exception cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Environment cannot be resolved
File cannot be resolved to a variable
readToFileFromBuffer&Unresolved compilation problems:
String cannot be resolved to a type
File cannot be resolved to a type
File cannot be resolved to a type
FileOutputStream cannot be resolved to a type
FileOutputStream cannot be resolved to a type
InputStream cannot be resolved to a type
InputStream cannot be resolved to a type
Integer cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved
Log cannot be resolved
String cannot be resolved to a type
InputStream cannot be resolved to a type
InputStream cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
launchContactAdder)SUnresolved compilation problems:
Intent cannot be resolved to a type
Intent cannot be resolved to a type
android.content.Intent cannot be resolved to a variable
Uri cannot be resolved
Environment cannot be resolved
File cannot be resolved to a variable
Intent cannot be resolved to a variable
Context cannot be resolved to a type
 onPostExecute([B)V-�Unresolved compilation problems:
Override cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved

SourceFileDataReceiver.java Signature'LAsyncTask<Ljava/lang/Object;LVoid;[B>;InconsistentHierarchy4 AsyncTask6BluetoothSocket8Context: InputStream<Void>java/lang/String MissingTypes!
  4
�Y�� 
� !4
�Y"�� 
$4
�Y%��W 
'4
�Y(��� 
*+ !4
�Y,��� 
./012?3579;=
����1;linz/jku/DataSenderjava/lang/ObjectmmSocketLBluetoothSocket; mmOutStreamLOutputStream;TAGLjava/lang/String; ConstantValue 
DataSenderprogressDialogLProgressDialog;<init>()VCodejava/lang/Error
MUnresolved compilation problems:
The import java.io.BufferedInputStream cannot be resolved
The import java.io.File cannot be resolved
The import java.io.FileInputStream cannot be resolved
The import java.io.IOException cannot be resolved
The import java.io.InputStream cannot be resolved
The import java.io.OutputStream cannot be resolved
The import android.app cannot be resolved
The import android.bluetooth cannot be resolved
The import android.os cannot be resolved
The import android.util cannot be resolved
AsyncTask cannot be resolved to a type
Object cannot be resolved to a type
Void cannot be resolved to a type
String cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
OutputStream cannot be resolved to a type
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
Override cannot be resolved to a type
String cannot be resolved to a type
Object cannot be resolved to a type
Log cannot be resolved
BluetoothSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
OutputStream cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
OutputStream cannot be resolved to a type
Log cannot be resolved
OutputStream cannot be resolved to a type
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
OutputStream cannot be resolved to a type
String cannot be resolved
OutputStream cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
OutputStream cannot be resolved to a type
String cannot be resolved to a type
File cannot be resolved to a type
File cannot be resolved to a type
The method getUri() from the type Shaking refers to the missing type Uri
Log cannot be resolved
String cannot be resolved to a type
OutputStream cannot be resolved to a type
String cannot be resolved
Log cannot be resolved
String cannot be resolved to a type
InputStream cannot be resolved to a type
BufferedInputStream cannot be resolved to a type
FileInputStream cannot be resolved to a type
OutputStream cannot be resolved to a type
OutputStream cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/DataSender;doInBackground'([Ljava/lang/Object;)Ljava/lang/String;RuntimeInvisibleAnnotations
LOverride;#aUnresolved compilation problems:
Override cannot be resolved to a type
String cannot be resolved to a type
Object cannot be resolved to a type
Log cannot be resolved
BluetoothSocket cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
OutputStream cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
OutputStream cannot be resolved to a type
Log cannot be resolved
OutputStream cannot be resolved to a type
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
OutputStream cannot be resolved to a type
String cannot be resolved
OutputStream cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
OutputStream cannot be resolved to a type
String cannot be resolved to a type
File cannot be resolved to a type
File cannot be resolved to a type
The method getUri() from the type Shaking refers to the missing type Uri
Log cannot be resolved
String cannot be resolved to a type
OutputStream cannot be resolved to a type
String cannot be resolved
Log cannot be resolved
String cannot be resolved to a type
InputStream cannot be resolved to a type
BufferedInputStream cannot be resolved to a type
FileInputStream cannot be resolved to a type
OutputStream cannot be resolved to a type
OutputStream cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved
 onPostExecute&�Unresolved compilation problems:
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
IOException cannot be resolved to a type
Log cannot be resolved

SourceFileDataSender.java Signature-LAsyncTask<Ljava/lang/Object;LVoid;LString;>;InconsistentHierarchy- AsyncTask/BluetoothSocket1 OutputStream3ProgressDialog5String7Void9java/lang/String MissingTypes!
  4
�Y�� 
� !4
�Y"��$ 
$4
�Y%��� 
'()*+:,.02468
����1;linz/jku/GetMp3Listjava/lang/ObjectsongListLList; SignatureLList<Llinz/jku/Mp3Data;>; musiccursorLCursor;music_column_indexIcount mMediaPlayer LMediaPlayer;<init>()VCodejava/lang/Error
�Unresolved compilation problems:
The type java.util.ArrayList cannot be resolved. It is indirectly referenced from required .class files
The type java.util.List cannot be resolved. It is indirectly referenced from required .class files
The import java.io cannot be resolved
The import java.util.ArrayList cannot be resolved
The import java.util.List cannot be resolved
The import android.content.Context cannot be resolved
The import android.database cannot be resolved
The import android.media cannot be resolved
The import android.net cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.provider cannot be resolved
AsyncTask cannot be resolved to a type
Context cannot be resolved to a type
Void cannot be resolved to a type
List cannot be resolved to a type
List cannot be resolved to a type
Cursor cannot be resolved to a type
MediaPlayer cannot be resolved to a type
Override cannot be resolved to a type
List cannot be resolved to a type
Context cannot be resolved to a type
Context cannot be resolved to a type
List cannot be resolved to a type
ArrayList cannot be resolved to a type
System cannot be resolved
String cannot be resolved to a type
MediaStore cannot be resolved to a variable
MediaStore cannot be resolved to a variable
MediaStore cannot be resolved to a variable
MediaStore cannot be resolved to a variable
Cursor cannot be resolved to a type
MediaStore cannot be resolved to a variable
Cursor cannot be resolved to a type
Environment cannot be resolved
Environment cannot be resolved
Cursor cannot be resolved to a type
MediaStore cannot be resolved to a variable
Cursor cannot be resolved to a type
Cursor cannot be resolved to a type
String cannot be resolved to a type
Cursor cannot be resolved to a type
The type java.lang.Exception cannot be resolved. It is indirectly referenced from required .class files
The type java.io.IOException cannot be resolved. It is indirectly referenced from required .class files
The type java.io.File cannot be resolved. It is indirectly referenced from required .class files
The constructor MP3File(File) is undefined
File cannot be resolved to a type
The method getArtist() from the type ID3v1 refers to the missing type String
The method getSongTitle() from the type ID3v1 refers to the missing type String
The method getAlbum() from the type ID3v1 refers to the missing type String
Uri cannot be resolved
List cannot be resolved to a type
Exception cannot be resolved to a type
Cursor cannot be resolved to a type
List cannot be resolved to a type
Override cannot be resolved to a type
List cannot be resolved to a type
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/GetMp3List;doInBackground([LContext;)LList;&([LContext;)LList<Llinz/jku/Mp3Data;>;RuntimeInvisibleAnnotations
LOverride;$�Unresolved compilation problems:
Override cannot be resolved to a type
List cannot be resolved to a type
Context cannot be resolved to a type
Context cannot be resolved to a type
List cannot be resolved to a type
ArrayList cannot be resolved to a type
System cannot be resolved
String cannot be resolved to a type
MediaStore cannot be resolved to a variable
MediaStore cannot be resolved to a variable
MediaStore cannot be resolved to a variable
MediaStore cannot be resolved to a variable
Cursor cannot be resolved to a type
MediaStore cannot be resolved to a variable
Cursor cannot be resolved to a type
Environment cannot be resolved
Environment cannot be resolved
Cursor cannot be resolved to a type
MediaStore cannot be resolved to a variable
Cursor cannot be resolved to a type
Cursor cannot be resolved to a type
String cannot be resolved to a type
Cursor cannot be resolved to a type
The type java.lang.Exception cannot be resolved. It is indirectly referenced from required .class files
The type java.io.IOException cannot be resolved. It is indirectly referenced from required .class files
The type java.io.File cannot be resolved. It is indirectly referenced from required .class files
The constructor MP3File(File) is undefined
File cannot be resolved to a type
The method getArtist() from the type ID3v1 refers to the missing type String
The method getSongTitle() from the type ID3v1 refers to the missing type String
The method getAlbum() from the type ID3v1 refers to the missing type String
Uri cannot be resolved
List cannot be resolved to a type
Exception cannot be resolved to a type
Cursor cannot be resolved to a type
List cannot be resolved to a type
 onPostExecute (LList;)V(LList<Llinz/jku/Mp3Data;>;)V)lUnresolved compilation problems:
Override cannot be resolved to a type
List cannot be resolved to a type

SourceFileGetMp3List.java6LAsyncTask<LContext;LVoid;LList<Llinz/jku/Mp3Data;>;>;InconsistentHierarchy/ AsyncTask1Context3Cursor5List7 MediaPlayer9Void MissingTypes!
4
�Y�� 
� !"4
�Y#�� 
%&'!"4
�Y(��R 
*+,-:.02468
����1" linz/jku/InsecureBluetooth$InUsejava/lang/ObjectserialVersionUIDJ ConstantValue<init>()VCodejava/lang/ErrorUnresolved compilation problems:
The import java.io cannot be resolved
The import java.lang.reflect cannot be resolved
The import java.lang.reflect cannot be resolved
The import java.lang.reflect cannot be resolved
The import java.lang.reflect cannot be resolved
The import java.util.UUID cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.util cannot be resolved
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
RuntimeException cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
IOException cannot be resolved to a type
Class cannot be resolved to a type
Class cannot be resolved to a type
Class<BluetoothAdapter> cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Class cannot be resolved to a type
Log cannot be resolved
Class<BluetoothAdapter> cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
RuntimeException cannot be resolved to a type
Constructor cannot be resolved to a type
UUID cannot be resolved to a type
RuntimeException cannot be resolved to a type
Object cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
IOException cannot be resolved to a type
The method listenUsingRfcomm(int, boolean) from the type InsecureBluetooth refers to the missing type BluetoothServerSocket
No exception of type InsecureBluetooth.InUse can be thrown; an exception type must be a subclass of Throwable
Field cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
String cannot be resolved to a type
ParcelUuid cannot be resolved to a type
IBinder cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
ParcelUuid cannot be resolved to a type
Binder cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
Field cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
Handler cannot be resolved to a type
Object cannot be resolved to a type
NoSuchMethodException cannot be resolved to a type
RuntimeException cannot be resolved to a type
NoSuchFieldException cannot be resolved to a type
RuntimeException cannot be resolved to a type
IllegalAccessException cannot be resolved to a type
RuntimeException cannot be resolved to a type
InstantiationException cannot be resolved to a type
RuntimeException cannot be resolved to a type
InvocationTargetException cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
RuntimeException cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
IOException cannot be resolved to a type
No exception of type InsecureBluetooth.InUse can be thrown; an exception type must be a subclass of Throwable
BluetoothServerSocket cannot be resolved to a type
Constructor cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
Class<BluetoothServerSocket> cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
RuntimeException cannot be resolved to a type
Field cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
Class<BluetoothSocket> cannot be resolved to a type
Integer cannot be resolved to a type
Field cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
Class<BluetoothSocket> cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
Field cannot be resolved to a type
Object cannot be resolved to a type
Class cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type

(Ljava/lang/String;)VLineNumberTableLocalVariableTablethis"Llinz/jku/InsecureBluetooth$InUse;
SourceFileInsecureBluetooth.javaInconsistentHierarchy InnerClasseslinz/jku/InsecureBluetoothInUse RuntimeException MissingTypes 
 4
� Y�� 


!
����19linz/jku/InsecureBluetoothjava/lang/Object<init>()VCode java/lang/Error Unresolved compilation problems:
The import java.io cannot be resolved
The import java.lang.reflect cannot be resolved
The import java.lang.reflect cannot be resolved
The import java.lang.reflect cannot be resolved
The import java.lang.reflect cannot be resolved
The import java.util.UUID cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.bluetooth cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.util cannot be resolved
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
RuntimeException cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
IOException cannot be resolved to a type
Class cannot be resolved to a type
Class cannot be resolved to a type
Class<BluetoothAdapter> cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Class cannot be resolved to a type
Log cannot be resolved
Class<BluetoothAdapter> cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
RuntimeException cannot be resolved to a type
Constructor cannot be resolved to a type
UUID cannot be resolved to a type
RuntimeException cannot be resolved to a type
Object cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
IOException cannot be resolved to a type
The method listenUsingRfcomm(int, boolean) from the type InsecureBluetooth refers to the missing type BluetoothServerSocket
No exception of type InsecureBluetooth.InUse can be thrown; an exception type must be a subclass of Throwable
Field cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
String cannot be resolved to a type
ParcelUuid cannot be resolved to a type
IBinder cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
ParcelUuid cannot be resolved to a type
Binder cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
Field cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
Handler cannot be resolved to a type
Object cannot be resolved to a type
NoSuchMethodException cannot be resolved to a type
RuntimeException cannot be resolved to a type
NoSuchFieldException cannot be resolved to a type
RuntimeException cannot be resolved to a type
IllegalAccessException cannot be resolved to a type
RuntimeException cannot be resolved to a type
InstantiationException cannot be resolved to a type
RuntimeException cannot be resolved to a type
InvocationTargetException cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
RuntimeException cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
IOException cannot be resolved to a type
No exception of type InsecureBluetooth.InUse can be thrown; an exception type must be a subclass of Throwable
BluetoothServerSocket cannot be resolved to a type
Constructor cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
Class<BluetoothServerSocket> cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
RuntimeException cannot be resolved to a type
Field cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
Class<BluetoothSocket> cannot be resolved to a type
Integer cannot be resolved to a type
Field cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
Class<BluetoothSocket> cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
Field cannot be resolved to a type
Object cannot be resolved to a type
Class cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/InsecureBluetooth;"listenUsingRfcommWithServiceRecordD(LBluetoothAdapter;Ljava/lang/String;LUUID;Z)LBluetoothServerSocket;
Exceptions IOException
0Unresolved compilation problems:
BluetoothServerSocket cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
String cannot be resolved to a type
UUID cannot be resolved to a type
IOException cannot be resolved to a type
Class cannot be resolved to a type
Class cannot be resolved to a type
Class<BluetoothAdapter> cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
Class cannot be resolved to a type
Log cannot be resolved
Class<BluetoothAdapter> cannot be resolved to a type
BluetoothAdapter cannot be resolved to a type
RuntimeException cannot be resolved to a type
Constructor cannot be resolved to a type
UUID cannot be resolved to a type
RuntimeException cannot be resolved to a type
Object cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
IOException cannot be resolved to a type
The method listenUsingRfcomm(int, boolean) from the type InsecureBluetooth refers to the missing type BluetoothServerSocket
No exception of type InsecureBluetooth.InUse can be thrown; an exception type must be a subclass of Throwable
Field cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
String cannot be resolved to a type
ParcelUuid cannot be resolved to a type
IBinder cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
ParcelUuid cannot be resolved to a type
Binder cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
Field cannot be resolved to a type
Object cannot be resolved to a type
Method cannot be resolved to a type
Class cannot be resolved to a type
Handler cannot be resolved to a type
Object cannot be resolved to a type
NoSuchMethodException cannot be resolved to a type
RuntimeException cannot be resolved to a type
NoSuchFieldException cannot be resolved to a type
RuntimeException cannot be resolved to a type
IllegalAccessException cannot be resolved to a type
RuntimeException cannot be resolved to a type
InstantiationException cannot be resolved to a type
RuntimeException cannot be resolved to a type
InvocationTargetException cannot be resolved to a type
IOException cannot be resolved to a type
IOException cannot be resolved to a type
RuntimeException cannot be resolved to a type
listenUsingRfcomm(IZZ)LBluetoothServerSocket; Unresolved compilation problems:
BluetoothServerSocket cannot be resolved to a type
IOException cannot be resolved to a type
No exception of type InsecureBluetooth.InUse can be thrown; an exception type must be a subclass of Throwable
BluetoothServerSocket cannot be resolved to a type
Constructor cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
Class<BluetoothServerSocket> cannot be resolved to a type
BluetoothServerSocket cannot be resolved to a type
RuntimeException cannot be resolved to a type
Field cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
Class<BluetoothSocket> cannot be resolved to a type
Integer cannot be resolved to a type
Field cannot be resolved to a type
BluetoothSocket cannot be resolved to a type
Class<BluetoothSocket> cannot be resolved to a type
Integer cannot be resolved to a type
Object cannot be resolved to a type
Field cannot be resolved to a type
Object cannot be resolved to a type
Class cannot be resolved to a type
(IZ)LBluetoothServerSocket; KUnresolved compilation problem:
IOException cannot be resolved to a type
!createRfcommSocketToServiceRecord,(LBluetoothDevice;ILUUID;Z)LBluetoothSocket;+(LBluetoothDevice;LUUID;Z)LBluetoothSocket;createRfcommSocket&(LBluetoothDevice;IZ)LBluetoothSocket;
SourceFileInsecureBluetooth.java InnerClasses* linz/jku/InsecureBluetooth$InUseInUse-BluetoothAdapter/BluetoothDevice1BluetoothServerSocket3BluetoothSocket5UUID7java/lang/String MissingTypes!4
�Y
� � 
 *
�Y� �
*
�Y� �k *
�Y� ��!"*
�Y� �� !#*
�Y� �� $%*
�Y� ��&'(
)+
8,.0246
����1\ linz/jku/Mainjava/lang/ObjectTAGLjava/lang/String; ConstantValue MainPICK_CONTACT_REQUESTIEDIT_CONTACT_REQUESTURIEncodedStringserviceRunningZcbEnableService
LCheckBox;mPrefsLSharedPreferences;badgeLQuickContactBadge;defaultContactLUri; byteContact[BcbEnableServiceListenerLOnClickListener; bExitListenerbConfigurationcbBadgeListener<init>()VCode%java/lang/Error'8Unresolved compilation problems:
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import android.app cannot be resolved
The import android.app cannot be resolved
The import android.app cannot be resolved
The import android.content.Intent cannot be resolved
The import android.content.SharedPreferences cannot be resolved
The import android.content.res cannot be resolved
The import android.database cannot be resolved
The import android.net cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.provider cannot be resolved
The import android.provider cannot be resolved
The import android.util cannot be resolved
The import android.view cannot be resolved
The import android.view cannot be resolved
The import android.widget cannot be resolved
The import android.widget cannot be resolved
The import android.widget cannot be resolved
Activity cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
CheckBox cannot be resolved to a type
SharedPreferences cannot be resolved to a type
QuickContactBadge cannot be resolved to a type
Uri cannot be resolved to a type
Override cannot be resolved to a type
Bundle cannot be resolved to a type
The method setContentView(int) is undefined for the type Main
CheckBox cannot be resolved to a type
CheckBox cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
QuickContactBadge cannot be resolved to a type
QuickContactBadge cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
View cannot be resolved to a type
View cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
CheckBox cannot be resolved to a type
Intent cannot be resolved to a type
CheckBox cannot be resolved to a type
CheckBox cannot be resolved to a type
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
SharedPreferences cannot be resolved to a type
MODE_WORLD_WRITEABLE cannot be resolved to a variable
String cannot be resolved to a type
SharedPreferences cannot be resolved to a type
String cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved
String cannot be resolved to a type
OnClickListener cannot be resolved to a type
QuickContactBadge cannot be resolved to a type
QuickContactBadge cannot be resolved to a type
OnClickListener cannot be resolved to a type
Exception cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Override cannot be resolved to a type
CheckBox cannot be resolved to a type
Activity cannot be resolved to a type
String cannot be resolved to a type
Cursor cannot be resolved to a type
The method getContentResolver() is undefined for the type Main
Uri cannot be resolved to a type
String cannot be resolved to a type
ContactsContract cannot be resolved to a variable
Uri cannot be resolved to a type
Uri cannot be resolved
ContactsContract cannot be resolved to a variable
AssetFileDescriptor cannot be resolved to a type
The method getContentResolver() is undefined for the type Main
ActivityManager cannot be resolved to a type
The type java.lang.Integer cannot be resolved. It is indirectly referenced from required .class files
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
Override cannot be resolved to a type
$) !*(Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/Main;onCreate (LBundle;)VRuntimeInvisibleAnnotations
LOverride;4QUnresolved compilation problems:
Override cannot be resolved to a type
Bundle cannot be resolved to a type
The method setContentView(int) is undefined for the type Main
CheckBox cannot be resolved to a type
CheckBox cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
QuickContactBadge cannot be resolved to a type
QuickContactBadge cannot be resolved to a type
The method findViewById(int) is undefined for the type Main
View cannot be resolved to a type
View cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
CheckBox cannot be resolved to a type
Intent cannot be resolved to a type
CheckBox cannot be resolved to a type
CheckBox cannot be resolved to a type
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
SharedPreferences cannot be resolved to a type
MODE_WORLD_WRITEABLE cannot be resolved to a variable
String cannot be resolved to a type
SharedPreferences cannot be resolved to a type
String cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved
String cannot be resolved to a type
OnClickListener cannot be resolved to a type
QuickContactBadge cannot be resolved to a type
QuickContactBadge cannot be resolved to a type
OnClickListener cannot be resolved to a type
Exception cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
onResume7�Unresolved compilation problems:
Override cannot be resolved to a type
CheckBox cannot be resolved to a type
Activity cannot be resolved to a type
contactToBytes:Unresolved compilation problems:
String cannot be resolved to a type
Cursor cannot be resolved to a type
The method getContentResolver() is undefined for the type Main
Uri cannot be resolved to a type
String cannot be resolved to a type
ContactsContract cannot be resolved to a variable
Uri cannot be resolved to a type
Uri cannot be resolved
ContactsContract cannot be resolved to a variable
AssetFileDescriptor cannot be resolved to a type
The method getContentResolver() is undefined for the type Main
getDefaultContact()[B>!Unresolved compilation problem:
()ZA�Unresolved compilation problems:
ActivityManager cannot be resolved to a type
The type java.lang.Integer cannot be resolved. It is indirectly referenced from required .class files
onActivityResult (IILIntent;)VEHUnresolved compilation problem:
Override cannot be resolved to a type

SourceFile Main.javaInconsistentHierarchyJActivityLBundleNCheckBoxPIntentROnClickListenerTQuickContactBadgeVSharedPreferencesXUriZjava/lang/String MissingTypes!
  

 !"#4
�$Y&�(�+, 
-./012#4
�$Y3�(�+7, 
-.5"12#4
�$Y6�(�+n, 
-.8"#4
�$Y9�(�+}, 
-. ;<#*
�$Y=�(�+�,?#4
�$Y@�(�+�, 
-.BC12#4
�$YD�(�+�, 
-.FGH[ IKMOQSUWY
����1/linz/jku/Mp3Datajava/lang/ObjectnameLjava/lang/String;trackalbumuriLUri;<init>>(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;LUri;)VCodejava/lang/Error�Unresolved compilation problems:
The import android.net cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
Uri cannot be resolved to a type
Implicit super constructor Object() is undefined. Must explicitly invoke another constructor
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
Uri cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/Mp3Data;getName()Ljava/lang/String;lUnresolved compilation problems:
String cannot be resolved to a type
String cannot be resolved to a type
setNamegetTracksetTrackgetAlbumsetAlbumgetUri()LUri;%fUnresolved compilation problems:
Uri cannot be resolved to a type
Uri cannot be resolved to a type
setUri(LUri;)V
SourceFile Mp3Data.java+Uri-java/lang/String MissingTypes!
  4
�Y�� 
 4
�Y��# 
 4
�Y��+ 
 4
�Y��3 
 4
�Y��; 
  4
�Y��C 
! 4
�Y��K 
"# 4
�Y$��S 
&' 4
�Y$��[ 
().*,
����1#linz/jku/ProgressSharingjava/lang/Object<init> (LContext;)VCode java/lang/Error �Unresolved compilation problems:
The import android.app cannot be resolved
The import android.content.Context cannot be resolved
The import android.os cannot be resolved
ProgressDialog cannot be resolved to a type
Context cannot be resolved to a type
Override cannot be resolved to a type
Bundle cannot be resolved to a type
The method setContentView(int) is undefined for the type ProgressSharing
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/ProgressSharing;onCreate (LBundle;)VRuntimeInvisibleAnnotations
LOverride;�Unresolved compilation problems:
Override cannot be resolved to a type
Bundle cannot be resolved to a type
The method setContentView(int) is undefined for the type ProgressSharing

SourceFileProgressSharing.javaInconsistentHierarchyBundleContext!ProgressDialog MissingTypes!4
�Y
� � 
4
�Y� � 
"
����1linz/jku/R$attrjava/lang/Object<init>()VCode java/lang/Error �Unresolved compilation problems:
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/R$attr;
SourceFileR.java InnerClasses
linz/jku/Rattr14
�Y
� �
 


����1linz/jku/R$drawablejava/lang/ObjectdroidI ConstantValueicon<init>()VCodejava/lang/Error�Unresolved compilation problems:
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/R$drawable;
SourceFileR.java InnerClasses
linz/jku/Rdrawable1 
  4
�Y��
 


����1- linz/jku/R$idjava/lang/ObjectEmisorI ConstantValueReceptorbConfigbExitbSharecbServiceEnablequickContactBadge1widget0widget32<init>()VCodejava/lang/Error�Unresolved compilation problems:
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
! "(Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/R$id;
SourceFileR.java InnerClasses+
linz/jku/Rid1  
   4
�Y� �#
$ 
%&'()
*,
����1linz/jku/R$layoutjava/lang/ObjectmainI ConstantValueshake<init>()VCodejava/lang/Error�Unresolved compilation problems:
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/R$layout;
SourceFileR.java InnerClasses
linz/jku/Rlayout1 
  4
�Y��
 


����1linz/jku/R$stringjava/lang/Objectapp_nameI ConstantValuehello<init>()VCodejava/lang/Error�Unresolved compilation problems:
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/R$string;
SourceFileR.java InnerClasses
linz/jku/Rstring1 
  4
�Y��
 


����1%
linz/jku/Rjava/lang/Object<init>()VCode java/lang/Error �Unresolved compilation problems:
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethis Llinz/jku/R;
SourceFileR.java InnerClasseslinz/jku/R$attrattrlinz/jku/R$drawabledrawable linz/jku/R$idid linz/jku/R$layoutlayout#linz/jku/R$stringstring14
�Y
� �
 
*!"$
����1/%linz/jku/Shaking$BTNameChangeReceiverjava/lang/ObjectTAGLjava/lang/String; ConstantValue BTNameChangeReceiverthis$0Llinz/jku/Shaking;<init>(Llinz/jku/Shaking;)VCodejava/lang/ErrorUnresolved compilation problems:
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import android.app cannot be resolved
The import android.app cannot be resolved
The import android.bluetooth cannot be resolved
The import android.content.BroadcastReceiver cannot be resolved
The import android.content.Context cannot be resolved
The import android.content.DialogInterface cannot be resolved
The import android.content.DialogInterface cannot be resolved
The import android.content.Intent cannot be resolved
The import android.content.IntentFilter cannot be resolved
The import android.net cannot be resolved
The import android.os cannot be resolved
The import android.provider cannot be resolved
The import android.util cannot be resolved
The import android.view cannot be resolved
The import android.view cannot be resolved
The import android.widget cannot be resolved
The import android.widget cannot be resolved
Activity cannot be resolved to a type
String cannot be resolved to a type
Button cannot be resolved to a type
Button cannot be resolved to a type
ProgressDialog cannot be resolved to a type
String cannot be resolved to a type
Uri cannot be resolved to a type
Override cannot be resolved to a type
Bundle cannot be resolved to a type
The method setContentView(int) is undefined for the type Shaking
The method getBaseContext() is undefined for the type Shaking
Intent cannot be resolved to a type
The method getBaseContext() is undefined for the type Shaking
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Shaking
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Shaking
Button cannot be resolved to a type
OnClickListener cannot be resolved to a type
Button cannot be resolved to a type
OnClickListener cannot be resolved to a type
Override cannot be resolved to a type
Activity cannot be resolved to a type
The method startService(Intent) is undefined for the type Shaking
Intent cannot be resolved to a type
The method getBaseContext() is undefined for the type Shaking
Log cannot be resolved
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
OnDismissListener cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
File cannot be resolved to a type
File cannot be resolved to a type
OutputStream cannot be resolved to a type
FileOutputStream cannot be resolved to a type
FileNotFoundException cannot be resolved to a type
Log cannot be resolved
IOException cannot be resolved to a type
Log cannot be resolved
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
ContactsContract cannot be resolved to a variable
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
Context cannot be resolved to a type
CharSequence cannot be resolved to a type
Toast cannot be resolved to a variable
Toast cannot be resolved to a type
Toast cannot be resolved
IntentFilter cannot be resolved to a type
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
OnDismissListener cannot be resolved to a type
OnDismissListener cannot be resolved to a type
DialogInterface cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
String cannot be resolved to a type
Override cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
String cannot be resolved to a type
Override cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethis'Llinz/jku/Shaking$BTNameChangeReceiver; onReceive(LContext;LIntent;)VRuntimeInvisibleAnnotations
LOverride;HUnresolved compilation problem:
Override cannot be resolved to a type

SourceFile Shaking.javaInconsistentHierarchy InnerClasses%linz/jku/Shaking'BroadcastReceiver)Context+Intent-java/lang/String MissingTypes 
 4
�Y�� 
4
�Y��� 
 !"#
$ .
&(*,
����10 linz/jku/Shaking$BTStateReceiverjava/lang/ObjectTAGLjava/lang/String; ConstantValue btStateReceiverthis$0Llinz/jku/Shaking;<init>(Llinz/jku/Shaking;)VCodejava/lang/ErrorUnresolved compilation problems:
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import android.app cannot be resolved
The import android.app cannot be resolved
The import android.bluetooth cannot be resolved
The import android.content.BroadcastReceiver cannot be resolved
The import android.content.Context cannot be resolved
The import android.content.DialogInterface cannot be resolved
The import android.content.DialogInterface cannot be resolved
The import android.content.Intent cannot be resolved
The import android.content.IntentFilter cannot be resolved
The import android.net cannot be resolved
The import android.os cannot be resolved
The import android.provider cannot be resolved
The import android.util cannot be resolved
The import android.view cannot be resolved
The import android.view cannot be resolved
The import android.widget cannot be resolved
The import android.widget cannot be resolved
Activity cannot be resolved to a type
String cannot be resolved to a type
Button cannot be resolved to a type
Button cannot be resolved to a type
ProgressDialog cannot be resolved to a type
String cannot be resolved to a type
Uri cannot be resolved to a type
Override cannot be resolved to a type
Bundle cannot be resolved to a type
The method setContentView(int) is undefined for the type Shaking
The method getBaseContext() is undefined for the type Shaking
Intent cannot be resolved to a type
The method getBaseContext() is undefined for the type Shaking
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Shaking
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Shaking
Button cannot be resolved to a type
OnClickListener cannot be resolved to a type
Button cannot be resolved to a type
OnClickListener cannot be resolved to a type
Override cannot be resolved to a type
Activity cannot be resolved to a type
The method startService(Intent) is undefined for the type Shaking
Intent cannot be resolved to a type
The method getBaseContext() is undefined for the type Shaking
Log cannot be resolved
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
OnDismissListener cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
File cannot be resolved to a type
File cannot be resolved to a type
OutputStream cannot be resolved to a type
FileOutputStream cannot be resolved to a type
FileNotFoundException cannot be resolved to a type
Log cannot be resolved
IOException cannot be resolved to a type
Log cannot be resolved
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
ContactsContract cannot be resolved to a variable
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
Context cannot be resolved to a type
CharSequence cannot be resolved to a type
Toast cannot be resolved to a variable
Toast cannot be resolved to a type
Toast cannot be resolved
IntentFilter cannot be resolved to a type
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
OnDismissListener cannot be resolved to a type
OnDismissListener cannot be resolved to a type
DialogInterface cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
String cannot be resolved to a type
Override cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
String cannot be resolved to a type
Override cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethis"Llinz/jku/Shaking$BTStateReceiver; onReceive(LContext;LIntent;)VRuntimeInvisibleAnnotations
LOverride;HUnresolved compilation problem:
Override cannot be resolved to a type

SourceFile Shaking.javaInconsistentHierarchy InnerClasses%linz/jku/ShakingBTStateReceiver(BroadcastReceiver*Context,Intent.java/lang/String MissingTypes 
 4
�Y�� 
4
�Y��� 
 !"#
$&/
')+-
����1klinz/jku/Shakingjava/lang/ObjectTAGLjava/lang/String; ConstantValue ShakingserviceZbtLlinz/jku/BluetoothManager;SERVERICLIENTbServerLButton;bClientppLProgressDialog;btNCR'Llinz/jku/Shaking$BTNameChangeReceiver;btSR"Llinz/jku/Shaking$BTStateReceiver; previousNameclientcodeuriLUri;bServerListenerLOnClickListener;bClientListenerodlProgressDialogLOnDismissListener;<init>()VCode*java/lang/Error,Unresolved compilation problems:
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import java.io cannot be resolved
The import android.app cannot be resolved
The import android.app cannot be resolved
The import android.bluetooth cannot be resolved
The import android.content.BroadcastReceiver cannot be resolved
The import android.content.Context cannot be resolved
The import android.content.DialogInterface cannot be resolved
The import android.content.DialogInterface cannot be resolved
The import android.content.Intent cannot be resolved
The import android.content.IntentFilter cannot be resolved
The import android.net cannot be resolved
The import android.os cannot be resolved
The import android.provider cannot be resolved
The import android.util cannot be resolved
The import android.view cannot be resolved
The import android.view cannot be resolved
The import android.widget cannot be resolved
The import android.widget cannot be resolved
Activity cannot be resolved to a type
String cannot be resolved to a type
Button cannot be resolved to a type
Button cannot be resolved to a type
ProgressDialog cannot be resolved to a type
String cannot be resolved to a type
Uri cannot be resolved to a type
Override cannot be resolved to a type
Bundle cannot be resolved to a type
The method setContentView(int) is undefined for the type Shaking
The method getBaseContext() is undefined for the type Shaking
Intent cannot be resolved to a type
The method getBaseContext() is undefined for the type Shaking
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Shaking
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Shaking
Button cannot be resolved to a type
OnClickListener cannot be resolved to a type
Button cannot be resolved to a type
OnClickListener cannot be resolved to a type
Override cannot be resolved to a type
Activity cannot be resolved to a type
The method startService(Intent) is undefined for the type Shaking
Intent cannot be resolved to a type
The method getBaseContext() is undefined for the type Shaking
Log cannot be resolved
String cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
OnDismissListener cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
File cannot be resolved to a type
File cannot be resolved to a type
OutputStream cannot be resolved to a type
FileOutputStream cannot be resolved to a type
FileNotFoundException cannot be resolved to a type
Log cannot be resolved
IOException cannot be resolved to a type
Log cannot be resolved
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
ContactsContract cannot be resolved to a variable
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
Context cannot be resolved to a type
CharSequence cannot be resolved to a type
Toast cannot be resolved to a variable
Toast cannot be resolved to a type
Toast cannot be resolved
IntentFilter cannot be resolved to a type
OnClickListener cannot be resolved to a type
OnClickListener cannot be resolved to a type
View cannot be resolved to a type
OnDismissListener cannot be resolved to a type
OnDismissListener cannot be resolved to a type
DialogInterface cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
String cannot be resolved to a type
Override cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
String cannot be resolved to a type
Override cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Uri cannot be resolved to a type
). &/(Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLlinz/jku/Shaking;onCreate (LBundle;)VRuntimeInvisibleAnnotations
LOverride;9 Unresolved compilation problems:
Override cannot be resolved to a type
Bundle cannot be resolved to a type
The method setContentView(int) is undefined for the type Shaking
The method getBaseContext() is undefined for the type Shaking
Intent cannot be resolved to a type
The method getBaseContext() is undefined for the type Shaking
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Shaking
Button cannot be resolved to a type
Button cannot be resolved to a type
The method findViewById(int) is undefined for the type Shaking
Button cannot be resolved to a type
OnClickListener cannot be resolved to a type
Button cannot be resolved to a type
OnClickListener cannot be resolved to a type
 onDestroy<TUnresolved compilation problems:
Override cannot be resolved to a type
Activity cannot be resolved to a type
The method startService(Intent) is undefined for the type Shaking
Intent cannot be resolved to a type
The method getBaseContext() is undefined for the type Shaking
Log cannot be resolved
String cannot be resolved to a type
progressDialog(I)V@�Unresolved compilation problems:
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
OnDismissListener cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
ProgressDialog cannot be resolved to a type
setContactInDevice([B)VDUnresolved compilation problems:
File cannot be resolved to a type
File cannot be resolved to a type
OutputStream cannot be resolved to a type
FileOutputStream cannot be resolved to a type
FileNotFoundException cannot be resolved to a type
Log cannot be resolved
IOException cannot be resolved to a type
Log cannot be resolved
Uri cannot be resolved to a type
Uri cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a type
ContactsContract cannot be resolved to a variable
getCode()IH!Unresolved compilation problem:
getUri()LUri;LfUnresolved compilation problems:
Uri cannot be resolved to a type
Uri cannot be resolved to a type
setCodesetUri(LUri;)V
SourceFile Shaking.javaInconsistentHierarchy InnerClassesU%linz/jku/Shaking$BTNameChangeReceiverBTNameChangeReceiverX linz/jku/Shaking$BTStateReceiverBTStateReceiver[Activity]Bundle_ButtonaOnClickListenercOnDismissListenereProgressDialoggUriijava/lang/String MissingTypes!
 

 !"#"$% &'(4
�)Y+�-�01 
234567(4
�)Y8�-�011 
23:'67(4
�)Y;�-�0B1 
23=>(4
�)Y?�-�0P1 
23AB(4
�)YC�-�0f1 
23 EF(*
�)YG�-�01 IJ(*
�)YK�-�0 1 M>(*
�)YG�-�01 NO(*
�)YK�-�01PQRSTVWYjZ\^`bdfh
����1,service/LockScreenReceiverjava/lang/ObjectserviceLservice/ShakeContactService;TAGLjava/lang/String; ConstantValue LockScreenReceiver<init> (Lservice/ShakeContactService;)VCodejava/lang/Error�Unresolved compilation problems:
The import android.content.BroadcastReceiver cannot be resolved
The import android.content.Context cannot be resolved
The import android.content.Intent cannot be resolved
The import android.util cannot be resolved
BroadcastReceiver cannot be resolved to a type
String cannot be resolved to a type
Override cannot be resolved to a type
Context cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
Intent cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
The method getResultCode() is undefined for the type LockScreenReceiver
 (Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLservice/LockScreenReceiver; onReceive(LContext;LIntent;)VRuntimeInvisibleAnnotations
LOverride;�Unresolved compilation problems:
Override cannot be resolved to a type
Context cannot be resolved to a type
Intent cannot be resolved to a type
Intent cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
Intent cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
The method getResultCode() is undefined for the type LockScreenReceiver

SourceFileLockScreenReceiver.javaInconsistentHierarchy$BroadcastReceiver&Context(Intent*java/lang/String MissingTypes! 
 4
�Y�� 
4
�Y�� 
 !"+
#%')
����1�service/ShakeContactServicejava/lang/Object<org/openintents/sensorsimulator/hardware/SensorEventListener
SERVICECMDLjava/lang/String; ConstantValue %com.android.music.musicservicecommandCMDNAMEcommandCMDTOGGLEPAUSE togglepauseCMDSTOPstopCMDPAUSEpause CMDPREVIOUSpreviousCMDNEXTnextartistalbumtracksongListLList; SignatureLList<Llinz/jku/Mp3Data;>; mReceiverLBroadcastReceiver;CONTEXT LContext;
lastUpdateJsensorManagerSimALorg/openintents/sensorsimulator/hardware/SensorManagerSimulator; sensorManagerLSensorManager; isSimulatorZ powerSaveLservice/LockScreenReceiver;TAG5ShakeContactServicemActivityManagerLActivityManager; musiccursorLCursor;music_column_indexIcount mMediaPlayer LMediaPlayer;<init>()VCodeCjava/lang/ErrorEXUnresolved compilation problems:
The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files
The type android.content.Context cannot be resolved. It is indirectly referenced from required .class files
The type android.hardware.SensorManager cannot be resolved. It is indirectly referenced from required .class files
The type java.lang.Class cannot be resolved. It is indirectly referenced from required .class files
The type java.lang.String cannot be resolved. It is indirectly referenced from required .class files
The import android.content.Context cannot be resolved
The import android.content.Intent cannot be resolved
The import android.content.IntentFilter cannot be resolved
The import android.database cannot be resolved
The import android.hardware.SensorEventListener cannot be resolved
The import android.hardware.SensorManager cannot be resolved
The import android.media cannot be resolved
The import android.os cannot be resolved
The import android.os cannot be resolved
The import android.util cannot be resolved
Service cannot be resolved to a type
SensorEventListener cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
List cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
Override cannot be resolved to a type
Context cannot be resolved to a type
Intent cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
String cannot be resolved to a type
String cannot be resolved to a type
Context cannot be resolved to a type
SensorManager cannot be resolved to a type
String cannot be resolved to a type
ActivityManager cannot be resolved to a type
Cursor cannot be resolved to a type
MediaPlayer cannot be resolved to a type
Override cannot be resolved to a type
IBinder cannot be resolved to a type
Intent cannot be resolved to a type
Override cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Context cannot be resolved to a type
IntentFilter cannot be resolved to a type
IntentFilter cannot be resolved to a type
Intent cannot be resolved to a variable
IntentFilter cannot be resolved to a type
IntentFilter cannot be resolved to a type
Intent cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
SENSOR_SERVICE cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
SensorManager cannot be resolved to a type
SensorManager cannot be resolved to a type
SENSOR_SERVICE cannot be resolved to a variable
IntentFilter cannot be resolved to a type
IntentFilter cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type
Context cannot be resolved to a type
List cannot be resolved to a type
List<Mp3Data> cannot be resolved to a type
Override cannot be resolved to a type
The method unregisterReceiver(LockScreenReceiver) is undefined for the type ShakeContactService
BroadcastReceiver cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Override cannot be resolved to a type
Intent cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Context cannot be resolved to a type
Context cannot be resolved to a type
SensorManager cannot be resolved to a variable
SensorManager cannot be resolved to a variable
System cannot be resolved
android.hardware.SensorEvent cannot be resolved to a type
RunningAppProcessInfo cannot be resolved to a type
android.hardware.Sensor cannot be resolved to a type
Build cannot be resolved
Context cannot be resolved to a type
SensorManager cannot be resolved to a type
SensorManager cannot be resolved to a variable
String cannot be resolved to a type
BG ?H(Ljava/lang/String;)VLineNumberTableLocalVariableTablethisLservice/ShakeContactService;onBind(LIntent;)LIBinder;RuntimeInvisibleAnnotations
LOverride;R�Unresolved compilation problems:
Override cannot be resolved to a type
IBinder cannot be resolved to a type
Intent cannot be resolved to a type
onCreateUdUnresolved compilation problems:
Override cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
Context cannot be resolved to a type
IntentFilter cannot be resolved to a type
IntentFilter cannot be resolved to a type
Intent cannot be resolved to a variable
IntentFilter cannot be resolved to a type
IntentFilter cannot be resolved to a type
Intent cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
SENSOR_SERVICE cannot be resolved to a variable
Log cannot be resolved
String cannot be resolved to a type
SensorManager cannot be resolved to a type
SensorManager cannot be resolved to a type
SENSOR_SERVICE cannot be resolved to a variable
IntentFilter cannot be resolved to a type
IntentFilter cannot be resolved to a type
BroadcastReceiver cannot be resolved to a type

getMp3ListXGUnresolved compilation problem:
Context cannot be resolved to a type

setMp3List (LList;)V(LList<Llinz/jku/Mp3Data;>;)V]qUnresolved compilation problems:
List cannot be resolved to a type
List<Mp3Data> cannot be resolved to a type
 onDestroy`Unresolved compilation problems:
Override cannot be resolved to a type
The method unregisterReceiver(LockScreenReceiver) is undefined for the type ShakeContactService
BroadcastReceiver cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
onStart (LIntent;I)Vd�Unresolved compilation problems:
Override cannot be resolved to a type
Intent cannot be resolved to a type
Log cannot be resolved
String cannot be resolved to a type
onPauseg_Unresolved compilation problems:
Log cannot be resolved
String cannot be resolved to a type

getContext ()LContext;knUnresolved compilation problems:
Context cannot be resolved to a type
Context cannot be resolved to a type
onAccuracyChanged5(Lorg/openintents/sensorsimulator/hardware/Sensor;I)Vo!Unresolved compilation problem:
onSensorChanged9(Lorg/openintents/sensorsimulator/hardware/SensorEvent;)Vs�Unresolved compilation problems:
SensorManager cannot be resolved to a variable
SensorManager cannot be resolved to a variable
System cannot be resolved
!(Landroid/hardware/SensorEvent;)Vv\Unresolved compilation problem:
android.hardware.SensorEvent cannot be resolved to a type
onShuffyUUnresolved compilation problem:
RunningAppProcessInfo cannot be resolved to a type
(Landroid/hardware/Sensor;I)V|WUnresolved compilation problem:
android.hardware.Sensor cannot be resolved to a type
()Z;Unresolved compilation problem:
Build cannot be resolved
getForegroundApp"(LContext;)LRunningAppProcessInfo;unregisterListener�MUnresolved compilation problem:
SensorManager cannot be resolved to a type
registerListener�QUnresolved compilation problem:
SensorManager cannot be resolved to a variable
isRunningService(Ljava/lang/String;LContext;)Z�FUnresolved compilation problem:
String cannot be resolved to a type

SourceFileShakeContactService.javaInconsistentHierarchy�ActivityManager�BroadcastReceiver�Context�Cursor�IBinder�Intent�List� MediaPlayer�RunningAppProcessInfo�SensorEventListener� SensorManager�Service�android/hardware/Sensor�android/hardware/SensorEvent�java/lang/String MissingTypes! 
         
!"#$%&
'()*+,-./0123 46789:;<;=>?@A4
�BYD�F�IJ 
KLMNOPA4
�BYQ�F�IdJ 
KLS@OPA4
�BYT�F�IiJ 
KLV@A4
�BYW�F�I�J 
KL YZ#[A*
�BY\�F�I�J^@OPA4
�BY_�F�I�J 
KLabOPA4
�BYc�F�I�J 
KLe@A4
�BYf�F�I�J 
KL hiA*
�BYj�F�I�JlmA4
�BYn�F�I�J 
KLpqA4
�BYr�F�I�J 
KLptA4
�BYu�F�I�J 
KLw@A4
�BYx�F�I J 
KLlzA4
�BY{�F�IKJ 
KL/}A4
�BY~�F�ITJ 
KL��A4
�BYW�F�IWJ 
KL�@A4
�BY��F�IoJ 
KL�@A4
�BY��F�IzJ 
KL��A4
�BY��F�I�J 
KL���� ���������������
# cache for current jar dependecy. DO NOT EDIT.
# format is <lastModified> <length> <SHA-1> <path>
# Encoding is UTF-8
�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�
�PNG

IHDRHHU�GEIDATx��y�]�}�?���m3����x<���� FA�4*��i%@K�PĒJ��J�Цi*�Ii�R@JՔ�
� �1`c��c{6{潙��{�����l�1c�g������z�=�Z˙v�&�@p�3MgsG�)�ތDֈ�xh�Lj6m���ωl�;� �D�F2�[�p� �#Q� �6� M�Zp< �n}���]e�QWČ�Q}x)� �bӓ�(���FI���2��@�-�>o(_��ieK|7I9��d�2F�2'�a,���I�[�/��ލFkf(gFU8�8 ���~�[��1���� �Kņ�,��Z�������5��1'��GL�!ۓ� �^}cNO���*!��#[F�v� r�m��R� پ�
�Մ��#|\Î�� 1V����U(�:1ΰ�R��#|�p�u_���=�Fx�I���HǬ���m�H��p% �v��������Xc�:������G���=|,�9/T%��Vq��w2�uH��p���hN�O�������V=n,z&w�E��A�1�Q��V*A�%�k�a�OY��>�2heѡ�P*$ +�PaA�r�'�/di� `$* �E�
0°B(��%�h�(Y�2�* KX#Yذ��ی
CF�?#b8y2q�Q�fm5�2�U�]�͹����hH�ӘXJoq �,���?�y��S�y^��w ���nѽ�7~�P�ȕ������|�֝�[{�b��o���~ć�?C �֠LH[z �_����.c��d �a��}�)�ņ)8ΐ�LC����J^���J/�g_E)��~+����]��̥,�|�Lb ���l?�����2M�\0�kt���\��k��*�a�Ϲf��4&�&�f8��O�� \��^B]fOߛ�2�1显�&I��x���L`� U��K��u�?�$�F6��1���Ȇ��XɁu�[���C>�~!$X�EЕ�w<D�iI��G�����GBД<�@����'�X̖�gy{�+�H���5�!��U1J�Ŋ�y��!Kg���&�t|�����T�<�H�UXB]"[܇��L|�X�Z��~���L�V�|��\��L|!�K�Fq������Zȗ{,wRk�!�^�����~��c��RN]6?��;�F����b�"楙?k5w>Ͷ�ߐ���x��\��mұ6^���nE
�� k�HB]�+������B&�N›����L@q7�,��}�R���n%s��E
�%s��f���fV̽Gx,j����ƕ�Q��8��a���G��4������vD ��Z�0�A`��V+kUh�9&�Ck�P�0P�Zkuh�
��5uhmh���\k��ѵ��+����J����������=ӂ��a0!�~�n:�ʁ
N�[��O�#�A��9v8ͶC��d�D�y�3ȡ���(����h�x:����=7�I�)��*f��s�փĄY$�������1�gl�)�A�gb���ժ�ɰ�f t�T쳳Ss�( �Ӣb��L��$�%���}]��ӓ������<O2΁���k��h���jN�u)�J�����׷�� M� �  !$�L`L�8jLe��8J)8@�\&�͊��~g�Ew��T�ykm5��u��\$~T�X��q'�R��}�v�0$�Ja���lV�`��2#}*��W&p���eS$�E�Ocb)�L�p�9i��(S�X}ܨ����R�D"�8�E���:UL�;)�Ut ~��ܛ.o����Rx��‡8�E�P�ϣ9�96\�����N]dď��\.388��#�㞮3C"i�#b�2FG�6u?Ł� T� �pqd G��%4e�r�����&6�>MKj����D��0��A���H�=��dqe)<B]�&�x2E�����l��ږ�:�NCͽD �9 �ppp#��Y�|3k�ߍ�QJ����}@�H�:l-F�v&��+���@�r�M_��.s��U����p �.17�/ӌ �U�"��@
�7��#=�N���?�7�AW�� �J!��j�uB�J�(�e+q�1h�F�HC���A��ɾ����i�����~��9T�L���y��x^�3����?������p�;��>G�i���8.�g-��w_��y 7b �2.���Lp�.��/���i^��0K2�90�����nC���_[
�bx�>�!��=H�����#|6v>A{�մ�גiJП~��[��4�WKQ*��A'롔)#����5g�����1qw֘SW��ǡ#�N�n9��s,P�y�$�au���y-(S�Pa��������c�Ž]{�7;婆���*OE��E2��b�5}œI<����b(�9b\6�o�����Z˯��%;�^$�ͅ�Ñ0oQ���'B��j�<�ܼ�cs���+�#�ftcB<'�#�q�����s��E�II��]����1����O���*�~!҄�g�)w
A7{�o���TX�����5l�z�|Ѝ��(�2�)3�~ k��"��ec��l;��*<���G,~�ǽ?gu��ξ���c��MqEqȋMV�;���T:ɪ�[Y��Z��TYQ;�F�V��,Iw.W/�������xf��l�~��'RQ|���'�x|�髄�P ��r/6UyV_i'ʔ��� y���ؗ[����U�rL�it_ֱ��V6�9=����Oo�pa��"椏��JA�� k�����S{/{&��� �6!���b��c_�-vg_œ�c&c��X�d�eu�_�m�k{fo�5�p��t����)�~�s����nc������$c4J���mqEWć�Uݶ M�����'����g|r�(SƗu�J7c��!ם�m�ˀg��&}�� �AZ�a��)��`�TT���<ֶ����U�����~�|Ѕ���:&R��D��w���*k��<3ŪH������X,����8�Zn����_�ů��CO�C\'9lg�d|�������RT-�� �)����d��y�6��K�X�p%�[oG
���=���+�3+���_�#���lx��$W3� �
�BS�)�����`�CHSr�[�)u.�{�fs���LU_����`կf��U�XH�k�Y��z�W���m�6^O��;<�� T:�e�j��!�֊�>��"�P��ʦ����z����]��9�\�֙�����L�ԋ9��1�؛{�>�)$1���tf��;au=E*fq�$�J'{���m@[z--�U��_L��Ffj;%Fړq�����0P�@ɦ�����X�z�z;ƚ��q 4AM����`������{����zBS�}�'k���_��g$�NA�L�"}�ݸ25�]�`�r��]Oqa�m��&� ��O��(���qf�V?�;J�Rl��%�.����(1=�tT�d�%V��a�p���f�� qt���e����9(]W�����Z��,@���6�і��ř� T��}�L�'���w3-1�d����4���������x�˕��ơ�&J* %Gy�q���_\�c��cg�oqer���/&\�|
>�p�4 UQ@�^��}c��֊h�{��ܾ�`G_���6\��m`����;ul�@�B4�5lX��H�l'�UT��� ���BH���� HQ�:��3u�!�W"P
�~`��"Xk�d4t�,�)� ԝ��#P����\f<��Ň�1�7�S��\�p���!��VG!���MFU�����jކϑu�f�2'�#�0�h[�e�ƫb��-�$O���c��# ��@���i�2]�p��Ԁuܥ�F����L�{|}IEND�B`�
�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�
�PNG

IHDR$$����IDATX��]l���缯_�N]'Mh��_d��R�c�Lc��$&�@j+��Фi��Ҙ& &��.�m_�Tv�Bl��4V�jc�@a#���m�$TNj;_~�����"Nd���T���H�l������?�9����C����^��]�p� P��w����C?�~�[}M.= b�෇=�0P�k �����o�&� ��,�S���O�s��t�)�IR?4�~v��GJ@%`��i<��A)����EZ��g�bz�����z@��d�,I���{Yn��=�qX+�ȁUT��ܶ�10
g,b�&2��9�vZ� <�1�nS�8�X��oH�m� �ܴ���Eʿ�}�$�獏�-�{�T������;����U=w2����I_� \��u��X�@\A
1�nBȅ���J�R�βe����ٖ�
�S�?�l#?��s�� M�L|o�~������:6��������T�T�T+aCTl�j�e����ko4��vƢw����~�v�M�+����x�D��MߤX>M��l
��{��)r��������c��P6����}8�@�΍_]�,�g��J�Kh�$v��u-��l���(�RdS��f�߲�9��|��Hk�6@�ZDdI�OcXk�Ɛ�\4CJ��϶�~�.V2�Q*��Ilk �3�e�t��`�B�5355E"��nv�h页Rx*�K��S��:�p�%0�\�0 ���nՀ=�ZS{*ƹ�������Q�%��T���ogw�<�9C�T"�L.�j9(��\�26�ID�w��7Fgd�ZKNj� �2Z� '&������t�Od 1[!����C"�$[s�4�S�#l�߅?2Z�3Z����9б����G������Wp�s��̧�רv������wS
G9S8�RR������aŐ�;ٻ�>��QI~����L̾S��Y&.b8��ː�����e�C�Ǟ�(<�q������?�C�e)�<-�bh����|���8�� fo�9�8p��ض�+|��ۜ���=����&���8�Ҭ.蕲�Y���0>s���}
�bW%�䖁G(GS}���'�<���Q.K�%��םVd�Yʲf���I|��N�@��|��t&9v� &�O�%�����%������o4�h���i� �4\�}7q�����������B� C�׾��+�q/�u=�HY>ȿH�|����e�kPh
k�\[ƅ���0�g����]��h���ߐ�l��$����ܣ�M�IWj{zq|�Y<��R���X&j0��L�O�U���(�z��{媣��J����� ���s]�A��h(�+�R�~��dD�b�<22:���j�cq";��A�oD�-L��U�Q
�36�uA�]�!t��+�,�����!`����M�6�j��u�J�E��5�����V�!��J�Ƙ�Ā�V�Z4��_��ZUG6�IEND�B`�
�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�
�PNG

IHDR00W�_IDATh��Yl����~�x�3�ر�%6���IX)K����X�ЪT�(U[T����҆�j j�@QU(]"�R��y ��%iB �'�Ż��3����=}�ώ�����/����f��=���{�-�Rs�o��̖1h�jr&��a.0n�b@����[�4�h �n��a�[�OZ�� z~,��hq�G�}p���a x�PY ľ�ˏ>�Ь��[/����P>9`��� �(N��t�bmk��m�cY�U*�{z�v�g�����
,O���kK%�G����2�
#>Z�i��k@�R`�@HE�>OkR�q �?�קZc `X�z.o�,"
�B� VJ�e��(i����;�߹}�_`YÍ4DVb�OX���K���6�cc� ���R.�k���
`ٺ�!�D/e$��@�Ww|���z^=�sF�=|f�DC�99��˛��%��q��i6��M�f)/��7�"�o�"���XO@_h��/*�����i��n#"Xci�o��SO���V<SdS�v� ����[i���`�}2�A|[`EÍ gX�D�F�R�i_tњV�n�/�6]#�q��`��Lv�)+@��&�O�˧�)��nᲦOw��O������X���2��$_Ȓ�����IgH����h��P���(:^�� �wL�l>E����S�.���m�Yц5�H;�\gF�`����i�w� �s��h[t%�N=�ޅ�EM��l]�u<[�ʎ�lj�����cqt ��~���W?GHG�~ŃAPOv!Eg��QU&V@;�t���>�y��uƘ�Q�q8t��{�\s՗�``2�꙳�B��<�u!��R�-����Xh� �h�����kΕf�?w�4�P˭���J��\�V�����yk-ydN�@Wj�� ��ؗ����^���������B �BJ��K(�?S&�c�FGG���� ����q$����#��(�Q<?�p�a��X�|��P>h������#���Ϯ���8=��S��t�� � p��kh�#��U�ofU�-���>CCCh��<@����Ƙ�l<S�#���c�恫k9����I���R�!�|�S�Wأ̵K���; �B�u�ʙ��2'-W�9=�:o�\\���>^=�8?\�@�������(�g��=��d.�B
�(z���E�BƘ��!Okt3� �HW�?��:�}�7� @@�H��V)I��A��O��q��g�l�Z�~�~�G��&5������h�o��#���ȴ����n@ptmI�����aD �|Βa�H�}v4����aR�c�\ �
�o|���+�D�L���j.�JM������U�#X�&#k�l۰����C4w؉]9�:W��L��C�1RdC�vZb0����b1\Rw#���)'�/�����LM�C}�r���E9�ˬ��J�B��C:�CHG(���λV�x&˺%�cC����-�:�=A��Nui����?X�U�+���Ȋ�.���V:ı���A����cpT�M�_a��;�w�q�=��%>�ᝁ�lj�u��j��U��~IWJp��x8N��Z�#�6�V�3���4���N�עM�+$�m�~�=n�`,Ԇ V0�QW��k~�R./�|t�%��t�C}�`�/ۄ(k���x ��o V�L�8@Kt#7��'�v�w�U�Ϊ6�Je��+�;���{ǜV��h���E[ٝx��� jtl�C�pO�jb��5 �����_b�S88�Tt�帒�A|�o�k}���!Φ^cY����6�̟(� �&t�ѠFs��7��#�����N>�S�a�Ro���qB��T�c\�a0�>J�Jlj����se��Xd�,\ٙ���LuVQ"�bX߼-��(N ����.��W`L��xY ��I��q��7����o`u�m�P�:��'�[��vB��RU�:� �?p��pggg��}]Q�����;b��E�l�sh�
4�6��a S��t��ƀ�+� ̪�cy�I � ���cJS��,�(M.��j� 0�OiN���9��(�6S�z���c���d��d0�N�V�,�P� � ����H�$�X=IEND�B`�
PKl8@�\��{�res/layout/main.xml�TAkA�&��$ڦ��J@)DJ��"�A0Ń ��ԋ�1��hmJ��V��X
�ğ�I<�;�Z�f2��lf�8˷3�y�}��$�8*���`�Nb]$.ub�xN��� ��p�X n�-�-qL| >߈�h�g[h`��1^)>�&m�)�&BZ�q���a�k �O.�UHk�'^�2����*r/�n)��m����W��rF��u|v��K���bj�"���;��r_0W�2n�)�j�)}w5H�kZ�:�BvHvf��Jq�l����I�O���v�O~��Ն��jﮪ?�[��ֹV���G�ԧ�&�m�wC��?�����Q�}fl+�~��{�W�s�Y�CQ�<���'�8Bw����8C�B��7��{%�M�I���,׳|�͒��o�{ 9a8_Υ���)g��:B�/$�{���͍����9K�<䉪ߘ3�s8��v��'� ܣ�TN�u���3|Y��e�)7���W�� �SZ�M���wF��Xsu ��h��f�_5��s�kch�[4�G�\њ+6�U��h�b�,��|�����fw��\0�tO�1�똱���RǶ�#H�uq^N�7����{#�pC�}?�ݸ����R�U"���mPKl8@]��p�res/layout/shake.xml�R�N�@��IlH)�����@)��$:$Biy����-�R%e>�����(�h���Y>�P��F{7�7;��O�����Hǁ��� b�h��1%^�7���ub��C��*��)F�1D�c�k>B�+����c�;f�3��t�ˬ�q���~Ȋ�C�E����熕4s�Mf}�Z�\1���}VW�"�qƬOWC�b�r�x[C���iqȚh.�5����*��(�/P�� �J� �O@հ
�_������{�'/c��:�c�&JΓ'Gq,�J��D��I8�4����/����/����?M�"Q��5�l��:�����1s'՜����<{��\1�+�<�gxn���s�~%��*�'�� PKl8@Tk�%k�AndroidManifest.xml��KO[G�������Bx�G��@[�i+Uu(
QH@এE� .�<� R�J��身.��"�~���.�~�~�,���g��r�z�W�{Ϝ�3g���«� ��-4>8Ͻ�[�2��:���~�~���^Sx�=�DmR_S�S?Q��d�zA�F%}�s�%�7�M��4��zJ�H�B�Eu^ަ��K�w�ck�6����P�v1��uZN�<F;Ғ�J�
=��ɋ#��L � b�W�O�bO�{M�/�fZ*�$��WᵋE>U�N��I���� �y���|�0h��u��}��Iz�y��=L�2}l�{��5���Я̈-��<u� �m��5�e`��g��3qu�mK�^��}i�1÷ii=���C��9Ƕ/96Y�9�>5�0��ac%�s���XE�pU�J>/�3��Tb�2�\��L3�U��P�|*��OHy �Q&�A�ç'�)2/�$��,��>��ș�Č.J~�iE�;��V�I��d�]��/�m��ޗ�\k�W)�d�~D��\�g��R��5;�*��xOޑ�-�lm9�?����]h�6��"S:�
w�����K3+Q�Y�& �R@��%!l螮1#��8چ�wjA}�N|��4�`twH��yvH��*99C��t�V�s�ly^b�g���qO7�*3g^MV�H*�"�@��1�έ���@$��m�Hx^�N����<j��ỵ���)Ŀ�\�_���̱�O��]�|=��z7m).��6Orl�~N��yϪ-��2�?�|��'���u��8˻��;Bxf�:�N����t �%�]rx�^[ ^��^[�=��.;��^&�[y�/����]Q������b�z����r�| �U�]ux��3�-k� �/-�z��K~��_ז[�a�4w�_��[�5�'������9��XGu^�կ,���u|"�3��A'?�8��s��#xC�rx�8k����y��3�??F��uL����Kp���w���h�#�j�u���x��������ߨ3�`��OF��VHL�ގQ�c���3�j���w*�|�c����o:㟎�ݙ�q�;������7C�g�DZOD�?��O:���8k7pVY���|/`���PKl8@�'��resources.arsc �T
D:t��V���res/drawable-ldpi/droid.pngres/drawable-mdpi/droid.pngres/drawable-hdpi/droid.pngres/drawable-ldpi/icon.pngres/drawable-mdpi/icon.pngres/drawable-hdpi/icon.pngres/layout/main.xmlres/layout/shake.xml"Hello World, ShakeContactActivity! ShakeContact`linz.jku�x0 0@attrdrawablelayoutstringidtX&4BVh|�����
droidiconmainshakehelloapp_namewidget0widget32bConfigbSharebExitcbServiceEnablequickContactBadge1ReceptorEmisor8`@$x8`@$�8`@$�8`@$8`@$ 4 8� \$ 0@P`p� 
   PKb$8@�vuures/drawable-hdpi/droid.png�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�PKѨ6@kW<~~res/drawable-hdpi/icon.png�PNG

IHDRHHU�GEIDATx��y�]�}�?���m3����x<���� FA�4*��i%@K�PĒJ��J�Цi*�Ii�R@JՔ�
� �1`c��c{6{潙��{�����l�1c�g������z�=�Z˙v�&�@p�3MgsG�)�ތDֈ�xh�Lj6m���ωl�;� �D�F2�[�p� �#Q� �6� M�Zp< �n}���]e�QWČ�Q}x)� �bӓ�(���FI���2��@�-�>o(_��ieK|7I9��d�2F�2'�a,���I�[�/��ލFkf(gFU8�8 ���~�[��1���� �Kņ�,��Z�������5��1'��GL�!ۓ� �^}cNO���*!��#[F�v� r�m��R� پ�
�Մ��#|\Î�� 1V����U(�:1ΰ�R��#|�p�u_���=�Fx�I���HǬ���m�H��p% �v��������Xc�:������G���=|,�9/T%��Vq��w2�uH��p���hN�O�������V=n,z&w�E��A�1�Q��V*A�%�k�a�OY��>�2heѡ�P*$ +�PaA�r�'�/di� `$* �E�
0°B(��%�h�(Y�2�* KX#Yذ��ی
CF�?#b8y2q�Q�fm5�2�U�]�͹����hH�ӘXJoq �,���?�y��S�y^��w ���nѽ�7~�P�ȕ������|�֝�[{�b��o���~ć�?C �֠LH[z �_����.c��d �a��}�)�ņ)8ΐ�LC����J^���J/�g_E)��~+����]��̥,�|�Lb ���l?�����2M�\0�kt���\��k��*�a�Ϲf��4&�&�f8��O�� \��^B]fOߛ�2�1显�&I��x���L`� U��K��u�?�$�F6��1���Ȇ��XɁu�[���C>�~!$X�EЕ�w<D�iI��G�����GBД<�@����'�X̖�gy{�+�H���5�!��U1J�Ŋ�y��!Kg���&�t|�����T�<�H�UXB]"[܇��L|�X�Z��~���L�V�|��\��L|!�K�Fq������Zȗ{,wRk�!�^�����~��c��RN]6?��;�F����b�"楙?k5w>Ͷ�ߐ���x��\��mұ6^���nE
�� k�HB]�+������B&�N›����L@q7�,��}�R���n%s��E
�%s��f���fV̽Gx,j����ƕ�Q��8��a���G��4������vD ��Z�0�A`��V+kUh�9&�Ck�P�0P�Zkuh�
��5uhmh���\k��ѵ��+����J����������=ӂ��a0!�~�n:�ʁ
N�[��O�#�A��9v8ͶC��d�D�y�3ȡ���(����h�x:����=7�I�)��*f��s�փĄY$�������1�gl�)�A�gb���ժ�ɰ�f t�T쳳Ss�( �Ӣb��L��$�%���}]��ӓ������<O2΁���k��h���jN�u)�J�����׷�� M� �  !$�L`L�8jLe��8J)8@�\&�͊��~g�Ew��T�ykm5��u��\$~T�X��q'�R��}�v�0$�Ja���lV�`��2#}*��W&p���eS$�E�Ocb)�L�p�9i��(S�X}ܨ����R�D"�8�E���:UL�;)�Ut ~��ܛ.o����Rx��‡8�E�P�ϣ9�96\�����N]dď��\.388��#�㞮3C"i�#b�2FG�6u?Ł� T� �pqd G��%4e�r�����&6�>MKj����D��0��A���H�=��dqe)<B]�&�x2E�����l��ږ�:�NCͽD �9 �ppp#��Y�|3k�ߍ�QJ����}@�H�:l-F�v&��+���@�r�M_��.s��U����p �.17�/ӌ �U�"��@
�7��#=�N���?�7�AW�� �J!��j�uB�J�(�e+q�1h�F�HC���A��ɾ����i�����~��9T�L���y��x^�3����?������p�;��>G�i���8.�g-��w_��y 7b �2.���Lp�.��/���i^��0K2�90�����nC���_[
�bx�>�!��=H�����#|6v>A{�մ�גiJП~��[��4�WKQ*��A'롔)#����5g�����1qw֘SW��ǡ#�N�n9��s,P�y�$�au���y-(S�Pa��������c�Ž]{�7;婆���*OE��E2��b�5}œI<����b(�9b\6�o�����Z˯��%;�^$�ͅ�Ñ0oQ���'B��j�<�ܼ�cs���+�#�ftcB<'�#�q�����s��E�II��]����1����O���*�~!҄�g�)w
A7{�o���TX�����5l�z�|Ѝ��(�2�)3�~ k��"��ec��l;��*<���G,~�ǽ?gu��ξ���c��MqEqȋMV�;���T:ɪ�[Y��Z��TYQ;�F�V��,Iw.W/�������xf��l�~��'RQ|���'�x|�髄�P ��r/6UyV_i'ʔ��� y���ؗ[����U�rL�it_ֱ��V6�9=����Oo�pa��"椏��JA�� k�����S{/{&��� �6!���b��c_�-vg_œ�c&c��X�d�eu�_�m�k{fo�5�p��t����)�~�s����nc������$c4J���mqEWć�Uݶ M�����'����g|r�(SƗu�J7c��!ם�m�ˀg��&}�� �AZ�a��)��`�TT���<ֶ����U�����~�|Ѕ���:&R��D��w���*k��<3ŪH������X,����8�Zn����_�ů��CO�C\'9lg�d|�������RT-�� �)����d��y�6��K�X�p%�[oG
���=���+�3+���_�#���lx��$W3� �
�BS�)�����`�CHSr�[�)u.�{�fs���LU_����`կf��U�XH�k�Y��z�W���m�6^O��;<�� T:�e�j��!�֊�>��"�P��ʦ����z����]��9�\�֙�����L�ԋ9��1�؛{�>�)$1���tf��;au=E*fq�$�J'{���m@[z--�U��_L��Ffj;%Fړq�����0P�@ɦ�����X�z�z;ƚ��q 4AM����`������{����zBS�}�'k���_��g$�NA�L�"}�ݸ25�]�`�r��]Oqa�m��&� ��O��(���qf�V?�;J�Rl��%�.����(1=�tT�d�%V��a�p���f�� qt���e����9(]W�����Z��,@���6�і��ř� T��}�L�'���w3-1�d����4���������x�˕��ơ�&J* %Gy�q���_\�c��cg�oqer���/&\�|
>�p�4 UQ@�^��}c��֊h�{��ܾ�`G_���6\��m`����;ul�@�B4�5lX��H�l'�UT��� ���BH���� HQ�:��3u�!�W"P
�~`��"Xk�d4t�,�)� ԝ��#P����\f<��Ň�1�7�S��\�p���!��VG!���MFU�����jކϑu�f�2'�#�0�h[�e�ƫb��-�$O���c��# ��@���i�2]�p��Ԁuܥ�F����L�{|}IEND�B`�PKb$8@�vuures/drawable-ldpi/droid.png�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�PKѨ6@����res/drawable-ldpi/icon.png�PNG

IHDR$$����IDATX��]l���缯_�N]'Mh��_d��R�c�Lc��$&�@j+��Фi��Ҙ& &��.�m_�Tv�Bl��4V�jc�@a#���m�$TNj;_~�����"Nd���T���H�l������?�9����C����^��]�p� P��w����C?�~�[}M.= b�෇=�0P�k �����o�&� ��,�S���O�s��t�)�IR?4�~v��GJ@%`��i<��A)����EZ��g�bz�����z@��d�,I���{Yn��=�qX+�ȁUT��ܶ�10
g,b�&2��9�vZ� <�1�nS�8�X��oH�m� �ܴ���Eʿ�}�$�獏�-�{�T������;����U=w2����I_� \��u��X�@\A
1�nBȅ���J�R�βe����ٖ�
�S�?�l#?��s�� M�L|o�~������:6��������T�T�T+aCTl�j�e����ko4��vƢw����~�v�M�+����x�D��MߤX>M��l
��{��)r��������c��P6����}8�@�΍_]�,�g��J�Kh�$v��u-��l���(�RdS��f�߲�9��|��Hk�6@�ZDdI�OcXk�Ɛ�\4CJ��϶�~�.V2�Q*��Ilk �3�e�t��`�B�5355E"��nv�h页Rx*�K��S��:�p�%0�\�0 ���nՀ=�ZS{*ƹ�������Q�%��T���ogw�<�9C�T"�L.�j9(��\�26�ID�w��7Fgd�ZKNj� �2Z� '&������t�Od 1[!����C"�$[s�4�S�#l�߅?2Z�3Z����9б����G������Wp�s��̧�רv������wS
G9S8�RR������aŐ�;ٻ�>��QI~����L̾S��Y&.b8��ː�����e�C�Ǟ�(<�q������?�C�e)�<-�bh����|���8�� fo�9�8p��ض�+|��ۜ���=����&���8�Ҭ.蕲�Y���0>s���}
�bW%�䖁G(GS}���'�<���Q.K�%��םVd�Yʲf���I|��N�@��|��t&9v� &�O�%�����%������o4�h���i� �4\�}7q�����������B� C�׾��+�q/�u=�HY>ȿH�|����e�kPh
k�\[ƅ���0�g����]��h���ߐ�l��$����ܣ�M�IWj{zq|�Y<��R���X&j0��L�O�U���(�z��{媣��J����� ���s]�A��h(�+�R�~��dD�b�<22:���j�cq";��A�oD�-L��U�Q
�36�uA�]�!t��+�,�����!`����M�6�j��u�J�E��5�����V�!��J�Ƙ�Ā�V�Z4��_��ZUG6�IEND�B`�PKb$8@�vuures/drawable-mdpi/droid.png�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�PKѨ6@ ��res/drawable-mdpi/icon.png�PNG

IHDR00W�_IDATh��Yl����~�x�3�ر�%6���IX)K����X�ЪT�(U[T����҆�j j�@QU(]"�R��y ��%iB �'�Ż��3����=}�ώ�����/����f��=���{�-�Rs�o��̖1h�jr&��a.0n�b@����[�4�h �n��a�[�OZ�� z~,��hq�G�}p���a x�PY ľ�ˏ>�Ь��[/����P>9`��� �(N��t�bmk��m�cY�U*�{z�v�g�����
,O���kK%�G����2�
#>Z�i��k@�R`�@HE�>OkR�q �?�קZc `X�z.o�,"
�B� VJ�e��(i����;�߹}�_`YÍ4DVb�OX���K���6�cc� ���R.�k���
`ٺ�!�D/e$��@�Ww|���z^=�sF�=|f�DC�99��˛��%��q��i6��M�f)/��7�"�o�"���XO@_h��/*�����i��n#"Xci�o��SO���V<SdS�v� ����[i���`�}2�A|[`EÍ gX�D�F�R�i_tњV�n�/�6]#�q��`��Lv�)+@��&�O�˧�)��nᲦOw��O������X���2��$_Ȓ�����IgH����h��P���(:^�� �wL�l>E����S�.���m�Yц5�H;�\gF�`����i�w� �s��h[t%�N=�ޅ�EM��l]�u<[�ʎ�lj�����cqt ��~���W?GHG�~ŃAPOv!Eg��QU&V@;�t���>�y��uƘ�Q�q8t��{�\s՗�``2�꙳�B��<�u!��R�-����Xh� �h�����kΕf�?w�4�P˭���J��\�V�����yk-ydN�@Wj�� ��ؗ����^���������B �BJ��K(�?S&�c�FGG���� ����q$����#��(�Q<?�p�a��X�|��P>h������#���Ϯ���8=��S��t�� � p��kh�#��U�ofU�-���>CCCh��<@����Ƙ�l<S�#���c�恫k9����I���R�!�|�S�Wأ̵K���; �B�u�ʙ��2'-W�9=�:o�\\���>^=�8?\�@�������(�g��=��d.�B
�(z���E�BƘ��!Okt3� �HW�?��:�}�7� @@�H��V)I��A��O��q��g�l�Z�~�~�G��&5������h�o��#���ȴ����n@ptmI�����aD �|Βa�H�}v4����aR�c�\ �
�o|���+�D�L���j.�JM������U�#X�&#k�l۰����C4w؉]9�:W��L��C�1RdC�vZb0����b1\Rw#���)'�/�����LM�C}�r���E9�ˬ��J�B��C:�CHG(���λV�x&˺%�cC����-�:�=A��Nui����?X�U�+���Ȋ�.���V:ı���A����cpT�M�_a��;�w�q�=��%>�ᝁ�lj�u��j��U��~IWJp��x8N��Z�#�6�V�3���4���N�עM�+$�m�~�=n�`,Ԇ V0�QW��k~�R./�|t�%��t�C}�`�/ۄ(k���x ��o V�L�8@Kt#7��'�v�w�U�Ϊ6�Je��+�;���{ǜV��h���E[ٝx��� jtl�C�pO�jb��5 �����_b�S88�Tt�帒�A|�o�k}���!Φ^cY����6�̟(� �&t�ѠFs��7��#�����N>�S�a�Ro���qB��T�c\�a0�>J�Jlj����se��Xd�,\ٙ���LuVQ"�bX߼-��(N ����.��W`L��xY ��I��q��7����o`u�m�P�:��'�[��vB��RU�:� �?p��pggg��}]Q�����;b��E�l�sh�
4�6��a S��t��ƀ�+� ̪�cy�I � ���cJS��,�(M.��j� 0�OiN���9��(�6S�z���c���d��d0�N�V�,�P� � ����H�$�X=IEND�B`�PKl8@�\��{� ��res/layout/main.xmlPKl8@]��p� ���res/layout/shake.xmlPKl8@Tk�%k� ��NAndroidManifest.xmlPKl8@�'�� ���resources.arscPKb$8@�vuu ���res/drawable-hdpi/droid.pngPKѨ6@kW<~~ ���res/drawable-hdpi/icon.pngPKb$8@�vuu ��:%res/drawable-ldpi/droid.pngPKѨ6@���� ���(res/drawable-ldpi/icon.pngPKb$8@�vuu ��!/res/drawable-mdpi/droid.pngPKѨ6@ �� ���2res/drawable-mdpi/icon.pngPK
��;
PK��mAres/layout/main.xml���TAkA�&��$ڦ��J@)DJ��"�A0Ń ��ԋ�1��hmJ��V��X
�ğ�I<�;�Z�f2��lf�8˷3�y�}��$�8*���`�Nb]$.ub�xN��� ��p�X n�-�-qL| >߈�h�g[h`��1^)>�&m�)�&BZ�q���a�k �O.�UHk�'^�2����*r/�n)��m����W��rF��u|v��K���bj�"���;��r_0W�2n�)�j�)}w5H�kZ�:�BvHvf��Jq�l����I�O���v�O~��Ն��jﮪ?�[��ֹV���G�ԧ�&�m�wC��?�����Q�}fl+�~��{�W�s�Y�CQ�<���'�8Bw����8C�B��7��{%�M�I���,׳|�͒��o�{ 9a8_Υ���)g��:B�/$�{���͍����9K�<䉪ߘ3�s8��v��'� ܣ�TN�u���3|Y��e�)7���W�� �SZ�M���wF��Xsu ��h��f�_5��s�kch�[4�G�\њ+6�U��h�b�,��|�����fw��\0�tO�1�똱���RǶ�#H�uq^N�7����{#�pC�}?�ݸ����R�U"���mPK�\��{�PK��mAres/layout/shake.xml�R�N�@��IlH)�����@)��$:$Biy����-�R%e>�����(�h���Y>�P��F{7�7;��O�����Hǁ��� b�h��1%^�7���ub��C��*��)F�1D�c�k>B�+����c�;f�3��t�ˬ�q���~Ȋ�C�E����熕4s�Mf}�Z�\1���}VW�"�qƬOWC�b�r�x[C���iqȚh.�5����*��(�/P�� �J� �O@հ
�_������{�'/c��:�c�&JΓ'Gq,�J��D��I8�4����/����/����?M�"Q��5�l��:�����1s'՜����<{��\1�+�<�gxn���s�~%��*�'�� PK]��p�PK��mAAndroidManifest.xml��KO[G�������Bx�G��@[�i+Uu(
QH@এE� .�<� R�J��身.��"�~���.�~�~�,���g��r�z�W�{Ϝ�3g���«� ��-4>8Ͻ�[�2��:���~�~���^Sx�=�DmR_S�S?Q��d�zA�F%}�s�%�7�M��4��zJ�H�B�Eu^ަ��K�w�ck�6����P�v1��uZN�<F;Ғ�J�
=��ɋ#��L � b�W�O�bO�{M�/�fZ*�$��WᵋE>U�N��I���� �y���|�0h��u��}��Iz�y��=L�2}l�{��5���Я̈-��<u� �m��5�e`��g��3qu�mK�^��}i�1÷ii=���C��9Ƕ/96Y�9�>5�0��ac%�s���XE�pU�J>/�3��Tb�2�\��L3�U��P�|*��OHy �Q&�A�ç'�)2/�$��,��>��ș�Č.J~�iE�;��V�I��d�]��/�m��ޗ�\k�W)�d�~D��\�g��R��5;�*��xOޑ�-�lm9�?����]h�6��"S:�
w�����K3+Q�Y�& �R@��%!l螮1#��8چ�wjA}�N|��4�`twH��yvH��*99C��t�V�s�ly^b�g���qO7�*3g^MV�H*�"�@��1�έ���@$��m�Hx^�N����<j��ỵ���)Ŀ�\�_���̱�O��]�|=��z7m).��6Orl�~N��yϪ-��2�?�|��'���u��8˻��;Bxf�:�N����t �%�]rx�^[ ^��^[�=��.;��^&�[y�/����]Q������b�z����r�| �U�]ux��3�-k� �/-�z��K~��_ז[�a�4w�_��[�5�'������9��XGu^�կ,���u|"�3��A'?�8��s��#xC�rx�8k����y��3�??F��uL����Kp���w���h�#�j�u���x��������ߨ3�`��OF��VHL�ގQ�c���3�j���w*�|�c����o:㟎�ݙ�q�;������7C�g�DZOD�?��O:���8k7pVY���|/`���PKTk�%k�PK
l8@�'��resources.arsc �T
D:t��V���res/drawable-ldpi/droid.pngres/drawable-mdpi/droid.pngres/drawable-hdpi/droid.pngres/drawable-ldpi/icon.pngres/drawable-mdpi/icon.pngres/drawable-hdpi/icon.pngres/layout/main.xmlres/layout/shake.xml"Hello World, ShakeContactActivity! ShakeContact`linz.jku�x0 0@attrdrawablelayoutstringidtX&4BVh|�����
droidiconmainshakehelloapp_namewidget0widget32bConfigbSharebExitcbServiceEnablequickContactBadge1ReceptorEmisor8`@$x8`@$�8`@$�8`@$8`@$ 4 8� \$ 0@P`p� 
   PK
b$8@�vuures/drawable-hdpi/droid.png�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�PK
Ѩ6@kW<~~res/drawable-hdpi/icon.png�PNG

IHDRHHU�GEIDATx��y�]�}�?���m3����x<���� FA�4*��i%@K�PĒJ��J�Цi*�Ii�R@JՔ�
� �1`c��c{6{潙��{�����l�1c�g������z�=�Z˙v�&�@p�3MgsG�)�ތDֈ�xh�Lj6m���ωl�;� �D�F2�[�p� �#Q� �6� M�Zp< �n}���]e�QWČ�Q}x)� �bӓ�(���FI���2��@�-�>o(_��ieK|7I9��d�2F�2'�a,���I�[�/��ލFkf(gFU8�8 ���~�[��1���� �Kņ�,��Z�������5��1'��GL�!ۓ� �^}cNO���*!��#[F�v� r�m��R� پ�
�Մ��#|\Î�� 1V����U(�:1ΰ�R��#|�p�u_���=�Fx�I���HǬ���m�H��p% �v��������Xc�:������G���=|,�9/T%��Vq��w2�uH��p���hN�O�������V=n,z&w�E��A�1�Q��V*A�%�k�a�OY��>�2heѡ�P*$ +�PaA�r�'�/di� `$* �E�
0°B(��%�h�(Y�2�* KX#Yذ��ی
CF�?#b8y2q�Q�fm5�2�U�]�͹����hH�ӘXJoq �,���?�y��S�y^��w ���nѽ�7~�P�ȕ������|�֝�[{�b��o���~ć�?C �֠LH[z �_����.c��d �a��}�)�ņ)8ΐ�LC����J^���J/�g_E)��~+����]��̥,�|�Lb ���l?�����2M�\0�kt���\��k��*�a�Ϲf��4&�&�f8��O�� \��^B]fOߛ�2�1显�&I��x���L`� U��K��u�?�$�F6��1���Ȇ��XɁu�[���C>�~!$X�EЕ�w<D�iI��G�����GBД<�@����'�X̖�gy{�+�H���5�!��U1J�Ŋ�y��!Kg���&�t|�����T�<�H�UXB]"[܇��L|�X�Z��~���L�V�|��\��L|!�K�Fq������Zȗ{,wRk�!�^�����~��c��RN]6?��;�F����b�"楙?k5w>Ͷ�ߐ���x��\��mұ6^���nE
�� k�HB]�+������B&�N›����L@q7�,��}�R���n%s��E
�%s��f���fV̽Gx,j����ƕ�Q��8��a���G��4������vD ��Z�0�A`��V+kUh�9&�Ck�P�0P�Zkuh�
��5uhmh���\k��ѵ��+����J����������=ӂ��a0!�~�n:�ʁ
N�[��O�#�A��9v8ͶC��d�D�y�3ȡ���(����h�x:����=7�I�)��*f��s�փĄY$�������1�gl�)�A�gb���ժ�ɰ�f t�T쳳Ss�( �Ӣb��L��$�%���}]��ӓ������<O2΁���k��h���jN�u)�J�����׷�� M� �  !$�L`L�8jLe��8J)8@�\&�͊��~g�Ew��T�ykm5��u��\$~T�X��q'�R��}�v�0$�Ja���lV�`��2#}*��W&p���eS$�E�Ocb)�L�p�9i��(S�X}ܨ����R�D"�8�E���:UL�;)�Ut ~��ܛ.o����Rx��‡8�E�P�ϣ9�96\�����N]dď��\.388��#�㞮3C"i�#b�2FG�6u?Ł� T� �pqd G��%4e�r�����&6�>MKj����D��0��A���H�=��dqe)<B]�&�x2E�����l��ږ�:�NCͽD �9 �ppp#��Y�|3k�ߍ�QJ����}@�H�:l-F�v&��+���@�r�M_��.s��U����p �.17�/ӌ �U�"��@
�7��#=�N���?�7�AW�� �J!��j�uB�J�(�e+q�1h�F�HC���A��ɾ����i�����~��9T�L���y��x^�3����?������p�;��>G�i���8.�g-��w_��y 7b �2.���Lp�.��/���i^��0K2�90�����nC���_[
�bx�>�!��=H�����#|6v>A{�մ�גiJП~��[��4�WKQ*��A'롔)#����5g�����1qw֘SW��ǡ#�N�n9��s,P�y�$�au���y-(S�Pa��������c�Ž]{�7;婆���*OE��E2��b�5}œI<����b(�9b\6�o�����Z˯��%;�^$�ͅ�Ñ0oQ���'B��j�<�ܼ�cs���+�#�ftcB<'�#�q�����s��E�II��]����1����O���*�~!҄�g�)w
A7{�o���TX�����5l�z�|Ѝ��(�2�)3�~ k��"��ec��l;��*<���G,~�ǽ?gu��ξ���c��MqEqȋMV�;���T:ɪ�[Y��Z��TYQ;�F�V��,Iw.W/�������xf��l�~��'RQ|���'�x|�髄�P ��r/6UyV_i'ʔ��� y���ؗ[����U�rL�it_ֱ��V6�9=����Oo�pa��"椏��JA�� k�����S{/{&��� �6!���b��c_�-vg_œ�c&c��X�d�eu�_�m�k{fo�5�p��t����)�~�s����nc������$c4J���mqEWć�Uݶ M�����'����g|r�(SƗu�J7c��!ם�m�ˀg��&}�� �AZ�a��)��`�TT���<ֶ����U�����~�|Ѕ���:&R��D��w���*k��<3ŪH������X,����8�Zn����_�ů��CO�C\'9lg�d|�������RT-�� �)����d��y�6��K�X�p%�[oG
���=���+�3+���_�#���lx��$W3� �
�BS�)�����`�CHSr�[�)u.�{�fs���LU_����`կf��U�XH�k�Y��z�W���m�6^O��;<�� T:�e�j��!�֊�>��"�P��ʦ����z����]��9�\�֙�����L�ԋ9��1�؛{�>�)$1���tf��;au=E*fq�$�J'{���m@[z--�U��_L��Ffj;%Fړq�����0P�@ɦ�����X�z�z;ƚ��q 4AM����`������{����zBS�}�'k���_��g$�NA�L�"}�ݸ25�]�`�r��]Oqa�m��&� ��O��(���qf�V?�;J�Rl��%�.����(1=�tT�d�%V��a�p���f�� qt���e����9(]W�����Z��,@���6�і��ř� T��}�L�'���w3-1�d����4���������x�˕��ơ�&J* %Gy�q���_\�c��cg�oqer���/&\�|
>�p�4 UQ@�^��}c��֊h�{��ܾ�`G_���6\��m`����;ul�@�B4�5lX��H�l'�UT��� ���BH���� HQ�:��3u�!�W"P
�~`��"Xk�d4t�,�)� ԝ��#P����\f<��Ň�1�7�S��\�p���!��VG!���MFU�����jކϑu�f�2'�#�0�h[�e�ƫb��-�$O���c��# ��@���i�2]�p��Ԁuܥ�F����L�{|}IEND�B`�PK
b$8@�vuures/drawable-ldpi/droid.png�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�PK
Ѩ6@����res/drawable-ldpi/icon.png�PNG

IHDR$$����IDATX��]l���缯_�N]'Mh��_d��R�c�Lc��$&�@j+��Фi��Ҙ& &��.�m_�Tv�Bl��4V�jc�@a#���m�$TNj;_~�����"Nd���T���H�l������?�9����C����^��]�p� P��w����C?�~�[}M.= b�෇=�0P�k �����o�&� ��,�S���O�s��t�)�IR?4�~v��GJ@%`��i<��A)����EZ��g�bz�����z@��d�,I���{Yn��=�qX+�ȁUT��ܶ�10
g,b�&2��9�vZ� <�1�nS�8�X��oH�m� �ܴ���Eʿ�}�$�獏�-�{�T������;����U=w2����I_� \��u��X�@\A
1�nBȅ���J�R�βe����ٖ�
�S�?�l#?��s�� M�L|o�~������:6��������T�T�T+aCTl�j�e����ko4��vƢw����~�v�M�+����x�D��MߤX>M��l
��{��)r��������c��P6����}8�@�΍_]�,�g��J�Kh�$v��u-��l���(�RdS��f�߲�9��|��Hk�6@�ZDdI�OcXk�Ɛ�\4CJ��϶�~�.V2�Q*��Ilk �3�e�t��`�B�5355E"��nv�h页Rx*�K��S��:�p�%0�\�0 ���nՀ=�ZS{*ƹ�������Q�%��T���ogw�<�9C�T"�L.�j9(��\�26�ID�w��7Fgd�ZKNj� �2Z� '&������t�Od 1[!����C"�$[s�4�S�#l�߅?2Z�3Z����9б����G������Wp�s��̧�רv������wS
G9S8�RR������aŐ�;ٻ�>��QI~����L̾S��Y&.b8��ː�����e�C�Ǟ�(<�q������?�C�e)�<-�bh����|���8�� fo�9�8p��ض�+|��ۜ���=����&���8�Ҭ.蕲�Y���0>s���}
�bW%�䖁G(GS}���'�<���Q.K�%��םVd�Yʲf���I|��N�@��|��t&9v� &�O�%�����%������o4�h���i� �4\�}7q�����������B� C�׾��+�q/�u=�HY>ȿH�|����e�kPh
k�\[ƅ���0�g����]��h���ߐ�l��$����ܣ�M�IWj{zq|�Y<��R���X&j0��L�O�U���(�z��{媣��J����� ���s]�A��h(�+�R�~��dD�b�<22:���j�cq";��A�oD�-L��U�Q
�36�uA�]�!t��+�,�����!`����M�6�j��u�J�E��5�����V�!��J�Ƙ�Ā�V�Z4��_��ZUG6�IEND�B`�PK
b$8@�vuures/drawable-mdpi/droid.png�PNG

IHDRRR�G�G<IDATXí��r�0����Mf��҄0���}�δ��i�ɴIl�����aY��И�{�=�!_!w�]�ߊ+�$6N�t��SO�KIrrdy��H��JY�n ,�i���n�5r, ��y�#]q"/G�]Z�n8�mV��K�� _���2���ʝJ�<m~�a �k�,2������� zC��;&M����U�4ܱ^z:����@m�a�b��gf�j`�f���˹���`��s |����H[�.��ܘ~��f�2=�]��<�2M�j�2��7fS�4|��۸h>ݧ��=Xݥ>�ۈѯ�bÛD�m+/����i���Z�ry�qh3P�(G�ι2x��1/�L ����bb�><�v���΃��9y�~����pm�ˣ��#�SV�H���W�[�Hw?�^�Б�gt�ÕV\) �)|鈟�6�_���, �]Z��� qN�LY�'`P�Uꐺڅ�,|�ԥF�<F1�L�q���.b��/�O��z1����E >�+]��Cf]�G6���L����\׋�9�"�DIN���C�u(�E�f& �h��"'��ϫ.9rh Ge�sE������k���l+���5HwHr5"������B�k�/�a��"_ĉ<������p�6�XtFN
QEF`�,�4p�HYr�n"���|���RMH.��$�U�ny �,_q �\f�� �DfeEK*^.���+o@�����N*͌2I������I"˕��p3ߐ��q���̢�L���(�i���ވ$T�����My��r9dE �h�#�e
G�2�h.f��� �l��IEND�B`�PK
Ѩ6@ ��res/drawable-mdpi/icon.png�PNG

IHDR00W�_IDATh��Yl����~�x�3�ر�%6���IX)K����X�ЪT�(U[T����҆�j j�@QU(]"�R��y ��%iB �'�Ż��3����=}�ώ�����/����f��=���{�-�Rs�o��̖1h�jr&��a.0n�b@����[�4�h �n��a�[�OZ�� z~,��hq�G�}p���a x�PY ľ�ˏ>�Ь��[/����P>9`��� �(N��t�bmk��m�cY�U*�{z�v�g�����
,O���kK%�G����2�
#>Z�i��k@�R`�@HE�>OkR�q �?�קZc `X�z.o�,"
�B� VJ�e��(i����;�߹}�_`YÍ4DVb�OX���K���6�cc� ���R.�k���
`ٺ�!�D/e$��@�Ww|���z^=�sF�=|f�DC�99��˛��%��q��i6��M�f)/��7�"�o�"���XO@_h��/*�����i��n#"Xci�o��SO���V<SdS�v� ����[i���`�}2�A|[`EÍ gX�D�F�R�i_tњV�n�/�6]#�q��`��Lv�)+@��&�O�˧�)��nᲦOw��O������X���2��$_Ȓ�����IgH����h��P���(:^�� �wL�l>E����S�.���m�Yц5�H;�\gF�`����i�w� �s��h[t%�N=�ޅ�EM��l]�u<[�ʎ�lj�����cqt ��~���W?GHG�~ŃAPOv!Eg��QU&V@;�t���>�y��uƘ�Q�q8t��{�\s՗�``2�꙳�B��<�u!��R�-����Xh� �h�����kΕf�?w�4�P˭���J��\�V�����yk-ydN�@Wj�� ��ؗ����^���������B �BJ��K(�?S&�c�FGG���� ����q$����#��(�Q<?�p�a��X�|��P>h������#���Ϯ���8=��S��t�� � p��kh�#��U�ofU�-���>CCCh��<@����Ƙ�l<S�#���c�恫k9����I���R�!�|�S�Wأ̵K���; �B�u�ʙ��2'-W�9=�:o�\\���>^=�8?\�@�������(�g��=��d.�B
�(z���E�BƘ��!Okt3� �HW�?��:�}�7� @@�H��V)I��A��O��q��g�l�Z�~�~�G��&5������h�o��#���ȴ����n@ptmI�����aD �|Βa�H�}v4����aR�c�\ �
�o|���+�D�L���j.�JM������U�#X�&#k�l۰����C4w؉]9�:W��L��C�1RdC�vZb0����b1\Rw#���)'�/�����LM�C}�r���E9�ˬ��J�B��C:�CHG(���λV�x&˺%�cC����-�:�=A��Nui����?X�U�+���Ȋ�.���V:ı���A����cpT�M�_a��;�w�q�=��%>�ᝁ�lj�u��j��U��~IWJp��x8N��Z�#�6�V�3���4���N�עM�+$�m�~�=n�`,Ԇ V0�QW��k~�R./�|t�%��t�C}�`�/ۄ(k���x ��o V�L�8@Kt#7��'�v�w�U�Ϊ6�Je��+�;���{ǜV��h���E[ٝx��� jtl�C�pO�jb��5 �����_b�S88�Tt�帒�A|�o�k}���!Φ^cY����6�̟(� �&t�ѠFs��7��#�����N>�S�a�Ro���qB��T�c\�a0�>J�Jlj����se��Xd�,\ٙ���LuVQ"�bX߼-��(N ����.��W`L��xY ��I��q��7����o`u�m�P�:��'�[��vB��RU�:� �?p��pggg��}]Q�����;b��E�l�sh�
4�6��a S��t��ƀ�+� ̪�cy�I � ���cJS��,�(M.��j� 0�OiN���9��(�6S�z���c���d��d0�N�V�,�P� � ����H�$�X=IEND�B`�PK��mA classes.dex�� |���?~��̒=�I�� $ aа�,�� � '�$If�� $�! �K�*�,.ն�m]Z[m��Z[�ն�j�k��Z�K+�����m��?���ι����s�=�>� ������'У�`��^�ׅi5�~V�ܴ�S��;��ڛ�I&�� �ܤ�����T�+9�At5�YD7�ޑ�������:y/$z�x�O{�� ��ʀ@%P��^`7px������ `P� ���2`p2� \�� | x�9��7 �,�`0X��@ �l��n��< �� � �ل���e�Z� 8�����������~�X�� �K��g�?����!��:�!�)�'�s���+�k����b�� ���0 (K�U��8���C���߀�!�����V�F��;���88�<� �l&*��0p��k�S�(BT������� ����Ds��@;n~
�8b�h���������4���@'���x�_���h2����������b+d�}�v�*�����k�@��V]���=���;��Ø[�z�����m� �0��4�}6Q+0 \ ��|�l'�T�@�<<�x�� `����N�r���)�U� u'�����������\�|� Y��j��@��\< |x x��<�'�@���nn~�� �/�}>� X ��g���g����Y� �(V�@ � ��{��ǀ�O��/�^��x��� � ��@!0� ����@�\��� |x
�9��M�=�S���L����b�h��&  ��ˀ#�=����\�n��S`����_��|x
xx xx�p�%r`�X 4��&` p1p9p=p+p;�m�9��7��?�yA'��@?p5�=�y� �} }� (��@%P��@/0\��
� �t1�0X
T���\ � <<�
�#�w�y �V'^� ���0pp%�U�V�.��S���7������O��K1��8`*0X��� ��@v��?^~ ��3�!�/ �2�0X���5@� �~`;���xx��[�m���{0(��i�f�`?p'�(�3� �s.wtXT'�}@ �\�| x��&�O NN>0XT�@ �t�6�`p)p%p-pp;�5�^�� �%�O���D][Lf�e@#��> ����������>lpȜ�D`.�h��(�� �~�
x���`�{0(�@#�tA�|�r�+�m����O���>\_�X�i�`1P�N�� p��� �p�0�}�)�9���o����@�~�708X��6�, l..nw�?~ �|
���&ど� �j` �� �[���k�#�7�����>� �@9�t!`��8� <�xxx�8
d}�����@#p� g{�+���ۀ;���G�'�_�~� �� H�{������@#p2p*��a`+p.�8�w^��i���=�+Gp�H�cW������Cps� i7��V�9|���g¶I���a "l%sO0��L0�H0U�B��s ��<�@= *D�n�DK:���|s�� ���� 8 n�sp'p�5�n����P��� ��<<<| �6��a��Q�1����ǁ�?�~�x
x�1���s�π灟/��~�x��5�u� �w��?����/�6�g�/�;���_�����>>�| |���9p��87
�L��ꁓ�V� �6��?B�M�t�?�F>��B�]���+�3t���r��p*�ah�%O��.�L�)��:�2�:���������#ܧ�\a@�3���Ֆ �ѣ�����a����u���s{F‹t=�Z&�:�L�9^�s��y&�<̟���ѓp�����$�.����s��,uN��a����"���0�"�b=^��s[�t[8"�B`�.[n��2Kx�%\��|_���e�,2\k�Z�X�-}�pX˄�C=#���-�j��ߤ����l��3�F�c���8�iK�qKث��R���fK�͖q�X�u*�G��4Kx�\��r�E�gX�u�En�N����Y��Y���aYk�Y�?ߢ�l�o�Q��"�g�s�
�yV��W��0��j~�~�g���%��.�H�- ���J�߳�?�����X�.Kx�%��Җ��/�����_j �-�^c�*�Y��k^��^Kٍ�p�%�o ?m�3f�%������ޑ��X�,�C���m��:������E�V��,r`��{�>�? :�s׬�/���Z�,�F~��g�6��[>�7^�{�J�/����-��2�z�’�
]�;�r�i� ��IR=:�g�3�w��9���I��'��I{�D�l����NQ/�����5 ij��9�r� �w�������z
����G�J�I!C�I�J�J�A<�&iۙ� EJ�A�%U����I��W$͠_J�����,�[�NJ�u�~]�_��l��t7m�4��%͢���^��-��o�o���;̀�r��ߋ]'(�q�����`ZH:�E��*����>�A��߅�8�5�4�iH�0�YC��S���$-�K4�L�t���-�����.�����EI'Й��}�]�}�&�
E�t�=I��� ���*-7ؗrod:A(z���jz��wkzD��|ԧ�� �+]j�a���6M��t���vߡ�;t|'��"E' �*}'V�E���>�\ǯ��G�%�N�I���*�>�W���4�v�vR�zC��P��T����(�7��Z׻57N2�(�{/�Ť�lM��t��s5-�T�/ǧEj�t��JO������$M�vI�����h���Z����_�t*}G� �aI�~���b��� ����vؗ<R����:O�{h�N�P�}�)TK�%]G�쳟&˧"�ׂ�*������g��:�sC�{ 4M�����Bї5�)4�`��f��V�u�f�)���4���T�L؁�S/�'���ߕt.y �%44[�Dž����S�2I��a���<2%ͥ,IO�y����Kz&�ZR7�*�������T�����4�i>mL����Q���nIg�Ig�q��S����I'�AI'�㒎��ޟ������2 >��G%�D� >����eTb�Yd=#��i���A��:��$]*���M#�FA�Bo $�M�H�M�|~Q��`�7 ����3�t�J�%�Et����?]ә�?$���$�� :K�ς�q�)*�%��3��k��h(���;���`�Gو�a��|�c���ӓ�*��P
���W�h1 ����I�I?`@�]��P�/�*}e:KR�4��/�Δ'�Z&݅�r�_��+�C(z/nZ��Y�|� �^��Pq.��=��Z�t��`�Vh~��o5���ݖP��WP��Ք'i �K���kZ���u?�u?�u?��~��o����v�B�L��<ֳ����L���:�Q�ӈ�0O��4�@�=�C�T����i0��^�T��=�T�5=I�f]_3$t�`Z��jM+5U����{��Nп���z�i�`z>}����B����x$�j��oUK����N��,1�.�m���RH0]K ��N������D{��~�JMgП%?��ԇ�h��K��ߝF��MI�!���IwQ��mt���Ԣ��OH�P���Dэt��U��J?�M���8|B�.�.Iվ�����q�����ϧ������zt�=�\]��*���2_�����5�?��|�n�W����zu{}:����_Q��O���?�*O��x5uѳ�i6�T�M�h��4]� ��m�'��6�� �ߪ��:>��:�񠎇t<��a��C�*����>����:�(�d�#����k? ��0�黒���%U�e�Iվ�=ɓw�K�0��i��w�K:@���9M!��^0�^[�%ݏ�n7���tP�-�n�tH�a�U�٦��t�l?+q��{U|;8�*�ߡ�;�QT�w�u�S��-�!��F�t�)��r}��)�6�>������I��^B}���۩�ڟaj7Խ~����K��S�;!�[5��S:���J�;�����y��9z���}�\X�B�E� ��R��Ԧ�\���`�"� �U�مt��'.D �K�<Y/?(�q���ߣ�{u�������^������*}ދ�Z����_�I�J�S���|]n��j�G�.�X�s4��%���R�GR�G�TR%GN_R�G�|�~�������luUޥ�0l�җ �����3�]|���`?�I���5r",��34=�ߩ�s,���ב��ꎞ��5]��;`�����|.��?t�6��S��[���;k�J~ց�ӑ��;�]�5�B��D����w�6t�~���FM�^u.���?�S݋Z���ː��.��2>�KL�30ҧܭ��_��@�|A����:=t��K����;y!�{�/U?�ٍ�g�T���K��/�������u��E���c���"�;F��H/E�w�g���E�
��v�z>9:�Y?�3�R�.G����H�p�z�9:�/H߮�7<J~�H�'����m_�~�N?ے�˒~�N�>j}pz�=��w#}2����w��?N��t��8ݥ��
K�����Q�i�-�w�zvkm.2/C�?�����i|��W���?�ϾK=�k��h�#����ͻ�
�^�9�VM���'���黺�QPǝ���i����TyJ�i�Kx9�Uw���-ፖp�%�u��yWZ���u�A�����D^���^�w'X��S/���ݕGY������|�L�/���1��R_3��y�^� �l���Ɩ�,��S�|B8��ք���:. �"�l�67b��R�T�&�۫b���#��E=���{���e���0��'��=4���r��6�
�h��=}������)�eK�w��NG�2�r���U�u�5���bsz�R�ݖ������2��_���g�H�b�I��Mbe�X�'%ò����yq�h�l����u�R?�^=���OA�T����г24�t��(�
F`\kl�� �+W�;�»@� �.P|�f�dG�'�~�J�t��x��ڃ��I<�B��I7���8�$����\E�=­�gz�Ѕ�Ծj
�WE�a�i���r��W"G!�ٌ���ޯ.�$�d-A���V������"��e
�I<Z��z�.��e' M�����fzF>��T�YM|Gk�yR~�,-h� �F��E�®���f%�u� 9W�o �d������qj����
D�znFoӠ ��y
����c����ٚ˲+�`��:O��1K��$|N�w{܏y�!���o��$����~L7�<��%���Z�
7m.��<dA��M�e����X9����iN��2պ/W��Y�e[��o�gFh�,BMbP�=��#쟮�g�Al��T��rrA�h�T�S�Y�<D�s��%�ڕ7([2Ex��#3&(no�
����Uce>Ud[ʨ>�b�L��oP��[{ ��(�{Lĵ�� �O��|+�S|�t
��{����٢@� �0��3[�P��r��=�������{N���
��&�u� $��U���ۆ]�ގ���[p/h��s��r���4ظ����Y���Ѫ���C��X��ӵDf�%�`2$r�(�t�N�M�6����p.���eӰ�ܒ��Kɭ��ex�r�*B�/j����zT��� �6���H�.�R�� �� j��an3��mr���]��b*0'K�����3�99�b�F������e&mv��rl�g'Ń�ɚ?�|�u��%�(��ȶ�2o��k�aM���(��h%�.c)�X��\R�:؞-��7s��(d#���p���8����u��u���Lc}g�� �L��f�t{�<��bX�b�sz��C{��(9 �%9�P{M)��2+��2��,��oC�n�z���%W�N�Yz7�P��]̕� zY��^�\i����V��)��1�ʝ�,�D��?�rŸPv ~�y��qș�!�;�F����gA*?c�lrOS1x��t� �\lT�؆հ��w��H��x���F�&��9" �D��:��os�mv��*�,�W�w��o.��� {�W�;�ڿR"S�ڟ!.S��8Ӥ�l!�s����d��B�h�f̖��x�T;��i��E��~J�/�@�y<�8��q7�#��۝&T�j��O+Ai��٣k���Ok.��B�������{`���J�!��t�w�H:�{]��=o��x3����2d=g�;�N>�Uh�g�&ٳV�^�=+�����dj�N-��HN��1Z9�/��})���(W�/jǿ ��d��I'�O%?C��q����0V�PԽ
�"F�|������u��_BK�0型M��B��z�B� ,����2'nk_9����5e�:K�?Ծ�;y�5O��s0��x�����z?�,߃d+8����:���>Q`<!��.��ƛF�l9�?�;>�w ��p�^� ?8��5��$[��:�1�ͬ�iK���.��@�0�:��m�-���H;�@Z��4w��f�-��J{�(���қP�F�hA�@��O�HwgԤ�g�=�a��kPCFZ�u�����4�%7�B2�U����k�]/�����Cn��
Җ��-c���3h�v��X���=L�ɝu���/:���|�*ǂ�^NK=��,H�4G�Zt�)M8^6 ��!�߼2-�8�׳���δ��ãǟ��/�~���o��-ب�L��t���'���a*~6�I������ܾ�1�`���U�cI���+t��}��.#�����[�GnT�#�'8��F���p Z�q�;
Y�~d!�Z�����|r۽�]��^��ct8�a�G0n��Tk����j����J����4���vR-�(=�-�6i�v�^�U��:,��W�N��l�
�J��6+���� �>���91�)�Җ�R�zI�{d;_S�@�[��L�;!�⃪��b����-��xT����߃Ʊ�]|�8�+O��&m��"�J�Xy���5b��n�۫�Q���U�M�b��E�N)˄^�e�q�=~8�����VQ����_u�U����%��$��I��W�^��w�Ԥg��5����Ф?/!�KEl)�Ӽ�]E�*��߆ M_��u�{� �������g�9�K֞&rұzdΓI�,��fy��A�?���li2(##�霻(:�y�ԉ�RQ���L9G�團.����f皸 ��)�<����|A�S2�M.ϡt*>��zР{��~����.Q#�%�5.רq9�!%�:[��Һ��~�bД�U�ZK-rL�Ct�1��Q8E|���(
2m#u��A������Vd; z䰅6�W�,Hd����{��#y��t��[.%G�.��=i�k-�Ơ�<��l���'�w�]�w�C�|�t|�<���捠���Bl|�@��'�k�w7Y}�����[7�����[��%I�l�1W�}d�����oJ���˼9��.E��$�W6R���ԛ�wV��m�8�DmD���C �J׽j�q�n�h��ܮq�h�ݞq�
��v
��y�S��s���8us��2�W���iϟ�7����۔�2��e�S��o��P��a)���>�(�g�)#�(�\�<ʷ���rf[��%<��pFFQ�f����)<�V�&{6�lao�H��mD<ߦ[`uT� <�d�]�ö�ϋJ����^Cɾ���ܟٿ�ﶔ>oV���rv�~s|��tv>/��[�Y{���gm�>'^��v��UҴ2��L�t����@n�d{��L� �xgJ����Y�)i*�$Z39%C�NI�띜2[��ɷfODkE� G���o�=S0'칁����oP3q
�1����{�A��M� {�}����#����pr�ov]�V���t�&�?8��g��g����ә5^ݐ���\&-��]���>�;��;���t&��ЖE96����|y,躏�c�g�J��g�x�}%�9��8� �G��,�'?/���k_���:Qs�XsD��#�s�}����xn��[S��'ݒ�����jϗwe6���Ihĝ193�܍��żgw��4���݅��4������̾�5r���fbf�ə}�fef��q� ��3�s�����R3��N��K�"w&��`� 3��fRZ��]C:�]�~I�~)9��n��*� ���9�!;3�=՝����n�qZӱ[�Ր�����u:�/D}N�%��^�Y��e�8T~I�����C���j�Ξ~�2
�]L�dg�r����{,��.��H+LS�km[�禅��a��:�y�r[j�)�
�=�������[�uu�`&r�]��K��L����B�,e��,��K�r2�kc̓'��y���tӐ�nfr^���2������3���C
y.6a՞��HŸ��+�}R��M��X���_5�9|��Z�Bٷ�|G�mNv�SL�;��i�F.�n��n�5��ȕO'��� �˽]l1�G�,w��9)s���vwA�"Q�Ob�7�������#3������[�3� ��<.3y��R��㶊Ò�:
�e���1�f�&����9��/�ݢ�H�[ȞO��(���h&�uPC�;��ʫv�q�#W���h����5L���u�g]� ��t�j.�:R ;�OSdd��a-͢ܜ �kN�,����,��.t��,�B�4[���Qλ��}^�>g��ۿ�����F��ĵ��3���F���3�:җ{�Ǧ ��W�� �D����*O�(�͇�5Qø���|��l6���&��23/��2�#�Ĩmc�9����+�(o6z�)L�{�K�Y.TT��<7�s:m�"obV!��R���RK��T�!��\�f^���\�� ҳuQF.��U�KwD���%�b�hJB���;G�����gC���KQK.�*�lH�+�t%9���)i�$�([��d:ْ`�u�(<�� �^�V6�)e���qjF��{6��9v��3���� !���>��]�;�;��w��������<M�ɵ���Ě�̶������Q��W���}����w�+~�C�A����7��=]򦰐�c<=�Oe+�-�E"6&�{)\VF�̠g�� �]��*~�>�D�V%�e�=����C��o��$��D�Dy�����g�"E��i����� p�zF�]t�p� ���6�en!�,�X��<�9B��q�6w.�f�;2�{}Y=FƏܦ�{�k�Dsɻj��S�����ڧ�n7��2F��T���D��g ?�M��x4��4��)�� ���x��>�k���5�]�)��by>ż���G�2V��b���ZĂ���X��������%����ޏ�粏oS��+���V$��d�ķ��>�>]e���E:��3<$y�<�3�ٳ����x �v��Lz]�WSö"5�Z��P�N��:��g+ls��I��fÁ�$��Q���Ò��݅��m���I��_>ù+}۳�m|��M��6�d޳���� ���K�,�,���\�Bs�?�oT� ����-�2��2u�;� ��?��J��L�.`���G�b�bf3���;�<�z��>�'�6�;�o1_
'y�]3�S���vU"�R�ͣnw��$���s�A�~���*y��h�т�Nr��,����7Xa�K�jj=��h�&��g����8uV�� �r)��Z��Vc\a����u�i� Cud�w!�3�T�%��i��L��%�P�M�+'�|ƙO�pm#\�� s�c�1F8�sIu-@]����"�^�Wu6$�f�;��h�?}c��փw� �ϖ���x1�sQ#�]?x2j���9��n�铱ZY{�*�=3X�&��3l�f�a��� �#RV�o �˵����LI���5I9b^cke}�ZG�v�:K����#mb�G�z�`}��y��G���!��vu_���7X�(��S��i ��1�(�r�g�vi��~yP�>��U?� /��-h2l��9�[��[[��þ��&��O�I�$��5_=�������ݮ����I�ߛ��K��'�2��ɕ���qH�_!Ot=�wp�Ea�]Iɡ仏8��|��+��_s���7���3�DZ��g�R�-���]~�~V-V6�n��"H��8��x<��!@9N��:��ڂ���zY���< >s���ɻm���s�g jU9�ʜE�qT���'�~��{��ӽ����r���|ʼ�sb�t����,���R�l�D�rKK[ƴ����_������#���w��㼻z,��!�\7$wh��
l%���(��̻ yeh�D'%�DG8� 9�\I���d�g�t%��j�$z��$F�U�J\�&��;Ƨ��!}_��Ey�� �.�u����*GеJ�ߍ����^S��|����L�?�'�0�{%��
�当7��R ���=�@ �]ZȻ��x�������zMK�,�V��<��_���*�M �~�L��H ��p*9�X��pV�N^0"�Ocؔ����u�e �����1���;�~/�� �1���I�)��\��Xr�=�l���f#���4��#8y�� !S'�Q˦ĈXg|�J-O�c�&��p��n"��W���x�JzE��T+w�Ԣq�6�� � �\��r�%��W��ƶ^������zN���l�o�n׺���E�����{���T"�=A�8�lx�?�oGF�q�?Nx�� � �b #v6b��ؐ��\]b���~J�r���R4i�:5�ߖ�_�q8��Ē�I",)��D�mI�U$�L�g8Q�`R=�h�F�%)��D���_���][��#>Wi���+���q�v��Ǧ[���"J�{(�u�0m�B��Ds��������G,[ǂ.��5n�B��*������]�wD��t�X{�h������)~�{�J�z��:�Ġk����,�cN�i�q����~�J��=��U� ۔1�΋�ao"һ�7����X���zo��k
���@|}���T���"���^}B z��P f��H��_���[��Ϫ�L��R�L���T���-'ȧ�_��!���a�®�����{ �� Ϲ�?-��>��AO�����~�`��v�o��s���3 ������M�\��#f�y����<�X�veu⽽�#���#�v�<�+[���`�j���|i��lj�(��b��Gڵ�]��E�� �Q{�z��]�'}he��<����Im�_;,��1�O����sr��r��NK����Zb#��"X�Y�ſ��+t$���?�=W��#��?#�>�VN�X1�3 ~��O��D�]Z��Z��R�ܤ7L���m9��.Y�pۧ_�yQ ��{��]��S
n��=��U�ʶm��sm��$�cӮ��o�v��h��d�哄]9��d߶�[~:���r7r�H��]$m^��w�gj�-��Wʓc�����I�@S�|N ��$�8���Bm'�\�c��I�A-|+j礪޿���d]�#j���OG��|���1�qD}/���0��Cw���K�mt��w��ն U��[G��ݶ��4��w8��;؞�l�ۅ����F��+41�9-מ=��(Z�_��������ǃs:β� �FT������F��q���;�mN�-�o0Xӳ�w!XΓoW����(�@BA��f��%��ak��|�]�S��7�����-���Ǡ�����/G��\�{}��r%zˮ#�����S�_�6��Ne���]��k��(�<t/�j��i���/������&��鷫3�z���[h�����u6�ҧ�Z�ܮ�Z��(^8����m���L��-��nWk���#
l3�NPI�E�[����[/��vC��i�u�z ��)=�2Xx�퐱����Njb�M��z԰�<A�Q �֧�m��S���r�� ؕ�c �V��f>�y��:,0��};zX���W���,��DK+�)e+��T��Z�%#������G�������P��֡B}b�e���}�v�;����w�%_���?�]��y��Q��ܕ��Uvә�8w�N����G{�Hq8~�'/e�)�����)�寫��|'�*q��$g�~�
:��q�O�|�3��i���{�@�"1�懷���=�婝�p��~�lm���Ӷ]kZ�q�Dr)�ȅ�� ��_F�?�?�d���0*�C�;:�o9�{s�﹖�Q��tըr�:��q~)�;G��+ӏ4����}�x���£��G����_3*~˨�ݣ��|T��Q�G��0*��Qq��=�Z�1����V�ޠi���Z�Sh��7�x�|�~+ДT$�pk��_��O}/t��~:��@L�ّ��&OsB��:�O��!�*_��;�̐��ڤ�R�'�FW |��п�l�>V&��g�.�!�� ��7U������Mz<"я����ȓ��KM�΍܊Vɼy�����$-�ɺ�)�N�t�����R�W�r���N�rl���i�>��E�=C�]�/%���/��� ��s�6i�]���9<_��]~��{�ܧ�ѩ:�� �0e��՜�+�ݾp�9�C��V��c�P������D��P$��.�Tt"��R��SRR��x+P����(&����l�P���P[Y�iZ�X��S,)�-�.��;�
m�G���ɭފom��wm5�R]QE3�4y��4$WG"!K^iKOWh`��� ��]���I, q�e����? �V�c��Ɗr��(���?έ���65v�o�n�hn�n�n�RFEW�?��E�nʱ�J��m�Q�bAX����BA���~}���ɻV F� � 6VQ�jo�o�ϝ�������W{[c��#51?d�*� 75Zchו�5�^T�?����Z=�� {��c���hm%Ge}-�Y�P�X�P�էz)��
H��9Ԃ�5�o��ަf�B�۴fM}�ʕ_��XS�f}K�:K���
ٚ����OCeM��ޖ��ަ���-���l��h��,�d�3ٕ�0��� ���ݔ��`�--��J5%z��IQ5l'x1_W��t ��TU��@��[<q�4�*&٫�W�ǁ���%&l�5��]+�+_5�ƬV��'~$�e�ވ/�A����������aL��� 1��@����:hQ,����F����Zo�z��R}���V/�V7n��hhj�T���hlj"W����N�>���Y��ڊƪ��*Oe}S+/ʄ�{Z�*몽��V�������^n�TouKcE}�ub��h(B3���� ��닄{�b��`�5�)�z<4Ne��E9��@k�;F5_/;k����I~m0l�rtr�`̚N�Ur �i
6����!�`̟�AT62o0�����̌�痲e�,2�$5d�������5�`7���W���5�ow��'��钦��i]5Ę��k/�GcJCD-��d����%�����5Md� ���i\m0�.G� u��֑�'�e�k�Ȇ�6D��`�o�G=�p:8��Q/�8�^��3���S�����bu}5ji�i��`w$�K�=�9�׊�%�F��X9M=V�/���i�Hz8<�S�%.����k�6�e0�d+���H� ��{B�T��j�Gx:T�)_V��&'%��^YU���-��T]o9�H�;�32/17zK.��_�K��r��e��AD-�S��LXH1��y�#!_w�/���r*��24❬�2�#$m�GC���2��l<Iɳ�H���?�)��5�r}��]�r�0&K�$VLN�u�Sq���>���6���ͨ��B�cIpL^��3Am�UD�~iѫ�ѮH ,�T7��N_�?�r0MNB �[�
t,(��~QR�9��4}D��/ʗX�9��߼�l�� '�r&r}$0Cz��3:ɺ\B,��`���d�V6\4+u (�u'1����G�'i���-�H(8 e�gMY���Q��xs��f_��߿~0�}�l�hwn"! m ��yz/�2� 0#ΰ*J"�p+t�?�b�;�!֑������(㖀� ���sԵid�s�f��k��r��BA���>צա�r*�t� ҃Y��j�uo�E�W�j���e�Fs��W�v�}�[��;FuP�Ǖ�h�G�%y�P7����j�?Dt%ӎ�����x%O9F��@o�Æ[N�H���*��6</�l{�6t[<�r��d6 ,xk<)kaRRc(VÞ`��<��$e�z8���i�M�"���q vr-���Oe��P��� �a�|i�od ȫߒ���oaY�Qda����{}�|ȊF�(O0�c)kK�ܤ<1�2o#��P�`W_M��o�ܴ19��X�$U2���
�c���h�< �)+��e&'sc����C�ja�%LlR�a,��d)KET�,� !6`ց[��"L�u���ِz���d�X��FY�q�&Gs�j8�\F�S�bb �dl��2�h,2�%7�u_�a��I�(���/u%j�x�Z���S�1�j�[B]r�j�c�wR����3.7��H�7̖?��] u�I!�����1����*���z�-�p�㺚`�S�(�����M5�z;cL8�o�w֦�y8��Q�sY��~}m﷉|�k%�� �/o��$�\�>$�I�3�I�6��NK�����+)A�\$�G��l2�1����6�����1"P_ �#�Z0��p,k�X� �mI,6�c&�*��|i�-u����bɲh���i��me��ja�� �F1���gX���1tcr�T��]pL.d3k,�X��I�7�1�2Ib:O��:cc��"�vE��`��l�X���@B�w^�/K7^8��ya�=JNt/�W[�p $1_&���`@����  ��Y{~Z�-��U+��r#�x����6��t^>Qe�捕!o��T��vεc���e���P�]�TE�����zJ��=<'y�� �R�Sߦ6`a�w��W��[n��(�1�A4 �E�+��� ��Ɋ�<�+5OkU3ߩ�"ݞ�P�Cvu�nj���� ���:Z�[��{)������n����ʺ17���M�V�?���-]=����7�y�V�껣E�T%Q��K� ��i���V�_��yB�~�hIL̦JJk�l��n�h��!Gku�t=�imeueC�%�{��6Vy�C�m��XٗtHN��ܫl���d+�rG���w��z�=�@ �r�n�*++�
���,�V��όF��3�������k8�����zP+�Gϋ�%4����?�p �V6mk(C;�5��� �x�E �t\+w*.O,~�����Y3��Xo+U���b �&�yOk��t��h��ljh���ͥ~ ���Y�>��f���z�j���r"�o�]��y�ѭ�z���@b�7T�����ljk��ܰn���� |O�A��n�״�!� �..�}JK�T����֊5�$�܆|m�������h_M����W��*h��+;w���\n�1N=I�����A�݁h�^�z���FR�Gy�.�@ag�u� �_ DI���(�'�3����0$B �E�� ���DhI"�4:��U���������k�{#����Hi ��8đӧ�u��uw�w�����ݪ�q��Z�[��#���sp�j�&T�T�Y�Z.U�l�:*�V4�����m!m;�j[+�`y��}�-���~D|���;��S@:����wye���M[G�q�P�K���*;9�M���:ja���9v�Ś;G�C�c��P[}
�#V���,:�`_��g<�+>a�z��*����Z�^It��S=�l�{�"� ��Ph�����@�2%�d׷s�:�Hqtʻn���>J� �U"�&M���)�����!O,����k�l!�����2R�(��˝�=肼KC|B_�e�w����.���k�C{a������壂._pV�Ӄ��Ǒ�=-��4霨z��G�;�ߔR���QَY���M,e#/�b�~�b�Ny͚�0���R|�?�aͩY*���SG>�S7O)p�#�O�삇�T*;_��)K����]�Y��h
��+���1��&�36�?�7�R@*���[F��kR�������H_#��Աy6���x�`�a°��{9���\:02�8'��t��w��D�S���R6>I�U�8�z*��,�VC����x ��`��C< �A�3$�GT��.���u?GE-���V,��(=�6�� %�K9��"|ч�!�����d˽<�?+C���8�99��MVw�[ ���˙s(��ʇw( �e�;���j����C@�� ���F�)�36����h�O�>e�;��F:���d�wc�~�T�� EգVr�؆@4������vE��\> �.v$ �l����<�U���^�SvOGr/�=��8����S���xz%P���f+�'n�b,g���ï�8��y�(�j'�O5)Uъ��� ��bSO������0?Z=\�ͥ��h�=�n�z����"^/����J�%_��������>�ʫ��,W��xR.�G���*�v!T� ����_ڧ�aʐ4��`c+�%����n��e<��4��y苬P�*��J�:��r���s�w��B4�ʳ�l��/oz)�©�{�?ZY�W����XY�U�a���$�����#CH�*�s4��4~l��U��T��d]��ZY�FJGޫx}�R�VK’��SeXv_������l� r�I�����PX� 9ZL# x�=.��kc�<��<����
�z�~�Y=�Y����@==�o��^��ȁ�[�M~�K�p�_�)}���'����m�&����" #PC�L9BY`�߿� � R�eP
��9��H�1&�5�`d�6(�%��O�hE��}���@T>����Ɲ
y��j� 5�F3�dAsm#�^J@_��4,���p7+�[�7h���f�,C��`:��L��U����Z��/���4W�QT4�uJ@=�ٲ�Ц�0�*Z�&1@��Qw�30�9)� �W�`�V� �}���k����@�ָ(�$\ה�9�[���\OZ���́��;��(k�#��;���e�+����K�m�{YǜzX� �60��{�ƣ�>0Дq�:�Ɵ{qrH��#�PM �9IS�F�dx�܀R�+^Hn��ַ# �o��u�Z�&�����z����x���UƇ̑�P(��6_� _�)'�ݟ�9B==����^�]<�Լ+˂�A~���!��� � J �� � j��従���Y�s\;�PP��xP����'�7��x �L^"L��/��� ʎK�m�]^�!�.jL� ���WG��tp�G�zvSj8���C/ H/%~+G�2�aX>pumb�� +{��T@f�G�$f������YhaPm,hz0no���7�~Yd> <� P:�i��ry�ɚ�﯉�����"W��8q�Ip���o��#��>-2���#~�g����VOˌ ����:��P3ڍ�A]�Sf�zWO�訫{J��yb���m�G��0��s��x���̨6�ޅH��q�+7z _j��� 5��V=OCb|#��0ۖ��sF����~GmP[��h—bQ�y�*��r�W� ������R44�R��=�� Q�.p��^]�<��.�lF��2�6�ڨ�Q�?&[�/���h��]Fm�p d��(�Vx��;n+h\Rޑ�Y�?rϐ񄹗1��h,7�?�i�����|�̘O~ �M� ��7T�E^��b}��9��\���j>y4���Z6ca���tXtJ����-�/\Qz,����W���B�I�v��ɜ���XB� _4�c>��[ȾE^M۷H�)IS9dVk�:��W��(E. �V��� n�4j[#p!H ��&Ϳ���Zm �#!�)�*��< M3�?۳n�Wd/۳�.-j3�=��oم18w�I�����;�粪x���tf�޶���҇�z�4���r������܈�5��[�r�i��������P;ȵ��ʎ2�ʩ_܆��-4ś�*��iԙ�_틖�sѴ�%al[gt�̼l�r�~m�k�]��؆<t���%���m��6g�r�>t���ֹTf2�F�3k����e�q�\��Cg��]7\W7��l\V��K� �i���ޤ��{��\�\�e#�����u�Fg>n.�m#ڽ-��ˍ�h�q�9[%�m&=h+>�x����F���x�y��E�l���da^��2�cs���TMι;JN
�׉����������;������R��k���)�������㘔�H��^�n�T�P/�vã�#Ľh��m�q��ɒ9��Iw�N���m�ơ'�;{%f�M\cw�m3�����Mۻ�J��&���ҡk^4Se7��)�ڍzS<���kB�?1 !L��6�iY�Q�Nͨ�f���{�q�9��p�v�Ñ�H od��ՙ�ٌ�=g��ɥ�\n�i�v�u�n�./ ��Ț���['�ñbm��D��tN
����+J�� JM�]�K��0� �Qzv@L�\�n�)�m�!�)&f� ���Y��%��;���!.��˥�"��4)+���qܝ���"3��ꁲ�z�x�4���v���9�z�9�� DK�����SM�K6�����>^�v�T�Y"r3�ӹO�з^0ږ՛)��C��9ٯ��jھg�����7�\�L���Ɗ�z��ӌ�>ݻ󕒴' ?�Rh���t�-5���C����a��_)�j7�-��++�7��0�6#��i �;��f�?���f��D�����|��r3�7�H�=͞QdO�.4S+���l◶�W��j]��<�x\��2���1ҭ����� �E��6z�<?�2��&Wo�1�g<�u{L�����|�n����mr���s� �B`M<�6h�3L�qT�t�0tg�e���
͌��YbJ�M�ϊc�n�&댮>��@/�܋�t�b�i�������)v6�#^g����� 3�M�ƺa3�^{�1�δ� �y�Դ�{�lb��E6�0�
q�q��.W��@ X`�F�б*�������R7����M�r�p��h7��t�H+�{� ;Y-&d���S'VC�y٦r)1��~���F��ဍ3]`��Y�m�o�4ǹL�7L#`�ڭ�ew�sd�5�F.�z��p9rB��Կ�mCg�O����f�Q�X�2��g-7rxa��RY 홖
��
Si� G����7� �;5��~�띔}܈�Cu���D��O �JS�]�.�`+�C�ޫ�����>��$�T%�׬��bm���¤g�qA;� o#�;*C@�4�I�KkTE&��6��&1�VQndo=�����έ��ށ�3�_��{�ԛ���V�6�i��5�i6�>�A7 �������ۇL��F3���z3�{s�Lն���X ��7��o� ��פ?�R� b�����7�a~�~��������4������� m+�oc M'�oa �6>��������U��kM�Ĝ���O�6�q�Cu{�� mW�I�4�5F�����8�'����n|�j����,�*�� �X$ ԋ����ؘ.�3�(>�4M<�e��\�;gQ:�����h2x�#m��83�K�̔�IO��,�C���� wh��=������\�[ ��-�l������b��c(�}!^FW�\�N?�\��G���9dwxN]��a��Wu�Wu���36Ȍ{�u%C{�32�bl�?��'��7&�d��
�5<[��[���^5�z<r��՞�X�)����D�f��LQ;�����g�x_�Q%CC�q-�� �0:YJ � ��l��o�ɩ^V��0���qiӄ�Shڮ��n��L;��g�[�i�Jz���k��5_qX�U�Yq���"�F�rҗ�%�[�����M��}*�"������SV>�V���O
��l�s>,d�L�5��(�j�+���\~iH����Z��YaiI����W��7�D����<����t� ���q�����)(��&P�e]�E��V���n�,4�y�Xf,�mwڝ%��Y�N?D�)uuu��P�$0�n��7z�/������'�O �;�?c�ѳ"�<~
�d`~�'�x8%���������R_�i<b����~�1/p����,kk�-���U�?C.���O�Ĵ���L�8��]��R�^5D�)�5̳�*(�_�"S�ʔ|q�{��ћ��My�z�,����kv��^|b�]]]lU����vw��nw����OqĨE1��!Dd�B��R��)lL5�0�
��
K-��ߪ ,��@x���>��1��a1�����{W[�d�9����;��y�n*�E|�ِ�+555-5=5%�d�S�RS�1]���x�ϠG�J��G�Rָ�Es�H^1��C݅0LD3W���x�Ъ��0nc��c"w��xC�������j�����Jkh�1Z�A��t�F=�ǧ¸m�v�r���]�d?A� ���tN��ؔx=�Fb�is��!ѽ�,M��[L\'�i@ �O�!e�Pڲ�= �hZ�Ң��)�h>�E�9-��is��D�ۥbH��|'K�j�ⷣ�Y�o��E�r���+�r��;Ǩ{tD�� ����Mg���EE�u/F��4���%Ԩ"��=S�p%���驫/a��n����"���{^dp�7�R��T0�L��2b ^Ѷ��r��UBq��d���t_H�����\��R�2P��l�) U^��VY�jx���4ҵ�N��a�@��� ��F[yZ�k�k1��#��_�z8��R;�AQqC�J�I&6I&6�gt3T��� ��z�?Ix��3�U�8,�&N���V~ռ�@1��W90h��J;��*3Xd=��M�8ƞף����h�G���bu�t4�`��*gE�-�s[�ӹ����;5!{v�O��S�O��_B�؉���!�����v��s�K� |g��wa;�� � *�l|�me?WO8����g��H��E ��S��YB��[ >b�x@>�" �MtI���;��E���@&ǰW /0�����R%��f�az���^lF���Av�_����)-������+�ω�����ݫӲ�wz%-�{� aؐ�|�O'��9��5��w�9v���י��� �u�_��X?>%dt�Z)=&�]Gui�(NJG���B�8����O���ɋ:I�@V�An��qY���� ����5V4�4v��h,��5c3�=��N�5��E �8O(�y�c��_�� o�]�De
��+Y��yHv���Ks�*�ֱ�x��$;�3�N9�Ɏn�c�l>�MvV7d�ꧩ�2o놴<RE�s|�uk�K��3��_!J� �# ��[�!��C2����4 ��y)��]�.�h Z�4��&ShB�}>�)F��>�&�ٴ�Ͼf�6��%��h͟���E��h����
-k|�8FW:�’ *�f麕ܗc����v3� ���/G4�,k��J������S��;fY�PKZ���IVP�PK��mAMETA-INF/MANIFEST.MF��[O�0��w���:6�K�Ä�6nn�N޺�n�.e���ר�B��k����N`F߈,��DHʳ^��P��� � �~��|�]���j�Z�”�j�H��_ �4k�iR��-�Y��C��f���E���V'�oG�xb�ݡ��� !��(��g�Uq��)!��Ε��ݷ��-�ɫ7~��}/:��:�֜����Y�f6���>�l��d��`LN@��QK�`K�ܪ$^��#Q�:ח^�k �QQ( p<_��g�����>{Ox:s� �M��}�Җ�����f�C��"��DGڤw�MME���r� x�O"��(��Iy4��1�K��myk�IG�fG�
��sҏ�w��ȣ2�P��*���� =��~��PK=��a�mPK��mAMETA-INF/CERT.SF}�ͮ�@F�&��˙LQ��,A�AD�]K��H�t#�O?��Lr�Qw�J�����Q
� E�-� g��w�͆B(l��g��c�B�a��p�1ߞ���m��QkigU5(���RWܯ� n�Gr7͆ �(b\��Rp�S��p�J�B?��Z e�Y;f��ܓU�D_8�l��©�E`o�݂�V��Y=7�JM����
� j'��9fi�F���+bTӵ���S�{+��ۺ@���x�N�r���!�d�{C/�!&�e�*6 _y�7^x͏�0�&�b�ㄪN��� ���}���=��L�Wøo™"��R��3P�[��e"���jy[�&�`�?X�4O����R)�M�J��|ok*Yf�k3TW'1��p���G� `�.Q�пr��t�8vP����b�僞�����G��<�C,��=ݴ���}�����^\�_�DT�\�<c@$��3~���� �PKUol��PK��mAMETA-INF/CERT.RSA3hbfa��j�h����δ���A�G&FFCnN6Vm>f&)Vn�"�M�/ ����f&F&& S6^�FV�s� ̡,l�L���| �0�c^JQ~f����H�Y�*����T�n '�khd`hhihjdhb%�k�B���8ٍ�� ̍� ��L�� =ݿd��u�J���3u�gg_��޶Zi��+y;��f��ϋeup3BZ���씑������|�ݕ���X�_�mFE���u���Ե9��~�uM��3��&ԙt}�U�RU�- ���_��߯���v��d���<��-^31320�!3�]�_�>�x�l�IK�u�\�}���?/�q�X7�p.������j�Ek<Pn����@R�����,�8��-���O ޛ��ow�_� ��{�J�@����5�{�v�����*͸p��s��Xl�y묊%_f6>1h|L�d<4} %'�h`il��P�q��w���m�Kc��n?^�����E����M�yR��7�p�;�Y��r���[&)���;)�W�_=T�m���kŽ�s-٘'�t�9���%�%�Ň=���uƋ�<������z믟��;��~��o� nPK蒸�\PK��mA�\��{�res/layout/main.xml��PK��mA]��p��res/layout/shake.xmlPK��mATk�%k�rAndroidManifest.xmlPK
l8@�'�� resources.arscPK
b$8@�vuu
res/drawable-hdpi/droid.pngPK
Ѩ6@kW<~~�res/drawable-hdpi/icon.pngPK
b$8@�vuun%res/drawable-ldpi/droid.pngPK
Ѩ6@����)res/drawable-ldpi/icon.pngPK
b$8@�vuuU/res/drawable-mdpi/droid.pngPK
Ѩ6@ ��3res/drawable-mdpi/icon.pngPK��mAZ���IVP� �;classes.dexPK��mA=��a�mU�META-INF/MANIFEST.MFPK��mAUol��!�META-INF/CERT.SFPK��mA蒸�\4�META-INF/CERT.RSAPK�Ϙ
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "build.properties", and override values to adapt the script to your
# project structure.
# Project target.
target=android-7
/*___Generated_by_IDEA___*/
/** Automatically generated file. DO NOT MODIFY */
package linz.jku;
public final class BuildConfig {
public final static boolean DEBUG = true;
}
/*___Generated_by_IDEA___*/
package linz.jku;
/* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */
public final class Manifest {
}
/*___Generated_by_IDEA___*/
package linz.jku;
/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
public final class R {
}
PK
Y�n4 META-INF/��PK
X�n4�`M�^jMETA-INF/MANIFEST.MF�M��LK-.� K-*��ϳR0�3��r�Cq,HL�HU�%��Ly���RKRSt�*A�M�� u� �4�K�|3���+�KRs�<��4y�x�PK
X�n4org/PK
X�n4
org/farng/PK
Y�n4org/farng/mp3/PK
Y�n4org/farng/mp3/filename/PK
Y�n4org/farng/mp3/id3/PK
Y�n4org/farng/mp3/lyrics3/PK
Y�n4org/farng/mp3/object/PK
X�n4�#4iL,'org/farng/mp3/AbstractMP3FileItem.class�QMKQ=WG�&-��Ch�&Ƃf��$
��h��9>�:c3ϊ~S�VA��m?*�3���z�ý�s�}�����!*�(��4�E�)_�cBڮ]���/ {v;=g B�sF���E:�>�����li9j��'u�/}�J�� �־��
��ա��dYW=�$��1�}®�#V�s)�~0j����8!q�N]9�*�#�&v��Pi��Tԝ�"�;Bٞ ��n���^N�M�0��@�P�w%BaчP��v%��T����δkT��'��'s6x���Ę��$��6g��m;,'ha%��,[e2��5�W\�q��Ң��R�I*��_4�PK
X�n4ŇC�*E'org/farng/mp3/AbstractMP3Fragment.class�R]O�`~ޭ�;ja��+����2f��5��3�z��ۺ�d�~���x����H�Q�sF��Y/�sz��<�����׷��qO��F 1����w��X�Xҡa��eFVt�"ŵ�Ri�Ԭ �v�-/WuZ /W?��=*���Sv�ml���6��D�/�=�~�P �μ��'͊+`�����!�=�l��.ʼ�,�� =��%)T��;��;'Ws��P�w�d�>�}{���&0i �q�2n#!a��&�2��@�Z�3�X���������k��zKK�M{�x/��4�^n]|zOpp�%�Q��v�F�����J_������6�oMIҥ��*�R&��r��&(
��u� �0<·�-BQgز� �3r�e�e� jw��Zk_��B��)]jN���=��z`�ψ| a�a!�U�E���sĢ��ز@�����)$��W��5�(T^ʞa�TΐȚJ��<�HR9�ݜ�����^�Y�b��;x��{�.��b�*k�� �eG��S��Ժ0:0�a���<�·�7�oPK
X�n4aaآ��+org/farng/mp3/AbstractMP3FragmentBody.class�W�c���^ie�`c �j��|��*����D�j�! Y���D�*�p�&MKzi� hi��u�����ڤgڦ��+��7T}ow%�l���y�|�ޛ� �{�<�&�׋q�'�~ ��� ��xƃ�텄�*P��xix/�������>���H�‡��#�yQ��x�q/*���'��Qf|ʃO{��|ă�V�s8��y8�b��� <�do_��%6�e��+^<΢a�����W��&$|݃ox���W��y���<|�i�X����E��]��i�`�3 ƓLyʃ�y�y0��Y����S^t� �
��F����w�����
"�wꩬ����JrL-'��,1e;"���]�h�@d�`����� �J�d ^��A5f�hY��z*���1CK63�M� ������DͰ�I%jF�-5Z��&��rh���ZJI%�h�daҪ������b׵�r]�M�[��flP^[�[�ة�U��=��l�4�N�Y#�Čޝ-�%1���=>��:��ё���.5�hiC�S��9-����p����E�"��Q =C��M�
tF [P��v��3��HLk��C�n������}��e�W�F���a
�vO{ Q��1%��ъ��V�i5��9� ��0N�3�������J*�����l�[K���7|$���f%|��0tk�\�3���[�f�c��\I�K;Þg�)课�~�Z0�dC��%�de��u�9 +�%��qGf��t�[Kŋ�E�tS�K��2=#�9앱 y��γ��2��d��e��_F�y� �)�y?�!�p�r�����1^�𢌟�Na��]w� ��O�3)��s�@L�/9ܗ�+e�k ��m� ����,�,2 U�+��㲌�g_��P1��k����T Wd�q��?�8��XSj&�:�$��p`�¦�T7�a= �j�r�W�MF���� ��7�(ڑ��S�N�]���6�^��ku�&�C�8�#2��{�^S�E��56I���2s�t<�RٱtZ�j�?͵L�9�Z�D/�ҍ@LI&�x�f�h��i:`(��Y�9��J���h ��H��K匄��D���T�Ԡz�ܔ�:�!*�;G�Y�����L���m�|R��G��Ŕ9���b�\VꃒcҌq
6�������67���'%��>('Kn��%���&!U3a���TS c�.|B0�3Ԇ5�Nn�S h�N_rm��Y��.�$h ��������zi� �nF�>( <�p���Un: O�("f��(,�BOLO��ʖ@Q8�eW��tc����K`>�����H �j��]����u�:l���QC��3H�F�.�{�N�\H��k%��kR��u�����zaz�IX�n�Bϯ[iU��os�o�u�c�K?�����nC��\EKV���b�|o�z���J�yI�$��S����&�y�9x�05X��|?�\4w�'1�D!����p��:�X �UU��xU4���O��/���2�ȿb0����4=��4ǧP=T�}�zX� (Z;,��k���k~1�%'�ii�+�w�lO��oN���r�&�g)��m������b� ��~s��b��J�̐���`���yv�
� ~�����%�{��d��~[���c��(��h���Can��"w7�_� 9&�/���m��b���fm氦�l6¤��6zi�o����i�Vk��2�}�)�������>N�����T�"j���PC��� �Z}����$e��23n��K�j��aCL�0�I,8.:����?��W����Pk9���v�jGX_8B#�l�e䡌f�e�V�� �!K�P�w������z�VÞ"��by��ed��V���1
�C�M�h��<���~w��p�����k"�򚤟����?V�_lv�����2�᭽�gN�N�-���X�fm0���r(���G�E�]���}c{}�l����z��M�׷M�Lo��ܨ(򃐾['��I@䇝�3�!c �lP^�X*h�0���$n��b��� 6_Feu�Y� =��p%�-�g�Ό���d��� �1c���f2��<��;x^��$�t�A��1�����+�r�!��5(�6e�_�I騔��O���91:��;'�u��:e���A^O㬬�? �t�ʇ�4�I�.��ݞ��݁�PK
X�n4�*� .�"org/farng/mp3/AbstractMP3Tag.class�U[OA=c��Z�*�*�U�j�z-x�X-T���f�u�ݭ;Sԟ��^|����'����2
��t�\��}gf�n���� �)�&�Us���"�%0��m�����f�zq��� �3qS���`����+�2D҃��1��R��2�N��2�f6�/ 89u7;��F5�4�ܫ2���O�'��ǫ�|�…�p�<$&�_VxS��'LL��E�U^�
m�x�"pU��?�G��������4�B) Ɵ���`�љ��K姼"CB��������
�%�z���G�Z�U�r��js���pw�朕��Ո�E�"w��@�B����r��úi�;� �#8�v�w�o4�'�
Mr/����ƞM�e��0���*p+ ;U��|���� N{�D��SЊ�5u� ���b�f�Q���,��Ytj5[������u��L�fv���s��4q��!�LܱPĔ�i�6G��FON�[�� �0c����% '�G�r(9�6��m�Bi�� �:#)��c1r;qxM��3��f3�O1�_��A'�^8���~&V�Z�ҝ��P���1�~g�������E/�9C�1��i���F�ށ� j9����B_ 64�[�u��i�G��j/�����9���f�߰�a�z��Яk=�Wh�p�#"H�1�:Tט>��hΰ���1,�� ��E��2��b'��29�6�"Y�����m�~�,K����a�M�fJ�g� �Et�mv-�4�������!�*���#��c�kLk�8�qX� �'��DaF�i�g4�՘�xN�y��PK
X�n4� D��q'org/farng/mp3/InvalidTagException.class}RMo�@�͇�m>J %u��ԉ�7�8Pq�����m� ��]kٴ�-.�D%zص]���4��ͼ��k_]�� `}��2������6�6�XhU���q�/M����
�m����z�P�'(vw���E�6��N��'����oR��� Es��d��I�[R�琕s*6<>e'�`+k ����3͔��4�;: n������bk��;��/��,��T,FLR
��� �LB�~�f����>�\(7��*�6�t�n;��ح�C/���H�����+'�9�GTꝦ�����I���m�mҢQ�x@�_�Q�҃ Vs��R+J�"�F�~�<�?�y,s�k��D�cًA~&C�3���^����(�|c_��f��Q� ��^?F)��'��C)о@���Q �V��AoG�9VbT/�� <�_���}�PK
X�n4ro��8�,org/farng/mp3/MP3File.class�9 xT��37�{won��k�& �w�IxA��L� �cI6a1ٍ�j��⣵V�UC-��F��@c����>[���*�V[�Ukm��ҙs���nn��/3��̙3���s���̒�)�4ָ�)��� ,dp*���,b���K��`����*��g0��qSV*P�grk����ZƳ�� c#�52�U�c��vb��+0 7ȸQ���,�9
x�(0��&*��@%�/*P��<fc3>_� �B2nvb������s��i���-�q�K�"��dЕ�a�0��Ƌ1ʃ:t�N]ld��1���=�ږ���vw(�VW����d�T�&�2��epw/g�( �2�L��� �d�U�X�U2^���X��k_��k �Ϋ�c��|�U_�����x#��[ n��f"�N�o+p1o��x Sn��m,������pg�n��w�ap��U�N��[��� ��)��"w+�}����lнN��;���j��&�c����}�]RÀ�%�-an��}�]W����g ����g��� ����6�dL8��A�;��C
L�:��8��>|T��c�:��q���S��9��T���s�e�t-�e����u�I�c6f��r�R�7���� ?e��e|RƟ!8Cm5����"ю��h�cvWw�l��^�9�Z��u$�A�� ��jĀ� ^rP�ާa2��C�A�܆��m�١���'V6�Á��zV9-C��҆�"�����j�v.��F�w��F���x� 7!ضD���;��
wp+�h�A���EC�0B޶@4��� ���i�3�ս% �HQ-��3�#%�]�6��0Z�= �����`��`T�ڣ��{�a��h�ͦV
|p,�C�Y�I�BcIy���ՈMc��r}#;�l�Gi)�������%�������MbTG0�\'A6�bg���i��ItEr#�F[� �W��qf��~�s;2��(�8�(�I��]���bD${*2'�b��
�Y�Nꉇ:g7�bq�\c�.�m �:B�U"���4�bE�3m2�!��൲[cf�(,�E�AoN>OO�nH��d�'�i�s ��4�](�e�:Vi�s:�W���8���6�lq���cRwMS<���0B�.OYd�jJ����ґ�q�Wd��\�O��Pl�YR�m��#e��m�v�[�D#��NΫR�N����
��"�S��)7"cfu���L��F�
m[{b�ߒ6:��7m�.�F�n��� ��\J�� �&�H0�==rr���K[,�MW��y,��ު( � /��9�0aD��@�-ҵ��5�% V�tn�-$�G��6�_E ��*���<ߚ���Ȝ�3��b�
o��*�~�‹ ^b�2�W���w�{^c�:�� �`�xS�?Ÿ���ū�s�O�3���)'.�*��d�Ux���Y���&� �UxHl�I�
��_#������2xa�Xۆ E/�S/J��s:��Pv��9�VO�]����ے'ݘZ�]0�8������:sO���vb��*�ޖ���B(���KF�/����L.�G�Z)����4����f*�>U�T�E_����D�X�v����*�����*�N�߫�|���xT�7T���b�X��*��*��W�?��k�Ѻ*�B�Hŷـ?�_�9��W�w(��lĻ��7e|_��,�;P�#�� �p
��̢Q����]\�� ���9�|[�1���/�jkr���'��S�7U�8���"CU� �U������k{��=q�3袸OeՇ����T $T%I�R%>Cg��H4�
:U�.9TI����"S$��UʖTUʑre)O��TF�|6s*|(K��Sq�*���XI�n����i�s�Tĺ��h�s��4��i���4U*��T��U�E��"s+֮L �B�\�6I��I^*�T˄���*��k�,���s��U�(M��b�O �0ǧ��R�*M��Ui
�z*���01���ns�4YYTcE&�q݊3˶����y�xy/��b���L
G�[�y+Ǵ�T�ZT�?P�F:{��u��>++F�`4�rxeH(�o
~���H=�t⢊�$������w}{kg$FK�8�Q����W�#)���HWr�����8�K���O����%\ф�N�O�!^ ��=�k��������}����Mƻ"U����x��,���h*UV��/T3���B�u��o�sRmʰ�t��ϺH(W��ߠ�u�������4�S>��F]�F�P{�u:�]�/�F�o�#'�|��Śz6�׶#�����"��H%]"�s�M
��pk�_%��C��u��Z������C��M["Q���6���+�Uc{Թ��_X���u�#f`��ð*��ƞ�x��S�?=;V�^Y��[�\��Sq=D:���ɓFI^�3&6���a������C�n��A�� ��B|��"W�KX#�X���`{$��:��첬�N.��&Yִ�O��v�z����?�8|i-y�L���<v�:�R�� u�Xk4ԭ'�ǚ��@�U�Pl�qR��ڶ��i�x1��M��=��/
u����U��l#$��K('d�����������ROu���%�f�{��l1;��ks0J�7�Z�������ڨ ;#"20��O�”�W��@��Q�<"Rwp=ru�Ѿ1���ńj�h�dx
����B-�_�sF`z�L����$��~��/��j`zH �_7�Q�a`zW LO+§�+�����O �}��ŷQf��`?6p�پ�G@�q�d1� ���}�Tv ���<2c�8���X�q�d3V@e�39�s �7y-�v' 
�M�B� B�����{���{�� �ƽR��@�Ȋޡu��4cE9�,�&�b�/�ļ�!�C
!K ��a���{�0��~;��w���I-��>p����`� LYC�Om��id#�6Y�$����I��dB9-���L���W2�*I�j&̢�15]p6��������<��~��ۆ`~K�)-y����� PU0f�r�#�Ά ��a+t������p�B�6�~�#P3j���
B
���>�-ؒ��;|d�v�����3���`g��O������`GȟY�[�C��eps6VU&�T�T%�4v�05!"�y�����F��U���c�fԇk�iۿ�3}r�ij��*��Y�>��-�A8�Q����6�Fb��`�h,_S}j�Zg �: ��;�0wEL7�+�;F�P�OX�Oȋ=S�����SuM�|�I:LJ:,�!��_�h�2����N������)e��UԘ|�0�b�R�F�Y�2�gYH�x0)f��%ɧ���,s�e仌���҈j6�c�`RL�2"��F�b�4"���4"ג�m���m��bÙ.�O���WW����:Z���|ltՊ�*�i��2�f �U�0�s���SG�f?2��a��H@3Μ����Ů��])�b�u��]�X.[5�=�2Hm&{�%�n�5K��d�$� v�/��a ��m�`3Ӂ?af2U�p���
Ն!X+J̺�J�|��f�"{�Ԟ5ie��qGD��A�~�_�d#���%����wj����4�0L��+�Tomdf�nP�4�a8�*C5�[�D46��k6C�ToYH�u�c1�eHkKJ�;��t��8**J�cF�$K���n�[ߙ`�R:g�M�<O����`2*��E1)�J,#G�*Ɠ
a�W�p�1S�1�zSHxN��O�Q�-t��Z�D���l�����8]7����� [!P�9�ڗ����SGM��- -��>�z���]4���V,e���:�z{��]��`��/z�UpQA'[�u���!��h9���W����oD��l{�*C�R�<�=�ku�s�l-7K�},�fM1�q��� ���<��� �����)������aBrZ�#=�0�m��yA^qQ����4~����y��#��ϷP� �\r���J�������/�A��2��|�V�f-p� ����FR6��Rߟ/8��#�-{�Zvzp��5�)J���Wh�0�]�\<�W���aj�p�*W���E� ��o�[�-�m*��)�8K
*�Ds�P5���]iwg1qZ2{4#{r��Bz͚n)V�)6�R̓)6�RL�+�����R�by��vU��x `9V�<��A�JǒO>N&'va�qr�O���D��:�i>cD�q��MN�sL�񶹋�J�Q��k��^�ݐ# �pu�5�>[�6*�4��5�A��V��׾��1_�w���a��
@.��]?�y#�o���C����B�7u}ڈ�j�w�oLѧQ�[)�S�>��,�}[�W:��K�n!��)�J�[�>������n��;}�и����y{�`�7e0��TӅ�ڸ�ب#sG�ћLv�v��v��x�朗GO�ύ9ؐ�$��|yj�{�ZBO��J1M�j�ܮ>��/nM�a*��
��g�Q>p�Va�1ǕN�YK��v_��t��A��.� ���jXh��h� l�6�ѽ0��cW�$hDp����w� ��y~9kI?8�����Fh�� |!��j���1�|���9���s��^}F�/�+4y��V���j��x�n-��_t��~��� ����eB��)�9m]P��Qgc%]=�jh�U�Z����4�[
����:�ױ�F��G��;.��zmw� ���^������r]����C��e®A؟��}�&�)|^<��C����=4��lÁ��������V{�.wUڃ%���y]����D�r>�,_�`r�Z��PkP�nd ������� A�?��1���#��g���*槌�DT����'��D����W棥�{�[hc�-�`�U9hS�u (�u�镹�-:�i�)r
!� �^v�N:)������8�H��)�� ;�2�-퇨�j�p?�~E� <��U��C��k����NBZ���a�d��7����ܻ�^l���Lf�����T\�Eymm�D4��E���t�~���u~Z���PK
Y�n4 8*nJ�org/farng/mp3/TagConstant.class�||�����=[�e�L=��c\��ɒl �!�6���tҝu�W,��^�B!!��[h�� �B!@!��@�{�ٛ�������v����)o�����������v�m�D#�u��D��cG7���q|?��~b4z�SgG�18�/���T��Ɨ��r_���Y|9�/���9|9�/���|9�/���|��/���|��/���R��/���|��/?��|�1_�D�'�^Ž�)�W#z ��"�3D�C��^��/��_"z#�7!z3�� z+��!z;�w z'�w!z7�� z/��!z?� � ��B�!DF�DE�1D���>�蓈>��ӈ��g}��}��-�/"��/#�;D_A������} �?"�:�B� D��蛈�ѷ�+�o#�7D�A�]D�C���?��"�!��B�#D?F�D?E�3D�������"��_"�?D�B�k��6"���D��ـ��Ā �D`0�L6�ӀM�M�̀́-�-�8�M<�v� �u���e�(f0=��� �� �v�s�y�|`W`7`w``O`/`�7��/��?�,�&�X,�-��R�hځ�8���`�X�VG ���$0 ) ��� 0 d�0 �PJ�`X �뀣���c�c���������S�S�ӀӁ3�3������������\\\|����p�C�r�G����+��W?���~\���p�K�F�&�f��V�6�v��N�.�n��^�>�~��A�W�C���#Q<���ǀ_��u��`O(�4�I%��=�dҽ��LJ�%�6>�dR�g�L��IQ�W2i� J&��I�_T2)�KJ&�~Yɤ޿S2��+J&����I�_U2���L���(��d��וLf�'%����d2�?+�,�M%�)�E�dSo)���J&+{[�dnS�V�;J�xW���)y[��J�x_�Ӂ(y{�%���d���LF�/%�5�d2돕L����?U2Y�gJ&�����|�dr�Q2y��*���J&?��a�O��9�R2�����'�:%��^� `o��aG��lC���6��lK��Î*��<��¶���QrlW�Ͱ=%/�S�b����D%�����`OV�Rؾ�[a %�����v�*��T%w��H���X�]��)��&J�����L��ao����P�A��T�J�q% {+%{k%
{%{[%{;%��=]�G��^� �3�� {���`��~�;*9 {'%����A�;+9{��ӰwQ�j�s�<{��3��)y�|%ga���ݔ<{w% {%�a��코\��@�%�{+y �}�<
{_%������`��u��|�J>v����ݤ��p�T±J��휲P���r�h�A1�K�+�Ũ(P�߮�j���T��?g+�2%\��{���v�����K�p��V�g:.h{�.R�yJ�Z �+�F%<����?Y (�*%ܪ�G���'*�|%\�����t}6y'rJ����!�C~�� yr&�C�u�� GA���yrd�d�d�d�d�d�d�d�d�d�d�d�d�d�d}dtdkdbdYdPdGd>d5d,d#ddd�������ۤҤɤ���������>��O�}"�`� �ا�> ��π}&�`� �;�ρ}.��`����¾��a_ �ؗ����`����
�?�}%���
�Oa_ �������`�����ؿ�}#�`� �ط¾ ���}'�`� ���¾���� �_�~�ð��(��`��㰟��$�`? �7����,��`?�ؿ��"�`� �w�_��{د����`����� ��M+��o��+�a� �;�߅���~�?`�?��/����'�?������`������?�_��N�z8���1��p,8Q�R86� ǃ�3�D8��L���p����T8���48����fp6���-���lgk8����vp���� 83��gG8;��gg8���g��p���gW8����p����p����}��g8 p�i����"8��,���8K��i���N'��t���g��pV�9�J8�9Ρp�s8�Up����� �N?�$�8�pRp�pV����3 ' 'gΑp�p
p�pJp������up��s4�c� �88��9ΉpN�s2�S��
�48��9Ιp΂s6���9ιp΃�]8���� �\�"8߇s1�K�\
�p.��C8����+��Εp~�*8?�s5�k�\ �gp���s8������΍pn�s3�[��
�68�ùΝp�s7�{�� �>8��y΃p~�!8�yΣp��k8��yΓp���4���yγp���<���΋p^��2���y���
�p^��G8����7��Λp��-8��6���yλpރ�w8������·p��#8��Χp>��o8�������Ηp��+8_í�[w��\�7��i׆��u�zpcp'��w��p}���
w#�Ýw���� ��p���%�8ܭ�n w�����t��Ýw&���w'���� w6�]�΁;�<����
w7�����p�����p���/������B��p��6�]w1�%p[�w)�V�mp��v��{ �.��p{�.���
��] �`���=�ap��
�pp{���퇛�;wn
n�j�Cp3p��f�����=nnnn ���p�����Qp��{ �c��x�'�=�IpO�{
�S��t�g�=�Ypφ����=�yp� �|�߃{� �^��p/�{ �K���ep�r�?�{�ý�O�^��p��{ �k�� �up�z���{�_½�Mpo�{ �[���v�w���]p�{�{���~��}��>�a���}�cp �q�O�}�Sp������}�sp������}�Kp_��;����=�W���kp��u����?�}�_���p߆�7���}�{p��}���������~�c�����gp� �s����_�_�����~�kxu���m/πg³�E�0ɳ�9�\x�� �&›o2<��7ކ��������ަ�6��9�-�m /o+x[��޶�7���f�� ox;�� �,x;Û oxs�ͅ7�|x��� ������'���-��7�}�� o?x��k��^#�&x���[ o �x�[
�^�vx�:�� ^7�x��-���A�V�;�!��w��ᭂw��^x}���%� ��������� �axYx9x#�����W�W�W���(����ୃw����Xx��;� �N�w����Tx��;��΄w���}�9�΅w���;���]�Bx��>���]�Rx?�w�»ޏ�]����xW��)���]�Zx?�w��û�/����n�w�����Vx������w�����^x�������+x�{�#����_�{��������3�������^�������+�~�Ux���?�{ޟ����ބ�xo��+���� �;�ޅ����{�?�}��>��/x���'�>�����������?x�d}��bu��#�b� �L�,Ģ|��ss��!6���M��&Gc~}����g����Xc.[(&���L)����wcy�@ޕ�x �gyR �c�<�e#�簼A ��r}}݄���殆���U�-���u~��Ě��L";8���Og�j-jim� =K��D[�<Y���ay3I]�=�`Wt�����َ��]�)ᒆ����&�i�:.km�l��нt��sW-k�^�޸����������vnM6v�uv5wwKzSM7�-lnjjnZ�Ҿ�cբֆŕ筯ōua�A=�5ztIsCSsW}݆UE45-m��= ��u�4��ո����aw�J���e= �W5��4w�]��/��r����*]ԕU�++C���t���keg�Beȋ�:�u��/^��Dl�YY��y�:[�m��?[�kfk#�/���cm�t}���e�4�͕ٝ��ٝz�؞��F�Yw}����C"_����u�Tj�x�:�xv�mm������i=M�o\=�����ͺ��R����`U�f���4��o��_�4��\�L����4j~H��z���ּ>娬�\�����=KH��Z٭�׹�}KS}�$��[����ֆ��TB�]�<���*O��#������T��\F�_�%^�� M��TQ]-�iBb�j�h��>��W���so�x��g;:Cm,�h#u��qs[璆�R����yk殚�(�N�����L� <u����^�(��# t�yߨ^.�?^A����ɵ��4�����(�83�O��pQ:��~KMQ�S���a$���\E����oR����u��|hxS�>��[)1������t1�(&i����bs�/�O��٫.�~v�t��̏�2�b:�mKS�Є����� G�}�R>�36�h5_]Z1͋�Y��'���Ԗ��S��:��$��g����|c*��&3�O�K����O���k�� ���������l��o}]d��售4��i�w_F�^tMt�̟Pr�Br$A+��Gc‹M�m�E�F7�ҁt��ԋn,ّD1U�Ncv�7�ȋ.����e%_��!|9�/���p����|I�/}|��K�/|�K�/i����_2|�K�/9����H���R�K�/��
�����dw%�r���l�?�[H�������1E9z���X�/WbUc���&�Q>W,0��@f�P�O���l_~l��QP�)�EoN��w*l�i$���'͢��w�'�A����#K�Lz]�����J$'��|"��I�J���n�wu��HuZ:)�Oiɮ�eH!�#��H&Ϥ \�ھ�3�tv������A�m�-��K�t_��)��O�J��p�Z[9�u6/�gr}� rC��x1ћ�t�4�����6�-.��$�ܙ����z� �j&���Hg� ���mҕd^��S�K��x�u�P�)�*ݭ�u�e�R�\��?.=�l�\.�˩���鹔�f=To�xC��4<�-�&��ݝʍҼ�zv�J ;��3&�B��ԡ-�-�3�R#�愠��H� G��H��+�t�דlXQ@�H�P�SE҂B�\$�7�ȝ��IzH�8M(�;^�x?��6s(
��d���h~&��fuZ�� z�R�z�r� ��iR���l��A�����9�V�rI2;XL1�֣;Ӗ�O'�K;��킂r:K�H�4jn�H2Ϫ�̗��X��H�f�� ̤���ofMy+/~�=V��h>]��H��i��d&�($�cɄ\�����q\��S_�P�?�_5 ��4�;�ɕ ;�M{0�+�Ȧ(�n]ִD�vG�l�@rvC�D6]V�N���j��/���Um�f��ue
��ղrL̓���D���kY���b*�M�4 S�%�V��I+&�JGc���x!4�P�Vg���1�}���� ���3�k��A�dR���'��qv�y��qAr��(�0x�R�O �k����|�o(�- �&i�BZz�tV���E�w7yIQ��[�� G������8u�-��
�R��OsɾT&�x���ac�KG6X�˧�g��e�� ����=;�*;[=V��<�pݥ^�Y��*UjV� ޖ����Պ.�D{�e��M�(;>�P��u��Y٬�ie`���M]�MYJJs�����2v�ӗe c��qR�l��V4�Ǘu��5 Pwٚd<�M�&{G������ W��T� �괚[���B��� ���ySYU�漬s+;U7�;& �fEV���YE� Uo�U�4�
�E��P0�^l�شhl/�il�hls/�ElK/�mEγ��ȋmۆr��G�M�U���Fs7�jp��5x�H{�f�zp�A�0��`�]K0*�Ҋ�ɈeP>��o]�3�j�Tr��0_�<e�Fk 'F[cS(i����R �c��M�����J��.��3�|z �}�� �AiC���1o�?�!��F��� �#�䭋�սR��{%��R�P�`P���)h ��2 �������ڃ['�h�-o��7z���c�o�pO� =�d)J7�;����-}��-��<�-m��om�}km���f��ɭ��a�
U��/�w��j�o�[�/=�)���%�B
@���$Ǫ0;��Kf I���9��[4 ��DϜ���p��� �#� �\{��ut��2�]�K��4�u�X��
��d1�OHoT 42�Y�j���8U�Dp����4��O�:b���n�f�[���y�cPD!gfPd`�Y��$%}�a�|�d�Ʈ�`E��+:���+�u�[�f�}wz�s�� '�j��l ��כ+/ϊ`AV=l����l�H���#9j�Z�O� ��ɤ`�T�3�� \�l1�^�\����V��涕��nYL�?�;M���UPٖj�%�JB^g�o��3��\�&�]Q���rӁr5}[~�+�:M�ͱ*��z��U�d�b]֓�~N�/7Qz��]&9��V�=҉l�/O;�RG��H�r�~it]:-����`��l�H�B*9o+�Vm�(�T5�_�#��r�*Irm�݆t����sHy�ݤ��r�V_�=�B�]��d�F��1���GZ���&�d��a�@IS2��;����Se�(ćK�b�3�d���mi'����ߟ.��������6Z���� �ۊ4s��k��yH0ɺ���2t���taOOua����7O-m�y�s���a�L �&Tr�V�r^tMl��:sa�ĥ^c&Q��v���뢍|��-�ٔȲZ�M�B_��nQ)K���R�'5�$=2kI�v\��u�b[���PA{r4��U��L�_bv�-M'׏tM_��Ĉ<�L�C���I����:�V�<F>�M� ���^���J�D�C*^~��I*2T`�B�/��P��R>7K5m�MKo���꼹<�� �<��c\DKNJf�<�I�˳�5��,��ľ���З&M2����X.XЍxc&̓\�+�$���N��K��C6R���r%n�Sv��I������T�渜��!�<���T6�'�[L���D~h4�mLfcV��:͙d_���R���2Ԑ��ׯ� �L SBI���̪�Q�����́&y1)� O^n$>�MhL�I��I�5�7�.���L��ۃp�@��9˚���ʫ�
�B�����R�?��]���$�Xʲ�Ei�H�I���ܬEi���^�¼P�`z����4X�ٕ�9�&��J��!Ƨ�H3����֬<A|�P�v�Gef��������(sa�7�˽��<ʮ�J�Y���NhT6[�`^*�Ӱ&�-ҋy��r��0��`>IZIӦ(�����25�{lx$�+[&�� e�����A�����K��[4'
c�VZ�dV� }�ٲg֒�0m
I�I��"��3ˁuPޗ���ೄ 0qU�V�{B��,��c�@��r���f�3GZE��/��M�'��>�u�h̔x�zH�r<��&n�'<�����D&�����(uB�XWj���Y��^�ORR;&S�k�͚�&��L*Ή���7�`;awR6tG����F$�[~�a@���R�z�R�ui�刴ej)E��&�fϤ�ͤ�'�=�� Jo� <�a���PH�D��gH:S����|:�����J�j0��l4 ��n���^&2��ʗ 6��L�T���h� �G��h�/N���t��D�W7�`٤���v�;����g�%v���.����e�ߑ]���u�-��!�� ���qӔ�%�x��I9��f>��O��t��#�3#�TNb�ϡ��TM[~4x�hb�aA�^(��V�Ӧ� J<���:��{��b�4S�B_�t��Ni`OJ�pm�9�5j�X�� k���`<*�G�)��c� dž�D|��6�K�{��4^�zY�M6؄D�� ����3��C��}���y�3gJ}���a��|�ASY���R��đҘ
G�X�TP�&jU�eor5�I��u8�9 i@N%X���t�d ��[��&���˞��FKV[�(�*�r�GhY�H��ci�? ��.L�2�^}a:��4����B��1[p�;=THỈ@�&�X�~!'�ўto2X�ޜl%W(+\/ϗ�0�X-�t9��Vo�:3y!y�!>����d���/�B֬���W��tK����!O_~��(=Q��>�����D4�-)��U*f�9��[e4}��)��eX�LA��/Q��6�9j�K�r�$�;+���9!P�j��5��� Bq��#�����S)�J*�+�'%��I���`�� u)-�t�@yZ�RC�B�4��m��SÝ�ڹ�P|u"?� Z��Fr}�Ĩ�#����#�ѱ`ܩ�l6�� %�fi":�=�T�;�X��[ ]�;TU! �Ap��U�K��})�!S�x,x�X2��o��G�3��j ���r�x �en����l��� A���߅vh�'s����t?�Wa�x�9�Ɉi�P�z#�u3��EGڈ���ԩ)�{� � *��b���zjV�ƾsRc��Jר{BsE2 U�����jJ �8� ���<�`�2&]{?k+�����$���%-S2>���gʢ��I���4�rv�D����~v(��J�џ^Å�oI'ڟKs!�eĎarS�������ͦR"#)��6k*�(\����i��s�.2��K�HQ>R���?Vb4V
X�.�im冤Y%�|"3��0�㟼�{ѐ��-7��AX�C��%Y�� �z QGr��Ϙ3�y�d��ZR�f�i�i��|��J�06�q_ �c��9��?9��=D��l�=B�c,� �/I�D��r�+����r4���n���d�A�M{Q"� ����hg2_1��L�\�H��\zu�P�ۋ�ٲ� �iV�0��Z6��ـt%��u@�)�IHH#�<����c�#�{�i��L���?wV�ZPc��C;�r�8��h��[���JK��x0A��`qB�cr�9�4���\�K�ψ��@�C65�d�Y��������`r7��[d0�A{q:C1��� ��F���X�����JB�s�ؒ�t�3G,��89�$�F���Z�:n�MOܒ�`�J�˚3���[��<{���\m�]���<���%�4xq�������8��'&)z��8�ܸ��e��(���Q�29׌..Q~$����jZi5�#��4�m4ݗz�VV�H�c��$���Y��+�R!@���R:��GXkI�R�Q ��2r��J,����:+�0��-hz��� eJI�$����<�������9i9��|:�&S/��ɯ���%����\���*z���tcIiD�`�[M��-2_$��B-�r^���B�B��٘��"���R���P�kfKC�U��H����2�A�r�y͖LnH>���nW����-����f+��)k��c��Ҽ�ut^&G�AxC�f��n$r�΢��#iN�#iv[�r�Q]��L��sG�r�{J?��A+�RL��yu�'�� �3��#YI�TR����dnV���fU�V�3�KI1g-MdFdJ�z-M��.�> ����'2 2�tA��o ̥��:"w�ѥ�lVnM �ei><���R�i��2� %�&J�-�R�$�6�&F�N��K �����\���S"�N\�ʥ ��J�>������ΦZE5IC�&,%�+-�/�wIgyx����ʛ%��.M�Si�uCü^��-e��C9^�9
����r�j.� ���
�؁��\>)eH�bKs�|�Lp.f-�C�Ki�K��-y9E�|)�N �e��&eA|�h �"9���\O����O;�kF�����YrX��×�!S��3rm[�k��(iM���ijk��&P� ��&��d����iޭ�&��8��b��v�ށ�m�)��8������ l�ZZK{�\�P!� ޚ,���E��D�� O��Z�M�j-I��=�����^.�A���e͔x��ZJ���ى��%U����R.>ci�&V&�=��:��LY���*}wd���iK�%�U�2���D)��p��o�ў%<��O�yj���\%-��� h��v�-Av#χ��qd��XB�MDf��H�C�I��_["�Q� e�Ue%��&�N��ܥ�|�PӘD��m��y�{���!���ƿ)0� �X�Jb�''5s��<,���}r�����o�T4���O\��.O���,�̕
!8<�/�)��<��%��z02���&
���P��rF2�� F 7m��Φ�ì������o��j�Q(�P�A.ӟ(k�0�-58�9����R�A�2�s���@����
Nlc���f�F��E 6��2}�ϒZ��H��,ڞ s+f$�g6l�勩�ݿ,�ԣ=Q�.'��=��b��܂8��IY�7������ޤ�URbA��,���d���ԧ�[s�� C#c&�;�6G�JڈZpR�ǒ��mO��K��� {#�ўN��MkOS�:��ln�6�f9{��ӥ��f�yY^�����$g��vʝ���,��W�,� ?�S9�����2Ӕ'��23��.�+�r;���$�g5���[����5�(;��I�������,oqApx4)}d�W���P.�s�������Y�d��K�ؐ��㟎�>�+hRFr�b\�� �W�5���װ���V���ӽ��1�h�#� аD9N #9Vk����l��'w
ɢ< $�y��ެ��
�{���0��_?kΞs��)+�:tPQ?p�2�31R
��;U��]|�݉��Ȳ3����y�:������t��Fd���a9I�d�L��ɛ�-��T�z7�:m�� wn�Y�F�#�L�Nv�##�oUw����L�Y��;S��Fg��#9�d��W���3�ʎ$˵YÜNR�e�ү����|b(�.��Ln%+ [�8oY�ۥ�:)��a�3�聥$�H�)yX�t%V'
�T���y��]�o���U�t�`�F;��.^޾���ُƺ�bnV�T�|z-񘄬�#�s:CW�7]�`�"o�v�
����6���IX+����B��ʄL}"2�m����? �D~7��������nJ��Ҋ*�;d,��x)$Q��(�Ժ OQ��,v����N�{ˣ�?M�VY���u��'RVw23$�P.�.}bwr�����-�X-���?� �U��N����nڀJ�.��@�YJM��i����\�v2x�S�fnV�軺W��M�EC4��ugrk�i�;�o��'�5�G�{�ʏ�4�r҆u� �t�ʠһ�7�۔&+d喎ְB�䏇ù���7�T���%��T�9������h7��!���A�˱� ���;X|�s�>d�>qP�B �y�CO����y��%G����<o ����Ԕ<ﻺ�\�;�)�5�՝H��D���G�BI����%����Q���h�����'��˜�Yw��� ��Г�Y�<�w{�7嶢����(QQf�E��=IJ�Kʪ�ay�-?ͤ�|�����dQ����lg�<�,r�l0�+)���� f�(i��A�vppS��e&�T2�#��!�Zn(���j��"��G
�ҋ���)�N�4��/���O�Ϡ�\���sφe6����C�qDq�O��%�δ4�H� �Bz�P�P ��Z��E�/��"�F9��="'�0mV����3��H:d�E�I,�f�� �]���ȥ)�Id���y����\�����?X�GBA�/�d[�҃)~Y�4ĩҲ�|B?���2��.�}y�(��U�Ϸ�du7����|nٺ^9�k��.��5r{�<��֤�W���d1�~�]Á�s�����ʧ���幠��^�j�����bo�r��� ��� QAfʣ��tͲ�����F3���LN�ԍʝ��\&7@h-�a�� VdL�W����ieb$�;��J�v�7&OV��%�k�è�+i͇Bo_'#����\1�c^��NfR�ֱ�L8������$}��:^��D��['??:�$�bGj�-8-����c�=g���Y4k�n�RX�̋G��b�M[i�yB��7w?���d��>���\v������\6��u�f�u��W%��p��rg�7j�M� 1lM&2�b<�o��O�f$wܙ���,q
�I������o]��D�3�ϟg�o���?��� �'�����?$
�8���iS���#~������k�J�W�/��^�*�9ȧ6 �Dj �#�"����#���Mm����G�'��&�u�k�dJ��&�"; <N�3���4�������J�� �4%�b�j�T���?L<���_��B�T��m����@/�!�G�Tݸ3�/�cF��l.>L{7´DS���^��_����ʇ�y�I'�A;�t�V=_T��Q�*��d%t�S��T%����(�Rp�\��5ܞTrX����<�q�&��}�FX�\�K?�vn�����c4R��E�Q-� ،�lbd�x#�H�=���c��(MN9��Q�W�c���K9V{P�/�]P�$�i��{���S���m�����L9H^���s'*]��[~�B�f��I7�����H�Lr��B�>�\bKxA�>�t���E
�ݥ��\n��gk��m�M�_Q�GӔ��?��s��Me+�o�hނ?Z�kl���/!�kP}�00^���W4����4�L#���a��(.�� �{R�<%�ܗ��@�����6j�eg ��R|��K>-��=��gg�̛M)��tB��Q����d+�|�L;�W�</����qf��ɡ�"��Gu��% ����&E�}(9��36y�̪ہ(*��r�� ҉N Uo)���M�by����3��7�L���>E�e��3��V7f0sy�V� ��/^^7-jDͺ����P4JU�&�Ta��W�c�'Tቄ'U�Ʉ�*,O���݈�i����>�|ߤ�ަ5x��v7��[޲�kƹU ޺��mjʷ����j�ezM��k����g�<�CM�k��TSVMw�y~v���<?�f��ԟWS~M�]��n�w���Gޓ�^5z��
�Mx����[��~5�߿�~CM���l�yS��5��_T���5�]R��-U��K�p+ᶚ���<�Q�; X��w����f<�j�}yt������������!����a��������=Q����}�{�,�����=U�������P�)߇��l�+�G��#��|�^(ߋ�{I�7�ѯ���L�%4����WWg�pG]�M��CtL7�^g�t?���κ�-u�oʻ�G����+�sn�s��i)�� Z���IZ��%_KBKS�����ji#-m��iZ�DK�ji3-m��-�����Z�JK[ki-m���4]K�ki��f�\��;�;�^��
g�;+q�����s�8ϟ��]�ݔ�������R�o%���������/Tb�ߤ�f��K����ĥ~���v%v�J<��Rb�ߣ�e�r%��R�J�`%�����Õ��?B� �W�}~�������j%�%�Y%��%��X��J,�k�8�U☿N�G�G+��X%�����x��O�OU�i��J<�?S�g�g+�;�9J<�?O����W��� �x����_��K�K���2%�п\�?�P��+���*%�ԿZ���ז���~vW�u�um;�U���K�%����~���w���[o������5_���:����dϿQi��ߤT��o�oQ��mJ�]��ߡ����T���w�w+������zϿϿ_�(����_)�!�a%>����U����V���`=� e���2�JY��?��F��( ��g����AY���VY�翨,��_R��/+ ����(���X<�Ue,���P����G%����������P���V���o*k���o)�ʚ<�m�oJ|G��翫 ���������(���J����?R���+���O�ay��ʄ<�3eX��o�s%�����P6��_��S�W��eQ���"-�+{"yeE$GD����l�dK� �Qe4$Cɶ�6�en$���� &�'h0Q�ɓ��y�nt^��&V]�bt�����&�z_��c �U,�j Q?E��c�Ul0V1�X��bËU /V1�X��bËU /V1<�І�~�������X�i�~U�)Q������)Y�e�b���Y��D��J�vI�o!�T��L��~+ ���h����N��~{����XŚck��3D�L�k{�U�9V��XŞc{�U왚�Aԫ��7�;��Y�ז�Xz�b鱊��*���w�bޱ�y�*���7�zgQ?[���c[�U <V1pzpQ?G���~��E�� m��S��D��h�UY��� ��~ ��Ǫ�?Ve��*�U�L���T�?Ve��*�}���*�?������� �&�-���`_Q���� ��F �D}��D�b ���2���M��ί��J~�B��#J��ߤ�9�/����w�oW���J\�ߣ�}�{��������ߨ�f�Q%.��Tb�����O)��Z��3J<�V����J\濠��o���Q���/)�0�e%���Ą����?)1鿡�A��JL�o*q�G���_����V���J,�Qb�_���J�?T�Q�GJ<��X���(��K%����S�O�x�����R�Y����5%�뿮���S���L�|!o%�LVɗ��*�d�J�!��Dƨ��!+�'d�J�)����!S,�߮�S*�>�JՅ;EѠ��Y��'(�)�E;��w�����P�_���ԌJ�vx����J�c���t3��Xi�Q�Tԗ�V�8�i�b�ԷK�3�(���#��!n��V���%wh�;Lr�B��� q}�K��ɥB\ZrC!.#�l��I����\1ĕ$7��Jn]�;JrDŽ�c%w|�;Ar'���%wj�;Mrg��3%wv���� q�I���=�]�.���!��� �]&��C܏$��w��
q?��5!�Z�]�~.�_��$wc��Ir���[%w{��Crw���%wo��Or��%�P�{Xr����$�x�{BrO���%�L�{Vrχ�$�b�{Ir� q�H�����1Ľ.�7Bܟ%������q�ܻ!�=ɽ��!���%�Q��Xr����$�y���q_J��5s�Wsl 9#ę���8H� q��b!n��&��ɒ!n�䦆��$7-�m"��B���2��%�u��Frۅ�钛�fJn����vq�%7'�͕�����vq{Hn��@r�}%��k�\c�k�ܢ�Xr-!�ɵ��6�u��N�u��n�- q�%wP�[)�CBܡ�;<ĭ�\"��J�?�%%7�R�[�$7Ⲓ qGJ�⊒[�F%7��I��w�� q�K��w��N q�J��w���
qgK�w���Η�!�B�}?�],�KC�$��w��q?��OB�U��:�]#�����$w}���~�n���!����n�ܝ!�.������!�ɕ�U67E�?���g�Lp�g� ���V�v%. nZ H�Y]$}mE�CEsu�C�E���ڢ�u�c�E��'k���E��=��^�-zQ�\[�.z���5]�zm����ڢ�t�۵�{��3��%�}��K]�a�v��E{��=�Rޫ�.�-zg�U~o�U~�U�`�U�p�U�h��d�����83��.z���qE��qe��r��r���������������q%R7�D6wQ�f���{|�o���d��=`��]7��^7��F�q�7b��Hm7"θ3��Sj�&��(�E�2��]f Q[t�.Z[[�ݗ�U�&J��K)3���LV�1���]���qW9����F�*G6�������㮲<g�o�_�'�?��?���g���g~��g~��3?c��a��i��y��e=3?MD��< �Ȯ�&"�k�����^"�@��Ed ���4�_D4X("�4�H��Dd�KD�E�D���ViӠ]D:4��5��n zDd��Ed���J �C48TD��pY��"�РWD�4���"2�AJD���! 2"2�AVDr��ȑ�E��AQDJ��Q ֊Ș�D�( ��c48VD���x9A�E�$ N�S48UDN��t9C�3E�, ���hp�����y"�] ���ip��\��E"�} .�K4�TD~��e"�C .�ip���X�+E�'\%"?��j�F�kE�g\'"?��z�7��/5�QDn��f�E�[E�6 n�;4�SD���n�G�{E�> ��4xPD~��C"���ȣ<&"���qyB�'E�) ���h���<��s"�/��o5xQD^��e�����5xUD���k"�G ^�?i����Y�7E�/�%"��m��Ȼ�'"��}���?5�zF�%"i�|���"����5��W�/D�K �'"_i�0�0ꅱ�a�°4�
��p4p��i� &
c����k �1E� �1U�������M4�T�i��0��`Ka�5�J[k�M��0��vL����L vƎ�$�Y�,���"�9��F�|a�`d�& ��=������0t02��Fƾ�����_: �����$ ��E����X" �������* ���* 1:�ѩ����Ҡ[=,�r V� V
�` ơ&��5X%�#4H�W�>}�M�_:2�Б�HUkHZ�5FF�aad5� cD�#��נ ��%a��`Tk5�: ���#�c58N�kp�0N��$a���)�8U�ӄq�g�L Ϊ
�����a�8G:L� C�)�|a�0e\ �����Ôq�0t�2.�S�e��aʸ\:LWC�)�Ja�0e\% �����Ôq�0t�2����υq��� �R7jp�0n��aܪ�m¸]�;�q�w �n �ƽ�'��5x@j�+a<����xD�G�M�1a�e<. ��'��c��0t�2���Y�s��1�xA:f/
C�,�ea�e�" ��W��c��0*&�0t�2���Yƛ��1�xK:fo C�,�a�e�' �����c��0t�2>ƿ4�Hk��0>��3a�[�υ� �+�/4�R���0t�2���Yf�0u�2#��1�4��c���Y�-L�LW�:f�1a�eN��Y�da�e
a�en(L�̍��=�I��1��T�:f�� S�,sKa�en%L��m���� s�� s�3���;
s' f sg f s �s��9_�]���� s ��^,���#�}5دz�� S�,s�0u�2���c��H�:f�K��c�y�0u�2[�� �l��@����(�K�ze�T�β�a/�v��A�Ի)�`a�ݔy�0�n�<�*�6W S03!L��>a�k����Li���Y�0u�2���c����Y���1�,S�,�$L��Qa�e� S�,�,�<Z�zke+L�#�� So�����V����[+�Taꭕy�0���<S�zke�-L��s��c�y�0u(0���Y���1˼H�:f� S�,�Ra�e^&L��˅�c�y�0u�2���Y�U��1˼Z�:f��
S�,�:aꭕy�0+zp�0��ʼQ�zke�\�4��-��̼M�:��wS0�.a�f�#L�����0u3%L�̇����0����|\�'��O �i ~#�g4xV��i�0_���|Q��������|E�:���
S0�5a�f�.L��7����0u3��`�����|G�:��� S0�}a�f~ L���r1�_�ԛ.�ca�M��0����0����0����B�:�6�'L�̯���U/,����t�La�fE��ek����VL� š��$aM����`��6�`��6�`caM�`am��f��\�-���qam�����F�m��7]�ta�M�5���̚),?���IX�~����w`�.��;0k���̚/,��v�ށY{K������w`����;0k_a�����t4�
KG3�IX:�Y��U�a�hf ,ͬVa�hf� KG3����:PXzfu K���e��;0k����Z),���ށY� K���U���JK0�OX:�YIa�f
K0+-,��!a�f K0+',��#���U�`VIX:�Y�����`�Q�қ.�a�M�u�����:AXz�e�$,��N�6t�4a�M�u�����:KXgk�a�����:O��
�| �'� 4�PXi�}a]��%U�=֥��̺LX���\X:�YWK0�Ja�f]%,������u��t���`����̺AX:�Y7
K0�檓9�a�e�&,��;��bַD;���&U�n����[U�|�(�uwS�Vպ'��oU�rl��ۿ�ج���U�HlQ�A��m�Jʁv�ooy�J�[V��-�/S㕖�b�� q��~��w��C!N~�k=��w��#!N~�k=��w��c!N~�k�:���p��C���z"���p�'C���z*���p��C����M����Zτ8���l����Zυ8���|����Z��%�����VU��ue ����װ��l��mo]i{������b�`���^�b��~��y%���h̫!.И?��@c^ q���1��z� 4�O!.И7B\�1q�Ƽ���K� 4�h�_C\�1o��@c���y'��n��_n[�8����j�z_r��J�|^��kɶ-ٮJK�ïL�h�GU�Ғ�C\�%���@K> q��|�-�w� ���hI�g�rze��W�r�7F9�2��V1j�_��`�_��`�� q�(�
q�(�qr�Ѻ'G-�<��G9�2ʙz����P��PK
X�n4�&ac�c org/farng/mp3/TagException.class}RMO�@�͇���@>(�4����D���  H�r(��qC6���Z�M�oq��"�w~T�]����J���{;����?��` o �xk�icÁ�F ������4�^–�6>X�!A���p,�`���~��5�#��R�ڿf]���R�� �(�{s���p#�z�+v�6��@�I�7Q�D�!��c�������T~�g�e,a�@�@�@�`;������� z!�T���^��$+O?�h22�mS΅rc�nb�Mv�w��F��Nڙ�Xw�R����_9ACȑ?�R�4��3:��Q�l�T-��:��Y)��%Xʘ�c,)��j��]l����c��C�X�o&�^r ]M�
rz�&�!��y|>��)_E^/��ڝ�D��
^��x@���{X��Ji��)�X�P����b�}/���PK
Y�n4��T�r(org/farng/mp3/TagNotFoundException.class}R]o�0=�G�eF?�(���Ǻ�"�Q�HH�>0&��[ܒi�#�0��^i��;?
a'��B,�{sϹ��N~����1������6�6�X������`OL������xf�9��:�zCP��T�E�6zO�w�Q>��JqN����(���g%C>I�ޒ�?����P���);Q[yk(�4�U+=��i�wt�Ȼ���5�7�4�2�&�-�|���(R�`1IU(�',2 ���c���c&��}ʹPn��U��l��ί�:vѳ�W��~!7�ݱS7��WN�#��S�w�F/�:�$�{�`�NgA4GZ4�˾�B);ɐ`�`nn��D&"h�[���]�w��1w����L$:V��"��� ���M^?A��[��r��s���^��� *���u<�*���GW��؍� +�fXMP���m�����,��PK
Y�n4�"2��-&org/farng/mp3/TagOptionSingleton.class�Y x\U�?�e���K�LڴI��4m�I�H+��H�6����bY����鴓�a�Mڰ�+��,�"jQ���RYd�}�\@QqC��s�o�;����/�;��s~�����r�7��F�Oē|x�O���C~�3x�-?���8�B aۇ~�su�m Q��w��1L2� I��R i�!�0Ű�a�4�� g0��p�>��a��0|��c g��'��|�K���g���Z�~އ_��S��>��/��W�.}���sx�������<���|?�0\�V���#�o�E s����K�e,�-�;�+p���~O��^!�J�?x��
�Z�5��V�ug�
�+�z��� p�� �Q�M���o�c��
�M���x������u���C
�xw�~�|P�C��G>&�q�O|R�S���g�T��>'�y�?� ���+�/|Q�P�7+�%���� |�������? �3����&�5.�]���!��%������MamJ}��+�TaT�4*��yT�G3|�>oC��zNJlJ:�D|��� Cۭ)�/�Dc}�V��� k�C�����:�h<B��D<�Xqg�ː��=aeb��5]��4��9��ﰧw&Raj�)6����kF�){ j������6;M�);�B� o���z;��:vj(�v�� �k��yј�&�"�f�y���h�$�TN�S�VZ6�*�#cEh��C��d"M�a� m�4e�v�� ��h��"<0��hx���n�>[^�L�y�"�����'&'i&�Y���T����+�HY��<ي���Bh���m;�a2�L������V��A�6[�0-m"9M]�a�מ��F�%R�WZ��)[�����vQ�v�Xjɦ~��5�����Imގ���{��"�L���h܊�"�v�Vomx{&�PG��:M�Kg�?����h�t^�u�c�r6�C e�D'�QǚL$R���Ӧ�&cQ�=������p"�>ժy��@<39n��7������,Ŭt�#��tLX�x�c2����R�.���4<�Иwz�B����йp���36�y������C[ő�%!T�G��*:�� T��!�FlgP��=utv ��>鱏<��y��( ?f;�8�����+���M�Z,��7�����P��j
Dӥ�y:6���4�U�@Wv�ȓ�B˙�4��yY_�/*;��htDti��Ec4]RG=,w��ӹ��hO ՛w�H}��png��n#� EW� �,'A�5{$y�z�D[� F�3�������zj�W��qN���
�� �1�N�5�f��@�e���iu��7��
�ԭ�o��
�ܻ��LU囹7tC��[�P����Ԟ�k�=r�>Oъ�[���^e�<��&��r�^x6Et��E�1����:o'�.�I�9_��������B��⳻�MY�N@�����begɭ]��R�CٌB{7mqoݜU�i��v����
��������9p��.Kp������B��m֌T^��E4�Z�6\Bn��H�#���r�"�,�bD��E����7��y>r�K�̦�/�*�l_X�#��M��t����kpsqfSٹ΋6%::���,"�hI��o�+L�"�5��Xq��m�T�)K�����l��&׹4���{�-�+�*A������)��]!�{E�'˹R�=�~�Z�Ө�tr���qS��&f�ɽEZ�e��PL�f>�o��>��"���3@�Ύ�n���HBъ�F�T"e&���;�!�Wh��NձVz�,n��&��p3�-��%�]+�Ö+i�Vnc�����6���p'�3�.� w3��p/�} �3<�� �C 3<��(�c �3<��$�S O3<��,�O�g&<��<���&�~e� /�Fxń��#���0 {}F�i� 4�o������"x�F�h�sMcV�F�1�g,�-��j���B�ɛ]IZ�H�l+����i,��Mc���3��F;?,�
~ �AXB=�=��R��[�`� �|�'��L܄���n�^AU�����HMVƢ|�W�S�$�y?8nf⣪��:�
%���� �q!!ڼ�Vq��L%B\_��'c�H��i%�X̢��p����p4A�r�괓�f��T�S1�"2q&���V*����;-cŢ�� )�N�d�!�?h4�L���[͕�BdL�R�&l���X�c �LJ^p��*���`c�1���6��K�G����2>Ah��{���� rB� ����ph�w��aTXqT�x�+�2���W��ibTL�T��u���ƥ�q�#�dW�=�9�����ٮ\��M"�+8�k����Zg��}&�p��dҷ���8x&�7� �&/՝��2�8f�I�;�~g��,�I��L��h2�e^����пv��rc���3�.31�;t�`|��@�]^���t��m���>n�g]��]���J����4�t���o�La/ �)~�pWt��9-ˆ� ����tZ�bu�Ms�e��}W�U��U>Lc~��B :/tt��7����~�������(w�0���#
(mZJ�����il0<�p׍B�PI ���|�4��;P b���C�(��<o��$��f�����6v\
�V�U��%���ʜ�v��_�����t:���ρTb����ܝf�ڢ��'�瀾>���"s�R� ';�j�t"�6X
�� ��#�Z�z�7Pـ���1L�o�z����7+y�����M�ە�CI
�RR|��n%�Q�^%�S�~%P�A%R�a%Q�Q%S�q%�P�I%�R�i%�Q�Y%)�K��+IA^J��R���R
��4o��O/<�����8�������PA%�W�{�:�|[�����\џ+��&�X? ��\�1W M307X1����30�aC C+C�B�E ��x �ڹ��KqiC�r�[���\� �f��������@+V�� u�/8 o�F�E %GT3�$����V_�5xU���2H��k������ ���!4�C�Xѽ�Q't�|�?�����̯^����a��_��n���Uv�4�Je�7xM�Qu��f���;���$y<U�d�G��SG_���Eۡ��ʣ�G�z�GC�z�GS��Pj�Y5{��V �V(��P��Pj�����Y����}p8�gS���S`��q�"
��{c���xt��������-���[<z�������V�ޠ��y�9Zz�Go��z􀖾У7��<�\-}�G���/���Z�b�>_O_��h�K<z�����[��v�ކ �z�����s/\F���d.�8�J��dw�r�o��\P?z=�����c�~K=�A�a,�����<z��~�G_��/��+��e}�����;�ǿM��^�(5�G��zP����F6�n�Yx�gڍ=�t�2���ꞅw�O3�MA�k}�j:?�sԧ��r��6�ؗ{c?XO_��Wk�+<�=}�G���ң��*u;TQ�����u�.� k݈�9{G6��O�ߛޣga���0|��]�7i�kC�YZ�}���zt��T�y�x�v㘥稲!�?���Zo��ގ�/J����E���Y��%��E�u��X�4.�<ڀ�X0��6Ӧ�i�[����2����ֱڶ�^[�Y?ٓ�Vy1���K\Gݞ��hu{�6z�m� m�J��槵2� �>�LOe���l�����2-�˳e�K���\������}�h� �˨p �9�C�ç�2{w��Lp{4���l��� �T�8 CeT��U#�U�ʫ6�W���������˫��W�P^����U'�W�T^ury�)��q�����U��WY�U��U��py�]^5�"���"R D˫��W�(���WM�W�˫�UIR��J.�N�<d���~��� FV�B:pf! LI�)q��i��K<C�ϒ�A���a���Q���q����I�gK��OK���J��?/� �(�K�,�+�?����Qf�ܮdLɸ��J&�L*y�,|-���$�/��2ja�����`�s��/.��K��Kߒ�����N�$����EU퐒!lHwqw8�yf_�Z�m�r��՜"�M��tlu6L
�p����=w���A^Ny��/���!�u?\A����f�*���,\�����NX�3 {.�#T�L��Ъ"Ո�\�"PQZ=���׺���TR�SԽ�pT ���KN/�dZ�S�W�i��b��S�X4%[�V�+���R�B}
��zh?Tl�i�p[u�\�J�EX�>���������?5���=�PK
Y�n4�֗��r$org/farng/mp3/TagUtility.class�8 x��Y#�$Ƙ�X�AHb�6v�5A�1�|Plp Ia,�m��Q�Wz%!G�� M[ �
����ٕI�����f��M����n����f������X���|�������}�o�_~�5X�ϻa+�&�U'��"��|���������\� ������&��-~��:�w��#�]7�?���<���w�Oܰ�@�?t�~*���,Ÿ��
~&�;|��*Ÿ�a9�感���,�_�a �%o�� ����s�_��0�_��>K��<���?8���On�g�'�+��&¿�a ��醵�_"����ܰ�������h�����A�"�m"
n��CDщN]Nt�X�DI�yN,q�KIf\��27�k".tC������ �󰈇
2zI\L6C�+E�r�7 �~��<�I7\ƫ�N��mr���9�-��W�cح<��W�E�qC��&0�C-ų�o�tѪ��6���&��`����g�[�"�!��,��b �:�
nq#�k׎m;[[z��aAH�G499&k5�)��w�� )-m Yױ>�h�n��ٍ ��aaᐢmI�#�f%JD�L��j=*džz�D$6��&�PI�o^}hվU:����"�%��)DcO��<�)�hq$�q4 %�xKD��sXE���&;����d$�PB�� �Q�+52�'S��%���نP.�ý��G�G�j�rDkI(2�m�h/h ��+��&ePM(mG4%��MyG
s4nyH�R��7��5��6�AS���|�j��BM�a4�̝!5~tK$J����-�60`]��v$��A��N�"���h�� Fb�N./�"J 7��|���fæW\{��B�Z�t�„��!�����pDn�ٱ�؄���0¶9���ĕ�U�uXN�ւX%��C6Tb!�UN*�Q kX���-j�9�D*�5Z�Xu�Գ~n47��Qv�E�"%���1�%�7�R��5B'��B(���H��K��-n�V 7c��[$�(n��^@(��[�m|���:�K�n�!��p��=�K�w3,D�%�n����� �� �� ��햣)Œ�o�i֛�j����}T��V����΂ip;�<�$$��**�B2���Ѩ2$G[C��M��� ���+�L���] �颇�r2�K�ࠄC8,a�mҏ;����ll�G��(zD���ن���!�[�|j*��A9B����մQI�"9��TD�1U���Xx����tQv�i��S)��#��#�̱���q�(�2��S�u�P9;�яIx~R�O�%� <&�g9P���ʖ��~| 'ڌB&�LJ�tf��ړ
w*ڰ�rם�A["�&�\�8$�JS��B�4�"A5r�X~T�BJ2�Ť��A�ߥ�e�T)��̈nɔ��o��>�w���3��X7�<n:��i6 e0J�$v�ԐN�WN�k��qˬg�L���ekws�va��D��&��lKޮ��$G�!ş�J�����@��r0�h� zr=L�^g�]UbC�puM&���Z��A��H�(� �縸}� �� �D% ^�o#��6�߀�Z����A9A��W7��CYj-�6��?bT#�M�T$(/(���2>�+��@w4�a_m�Dd@�Oa�f�@>�OJx�"�S�U��%&�5*Mن`��=0T��V8��$����*��_�/Jxw��4C�Hx� ]ѡۗ�F���c~�Db�c���g
��p���֙%9/�|Fċ~�>˶��h��vnD���ʮ3]���M�eڅ����,h�F�:)�z��ί~j i�'���{Ro�p���d� gwڽj��Yؑg"e���V�!���*�3���bJ:M��߮��5ߣw���N��M�u���i!���z%��:=ʽ)no��ϰ�J�SB��Y�[�Eю*;���7
�[AB|κ�-�rH��֩Y�T���"�֨�Tr���d7}`���GM$�h=@M��w�!����$7ӠbN�k\QB�>���a|� ����o�k#�����HD��Eq�ӽP/��<!���A�l��q\L�4��>�˥f����FPZ��PS>h�j�B��S�,��$��n
AGX!�|Au�N�4,��Џ��G�}�~&�*̚�����'"�A�=ق.�C4FS�a�[�u�BX]�7�����<�YH�2Ei� d�rx:�o���A�g�B��B�W(ҭS!�k($�����j|f�[l�637��r4�����'F2�R�Ӷ�mgKo��}�]m�\?� E<�E�$��1ɸ��H ��|�VR��P��[ �R�K�4�9#�� ��N5�d���r�8�G=_8��0��١Δ�y9?���n�AL2�5Sd�t��CRd�D��?���j��'�QU��.BΥ.JF"ct���"�O6ʝ���B�):a<
[��+O���$м�`�� ��n��e�=0�� � O�LJA�o��I(�/�M�p;i��/B/��9X��ipt^�. ����Q��\w�v�e(�t/&���M!���C$D�{s�`֎ `�]�W砘�a�K:j���Җ��X�yJ�B�.(��7�*���+�ۉ)�|��Δt X�L��n]�C��\�&�e6 �k�>r��� }�_�R�$6�6VU^��@�Y��W`an:ɔ3;�I�����N3� Ǧ�2̾'Mf�f�<f1[��z \'�$@N�w��J/}�iX���&����PɠvU �n �� �� �4 ~����e�n.[�&3���4�F�4TO@�ե/�r��)S�$���G���* t��}��U��W�v�n�R�9p�MU���i��66�~�(,ΰ��)�j l��
�X���]�o{����L����Mw���Fya��9��ҕi��Py�MbL�֠2��*�P��Zי�&�3VB7��U]8�p�2� �Y��p֢�ff���`e�u. �3��\�M���d���Ph(D��\��P�=���Vc�Z�X$ț,��D2W��� ����'y�4��B^�ȵ��j�TӨ �^�;� ��$W�Ip���7 k���9 k��& �5 ��k'`}P�� �^a6� x�t�{I�;�E�Xt*�v���!����Ǧ�{J�����9px�W���� ֧��k��8�7������cs�u�ah{��鷆Jը^9��3���1x���<�`��a����d�qỰ���������h�v��=�$B�8����l;Wsݙ���Z��dg�@��s3t��&���.ء{�pɔ��p������;�>��yL�N�<�P*Rq�-�e 2L�^�vs=&��ѵ�w�|�v�z�kvz�
�h���:�0)z� �e{� 
ul`*��z^����T�o!k��4؋.��������� >�7j� ��y鸓��Lq�e�a�Î��
��r�ۀ~����wuC�=7�ȳ�ŷ�� ��l~i�y�g��^�����͒\Dr�])�7����P��M(F??�/=�U�aA��K5�Mk�1X2 �l��>��B���������;�U�7J/��(�3�5 �����*x�y�ƫ�����Wn������ P�{�X��H�������,2�����K�A&���O��).���4L2 4�M��u�+��a�(u�apc�)h4�`<&U��r� �tT ��2�ax���[9���g�� �br�!���H�:���j��:ݒ�̃
؁�z���� j��`�#�BY�G����!zFF!H[!l쨓��(�c9'K��NB)o@*�}���!�,�M�r��@F�_���`���-7�Y�W흶�6v��KLn��,̯��>A��:.pX���lUpo��\1y�*�H�syLB�-��$a�f�֜i5���(�h:��u����4��:J�T8��Ѹ��9���/�2%E���QoW�uX�O�ʟ��[�Y� X ��;I��A�[��X�M����)~0bg����Wl�O���jL^����O����b=9A�n@ӒǦ^2(�f���
�jGד��p4Ψ��y����3\
9x|�K�j�c���5(���_���f^=a<���(��[��[(�{K� �:@��FQ2>�{�|�4�U��J����ԻU,5uF�˄�<��p��'Y�U#���d��N����n*���ݗ��Ix���?� G�-L���W�!$�,����Y�s(ߏվ�؀����
�PK
Y�n4eTզ6org/farng/mp3/filename/AbstractFilenameComposite.class��_OA��-K[j��R�$}k��%�>՘��F &_ɰ���.�j�V�hLx��w�ۊ�������s��ί��7�a�O����lU�MXδ�U*���L �� 1A"�8�`�J���J�ʼ&,t� ^?J���a���LhfG�ap���� �Os�Ed�F?]f�2�gǫ�4�ۄ�] 5 gӃ7����j�T�T����ޗ��FZ�L6�ĕQI0(��4G�D��Pin��/�3=��������m�XĄ������އ ��5��ѿ�����uh<��#-���a� �y#�'�N��E��
�u,�L�����C�^��xm�"_Bɪ���6���mr�l�� ��J�`��
f���ƌ�w��4e=��]]Ɗ��Xsu W��pZ�7�l�ew�Ix����\m�E���6��خ�PK
Y�n4M�P� .org/farng/mp3/filename/FilenameDelimiter.class�V[WU��I�#!) ���5$4�@��Z��@ki��K��0��ę�ʛ�_��z ,YK}�k�\�=�`U�9g��}�;��3�Ͽ~�@_�XĒ���e=(���-
>�b+l>ds�}%�X�p�w%|$c�x�γ�l�yȾ cS�#��I>��3���9�c��*aK`P����d��c���lɲ�\U�M=Wo��FM3պ��o9����b�8�,Ķ��ek-4ъV3�4�������D��چ�$[�����dI/Y��%��\2̳R�{2[�)ӢU����,1�H��{����FY`�a� ����C��%�B:.�N:Ox�B(t�aqGs�m%�r"��5��N�����)p�d-��8�wq*YxQ�Tg�Y�� &Y].)Bd�L���*�yWy����“P������R�����U`6���<�eU�k���Pٮk�r+��bN�U����U�t����ז]�t����5ؓ0�~��,�wY���{T�B�*v$�PVPA^`�mk�r�֮YY���5\�2&^��Y^PA��A�m�
4�+x�lR
^Ǥ�)6o�<�f$T����_;J��M�m?��n����n(��v�%���:/��5 &{�?9m��
o���
�� �"p�g ����v�
n"��BC�u����N���t�m�! ћY��R�g��9���b�8'u��9å��\�{w�v��+p��|�n\� J�xm�6�I�9�6j���M-��nĵ|���ߒ������Mu��m���<�ޚ�_��~���h�����r4F��@���hF�Iv�V�%hN�c -~��&�&���� z��{h����Cn Og~B4���
��*�"!e3e"�Hg(:ܿD���~�F؟&�g�v�;��rWx$����n��a� <�� ۹~>�S��9N�i���/%^��W����? .bp3�o�+�� �M 5��yԛ M6���y�) i�t(�^z�37/J-Қ.��$:� 71������],l#��+=��&5˫a�� �V�p���X��^��cO1@y���*�;^�sa��[������w���A���g�C�nR`�>��Ӈ~o��PK
Y�n4D�m`_6org/farng/mp3/filename/FilenameDelimiterIterator.class��]OA��ik�,[
�C�UQ�E���`01A0!����N˒�G�����/4Q���]/�Q�3��G M�fgξ=��33�����7�^���>d0%]�=�W��2z؏!<�Ì#���>�̦�X�&�9&Cڪ���^�0�yh[摰kfK]f��/���d�vm��0glzAլX�[5Ѭ�5�Z7_G�:�َM�˹]�ĚW� ʁU��'�!n�>��6F�\�@�"���!/ z}2��w̛ɻF1�!�a #V0�� ,jX�S ϰ���5����Yі�sT:بq��b��}a{.�T�0�u�Kw=ݡ��<L��+�3�tZ{�֏|� /o�Qmp�-^Y�6r��G.t��C(/毻u����= ٫G�`\M�U.^5�w�s|�N*��D��~]VI�P���+�YÐ��M���������U�Ԯ�Q��*;"��*9��J������4
� �G1F�Mzz����`y�19�gϐh` /�3��d�$�J��Ť�"�
��/�#�@ZN?�0H!����'dd�O�$>#/N|�Xdֈ�q����4�&���)�����c������9��D�;���c]����M�c ��PK
Y�n4�C�?�U5org/farng/mp3/filename/FilenameEndWordDelimiter.class��KK�@��kk�1ڗ��[kڪ�V�*� ��nJ�IJ=�����G~(q����0�����������: �f3� �"�Q�T�c���l�xo�g3*f1�`^��@l�v�`G ��N�%�*����� ��ݚ�46 ˮK�t�qԙ�Պ�Wd�v�@�EΎ_xN�k�n����+_�צQ7��I��n��aq6���t�ʲ��tI�2�
V4��֠#�&�����U��i�@Z����
�d|]�S��2D�cv�� ����Ԗ�8+����y3�͋�[�=�(�����hH�*��o�����NGM�_h�.�g�M?��xoQ����y����_��O6A�$yA�7߂�k0Nvp
=4�X��BO��s��2�c���Y7-D���O�؇��P*��\��
��?!Τ�KB�!nە�
PK
Y�n4U�
�C 0org/farng/mp3/filename/FilenameParenthesis.class�UiWW~�m�0Ţ� 5ҐhB-Vk A�hXZ�]�L��$�� (]�.����v �rN�O�������,� �͇{���ϻ����~��fpSĬ�w$��] �HI8�[�x�yI�qN�<D,Jt�.��_K"�H�c�oV�k��$��./��# ��ܓ�)�� ��YTfʱ%y�l���Q�f jR/�uS�Tci��'r�Q�'���DN+�%��&��M�P2֬{q sM@�^VK3jA+��Lo*�J��ɒeh�<�♂b�a���a�k��ǜ���5�{Z��T�$Y�H:�vJֆji׵�f��YЖԳ�@"r��勊�2����X�g���V�H�0ٗh�� ��\}�.�����d�&d�����^2l�6!}�ƌ���|�$)m�=�֠z
�CU,5���� 6˱�cvo�|L�X:�8�ز�B"���DQ�2SyE+��mu�nd٢�B`���`ۄ���{Q�[dm��
\h�E"
2�H
�=��֬�U��|�Q˖���{��mЌ�s@��2J���^.�れa��G]DY�����ל�01!#�Q&(���Mo�r��z�d\e+�q��"vd|�/e|��e<Ĥ�G23� ���0l�����(�ˈ`D@���x���T��}/cI��;7𖌷Y{���]/WU��.�Ĝn��.qO�����p�ȱr�j�Y-��o��]�h�I������f,��e�\֔�{�L�i������ʑΪ��H�.t�L�M�s�B���3I��5��ւ]�K*�wAٔ��TJ�&�0e��I(Y��R���c����ҝoi��ڋN:�HJ3�LS˗���:k���c�.����<���9�/}�p ���B�*��M_��^������]tD�_!���ц20���B�p4�����h���]܃�'��ɓ��w�o��c�g�V ?Co�
��$�G��c=�k=����+�ruDcU��1�hg�ڙ��|W����:&���<����>�k<�Eo�q�㽂@��Xo���1&�㤟Ϣ��I繯J�q�������%��-��ʲ���i�iG� E;����'�6�V�lU�9�c���x�U�G�sd:�qf�*f���<t!+�E�~�ٿ������8�tC���C}�C����?�%���ѵ4T�5T�5�p�x�s �� F� <M�u��m�h��v� ����<�PK
Y�n4�.U��8org/farng/mp3/filename/FilenameParenthesisIterator.class�S]OA=��lY�*���(J[�����$H0��aB$A��v�.��6�����4Q����(��-�l�{�{�;3g~���@���D/nHsS�q �p[�r2�KS��eLJsG����`��Jឆ� �Ų�eH[�������3���Z�'��D�2;���U�q�r��t,خ-�ܪ�W͊�U�i̘��]���8xi��5��|~�!��9�Z��u~ ��k���/��f�[�pcg��M��s���a�!:�Яc@�A������T<���u�cNǂ4#����3��{�{��J�;4��A�7�� ��&)6hB�� ����QaP��O&ZC�r��F��/o4�m �׸�ye#�A.O-�� �vQS^.2L_�[��s����(C��ͩC�����=����s��{�G���@�VI4����{���5 )�l쁦� T��J�ma/�KR�mX�MM�·�*�c���`�fP����)RK� }��C&{���Wȿ(��(�$�IN��)2��A0Ej��!"kR1�
��Iu�o�K���B�3�HK�� H�bx��e��P�� ��VR�39�!&�9�mFފh��h���ǘ��.�qR��J[R��'�����H���Ga��1�v��v��=Q ~PK
Y�n4b v��Y7org/farng/mp3/filename/FilenameStartWordDelimiter.class��KK�@��kk�1ڗ���j�KEԊ �V�x�vS"MR�ճI/)(x���gk+>P1 3����g�_����яAe�4dtD0�����Q���2joRͦtLcFì�9�؎�r�!bfO�Š���R j�c �fy�M�q�ܷ=n�'ei Y D���]ϕ\T~�<��%�1 ��҅}m[u�j��p�Z�����3d�҃+��B��XҰl ��Yer�X2����U�4H3l���?r>�����g!��r��� /��!ΰE��Pl��R
�\v��g���Cݵ �WV��M�ޗ7��q�� Mҥ��釓zd�Ő�Hj��0KO�ꋀ�@6A�$yF�;��k(�l��h�\������%*���"�I�4-�Bt?!�W>D,�V�'fB�Th�� qEz;$���U�PK
Y�n48t���
8(org/farng/mp3/filename/FilenameTag.class�Wi`��&���fI'19[N8d˱�p `;vb"ɉ��:m���ZؒЮ��wKӛh�Y�Ҵ%$�-�WR�-�/������!k�U���۝���ޛ�7�o��ÏhC2��g�1�ϱ9��$���x �K�/���K�,C�W����I���kl�Z���l�)�[ �ߑI��2���K�?��OKxF�j�A�����6?e�ϱ����QO�� �����������j����������$�f�6e��w�C�?�/~���y~#� ^����ޟ� ��-x�'�,KS\&�$1_F��|�'�j��U��;�U��2"�P�d���I,���ZI,���_�Jb�����'Δ�r��u�$V�8 $I�bW�2F�j��In6��z6 첞M{�g���>�g�Ml�k=�vZϦ�5�Y�~��4Hb�$����'3i-���t6�>˦퓙���䄚�M��ݣ�����~����l����c �U%l�o��y�c�y�����,��wv�.a��kt5�%�)����C������l2�`_%SI}����J��!Fc��͗ x{�c������z��|7VT�<aC&�9/���,�7;�e���Ί`Kə���H�?K�Kg�abl�4�}������) ,�uǣ�R ��]Szr�}@W�1=��]���jp��N"�:1 ^]��Δ;���)=9�T�t��Q��•���4d/r�����l�JN^k&�%h,�QScM�����N���%��C��Xz�;W5��"�h�v��:�r���4k�\�f/m� ��ė��\�.Pi/҇���Y#��k�jF���$q6�����y5U�r��ɽOO��TY�����T"��y]y{B$ٝՓ�n��'F�&��E�Qc�!�sLS��,c:E�������T����QZ�+#S��jv0e���B��d\`1;�����q����X�V�V�V�V��M���M+�M��p����
^��+x�S�J\/�sq���_oJ����H�<���
ނ�*xޮ�x���C�hVD�*�U�8�t.E��v���{�І���܉ÒhW�z�J�l��NiS�L:��c��\��B��װJ�7�7Ob�ٟJ��iU�''3*�:��S���A���7�\lPD+�Mt��e��g�̓XQ��[��M�[�����9�;�Xp>k�� >�@��(�M�8� �����^�����r�>�Ɩ� ��"]��L+".Kb�".�J�[=� �Wl�D�"�MlWp��-�L�ܢ���N�F'T����ӟ�&�Tl��)���&:�PĀ�L��<�� �I�M���C��ξ s� �7��h �ѭC�s ��w0>5�Dx����9 �7:Իc�������2B!c�vυ6�32 ��N�S���D1�'���&�ک�]ܵf�N��T_U�%v� %��,�M߽�>M�x:3=8z��+��O�ٹ�������'����Pk�������`+H,����݉X2��F�5��}�i� � i�b����Z��*���ժ@�)FkJ�+�8Pt�T�1��-���7����ߞ�u_X���X�.�~��Zp"� ]��"f��^5��Jj{Chi�W*=���Jt+�wΰ��Z<�̘eN��7ө�Y����R��r�R�q�W3��W�@Q�'�[NU��h���-{A�qI_Z�%>�_� �JҨ�y\�[eE]��}�ם�ς�mĤ��]n���c�whVhh���kx1�kz��e��J�xR�C�v�j���k���`��`Tt<�yl<l�l�Z��cރ���7B=�<�6���<0�^��s 0b���s6y��
+Z�P�ܘ������(�� ���7����bz�dU x�5�&��F/ȿ�]�U6��1k� ��<�V�xNb�1�<����'��.�} �A�E���,?�x�T��s�foRk­�W*�,�2+�j �؆� 7Z�~K�����: Wn}KnB�B��DZ�B:��s� �� ߍ�����vySa�YÞ�3���q��:{mm��\��6���^j �ZrX�Ê��6�n!꬝�g�r�vU��0w̉��0� �i�G�<B�ʬ �3���94� ִ�f�V��ڑ�U��YE>�l�0 ���:���{�G�ž3�� �HO�.������P���
(
��̼�]̡���s�z��(a?Ra�-Ez��\1�"̽� �% g����Ck!��f"��؆����#�?S�#�*L�����D�t-y�'O�s��A�Hk��y�!W��1�M7�rt~����豹u݃��ߌ�l����R
��5Qpyt?�\ţ���f�>�����'��p� Ԑ�����(�C��o�����mN�v&8���/sw01� >�N ;�&:�9w�N'q�ļ;q�I�2q���;�r'q_� >T n����8�$�e� C��X�R�"��>{�C�a�h�;��sg
�J>���8���R������#��X����#Xl�Mи���K�nzۜz�m�D��vS�I7�˜z;l�d��S�
[�7��S/b�]Y�1�&l�G z��YI+�Nb���k�S;Y�25�嚻L͌�y�-�ag�Q;ƫ����^�����N�=��V�����m�O��y�9�}�s�*��gj�5?��~g���.�;`�]c��PK
Y�n4�>�0�/org/farng/mp3/filename/FilenameTagBuilder.class�Wy|W�{�fx-a�%$����݅����5�P#� ��C:dg����;�ī���SQ��<���-���z�k�z����of6��nL�|x����~�����K�~�![�/�)�GJƐ/<f�γ�<��!�`����)�*�b��潼��� ���Ɇ�Q�L�er-�;q��S2�4�^�e�DA���*hdb/S�r�B����^�ëx��<{ +x-�c_�o��
ބ7��x+����e����ɐ��ٻy��ˬ��~F�/N��L��n>�� >,�#2>�`7����c|����� ݘd�O2��x�����v=�;%x��I�vg�����yM5���H.[� mO>;r {B�H��?��T[�jf�e��뙡��x6?ԒR�Dɵ�����QG���c#�{�<`��glP�z6S���V�3�3Ƌ��! ���w��z�Ed��ژ"aGS �����nx�# ��diP���~� 7�jxQ���U������K�I��̩�[K�#ę���R2o-�IY�=���l>�B����Լ�1���N���H��71 �� �J�,t����O�
����y�<n���/�� ٴ �ˎ/�P���-#Tɋc,ز�`i�L\���6.Wq�i�> ��W'��b&=��һ��d�����e
<��e\�
��U<"�(�&0áx_x�
�Ʊ��)p �x���m����ì�� �?���j�P��j�R�c�D�����/�K�_����,Kia \�o�Ĭ���:�ϋ?��2���,�~�{����A'G)��T�+��`fD5��d8�PMa=n� �J�4�U#l� A�;�L����9D�90�`[����N2�y�d���I�1��?v\4$�,�\T4�?�e\M�ԖԿAbݥ���v�� =�L����ؕ"0���(ql��CzFM;� ��T/Y7"�*:�+�~B2��ۥWB�d�*��&� .߫KO9W[~�*it� �빶���.��g���z�^K�����������$��������UF9d9g���C�}Ϙ�e
v�5�.�g�F�ՠ e���Er��r�~ɫ�m�+A�ְ��2#�l�J�7S0�� l,��\�
��^m�a��g����[��QCO���]N�h��>m̰� E9c-W��Qc�jא����ff��1V,�(x۬�[2��x����P�bP��wkh�$����(f�+H&>�� vқˤ���ͯ�-��\�ԋ�Z�h��]G�w΂|@�$ �u�Ċ���!�rݼ �5�ٝΖ\��*>+t�ڲ�;H����XH�k N�.B_S��S��#;�:b�H�}tr�T���݀�p����-����xӊ'6�C�����Z��/]g�E.@:o1T���h[�O?a����)��Gg�����x���D=�&|Q_��}L�bB��y���u��D *[�E𙨊EL(�s��!�OC� ),�+��"� �U� A0B��j!H5��p� !���5B-!���PKu.�ZF�/"�`3�֙X �h �����>�ዝ��{��{)���ø���
4�!4�0�o��F#M�1�1r����b�9��� )� �����YK�:�u��&6��B� �G�!��M&�뼞9a&r)� DcS��Ll���(M[�����b�o%;��嘽��Y��O�:�����*�4j"4k�pכ�ar��bi�������DM��x6��|�K��N�ҫ���?�y=�+� KuG"��s4wvx#\~�w6L�=���(��@��4��Q_���sX&�.:�*�tvT��4,�Y[尥rǼʛKU�<�u3[�I�f[2 �hә�G��ɶ�yk藈���d�B��-kfmk.�5�������~J��:��ۢ<���P>���!yb�rH���=���[:��s�!�� ��,N��ʮ_$�®�@(p7���}d���z�{L�D�7�OC�o��� .`���Su>v���䚟��x�A���Iv����o'��<��<Oٞ����Ci�����D���?�_��c�PK
Y�n44���X*org/farng/mp3/filename/FilenameToken.class�W�Cw� ,;�0 9tۄl�� �q�m9�bw�(��j[�e�L�̐��W5�^U��VIZo]oi�.I�&��h�j�����a}ofvY�h��{�ϻ��}g��ߥgt�?t"fD�PSB5, 1ص��<��v��'$,��"�%��"�#a#����Cd�ވ�I�K��8)a����a���>$��a��ЈG��>.���>|Rħ$���i���1&F��"8�gy���E���,o��Փ�zL��%t��� ,�"�$�����Wٌ�1��yȰ�o�����>y�����c!��a�<�?�9O�8/`�6�nߠ�L�}��BZ�,�cG�9�+��.�G@�mSu ����$�l���)��S��3�Its�e�J��kUO�C�aN+�f��ڑ�>��ZR��u�9l�c�~L@�X�
�]�5�խm����������rDt���)-����5�-F��f X�kH6��U��a�NlC墽��$�>U����L~تQ7E�ZKs���C�����c}Ҙ�1,5�9i����!�JJ�N�+�����n�B�US� ��ϩ���tאwN�-���ޔ��}��0o������ѵ�8�����1�K��O�u+A@K9�K"&�YL ��=h��O$��HW! � �S.�4 S�2&d�8�Ȉ#!c�x{A�E\�"�x`���tZM)��dR��
�f��C��S�
ۋ웝�R)��EFC #�8g!���z(iP���$儏�4���BH��c�Xk-1(��9�����h谮L�U���j�b�(Ⲍ+�*�GxN�[������$����Iu�y�n"#�i?�s.{��Y��'���^��|
�C��q�u\��+�$���+,W�O��~��e��v�r�v��x\=}����d����k��E���Y����e��>��i���ϗ�^�����-v��?��2���d�"�&��|�\���2��'�%��x�<*c
)�� ���4��jz�*����I���XQ+ Ru%�N*Q���TR����{SQ����tu޽nI���OU�vϚ��gn��,�+33�N��}�����D�|E�ä�}i�Jފ�N�Դ�;P�W��*i����<j�J�4k�o��w� j���`�碕��{��zҘt _k�Q�
�6�f@����5��Z��v(#$"�� ���9oOs���<=.S��uJ��*�է�M��>�7��Wx�D�ܤY�����<h��?3(�A�ʗX����9՜7�r&�s?D�g:�Y�P���SFb�'��6bƼj�+�m(Ő�G+�dͧ;�����
�3CE���J���9����o���VU�D���
8��5�т�FZ�O��hw3I�n���2�a��<�r� ������S�T8���Ud8|bRut�Ao|�V�ql� ���ܞEMYlY���k��]�V���y�P��Q���N�a��e{�$D�sl�5�)�ūɐ,��?������/`��Ӹ)?��������4f���e��B����C>��o��MY�� @Ԡ={<{��"G�x��4s�k��%�� �=�6����4hP0QFB '!���I��"�����
Z(��ܸ=���
��ۯ�q�v�
�Ȣ���Y�e��&
�4��p�0����a�=l�eCG�����,�f]��ٗ��t��&:(��E� � |�Ȓ���x�I�i���N�_>NՎ��+80FE��G�8EBjh�?�(g���h��h��{�"�w�y�H��u�iO�;�w&�/�.�~O�i�+Ї]�F}A��Of9��' w}�8�򋜸�T���g����/)}!r-���\A �/sf�v �)0oLQ�gLT��9��Y�ͦ8�'Z�q�#X��s��_�]A?��3��M� ����1����ƛ 2�<�AЗO���w�K ��p�ƹl�N˗c��,��ew�l���t�]���/y�>z �|�P��"4�/@X���z�,�-��#��t?x� �PK
Y�n4��1���2org/farng/mp3/filename/FilenameTokenIterator.class���n�@���&NMB۔J�N�?�A�%� *Ri�J��ķ�K<cM&Uy^� �ZE��y(��%bU[�;c��;w���?t���&���E'�;x��C6���]8�����6Z'ɐD��;��֮T��$R��ٳ�����,���WBv�P��D�d���� �+�3�F{t�,�7^�(�=�4:��ad��?�RO��uE�<�>lb�M�c��n1�B1��0ܓ��`gH) �sޣL'Ҕ��F���97���<��8�ਛ{n2lOs��q�I�)��*���[��0�7��"͓4+M)�2<�N_�ڤbX�� ���ܲ7ӥ��7��:����Dͼ�7���F�h��h�qɬ:����D-xr �;���+p�Dfb+�@�3� l�k���N�m�*�N��;�����
�Q���_��nᙋV*�{�ݘ`�d�PK
Y�n4�ن���8org/farng/mp3/id3/AbstractFrameBodyTextInformation.class�S�O�P�]V���P��� �2|0q �����w륖l���M~�/["����޶ۀ������{�����/��Q0�y��I,�H+��Q�a1�%�/���O�"#� �g��
�*㥌W]�co ��!��隌`U�u=�8��c�jְͬ�Q�����VX�5/
�<�;ǮW���:k�`X���3j�)���X!0�G�k|���V6J%��;v����}^bU���x-c�`�bAγ���K����B{�g�H�`H�=�j0zc�SrM�����Z7~-�HpZ�/��R�k�A �e� %S-EO+x�"`�5�� �K���FTLcR�{l���VE����at#J��i�ȼ���G�"Ħ�-lw�"��++0�b;4`��N�����*�oe�V�J��F����>L_7�;g�l�j]�,�5��Ä]�歊�%��e��D�P%y��\l��s��Q�����͇�|����"�F�U��5D�����j���)��Q���w�'^5�?�p����:ȏ� ��1������t���� ��Љ�G�<�%.!���Y�
M^�[K3�f8�TBM��d�q82�q�>�ɶk��R b*�y�.�f��x"1C$a@M�A�{ �G��9c���{����c��đ�,ʼn��T��-.r�y�:����%RGZB�����/�w��u����PK
Y�n4�G;j%L0org/farng/mp3/id3/AbstractFrameBodyUrlLink.class�R�O�P=��u���(��]'V�G� �$$3&~|�����.m]Կ
�l�&���Q��^�~��6��}�{n�}�~�� :�pG��"��0pO�5�2���@�C%<�� A�x� g���_�#p�f��)���t���I�D�M�"�a;���8j7y��.Y�3ڣN�
�Q��W��9�Cxag�uY��6S���˺ �XCM�MP�Y�qv��b7�
$�X��B�$�C$�X� ��݃�3�&M'� C��x|�\�4��i� � �`ـ��ק��D&���NZ=��/�Ţh�<idx�-��gI`���m bP��?N��:Y`?��6�Z��l�k��6jK%1��_ 6����IJS�|Ĩ'��H�~�5��&0i����HP�n;[�E�o�6����s�Oy�{�ŊlQ|������� �� 61#^�`���f�/#�pC�m3W�#?b�&Y7�*�b �lʩ��Y ����tS}����д��' ���Ceh���~�x�5u{��+"��y�;J���z��Z�PK
X�n4:��/�#org/farng/mp3/id3/AbstractID3.class;�o�>=>.N����������f���Yb��������✟��Ƞ��_����X����[`���b��T\R��\��bl������"xd�*fd�A�����$�32(�ۆ�h�"3�� ���6302�y�@�H�jmg`�V��J �3i6-�� LyPK
Y�n4�+�#%org/farng/mp3/id3/AbstractID3v1.class�R�N�@= �j�7T�aEB|Qcb�$&���L���hKJE��g_0��𣌳E x#v���9g�tN����` dDx��GLB&x�1%��YL���dn���n2�Ӌ� ¶� ����Kͱ��M%��zNݺ���Vr�wr��:g�JŰt�x:��4մ�c��훭RɨV��k�#J��%�⚶U�1��k� ��1]CF?x�e�~���γ��1�9�1�:�'Z�h�{����1D~�'#�9�D�)i�? #����dc�ޭ Lu1�s,��"s���<�$}O�h��`��0eF9�<�=~�1�����'�8�K���#��W�E(d�:��:�H���ގ��&(|��!�ED�`�2?�!�#�p)�g)��RxPK
X�n4ǖ�� _%org/farng/mp3/id3/AbstractID3v2.class�V�w�Nvvg�;$���R
��n$�$-%e! )�6��$ lv�����Ң��j�A��@����`�jQ�l��Z��Z��/0�7��^�|4��{3��}���~s�?�p���:<P�f����<��L>��CL>��#L>��c>��k��>��'��ħ�|Z�gx�>|�W�j�E^��/�ӗ�|��W�8��|͇%����;Ų�L���G<���+0��g�<�d����� ��
���q�vN��|Xe /�����;>|Or�O�ࢫ�y�����}O��}����&��PBEJ�Ō�Ȇ�X"��%H ��6��i) ���q�},k��i�KB 6��Q-�ofT$&��ŵ�H�l��N�&ӻ�t�H&�n�M���Z�X���r�����I��q}���vGt UFb\��\�"����6F�V ����� ��4��&�#��Z�"Mu������3ٴ�F6v���b�7�gM�Z��a-�G����� �$a�m�l��5aQ4�k��N'6*B}ҲI�UmKkN{�u�Xac�L�(�������2"��RZ{ɼ ��{ '&ZM���Y��U�l#j�w�>/� �x\�fi�Pp-�����ɮlߎ��r�D87��;�D,9�>�3�ʹ�L�o�᨞b�?R�c���z�����♂ ��?H��5(����� ���O�r}:�M $�M�n���ͬ���@�ǖ�$Һ����N�oG�)�3Q*��(���+H�F��T�Z_�9�������-=\?)�tN�?���6�Źk�@���`�H�&��cn�kq��LђL��*�jex�P���;�"���(R<Sj�-V")
��b� $ow4n#�خ�Tl�&�q��-L"X�b+�mLz��a=�xn�o�2�䳕�(��)O��^?W� �Rů�k*Xa�U<��
~�ⷸLsp!�H��pLų����G�8�t/E�K�rt��x �W�G$T���O��b�*�%4#L�]7�m�d{U����.^;�b�)��<_��~2����9����G�Zş�e�7v�w�P1�&9�۸c�������?U� �h�[:D���l� ��(����S�[�ww�P;�OPϨ�y�����&���v� �&�~غ�h
� �%���)I�6���-�/J��ndiZ��Ԅ���H�N�1l�s��h��n�X!�=��_���vνB�d��CIK�X#޼����,�<�����#K��Es��j4��jF"�M'��*d{�~�*����JR�[��楳;o*إ _�;�h�@6i����r}Y�蟶==��`39�6��x3��#�U�m��
�g�0d������"��*�%xRP:�2&��� d&n&&
/�r&�� �g���i��}�0�4�u� ���n0�(\�E\fE�n�%�au�
[ �e#���q�"V6�
Ө���F@�qt�C�� ��gD�4��1\s5�r�V�)�6�Өsa���%+?����zʯ�x]h
�Q�Z�X�tl��! �
&��H�N �n��e�W��f�E*��D���Z�}�Ĺ}> �(�vMS\`����4q9^!��M׆�i����`ɠ�Y\�o2��Sn�)���g_n�*h�8��ʸ�O���l�t��u�,~Q�ee�����N��� .�َ������f�F��}�F��-�*� `�Q!./��o�A�%�L<$��;[�Z;��~Vo�-bY��}�6B�}�n6ͅC����IM��� ]Do� 4�?t��Pg�b�N��~��Jn������@:��7�1���/�ϭ��Ϝv<�T����S�0� �
S��I��?�x�=oyy�<�U����u_��+>MF�Ŕj5?H� �4�6 �y��A�P�N(|�X��s���vVǢP�:B�)�h�n�3H"e��D�V� Vm�J���u�k���o
�6yN��wIҩ�Q��f�o[`�닪M~�c}�
�-]�W������)'�A;3����a���U�3-ܬ�MC���9�;���B��1tR�d�*��T>����ސ���#���ꛏ*���X���=��{�?%,�9ò�t j�#�cw�5���at�C9�{JCb9���'2A��4�#9!��M�O %o���Z�O���;{ü����V?ZZ�m���Ė���J�]��ysIm��~KI�׎?�Tl^��m��>[�vG^'n\p��o�����4Ha�b���4�N�AT.���˙�+���t��Hwp/�d
�� �e
��G�]�w��@�]����,��ow�PK
X�n4��"} �*org/farng/mp3/id3/AbstractID3v2Frame.class�� |S�����^z�1H9�����ږG�EQ
hH�$&�D!����P�EQEA��D ���S��tN76���1u�n�����{��z��'���_rssoz{|��30
�H��⛯�!Q�G�MbZ�c6��1Gb�|sB��{
<Q‰�+s��ЛG%���<���П�~�K8��J(��$���x�� Cy<E�
y$p��b�*a���&���B��K(�H`��3x,8\�Y<�8RB���J���h�c$�y,X.��DZϐP���I���YϖP��x��<N8QB��IϑP���y�,�#a���$��Z`���<�'�+!���S%���'�V�|�<�/a!�!�a i#�IX�c��z �xl�(�R� �@�<�x���<^$p��<��p=��6IX�c����5<��"a-�s�%��q���6��*�M�f���q������.a+�i��$dx��Xƒ<.�T��<.x��<^"�R �x�L��:y�B����x������j��Hx�����<�� �^�~W
\%�EW �A��<�(p��Wx�I��^�q��u^����%���7H8��F��$���m7Kx����!�=�x���y�[� b/��H8���
܊�=!���'!d�!X�ds ad�/�j)�M%ZJ���ƛ�Kݳ�өhS�[Y�QV����&'��V�ӊ���۞-���9�H���c)���b߼hG��5JO�S�DKB~��.�o����}Rߢ��S<�~o���O4�b�f~� Ǩ�'KC�Ds����ko���қ<�}G�UK�b ��d�]�}�w�'�W�� �lC>�
|���?nw��� �.�e� ��]� �#�z=.|;N=��m�ma7�@mm׵SXU~O���)�����C��jB�JChV����u�V��t:�  {�V0�3�va��܆�q
+��3�G��"n��st
+2ٴ3NaE�PB���o �N4�A+݆�v
�L��
}���
��)( yL!��#5�� +B�Ch6�>G��"զ��)�������A�^���1�� ˌa���r�V�N
��">��4�
���9k=���.(�2�p
Sȅ �M��
�M;c�\������0d|Ő����Xo��`��4� M��]ph:��ñ�p�¦�
C�cmN3]�Š�<S �]PX�6�\P6��д3vaE����.( �ޣ]ph� �� R8`��h�
a���
v��q�a{� ��.�Hc��gִjӟ\NaM �.Na���p
 G�)�������v
 �B��0d Cvt~�9����SX��c��]�D� ��t�a��D?�&� �S��F�&�>߬w��d9��D��"і�4%G.���z%Xx�
Z:���#W\�o�W��{�z�V���DKz��ҥuFv��h�M�U�-�����2}����x�^l@����g��הLt�Ri�JJ�ɲ�c�����ֹٱ�����G,i��Ś��������j�5>���� �x� ��z�=->�{�n��v�����
����ỡ۷�z�dz�Ǒ��D��x��|%���8��:!�7|�]����k�ݏ�&fM*�P�#J
:!gB~�{ ��ϝ���sGoW~���Bv�gM�: 3_�v��Û�¼��l���SCu�x���g�*�r�{��Z�@I�r�脞���>8�����?��C�j�ͨ�>�����i��8�����$�|�'�� O!�[��q�`�Uj�ơ��;�i O'��"�Ō%�>5\�Ƒ���(���� ��1�� {���`<ӟ��P�4��x6�{j��
� ����'1�C�W����8�p��h�d�"\��5�0�G�Ly5Na�JS>���~ 
h 2�OX�BÌ�B5Mcc=aoՠ��q�?����@� � ?Pi��8��5�8����iլ1�8�p�j�8�1N�N��8����2զ1��$��2�#�]c�q�9�C�b�%�%j��e��U�h���2BP�k���J��!u���W���Ѹ��Z���u�g\I�]�Ҹ��� �F�ko"�Jݬq-�:�6u�����6� 72n"���4nf��p��C㝌wTwk��x���ո��>?Q�k�0n#<��� �C���v�3>B�C=�q�N���1��'\����ɸ�p�ڣq/㓄3�>�O1>MX����,���s�g�!a����/�k|��%>U4���·�O5���3—��5������_g�%�]� �o2��p��ƃ��!\�~��-Ʒ g�w4���;©���c����g�p����L���x���s�_�:�%��PK
X�n4�O����.org/farng/mp3/id3/AbstractID3v2FrameBody.class�S�S�@���M)J)ZD4m E���P
䇣 �r
m(�6�i�y��ps�/x��� �¨���?J�MSgpL&o��}��o������7ݘ������Cdc�">Dq�3����)�� ��3�xQĘ��qϋ^�3��\8e����1��#π�k� �K �p#FF%��I��ƖS���xL��cËE�TҖ������J^M��~��Q߮)�"A�8���+��BgWԴ�~C�3U%3N?�$hw@�{��#?�N��☖S��2�n�Ղ�z��c�� S��J��d��9�����7!�:n�����A<�1$`I#H �A�E:Y_WrZfVɞ�%h3��LH�����gZ� �Y��*j�jh�0C��PY�� ��A�ŕ*��^�)>�Wu�e4VNB��CC���]�o��nY)�%��ϗ6-X�egL{�Ւ�����Uw^�)�Z�c��-�R�2��[65�WW�[�� '� ��ejz��W9U�ڌbx�2ڍ���,�}���q��[����A�5Б���1ȑ `�v'@}�͊D�QU��N�É7G���z���s��\��� c�Mx��<_��'p�7*�<%x�%W|� |�OP�*q�'0/-�����C�EK�KD�%��?�� � �|�6�?8�M�|Y�M� ����}���(���%�E$W0м��o��J\0pe��e��`Nw�f�R W��` -e%GgKp�\:��PK
Y�n4y��O%org/farng/mp3/id3/FrameBodyAENC.class�T[S�@�V�Ĉ���U�V���Xik[�-xii�8�0}��`H�o}�Oj_`��t|��t7 ���dfϞ=���s6'����7�e�KE�/ "%<’�e�VD<��O��K�DH� n_��5�{�w���.���!!�w�KFD@T@���t�� h�x6�%� & ���US/(�rX�rae�TK4f�.����u� &N�3U)� ��LM/���_c<6��4C�W��Q�f��R�ъ��J�YZ�4C���E�U�V<GuK�k�$���',u�s�`��xO�Z���� �Z �b�1�q�lxm�;��R��L��iK5-F�!wl�6�#Aw��z�:f�m=k^��O����GS����N�y^�����w?>�s��#��]$ z����o؝(NC&yZ,P���Es�Π)�,���<-QsG��9�N�B��N�ҢQ�T/��7�LI0����#�G�T�V|+|�ڀ�ק%�jL��m��~��܁Z��Yj5����������`���8q`6�L�Ƥ*kݧ��Tg��Vx��>��Q��f���u�N��9� w/�}}�;�� �h$�"W|�S�ob�'������,a����<<�e����jhk�'�x^�+������d�|����7^�:F<�6���>W
��$[��H� ��"Әa�u3O�3^��:35��*�CU�0SE�7�\�p +���k�ML�� ��.Bt[qJ�`�q_��]���BFn�a��A�2��[�P���pF�a�9� �PK
Y�n4�� L%org/farng/mp3/id3/FrameBodyAPIC.class�T[S�@�V
IC�n"" *��T��-���P���K �&�4e�'���32���r�MJʥ��̞�s���sv����_�,���;�˼� ��)�c�2b2��x*Kby&Ṅ
z1'㥰�"�"~����`�E䍄��$$�)6)a��kŴLw��C��LZ� �ྞ����O�h�+1�,Č ��Y�.ǷSk���zH��]�1��r�З�@��~ƴ�j�r<�g��Yb���~�g״��� o z��M�j�1�8��~U]p{������U$Aǥ
�r�}�9}|�Zek��ݴYuU��X�ql����V�.p2ߣ��8v�@�T���p&�Y��W�٩�fޭ9��v_(+H&�KU�qOE��%�J���E�]�N���¶
�*>b�@�xg�ו�7�Y+�1��~�Њ(}G�.��5$��Z��eNٴ��
�;C�x M�N�q�����+-D|��:4漣���N0p6L��`p�.
��CZ2 YZ<��o7���+�{���7H0�f�E|�Ov孇�-��vC|��/�V*����0���ɮ QfJԥ��Y�5��A������d�cAk���+w >2�x7|���Mn ����O ғʹ�� tE� �h姚�$:���sA�h'���s�&�yF��`x4�YeT�-�{|�8��Q��ut�iQ������f����2���S�/����S��u������D�t3r��\}Z7#uh��1�B���� �R��9�#��P���iR�'8�9Mi�6w�"�PK
Y�n4 �X^� %org/farng/mp3/id3/FrameBodyASPI.class�U]Wg~�l�H�P�(��Z]0U��ET@��(h����K��&��fAbm����w���ƛ^����S{���+�mg6KA�svf�y�뙝�����kN�I�q����&�LƘ\���&�Q zW�K��j�0ǵZq�US1L�q#�v>�D��-&�㘉��"[~��,�Ϙ�q�;,��ۻL>g�/��cb�0CA ��ϴ-��\^@�7��t�m��DN Q4<cRZ%oQ��y�p�2iZE��[V��M��.(zߌ@x�.J�c�햲 �k��g0k��Q��v�6��� �u����\��}�ldM;{Ӱ�ve�P���Y��mb|� ��CQ��$�\QZ��`JW`���P6(g�sM�4$#���H���|�d����������M�Uv�A�����<tMO��v�*N@Wч�� �~&LNBư����L������T��F]����خ'�S�t ��F}�&�E��5���4�����4��e����I�XVQ9�nms�Z6�f�Q�49^q���?[��T<���
�}���x4*Is��j��u���i���:+���ގ.-,H
q�X�2��LVT ��g�ᑊ��X��L��c���3�v����3��<�|�i.�g}hrS� �4;���+���1�� eے��U�vh�G�V�d���p]�V�*+�ow���q�N}���#�y���]��zv�M��'Nj��R~��=�}�͏�f��5d��pi���T�6Uc �!]�خ��]n����#=� R�_q���}M���Z�cB/}���9��/I!^a�g���'!x݉�K�4��C�U��x�PZy�I�I�I����N~��"~-�YE썎�̯��-lA'߈x��GؔxtK��A�%~u���],u�����a�9Y��(i�B��oHl�$�#@9�{�LɆ�{�D�� � �<Ŷ�^*��A�D��F'SI�f�^x��������7J�D�l�[�h{�ۄ1Դi�}�YGr���;r���M w��֗h���XŞW���7��a��}��ʊ� S.���#.SR�gh�{�����(V��!���$m#�~N�T��]۩Y��f� �q�%̮�`�����JiutS�H=�rx��$+�d�C�^����_h��:�E!>��Pr��42�4��"ͤRuS�����>�}�n�����”� �PK
Y�n4?ǽF�*%org/farng/mp3/id3/FrameBodyCOMM.class�U[s�F�6`K��q�8'Mcl�5��N�l7�`�1uK� e@b��$}��C�3�L'��Q����՚8h�sv��}��������X�K ��ɇ-O|&!����/Dl���Y�;|��'�K l�x�m��Ž��W�^� � 8�p�|��%\á�# �Q𭄛� �a�i��S���r���5��R�C�k�e��VF5ku�њz֮���[��d ��Mmh�;r�2��g��o(��i��5�f7��U���3��v_W��k�V[��� � ��:�^���U�� s��� ����(�$� �,-�k��uSwfH�@��f����3�b%�K�����ڮU�k���U��LIc2@��� ��A�^u fۍ�>��T ', ���o\����#~bG��P�k��3�㸏�8~�� 'O�a~r)۩��L�;�{/�ű�5^��ʽ*jx̠�w���H�7��iVt��~Y�Z�l����$���Ġ� ��4%�i����5�f�}hG�o��p��?S5GlWڮ�U��N�dc����y�`�� ���։�0k%�������i�V�Q#��bXi��汢��ўcƐ|/�]9˦��Z-�"��9��~"ޢ�{GTt�~K�*���Z�C]=�#�w �U���;Đ�<�����W<� �~����?I0���x�f��2�S��_��?
�2.�L��=\�����X���9E����T����q�3��(١�2 s�� ��I���|���Rd)§�z��.f� ���o��!�ɉ�8=�P���K(�]��b�����`�"Q�!)_��%��D��L��]\�s? �@�`#�a��L�JlT�~�Jl\��E�������#<� ��,=1���?<X��%Gz�(u��e9��.hv�, �=,��eY��?�Y�c=ܢ���PK
Y�n4�%��%org/farng/mp3/id3/FrameBodyCOMR.class�T[S#U���a2��p�Ȯ ��,�;�+ �F�p�z��0�̤&���_�%)������_Q����ˤ�������Ͽ��cX
�-q�-� �*�=sx_Ɗ�U�x*㙌e��HaRƺ�Al�# �� 3�H��c!�D|�ed�%!+a[�]|*� �
f����`V�}��L� ��U�2ݧ ��}�@�.r���c%ñʱj-3��ئcTy�.�&�������#�؈U �?i�W����T{�^�}�i�v �hW�
^�o��E�l�x�5m�.!/�s��2wSEn�f���Dx��:�L��w�@L�����:w���/�i��x��8^��?q� �` �0ڳ�8u�@}��K|Šn;f��a��Q1��X!.i[�Qp���4q;�`�c^���ds���gK�.�TD��u^/8��/�ضYp�3�̆�;�Q3�>TO�e[��Xm������.�h�J�Q�QGY�2�Tb�a�+�
G w.k2�/����+�m�Q=��s�~�1j�(ߪ����F�7�ըTrܩ����Ѝ3�ݨ�Nh��kp�?k�c��������/U�X;��50�?^���;s��vg�a����u,�!g��a�Zȫ�xc{�2L��'��芉>w��|e���d��,=�r�pm�����4hZc�{Z���A:4�[�� C�8d�j�"� WmXߕ?�d|:��F*�vg�˽��ࣝ�ȩ����psv� ���h�R�!��x�����ѳ/~2�x-�'n�(#:i����8�k�E`(m�VOmˋ�B�P�hg�[l��&-xD^��p(�QE`&;�`hȣjH��HH��hh�h���!<N�#R<��&n�E%I#F�'XjG�JwD�hwґ&�2 �Bc����-L��Ɂ&�H�
}6�j�������ܵ$<3ϳj�?0���ۘ �%�� ����݂�@VN"g���-�k�u�f�Ԃ�3�yMn፮d�+!%�R�+"F=όt��ym�����_PK
Y�n4�����l$org/farng/mp3/id3/FrameBodyCRM.class�S[OA��^vY��" P�^�U�Wm�$M@ �Ӱ;m��f���ɟ�/m"���e��]Z��dΜ9�w�7s������%l+H`V,s2�� %#-##�Y
d��XvI�b�X�HX��S0��?��L�V$<��� �fٖ�NI�?D7�$S;�[�KԵ�z���-3�o���
�����]�tj焞Q�B9��s-��z��cA`'B�����6�j�0X��mU��K��b��g9v]�K ����+������\��T�fv���>�1�E�H�_g�im��ގU�T��X8=�sU��5A�&���� ڲ �Q�9eR�W㓊u�$��)��JBB�?��7o�V� �U��R���u�~��_�( 0�N+�C�V-�r!BtR�&��o�˻.mX_Y�N0y{_ R7���R�+n�Ζ�h�>�-G0}5A�>��<��0���{��=�����o��波.���qZ�1�o��Ǎ���b�<�M=�N��d hA�C�3x��7�vy����� 0Ϳ��O3�����p˴@~� ���?�d[�Ӊ?�s� �혠g�H��hF�-�&��M�3�3 N"̩�ΐ̄��#�x��S\rP#�τ��s�G-�hJ��&Tn����i!Aႚ�{��&b��p!BE�x�~��,��9��H �Mh�k;CGZ��a��PK
Y�n4�LP�%org/farng/mp3/id3/FrameBodyENCR.class�TkS�@=�@b���h�V�/�GZ�}am�GK�`�q��HV� ��~�Oj��L���?���$�Fafo��s9����?�E�0�|�1/�!D,
P$�T�3��$ &ABT�s��� ���?��Z� 2�<_�V�V��0��������U��pd���fj�`*�6��r�ZFA)�c��ŔMK-Ѥ�U72k;q�
���SU)� �k[�Q�'�&yi�+馲��YJ��R�ԋԡJgyZ�uӨH
X#�,P;�Q��uj�#���jg�1�B�7 H7C����4o����#��e���`���&Sߢ�����VKf����9Y�)�|`�6��Uu�_Wm5��'�#yrx���.~�§ ˜�3_��"��"P�_��̭�㻘�I��G��n�6��X�Ad�%����9)PkS?�Z��� ����c',K����iS�`�o�o#�R�vj=v�Ԁ�]�$�mX�`�z��q�umO-\�,�2ik��8��f[8�ʎ sX���g�EUv�Z.S�=̷�ޭ-�ܴ�y�;
�1f����A ��{f��s7/�{}�w���r�P �Td��a�#��_[GY��"a����r���+�hc_ ����Y�� �����G���|Q��@n������q֐SC^kɡ2b����r��� ?�iOj���I�!��x k����B �?=��z�~�;�7���Fː�Rb�z.��v�!Ҹ�evB��D�!���:�j�g�@N�����`N�b�+��PK
Y�n4
�䑕�%org/farng/mp3/id3/FrameBodyEQU2.class�UmS�F~.ؖ�(/��@ 4i6�-n�6�iq�ĭy &�#ƖTY��[R�Ş�g2����$�<����>���ޞ����� C�<VĐ��O��H�>��_�᱄U
Vd<�K��T̾��%���Kx&a]Ɔ�qdl*�s E�(�7�Up%� �- �vO,��2�� �g���%ǫe� Ϯen.k��l�3<�g/^��
���/��F�n��{�][-��jV5���3l�i�U���,Xu�*����-�nJؕ���F��E�۾udq�a\_��A&���@L�¹l���\�����~��9<�U�d5}��(P����:uC�����c2��Ο�\��*��Td�,0L^$�o � Q�7��߫�`IEE ?�G����� �`�߮�φ����� �ϥ+�ۭ�!�
�+n��]������v�Ld���So5�ܚy�j� :?㗫9�����-�U��g����m���}�5,[P�U�&l」�.���æ�U���;]���z�W��������Q��}�v��������B$���<�4幝{ܠ�K��mq�����V�X�"�N�i��A�����,����yK_,Ht���l���e����;���p���z��=���xs��$���4>��(IF2������H��=@"����@�0�g���)m��Xe��x�,4iI�ىX��t�
��ȵ���H�]�#�"R�Oc)
u���;](��kj7Rm�$�ƭ�����dd��6n����a�1�� C=��y�B$H>JiZ�el���6�`�q,�� ���4e:���������~��T/q3��tE�u�^3��[Ѥfi��XE�:x���j�^z�V�f3a�PK
Y�n4g!K%%org/farng/mp3/id3/FrameBodyEQUA.class�Q]KA=��ڦ���[�F.�X�D)�8�����R?�'����Qь�=(8��p�=s�ܟߏ/��АQ�PC6���(�4�57��� j���{�f�f� �ր��r����P��y�{�S�)t&db�{c�-
������\��y����&T2=����Z
I�P$��v�p��^ ���Y@���[��� 5��xh �cDC����c�5��O�#�dvE���PO`n"�P�/����Np�͌��+s�˥.ΐ�3P+��Q����D�xy2_TyU�!"7�(_.��R�����j�?}����8�8؁�PK
Y�n4G� �m|%org/farng/mp3/id3/FrameBodyETCO.class�T]S�F=lKVD���|!�8�۴�4 �85����Mۙ�Z;�`I# ����Ӿ�3�L'��Q��J�M�S왻��s��س�Ͽ� �~Q����|"㑄��>U�1>�0�K�BAe|)�5��.fOd|%>�J�Z�3 �26LaK¶���l)��s|!fea^J�FB� �IJ-�)���� �阌�^q�V�I=��o���e�%��Y�1O�k��u�N��bYL��[zB�ߧ��7 �锬#��w ��cw$�H�%o1�l2۷���������g٭u�ê��qS��25��s�$�(�����÷��W���"�%a�5��2>m���㵩OpmH\q�@���*rx�����G/7�"��h���T��, �`�l��U|�n����ޢ>%�?l�f�����g.�>3��{�>d� �y�Cy+�k�.�T����dQQ�`�R�����f��7�؆�R�#^��I� VU������B��q��=���[��G8�d_B��@.K��zd�5�:�ɍ���0�b�K1��J�� �י�9{��HQ�e6����入H+Bо�?�tk��8���P�i~ �l�� �O�ߓ��™�����3�0W9ݞ���O���E�_D�%no� >>&�.ȟ!@l߉�5\� ed��2ܿ�/#��;`N��X����]$�rk!�4��Ǚ��t̩�>�r�Yq��}��#�q���gzH׻P��T#�8\�#�8L���]p�=&���3��0 �cx
�~��E^X��� M Y&w{��k7]L�%z��kI]̮%s��s�Y^�G�| ��.!F\3B�1A`��ɺ�uq���X��/Ѧ��PK
Y�n4,Nc�+x%org/farng/mp3/id3/FrameBodyGEOB.class�T]S�@= ��!�FDQQ�ЂQ�7J�h�R����)�K �&�$e�'���32���r����@Gmg�v�=�ܽw����?��c�����
"���*�d$dܗ�@�C�x$���Hx�`�2�]�E�kI�3� cY8�V\ª����®Ix�п`ٖ��ЫO�g��8E�pS_wܒ�c�vɨT�ULk�Y�I���"�M� �\�5�L�ln�w-�4�?��IA�È�oM��T� �ykV��J�s�W}˱= /%�=�r��Z���~Z]pK'����i$�¥������ C��V�n��ny��k�.�W j��Sv�)�R���>��*֑a�fҙ�xn�J��E=6��a�؉Γ�Y�je����0�� L��b�����2��t%k;;����N��x��*�S���~�� ��ڨU�����>e�*uBT7~T��&�����_D�cl���w+�-j\�a�/4Ѱe�5���/��d����;U�@,o{�k��jbo���W:�%���i{�,[ŜY���v{���у����2��2���]nR��R�<�m�O����j��Ğ��s^�'�Nk��0��\Z��s�ρ!~�3�{=jNf3�* ��3���K�u�v��2�}��� �Ͱ���x=��f|}�'{O�cZ�"�+ �Չ�I3��g�VѶ�$%R#�TJ �c ���)r S�� ��z�^&�x�"=�&B(�@Q�֡�̷&&��L610�o`H;[ǹX�:·�fZ �Rł�;�p^�i`������פF[�smm.�5��+� O�?PK
Y�n4 ���q�%org/farng/mp3/id3/FrameBodyGRID.class�T[s�F�_��"\��$4�/8�q�-�6�I��$��)�^F�7�[��rJ���C�b�43 O}���I�C� ����=�w�wv�����~ `�h��%
*>�p�T|��S q|��s��e޹��K :�T<��+�|��
[E�Vy()x�`MC���FAY�e|��; )�+�(x$�oٖ�@ ���
DW��XHW�i왮�4ڝ�a5
ƚk�e�i�o�Kˌ����0�M�el�s-��\|^d���e9Ɩi7��J�.��5�%}���e]v<˱�
6l
Lw���:���A��HL�5�<�OR�gi�ܐ�g�Y��MgN�P)��o6#.N�� ��r�н�f텬{��鸎9 �|��'��}EsCI����O2#C�PIv��J�J�g��Ƃ�|�c9��qQ������A��C�x��.�lUud�c뙎�� �� oߞ��ce��^��#ݶe��l�^CǏ�I��)܍^�&�5�lT���~e��K�p�<V\�<ض~�����b铈�Z�sͺW.��Fp� �n+o�:K`��e{�lY��y�������2� �W&p{BG� `>+�J�j�j�ɷ&��I6�jt��f�G/3nv�����>�J#�^=�[>ūzΰ�A�g�Dr�O0���!>z\8r� �˙]��g��A�q�V�i4Dz��|�o�����gs��? �y��y���D$�G4��"^�2���<Mc�dj2 ��T"N����<�p��id�T)J��sa�T��m�\�%����x�xj�
wH}�X 7�W8���S�>fh��q��D��3�.�����԰���0�F_�� J���ǘL��j"2��}*����Xt��U��P�B� �PK
Y�n4�@RK%%org/farng/mp3/id3/FrameBodyIPLS.class�Q]KA=�ךi����A�� �h}��`` =�����(��|
�͈؃�3p� ��3g�����P�Q�*�k(�Q� � % e���L\čj� q�;��԰��5v�]� &s�ch{��w�[OV����I��h_X,9���C�`FC��Q�F��6Ƕdꈐq��E;*T���/<��
�ڂ���Ou����,�J�>�#��B�Q�u�c��7�SW���[�눛^$B�/Z����
Np�Ɍ���+ec���.N��3P+��1#o�����d����\DLn U;�#6[dW�9M՞�D�#���ao PK
Y�n4�,^��y%org/farng/mp3/id3/FrameBodyLINK.class�T]S�@=KKSb_
"�(-��"��):�ch��$�60�?I_��qx�G9�MJ[��3{��=�ܻ�w����?��IFbb��1)�!�˜C�S1<�0#!!CF,���Ί��{)�W›��Z��y�� ፌn,Jx+�W�w�B �m�� ������cr��h�)d��`g��|B�̄�*G|�1�����y�����C��q ����ˊ�T���m��-e2�XLY9����� ϻ�c%,KXa��rw�4-�h䒆k0tE'��3t7�L��$��C7��Z/0��b�������!ϸi��*��#1$�=v�W�����4C����f"�*#�L�Q�: \��XW���D!!q��?|Ě�q�
/�`Dx�e��|M�W���k��Sn���u��-l(���v+q�8���#�6\n
��]h;�w^�1 ��H �눥�[02��L��T� �-�oVۃa貀n�9��5�u��F�8��(-����ons求nО[�5�X�N�Φ�6�yn{�F}��?�rC4�:�6k��{��ϼ��Z�!~��*w}qf�[���1D��>�� &^ �4� ��6��`�<�?��U4���e4�⃕���������͓� M��q"�$8=M��C�1C"E����*9�yx5TB�-?+�#���tQB3L�x]��F*��*�T�*Ѫ�tEe� �^�T���X �ɐl�����1Q=�Y4{܉��=5 ��YBͺ���2z�I�*�M���PK
Y�n4�*�K�%org/farng/mp3/id3/FrameBodyMCDI.class��ok�PƟ��b��l�9�ku�4U�ˉ�?
W��ms[�h��\��S��~(�ޤk7W0�s�y~�9瞛�~��
/t���
��ա�
�����X��}�/i(kxB�{�=.�����L�w����á3��7t�A��n�9 �5|wz�l����>5Ժgu.�:�w�S����~�E� ����~�@pߋ4<�p@�>d��2O�g!��UI<FT�<!��������Y��E�G€�u�ɔf�ԥ�+�R���t� <ǡ Ey�(��ͣ�x6���ÐN��W�e�{T0WU��Q%���$��D����E�U�-p�ͫ9��3!(�4h{:�n��1/W]��2�����3Z�g{�K��Y��Q�`{E��M�s���F��v6��Us��j�
(C��Ɂ�˔qC�r%r��3��1���\6���L��3���ݹ��t�*�6��Kd�TQj��7w�cJ2ل1�vR�Ė�%���M��ܷ�����]�S���G3=C�k�!�PK
Y�n4�c��K%%org/farng/mp3/id3/FrameBodyMLLT.class�Q]KA=�ךi����A�� �h}���C&�8��:�~�;J�,���z�GE3"��� �;�=�̙s~?��q����
�
i3��@CIC� u�=.� �F�K���mFpjX~�z�� �� �1�.����'��4:11 ڽ� �G� �0Ѳ�'�dT��RsL%ӳ��4�HcG�
���ŋ&A����퀅Tp�{x�@��ΐG�@�Ї4�=_�=�<������Mf��!����:����E�1�\� .6���p�l���� Rrj%@�2f� 3�9Y���U�]���� �j�s�fK�쪽"���3���s$��9�m��PK
Y�n4�z,�%org/farng/mp3/id3/FrameBodyOWNE.class�SO�P=� :�`P`�� �6��e2�`�,���h�dk��#��X"��e|� d�����s���n������2�x!��f$��Ƭ��$#HE��\�dD� ����2bX���1(�C�.IX&�Y3-�['��}��g�`���T�C�X�V�h��ѶZcY�8+|�ͭ
��>�'T�R���Ӫ�>� O��w�־R˰k��\wˬ2?.�NuV�L�r%������¼��,�<4�C0�&ok�\�5ꅃc�{ۦ�E�O��K�ة��Y�mp0A��=�@�D��5^@�1u�(R� ؤKņ�Q��g�U�̉�����Tԛs��"����F�9_�{�C�"�z�@��t�ۨVK̩�/�� ��{i�����Y[�`�ۿէ@l��Cu/��9Y�� ]^s�pu�S7�� ��F�V�a�;�a�4�ʄլ0�����f�;�1�d�Q�z�!/�
�יe���b����5��"w��k)F:h'�1��8��"v�����p۝j���"�V��_NJ���j��Z�%t�H
zJ ] \k��3i�7�y�􎆹mK�sa!o��}��9�3��څg���� HkUR���a<�j'˫����e%n���܋�����,+�&��*+�M s'H�PK
Y�n4�u��%org/farng/mp3/id3/FrameBodyPCNT.class�R�n�@=���4�)�RJ�$#�X�T��ҋ ��Ǎ�5[%vdo"�+xI$*�|b�v��F–f�>g�̞��??x�W:Jx��F5l�����"�*<Σ�቎���g���p���i�~B�i�#�2�~�Zg4�\k8jY�iY��w���}�ۍ��G�6��9�P���'�9�p϶Y���h�6 �{��m &A�e��0O�3��5�k ���Y�sw �!��Q��٢�CQ�
�*� ��?��*^YTv}�U�QD�"^�"�TXׯ�G�V,~8�YpBN��e�+�(�����"����&c���ڢ�5y=�T.��͝!�]�x:�N��W8;����M�|A�_�`ۼ��/1-^k��C�����p��F�sz�b1�GK���5o���KPOD�T���*3�9ۘ��
^M`)�ʢFs��7�*��2WTy�H_ sZ�!;EnA�H E^O��ܜB�9k�T)ܑ ���������F�{D���|� d#�ܸ@��Hk3�S܊�PK
Y�n4�5#Z$org/farng/mp3/id3/FrameBodyPIC.class�TkSQ~N���+�F���tkK��MD�B%�f�>�H��.�,����T_`&g?�����E@e f��y��y/�<�?�p��ĢX�ɸ/�P��x(cIF\�#���X�Jx&Ṃe�vY�_�_�$�V��y+aE�8VL���F0�ҴL�5A��LX���`N��N�أ�U2*ոa�Fʡ���G�����Df�P�L9l�uL�����%!�S�1mc�ZE��R(�Z-e���MY;,��k�VMBJ�;�P��IV+8��'��_�.���9`X�\D q\��,��3�C0� ԫ[���f̚�b
�IJα9v�N�Y��ɼF'_��e�V��t���t�v*��۬Yp���U�a��LR���`V�6 F��K0vޕ��퉾���|W���
!��^���e��m�+��Y����*��V���q ɯ�Y/�s̩�uYQp�.���Yqz�c~c&���UuaX٭�-��d�`��&�z���V[93g��Z6�9Z������e<utO�A.>��B���0��0�'�:��^*��揓V������0���y�k�%ԃ�}i~��Q�xљ��zz8�x{4�����D<���Qn ���&�O �ӭ��+� DcM\��gZ�$�1��3A�j}��'��op�&-zFΩSgp"�YeB�;gy�q�UQ�2��1s� ���?��Va�yx���ue�����Q 6��`�G mc�Z��c��M k# �Fиi�O �>�,\��c��Z_��k ���x^����oxH�ۡ���4q�o��PK
Y�n4�c> %org/farng/mp3/id3/FrameBodyPOPM.class�TYS�P=W��4n��ZE�.i��E��K�ť���ɕƁ� �ѷ���f�L����N�M��2
3��w�s�w�������yd% c�s"�%<�*⅀�BX��(��xi����VBfE��q�ϯ��>H�#��$`U� ��$ �.`� �b��� �e �k�N &�i�.�ǚm�R9�zBݴ�MZ������2GF�'ک�5;pl�,,'�xeį�����UZ��i��i�˔6����Y�)�3AW�:%�(f��
� �[�snW�0��Et2\J��c��T˻G'4懶�#c����a]�1��2R�bg��9L�ul�'��9_ �5�j:\�������elc\�v zn��`��T�z|̵B�t/���7Q�d�#F�޼�݆���Sة�j� Ss��1-���{�;���7�3���Yp�s����<NV� �H=���!��E�U[�;�����5����>��k�Dn
��S�h��Є�k���m\;u0[x�"�na��沂Ѥ\�m��L�А�j�޻Z�µr���=���'�':֕�O"c5�M0s��+�:��D�~Z4OŲ����0�O�/ GY��"a�=^��xy�/+hc ����Q���E�Ikg1��q%0SC0��_ ��Cp3��H�
�L�+ �$W��y� ޕU&��0�w #��E�ە"{�|W$���A�D�O��L�� t���Vzj�נ�PC�Gb���69!�@8���a�%�9�=X�c/�)"˞��[�PK
Y�n4J��WU:%org/farng/mp3/id3/FrameBodyPOSS.class�RmOA~�^�r*"�H�(�V8��cL�J�)B,!��mo9��^r��W�&���Q��kiAH�Mv27�3�������7��0���| hxh`�<���@Kʷ2(�(Ȣ��':� �Pֱ��&}�}.����.��!p��U"�ޣ���^X��S�7"�j�oo5k
���_������<��Q� ��v����g|��f����x�����D�a��{�E�V���CeɆ����b&í�k�:�ES�V�*���X�!��7�ȣ�`b��z,�BV�x��� �J�T=�]�z��+�������������b�g�o�Pq_g�o �kI�4��au�b�`�)_��XD�-j+G�8���j[�y.&��G�Ý��,_���$�Ԭ�2cr9������;��듓7�E�:3W�j*n�0d�� �OP�_h�gZ7�+�J(��nB}� �����&�%ҦK]�� @�g�a#�HR����0~�_��4i �^2S�Кs]�O$��O�i��ސ:+*�L?��P�'0z�;���Ŝ���|�T��4e��5��QD: ΗN�m�)���LH/�4u�ݔ^/?�PK
Y�n4��I�
0%org/farng/mp3/id3/FrameBodyPRIV.class�T]S�P=W�`�U�b��jK5��Vj��V�E��8����ā� ��>�'�/0Sg:>�Guzo>F��.w��={� ���`�"ư���3��<�E��ܼ�fI�K�D�X�5�o�y+`��WD����
x/bk<��š�u�+��۫>%rH�_7s� ��M���5�(��r\�squ��J4i�.v�R��=��O�sM-j �o[�QX>N�̄��MuO3rf)���JeK/R�)n~�Ҳ��FE���-�����N����t'I0�D�5�
�74[#(��P�G�J�8I���5l=�S� �(���:ҡo^#Xh@��99�Y;�Wl 0��&�`$|D�@ڵ�sͦS\\�'LJ�CX�g� �x'��bɳ|��t�7y�C�6v�� ��J��…g$�"L�^��鴨������b�Z%�`}�87&� �o�&/l��,�b_�N�t��;V�@iG$N*��e��F�|�gS��E*�X���RƹV�sZ�3�i';�8����vnF0�a�-���؝{
M�L�mig�qj�25{�F�0޸�~K6h�n�@v��^�n�o��W��o���?` �� �W�ه�4�<a>���r<=�et���j�j�y�I�� qzT�Ū�G��sM�$+��!������Lq���c��p[oU?�rO1㥇�2/d��A���\�8�r���z�U" �%�L��Q ��TEd�WŽK���@ �,R�\/E��_k#s ��F|N#�n?�����^b�H��0\�;���@ ����PK
Y�n4�ue���%org/farng/mp3/id3/FrameBodyRBUF.class�SkOA=CKwY�kATRa��TE-j�ҤIhR�m��uH��l�*�BI��(��������=��s����~���w&0/��*)X��c �XT���Р"�"#_eU,+X�0�U�
�hŪ��
���e�-A�H!���lJ�`�=�n:����f+g2;g}�I �}�[�\�Kv�(�ìQ>��-�y���^s�V��v�5h@ԶNj�ř�<S�`�Nyɦ.g�>���k4,���}���#mʏZ;�CZ�e��I���\^ ���=�Mx�eN9���$^���լRۦv��:^�ذ�c��נ�+S^��8�PMq/�MOx@O"�)q<�u�嫇�����������e���WYu#�7����Ȅ�._�/��g&�M�f��}��Kr�k]���b`���p�(��V��B�g��q�L0�ܑ�O�)��qs֗ބ�(� �|j����$�[�u�}�wS�׍F�}���\W �����%@�%�]�����?��$|/�u�H�d;����#<�~��L��s�+���� ]9�Z��` �4�͆X�Д(/ MFBZP({���38�� f��"��wLO~�q��M� W�f�1T�c���0"�ъ��; #��J��j� PK
Y�n4hz<L%%org/farng/mp3/id3/FrameBodyRVA2.class�Q]KA=��ڦ���[�F.���Ї�������(��|
�̈́؃�3p� ��3g���y�PÑ 9�5��(��@CQC� u�=.��f�G���mFpjv�б�4�� ��}H]v��o�V��й��i���@tx$�m�y�9 �f�3�3jM�dz!��fi�P&8�>{�4�P0���
�{w�����4�1T"�� �F�1��n0a�|��5�zHp�E=���h�#ҁh�6f���b�������/Wz8AJ�@��r@F]��2������ʻ�r1��T�|��|I�Y���4U����K!�@�kɑ�� ~PK
Y�n4�?�r%org/farng/mp3/id3/FrameBodyRVAD.class�U�SW>Kv��͆0�i��5$HԨm�DDC�TD�Z[��VC7 �}�3}uƗ���N_�Pgj��Z����L_�=g� �c3#3�{�{~�s������ ��  ���\"�`��#��sW� ����k\���7 .��Od���� z�E 4�%�A���`��VD�9�-m��z���p|�K9����ɁTaڝ�V���42=��f�k3leJ��h�;����
.�v}M1XQ3�uV���xlxm��=���u��+;B�빮��%���^��?W�3�g�F!���Bj��N��tj��VY��ߘ[��<M�x&3��w���mm]K��ԜVʗW'r9V�N�Ef���ϱ���KUn�@y���cY�N���}5 �4�R�4"ʮ���kSgw״"�&Xe�Zev�6˙3z+� ��!If���ឡ�L�pR���m�aX�A�`��0�(A���Q�ci��'���$��p�m'}�T]�Tʆ��fhTo�p��%f����
�Ã��9���A}�R�&��G)ª%(�P�Hw9Pw�%����  ��$�$XS�<�U�}�P`�)0�9���c� �[1�T5 -gf'��ǚr���u�6�v�-�kE=?��í�ukh���a ��E��ش�<��}/[����X#�U*����gw�`��8�#��y�<�n��&�Q�@�"�T��� ��� ~>��� �w�fj�6'm��ͣ6�l>b�Q��ٜ���~��!��O����Lb �D(���'�I�O x D��G � �A7A����kG��t!?O$� ���$�?A9B�|!��Y ��^r�,�_d�\#[ޑe
���
�AP$�n
�t���]�c,+���kl^"J��|H*�����iU����W�Or�JU �c���}�Z Sxu/�R#��v��,(�[��\~��'k�Su^ 0g0�8���D������h�_9{��VN%!��+�,�!}���4d��𑡠!�}J�!�7���%��$7�x�R�;�L�^�����Bߍ�=[~aix8����LI#�f ����F��6�^��qj��3�ϤS|2��`ߵD��mz�4u�6�SI+�����V��X�;$mD�[L�a�7�����bq|�Xq���b�-�ڊ�n��%�o�۷��scн1�6J�-���b_[���-��#�n���w��� #��B�0r�0�{��6 ��.q��x�y��3��)Dp~��=�D{�k���x��@�V�䰽;���E��w؂Ö6ޛ��o|6���O,P@��.Z��5"z&]��E��7��y�I>�כx`$���>z�y��+��p~��N��l��J�;��wx������[y v�G����w�����i/����8����-��G���H�������q���PK
Y�n4�����%org/farng/mp3/id3/FrameBodyRVRB.class���NA��#� �"Z[ŏ��TZ��CTZZ /vĵ�K���C�����7�ԤЇj:3� ��tIf��?g�9s����/Kx�` ���@ƜUA�
n!-##cA¢�>,���x(㑌e9�e<ầ2�Ix� ��_JX��Jлj��� �����-�̪%ˮe4۬e�\��sق��i����{��
W��;;y��RKGک�5�lY3u��V��f�`S�W6Ϫ���ٔ�J���F��NM�80�M�T����zDZ ��BoR礱U9�U�d4�n�_�D���ڕ�=p����в��m k��<e٨2鰇y��dyz:�����,�+Z/Ąw\�T�h�O"�����J���O^���.�����/Hn۴n�]����q{ �dO̟�`!���hm���Ǔz����%j֜Cބ�
xG0��� P�+�*M�֪Nq#w�ܖ�'�祸՞ ��`��y��V��,�4�7_#f/��� �[$��z}ԺN\��,�;lSM'����� �Ѡ��ku� s5Q��~��s�0���c�_/�q��3b;a{$��!�<��a?�δ�ӱ�<�7De��N�.�o!r�<� ��K��ZPE9��}� ���/������q�����|����x���3�*RDƙ $\͔hM�Y���Wa�kP(1�]Ømw�++�?�/��O�X#uI
��h�b��@�� АGn=� PK
Y�n4e�=��%org/farng/mp3/id3/FrameBodySEEK.class���o�@ǿǯB�2�nN@�+�Y#/gL�B�Ȇq��^z�.�%�A��7���?�?�x�v�9���}?�<�{�~��� �K��Q�V��HbGFO�bE��Y�$<���31ߕ�\� ��۵�[��Z�B�zU�]���64|�ҜqK�͖�� ����o����C��� cjh��}6\�s�{DC]n�t�l� $�IP
e�I]fm�l��(���N�o��!A1�l2��/�u��qE��cnڙ8��pȉ*�'tƪg�EPZ��]F-�]�<�h�Q3�}�����'��ZZT�d���߱g��R�b_���<o�FP�Ok���Q?`�1`����'(_5P�-�EP��@w���6�)�19ހ�-��z���V",���u7��\ȧ|j��k
�/E1�c�g������{U��Ski 5�* _D\3������tc�#�\��
�H�XrCI\"y��@j��
VbXᨀ3����^�Bߌu9L֜C����U�9A��|��[R�~�-�osgB,6.�;W��w��� PK
Y�n4�[��d�%org/farng/mp3/id3/FrameBodySIGN.class�U[S�V�6�Q
!)�&$4�/�[��F��@�:�Ɣ֥7�>��ؒG��Ч��<�/�L����Q��J�{�\v����sV�����{�U��y(���*��P�u|���<�çl^Q�@�,�����9���aUA�-k*t<b�c�
6T\ŗ�)+�J��VPQ�D ��vl��@���$�ܦX2*�g�Lϱ
�N�`7��u�l˒�<��76W�2J�%^,���Y���3�i���FCv��vK�@�����tl*���J�s{��A��(�JMZ��XI�"��M����-=�#�l��b��l�Z�H�j[���<�c܈�Ӭ椑�%�)�:[���W쮯�m���)1�n%19�U:�%� ����ı��*nk�Ʒv��=�a����٧�_��;|�!�,�j<� 0}�����8�= �� �q��7�e�j6{�����Y������5���!rq��gT�����6�&�L�E���B�8�X�w}�l��G���c��壎)ow���I���o���i a����a�{��x�8�6C����4�D��;#ș�l"��w�V��-ev:�!����-B�F�\��9޴�F��Q�\�����飍���t�<-ѕQ�`�^4 ��
���7iw�fA�x��W`�b��1F ���16�ߊ�w0��sL��C$k�}��Е<M�mRb�l����\�t�Y�8�y�T�)`�1�)�N� ӓ�Ƶ\#`��1-^!@}�x3r�nj���fF�j}h����S��y�z����!G�+�w�#I�P�]��� �E��1��"�f6RI���k0�F�\��jMO$��-���t��y�D�x PK
Y�n4�0�tN?%org/farng/mp3/id3/FrameBodySYLT.class�W�{e~'3�3�NI ��m�4�R6�I���&�l�� �F��%T4��I2m2��Ζ.^�P�zo/�R/�T馐�ET�_@ԟ|�ϙ��l�%���s�����ܿɫ�}q�V�CE ����:X�@V���sL�Ll&&'X�'Uh(�e|��T4��<�J�)8%�*��|���Lf��#,�3/2���T<�O2yb �ħ�<%��*6��^�}ƛ����Y�Su��<��_ė�3L�2��i��*��)�:�� �X�<��*��o��wxz���˪���=���6-#/�9qL?�wls�+aZǍt���;�I�T���f���M��dר�3�IQxZ�' �Ne,۰�d1K3!&@����+�I���ۜ1Fm}&;�����i�v�1�~P��+����ÉLn�kB��M3��.3��5��g�X&]K$w�t$[�Q�� ���گ[���@*e�����{N� �м��xF�u�����$R2�.��KS���g֒\<M�� �ȑ{h��8K�Y1g��45t/���h�\�F^Y�;EO�=��p������=f���9���r�~���>M ������L��۫�#y y�.d= J�^���d7�X�6r9�HY>ct�θ���9��\��*Y)�~$�!�ark��԰ �PR�������E\����$�C떻�ן��#�'�}��ww���8�ݢ�9\�?��<�a�������w�
FN�E���i8��.�> ��U��E~/j�dz2.k�)h��X�pW5���Q��>z����s���xY������l6����H��G9[�u��aÞʤ��Ї�۬��V4�6s&;m�P��Ҭ�+�_�~�>15���h�-~'����?j���1���N�?k� �*�5 ��o���5LcF�q�6�M� ��8��s������E�2r�R��uB�6�I}�J��Vө}�S,�p풓�n)SɲP��7����ٺj].�AU�b_v��~/��� t�RjŒ��;�����Z�?mX����|U?�b�۷l���C@�K�Wv�����Xj�d�d9��]���zB6����!weԠ���ro�K?nȫ> ԇ׿ծ��H�>_� q�5�x͇@6��qrd���H|iw*�mc��tL���J��5�����p�[+![���CN�-;�U���_K*��.rG���ή��F����?5��� �wa}�����O?j�Η�v���qj����o���}4��F@42!2���9�!E}�w���I=��� #�Ӑ�?p:�ÚkC!)m,�<�sX�2�Tv�r��
���#�U:%��h$�p�9�2�>"�JXw s�~8Bӎ͊��7__T������^����i�Qo�x�x;����Ї'��~����h 7�H��aIB=������(��>���C8\c����=V�n��Ʀ��5����#��~�G$��ї�Z#e��<���L��ȋ��֗L�֑�߈������<����Y�6��Vcnh)#Q4Kh�u���R���5R_��@�m��=�ێ���9�[�����H 7uR�ld%:9�.T�>E����m�D6�H����C�Yl��� ��>B �A�� � z{]�3��7 �����[���$�w�}Mh7Wys��\�R��^)��5v̡�'C_!�L���u�V7H&*(k��+_0Y��3��l��v���������I��q}s���O��f%��S<�H�?^�6��YI��U��J�/H��~�Hȑ�����Rk@J�M2 e�������]�
�>�<k�*���'n�|хs�3�u�Ew���J��,E[�����|S���L|�l�4�d�Rv˱J�<��)�$"%l��h��F} �.��u�j]�S]��eT][jV�{<I�J^���J�^"���b$Jj�����ee�#D��KFX/�%�Rt(���s�9;( �<���NR��C��xDM�GJ� �_
�_�_���U���Xqd�T�w,V"�F�G߾��O�YV[��F'�o9��}d8�B e����Jb�|�yG���`=��S���8)���~���PK
Y�n4�J�_K%%org/farng/mp3/id3/FrameBodySYTC.class�Q]KA=��ڦ���[�F.�������:�~0;J�,���z�GE3"��� �;�=�̙s~?�Tp�CCF�c �$r:�8ѐ�P H�1��{��Y���C .ͦ�G�����r��Ŝ���m�>��{�ש�:R1 Z� �& AzDEá�`CF9A�,5'�ܶ��dj μQ-�$T(\�W_�p>�i�ۂ���ۀ� 5u�,4�J�1�C��ѧ�3�L�+ߤNE����QO`n#���@4���� ��f���+W
���K]\ !g�V D9 �.oY�����d���ẜCDn Q�^"�X�6�E9Mծ"��Ŗ��9�8ڃ�PK
Y�n4(=]t%org/farng/mp3/id3/FrameBodyTALB.class��]KA�ϴ�i�G�aB�E y�Eh$,AI���L������������ղ0p�2�y��33�o�NQ�@GIIYɶ�J;:vu��.����f4׾�������5�Q��N���c�y�{� EW�N�9����.�ب�:��;*�k�6 �.����Ll6��/B�:�9�E��D��e���;�4֕(�*���*���g�D�1�jG �M"K ���*A��$��Oj���V��!w���Ŝ�w��~(�u��3��QG������UmNA^c@�s��59�T�x������%hrz�z2��rr�R����TkY�cK��̚��Y�b�%�PK
Y�n4�'��]t%org/farng/mp3/id3/FrameBodyTBPM.class��]KA�ϸ�i�G�aB�E y�Eh$,EI��;.��.b����.��hf�, ����{�y�������#T��QTRR����¦�-��3.xxN��{��g3�}���9��pLw�4��4;>uY۳�z훫SE��v����9��� }.�Ȩ�:��[*l�m��,:|�"?}9�Q�=���Q!�:,�l&B>��'(������dWIFIV�V����Lp�L��Ч�pA�Ih���T�#(~�ĺ�NMP���c:�v�:?���n���A I�Lj$@ԑ���*/�DUS��P���. &'�lL[�_�&'�7*�Sh +�-5���5����%��̬Yn�E+$�#�PK
Y�n4�%m�^t%org/farng/mp3/id3/FrameBodyTCOM.class��]KA�ϸ�i�G�aB�E y�E�$,BI���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�;���������;�έ�����ڞ�<��o/%]�ڽ':��
�>��kGFU�׹��Q��i� �������d�{n��@E� k�а��!g>AI���� � )�R2R�"� Dp�&2��*�z B���d��p���P����}���������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4����^t%org/farng/mp3/id3/FrameBodyTCON.class��]KA�ϸ�i�G�aB�E y�E�$,HBI���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�;���������;�έ�����ڞ�<��o/%]�ڽ':��
�>��kGFU�׹��Q��i� �������d�{n��@E� k�а��!g>AI���� � )�R2R�"� Dp�&2��*�z B���d��p���P����}���������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n46�^t%org/farng/mp3/id3/FrameBodyTCOP.class��]KA�ϸ�i�G�aB�E y�E�$,FI���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�;���������;�έ�����ڞ�<��o/%]�ڽ':��
�>��kGFU�׹��Q��i� �������d�{n��@E� k�а��!g>AI���� � )�R2R�"� Dp�&2��*�z B���d��p���P����}���������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4�/Fp]t%org/farng/mp3/id3/FrameBodyTDAT.class��]KA�ϸ�i�G�aB�E y�Eh%,AI��;.��b����.��hf�, ����{�y������;�T��QTRR����¶��� �qqI����o3�C���9����ir�iv겶o?��[�sE��v����9�����Ȩ�:��;�پ���Yv�E~�f�g#�}/Ա��B�u��l� >�, (������d_IFIV�V�VD&8]&Z��h_,H6�7���|��X�?� j[Yޘ�ݣ�/��[\�Cy?�!)�I��:�Դ\�嗨jc
��^�������)b ?3�����F�x
md嶥񙿡ֲ�æd�5�ͳh��K� PK
Y�n4���ww�%org/farng/mp3/id3/FrameBodyTDEN.class�SkOQ=��] ��!��Y�*>PCbF>^��u �mv�J��D�g�q��m�M�d�sf��쟿?X�{��a
s
�Hb^�R��}>���
<V���� OTd�T���Cߪ���;����ʐ����aN�r=�8��c�Fɰ͒���(��Yu}c�D���C~#N�/�g;V�֣{�5>s�t�k����M�H�qu�&��:��g
�3�["��� �[x #z�S�A�EP�è�=�b�Y�7v�E-ز� �a������܆SsM"2 ���g���� ^�Cz�"W����85I6 �נzo���_o��7�2v�������oۼ!�V3x j�?�HXV�*b�a�1,w"����㵠��.T�׫s9 ����*��3b��.UqN�mV�u��mgnKN,���IӸ�3,t��V�5�m%:irq;����FC8f�mo C�������tYf�+� )0�pt��7D���-4�~���z���M���w��<z� ;!�-q���d���ДE2m�8)uh���=���& ;��X?�����c��#�Z
�(U�J��%}�⒮��o܉T�ԏVtz��L.����&��1@^vOS�$'R�?PK
Y�n4gw�M^t%org/farng/mp3/id3/FrameBodyTDLY.class��]KA�ϸ�i�G�aB�E y�Eh%,AI���˄�+��ؿ�+��~@?*�Y- �f�,�g�=3������4t���l()���cK�6A�{\�hF� ~�ی`���ch�9�;j��n�������O�����F��H��R�݊�{NdT�Y��� �l�m��, ;|�"?}5鳑����Q!�:LX6�p���r� RXQ��$�$+C�@{�D&8^&Z�h_,H6�7���|ů�X�ߩ j�[Yޘ�ݣ���[���~PCR>� ud�i���/Q���%��:� �� $S�~f��� ������mK �3M�e5�u��%3k��g�
���'PK
Y�n4�òw�%org/farng/mp3/id3/FrameBodyTDOR.class�SmO�P~.t��Ayy��݆T��/�aq ��ń���RKX������/,����e<���E�䞜{��9�s����_��^���x�œ�G*��W1��ty�O� �E�Ud�$}C�Y<U����зj;v��!��2$?��`�ӷ\�2��XF�Q2l�dlz�.ʮyV]��}#�czy됟p��K�َ����v�]�n}�V��i�0�n��D#�]�W�L�s�~KS8�}` �aD�wj3(���4`ջ�V�"K�������[�d0�y��t��pj�ID���V�,���K�bH��@�v=��&�d�T�����s��FTƧ���>r��6oH�� ނڟ�)�U���a��e@ ˝��}?�x-h#� ����\N�a�5����f�KU�~d�Un]��tۙ��K�ei�4��� ]�{�&����f�w[�N�\�N`E�i���Yu�[�P��x:��m.]�Y��4�_
L.��� �ed{ M�!@��Ⰶ�}�b=���8>�^$�NHzAK\ �7�D�914e�L�3NJ��(~O�t;�I�Na:����%���X�>f����B)JU��*wI�����8��w"�$����� 1S� d��D���s ���Ӕ&ɉ��PK
Y�n4F�z?w�%org/farng/mp3/id3/FrameBodyTDRC.class�SkOQ=��] ��!�P�m��R��<b�� /�˺��6� ��_h"��?�8wwK�6�&w2w�93wf��_�,�
���8�YOT$1�b�)��>�B^�
���`Q�g*�x�`IA��g�v��CB�}cH���`�շ\�2��XF�^4l�hlz�&J�yVY�]{'�#zi됟p��k�َ&���v�]�nm�Z��i�0�n�VE=�]�W�B�K�^KeS8�}` �aHϵk3(�*�4`�;�V�&"K�������[�d0�!y��t2��T]�� }-��Y $j9��xÐ^灘�ص�v��$��[P=�7k`Я�� �Q��k������ۼ.�V2xj�R$,�h1�0uǀ����~��j�BR�΁�ո��`sn��1�\�*;'��6+ܺ�Y�3w% '��KҤi\у�; ��M �i�Ś��4�����T�x�.�ⶶ��p�e�t����R�,3��i���\8:�� ��v�`?C� ��a ]�z��Z��q|�H������@ro���sbh��g���4SQ���v ㄝ�d����Kh���CL��!J-�R��p%��%}�⒮��܋T�ԏftz��L�/����z��G^vOS�''R�PK
Y�n4]vPw�%org/farng/mp3/id3/FrameBodyTDRL.class�SmO�P~.t��AyyP�nC�L��0��d��ń���RKX������/,����e<���E�䞜{��9�s����_��^���x�¼�G*�XP1��ty�K!/�%�Ud�,}C�Y<U����зf;v��!��2$?��`��+�g�s,��(�Y4�<^%�<�n�V�H��^��nq�} <۱����ۮ��ӭ��j����#���Ӛh���
�)x��o��l
'�l�1��Nm�AU� �z�܊�Bd {���?��b�A��� J'!��N�5��0��*�B�V3x�W � �٪]oǩI���3x��z��0���鸾/������Rn-������C��e�"ffn�J'b}�<^ �H�B�9p�:��`nͭ�s9#���Re��f�[W0��v涄�ĒzI�4�+z0�b��^��`!9m�Y �V��&�X�jo4�cV���0n�,�N�q۟��a��2 �� G�(yCd��|�G��8����@_��DO;~7�/� ����H�M6�{N MY"�挓R�f*�ߓ>�N`��S����qy -�=���88B��P�R������Q\�UB�C�;�J����NO����2{Z"�D�9���iJ��D��PK
Y�n4[�t�w�%org/farng/mp3/id3/FrameBodyTDTG.class�SmO�P~.t��Ayy��݆T��/�a���b���z�%�]�B�_��Hb��2��v �"[rO�=��s�9����/Kx�B�=y�OaN�I̫�B
��ϧP�~Q����*2X������,+XVPb�[�;xÐ��_��\S0��[�g��s,��(�Y26=^e�<��W߿��1��u���q� �%�l�
�zto��g�n}�V��i�0�n��D#�]�W�D�S�~KS8��o �aD�wj3(���$`ջ�V�"Kأ��ށ�[�d0�y<�t��pj�ID���V�4���s�`H��@�v=��&�d�T������s��FT�ǣ��>p��6oH�� ^�ڟ�)�U���a��a@ ˝��=?�x-h#� g���\N�a�5���Ōf�JU�c~h�Un]¬tۙ��K�ei�4��� ]�{�&����f�w[�N�\�N`E�i���Yu�[�P���x:��m*]�Y��4�_
L.��� �ed{ M�!@��Ⰶ�}�b=���8>�^$�NHzAK�#�;�D�14e�L�3NJ��(~G�t;�I�Na:����%���X�.f����B)JU��*wA�����8���"�$����� 1S�sdv�D���3 ���Ք&ɉ��PK
Y�n4�H^t%org/farng/mp3/id3/FrameBodyTENC.class��]KA�ϸ�i�G�aB�E y�E�(,HAI���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�;���������;�έ����ڞ�<��t.%]���':��
�>��kGFU�׹��Q��i� ����twj�q�=7Pq��B��YhX� �3����W{g�†�C))YZ"8Z��|�h=�O�pI�ih�C�w��GP�>�q�����N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4�^t%org/farng/mp3/id3/FrameBodyTEXT.class��]KA�ϴ�i�G�aB�E y�Eh(,AIt;��2����"���J�Џ�fV���8˼�w��||��8E%%E%�JJI���ձG��䂇W�Q�'�]{6#82���� �tG �� ��S��<��~�](�d��OtL�!��]�s�DFŘչg�Ra{n��gA��C����F!�D�c_G� �в��3��hԖ{��ĺ�%i%Z"8\��l�h>�O��d���w��GP�>�u󓚠�%�t��u~1������A �Lj�Aԑ���*'�DU�S��P����cMN Q?�bm��~���^/�L�-��ܶ� 6�7�ZV�ؒlN2�f�y-�@|PK
Y�n4��<I]t%org/farng/mp3/id3/FrameBodyTFLT.class��]KA�ϴ�i�G�aB�E y�Eh$,AI���L���;��������ղ0p�2�y��33�o�NQ�@GIIYɶ�J;:vu��.����f4ׁ���^�怆�kz��ɝ�� ��:����������SsH%w/BQ3fu�w�w�m�,��|�b?s3��H���t���\&,��8 �Fc�wi�+9P�U���U ��� Ζ��c$Bj��&��A�Q����}��'5A�o+��!w���Ŝ�w��~(�u��3��QG������UmNA^c@�s��59�T�x������%hrz�z2��rr�R����TkY�cK��̚��Y�b�%�PK
Y�n4�l$�]t%org/farng/mp3/id3/FrameBodyTIME.class��]KA�ϴ�i�G�aB�E y�Eh(,AI��;.��.b����.��hf�, ����{�y������;�STR�QPRT����Ď�]{�K.xxE���صg3�#���9��pLw�0��0;>uY˳�{�M�B�%��}�cj���C� '2*Ƭ�=�
�s��> ���O�'}6
�'�:�����D���E���;�$֕(I+���*���g�D�1}�$���x�KU>���I�۟�տ�,1�Cn���9��W�P��H�gR#��,5%W9�%�Z���F��7�vkr���k ?=� ���z�d
md䶥����ֲ�Ŗds��5�γh��K� PK
Y�n4ZW��]t%org/farng/mp3/id3/FrameBodyTIPL.class��]KA�ϸ�i�G�aB�E y�Eh$,EI��;.��.b����.��hf�, ����{�y������;�T��QTRR����¶��� .xxI����g3�C���9��pLw�4��4;>uY۳�{�m�\�e��}�cj���C� '2�Ƭ�=�
�s[�> ���O_O�lrO:�tT� -���8� JF}�w)�)�W�Q���U ��� N���c�.H6 -1�|��|��X7?� j[YbL���Q�s��-��Ԑ�ϤFDYjZ���KT�1y�e���br��������Ehrz�r<���r�R����PkY�aS�y�̚��Y�B�%�PK
Y�n4�� ]t%org/farng/mp3/id3/FrameBodyTIT1.class��]KA�ϸ�i�G�aB�EKy�Eh$,AI��;.��b����.��hf�, ����{�y������;�T��QTRR����¶���K�qqE����o3�C���9����ir�iv겶o?���酢�F��D��R�݋�{NdT�Y����l�m��, ;|�"?}3鳑����Q!�:LX6�p���r� RXS��$�$+C�@+"�-��P�/$���KU>���I�۟����,oL���Q�s��-��Ԑ�ϤFDYjZ���KT�1y�e���br��������Ehrz�r<���r�R����PkY�aS�y�̚��Y�B�%�PK
Y�n4�M�8]t%org/farng/mp3/id3/FrameBodyTIT2.class��]KA�ϸ�i�G�aB�E z�Eh$,AI��;.��b����.��hf�, ����{�y������;�3T��QTRR����®�=��K�qqE����o3�c���9����er�ev겎o?��~�B�e��{�j����E�='2�Ƽ�}�z���]>b�����Xp� u�d&,�y�9 JF}�w)l(9T�Q���U ��5� ��D�1�%ɦ��~�R����}��'5A�o+˛�����Ŝ�w��~(�5$�3��QG������Um�@^#@ٛ ����@�q2Cl�g~���ި�Π-��ܶ� >���ZVsؖl^2�f�E��x�@|PK
Y�n4}٤�]t%org/farng/mp3/id3/FrameBodyTIT3.class��]KA�ϴ�i�G�aB�E y�Eh$,AI���L������������ղ0p�2�y��33�o�NQ�@GIIYɶ�J;:vu��.����f4׾�������5�Q��N���c�y�[�օ�+F��D��R��GnlԌY�����m��a�Y�gn&6E���}U���"�a"�����X�E�J�d��dh��pEd��e��F���&�%~�Q����}��'5A�o+K��;}��b����U?���:R��H��#K��UA~��6� �1�썹]Ě�@�y<������49�Y=�B[9�m�Ab�o����%قdf���,Z1���PK
Y�n4��
_t%org/farng/mp3/id3/FrameBodyTKEY.class��]KA�ϸ�i�G�aB�E y�Eh(, AI��;.��.b����.��hf�, ����{�y������;�T�PQ�R��%��¶��� ���@����+�b�Z��m}@}�֝QS�VS���am�z�_w�%]�ڽ':��
�.��kGFU�չ��R��i� ��!��tgb�Q�=7P���B��YhX� �3���՗{g�š�}))YZ"8X��t�h=�O�pA�Ih��w��GP�>�q󓚠�����[}j�b����U?�����H��# M�U^|��6� � ���]@LL �8�"��3s�EL@mT��P@Vl[j��r-�9l
6/�Y��<�RH�D �PK
Y�n4�����%org/farng/mp3/id3/FrameBodyTLAN.class�R�n�@����� uB��Цp�RK�R�Z)�"�>n��*�-{S���"���Q�]�M(A�+��z�̙=g�����t,cM�G*�Tx\ĺ��"�:
�Ա�- �E��б�ቆ��W���5A�l| Ƚ�F�m��е�4�\k�-Ð�پ�|��:�/{���� j���!������[����m�(:�#������}/�`jh,�Lt� >�,$���Em�r��$8�3[�x$J(�
M**T�5�E��%�8�J��'� ���� d�>���;���i���g�Il�D�=�uB]����G�|��D"���3���7��1U�"�\��{2k!A�T׻�#�����ſFzS�tʋ��*��A�<����A��Nڰ�RG��.�Q��r�+��Iʸ"O+r'r�7� _b���6��K&5[Sd�x%�+��h͵�)�sBU�-��n�"�Uܓ��x���S/Y#�9&��pf��| ֚�Q83��ů�%O�q�0EI�}�PK
Y�n4��A�]t%org/farng/mp3/id3/FrameBodyTLEN.class��]KA�ϴ�i�G�aB�E y�Eh(,HAI��;.��b����.��hf�, ����{�y������;�STR�QPRT����Ď�]{�K�qqE���صo3�#���9����ar�av겖o?��� E��V����9�����Ȩ�:��;�پ���Yv�E~�=鳑����Q&�8LX6�p��r�4�XWr�$�$#C�@�+"�-��P�/$���KU>���I�۟�տ�,oL���Q�s��-��T��ϤFDYjJ�r�KT�>y�eo��<����)�~z��� �������mK b3S�e5�-��$3k��g����PK
Y�n4, �]t%org/farng/mp3/id3/FrameBodyTMCL.class��]KA�ϴ�i�G�aB�E y�E�$,AI��;.��b����.��hf�, ����{�y������;�STR�QPRT����Ď�]{�K�qqE���X۷�������sLw�0��0;uY˷�{7�KF��D��R�݋�{NdT�Y����l�m��, ;|�"?u=鳑����Q&�8LX6�p��r�4�XWr�$�$#C�@�+"�-��P�/$���KU>���I�۟�տ�,oL���Q�s��-��T��ϤFDYjJ�r�KT�>y�eo��<����)�~z��� �������mK b3S�e5�-��$3k��g����PK
Y�n4[���^t%org/farng/mp3/id3/FrameBodyTMED.class��]KA�ϸ�i�G�aB�E y�Eh),AI���L������������ղ0p�2�y��33�o�NPMCEQJIʖ�r
�*vT�$/���KE�?į<�j=Ϸ��][wFM�[M��S��=�ӹ>�tYk����C*����UmV�~G]�sZ�ɂ�ˇ,�ӝ��F!��@Ş�
A�f�a17��|��V_�A
kR��d�dEh��`Ed��e���>5��&��<ߡ2A��$��Oj���V�;�Cn���9��W�P�jH�g�#"�,4-Vy�%�ژ��F����v11�d�h������"1�Q9�BYY�m�A|�oȵ��)ؼ`f�r�,J!���PK
Y�n4����]t%org/farng/mp3/id3/FrameBodyTMOO.class��]KA�ϴ�i�G�aB�E y�Eh$,BI��;.��b����.��hf�, ����{�y������;�STR�QPRT����Ď�]{�K�qqE���صo3�#���9����ar�a�겖o?�n�� E��V牎�9�����Ȩ�:��;�پ���Y��E~�f�g#�}/Ա��L�q��l� >�, (���i$���@IZIF�V�WD&8[&���h_,H6�7���|��Xݟ�տ�,oL���Q�s��-��T��ϤFDYjJ�r�KT�>y�eo��<����)�~z��� �������mK b3S�e5�-��$3k��g����PK
Y�n4Ud�]t%org/farng/mp3/id3/FrameBodyTOAL.class��]KA�ϸ�i�G�aB�E y�Eh$,BI��;.��b����.��hf�, ����{�y������;�3T��QTRR����®�=��+�qqM����o3�c���9����ir�iv겶o?�{��F��D'�Q�݋�{NdT�y����l�m , ;|�"?};����8�Q!�:LX6�r���j� R�Pr�$�$+C�@Gk"����Pt �$�
��KU>���I��Oj���V�7�#n�������P�jH�gR#��,5-Wy�%�ژ��F��7v19�d�d����,�"49�Q9�A[Y�m�A|�o����-ټd��r�,Z!���PK
Y�n4�`�a]t%org/farng/mp3/id3/FrameBodyTOFN.class��]KA�ϴ�i�G�aB�E y�Eh$,HBI��;.��.b����.��hf�, ����{�y������;�STR�QPRT����Ď�]{�K.xxE���صg3�#���9��pLw�0��0�>uY˳�{��텢KF��D��R�݇>NdT�Y�{���6�}m>d������(�t��(dZ6!p���r�4�XWr�$�$#C�@�+"�-�� �i?\�lZb��.U�
�'��?� �[YbL���Q�s��-��T��ϤFDYjJ�r�KT�>y�eo��<����)�~z��� �������mK b3S�e5�-��$3k��g����PK
Y�n43�Ⱥ^t%org/farng/mp3/id3/FrameBodyTOLY.class��]KA�ϴ�i�G�aB�E y�Eh$,BI���˄;+��ؿ�+��~@?*�Y- g�,�g�=3������t��l+)%��cW�A� ^hF� v�ٌ���x�c�/�5Ln7̶O]����^��p����<�15�Trw�υcV�yK���~�A�Y�n&}6
�'�:�����D���E���;�$֕(I+���*���g�D�1}�$���x�KU>���I��Oj���V��!�{��Ŝ�w��~(�U$�3�QG������U�OA^#@�s;�59�D�x������hrz�|2��2r�R����TkY�bK�9�̚e�Y�|�%�PK
Y�n4m}�^t%org/farng/mp3/id3/FrameBodyTOPE.class��]KA�ϸ�i�G�aB�E y�Eh(,FI���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�o<�k=Ϸ�!�][w�M�[M��S��=�yп�\J���{OtB��}�s׎��6�sO����9-�dA��#����d�{n��@E� k�а��!g>AI���� � )�R2R�"� Dp�&2��*�z B���d��p���P����}���������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4{-3^t%org/farng/mp3/id3/FrameBodyTORY.class��]KA�ϸ�i�G�aB�E y�Eh$,�I��;.��.b����.��hf�, ����{�y������;�3T�PQ�R��#��®�=��+���@�����b�Z��m}H}�֝qS�VS���am�z����.k���P}Dw�ܵ#�������Ե<�e�,:|�"?};5�8��8PQ!��,4,�|șOP�꫽3HaCʡ����-��Lp�J��Чf�$�44ܡ�;T�#(~����&��me�:�րڿ���nq���x&9 ��B�b�_"���kH{saH6Nf�-���/BP���%��V����\�jۂ� f�,�Ȣ/�/PK
Y�n4�)��^t%org/farng/mp3/id3/FrameBodyTOWN.class��]KA�ϸ�i�G�aB�E y�Eh$,HBI]O��2����"���J�Џ�fV���8˼�w��||��8A5 E)%)[R�)l��Q�K���./ �~O��,Fp�u=���wm�5un5��O����~���\�e��}�c����B��vdT�Y�{�-u-�i�& ���O_OL6
��*�TT�6 ��!p����r� RX��/%#%+B�@+"�.�� ��.H6 w������'1z?� j[��է�/��[\�Cq?�!)�I��<�дX�ŗ�jc
��^�������)b ?3��P��F�x
edŶ��!ע�æ`�5�ͳ(��K� PK
Y�n49g�^t%org/farng/mp3/id3/FrameBodyTPE1.class��]KA�ϸ�i�G�aB�EKy�Eh(,EI���L������������ղ0p�2�y��33�o�NPMCEQJIʖ�r
�*vT�$/���+E�?į=�j=Ϸ��][wFM�[M��S��=��9��tYk����C*����UmV�~G]�sZ�ɂ�ˇ,�ӝ��F!��@Ş�
A�f�a17��|��V_�A
kR��d�dEh��`Ed��e���>5��&��<ߡ2A��$��Oj���V�;�Cn���9��W�P�jH�g�#"�,4-Vy�%�ژ��F����v11�d�h������"1�Q9�BYY�m�A|�oȵ��)ؼ`f�r�,J!���PK
Y�n4%���^t%org/farng/mp3/id3/FrameBodyTPE2.class��]KA�ϸ�i�G�aB�E z�Eh(,EI���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$/���+E�?į=�k}Ϸ�!�][w�-�[-��S�u<�yp�m^H��u�OtB��}�s׎��6�sO����9m�dA��#����d�{n��@E� k�а��!g>AI���� � )�R2R�"� Dp�&2As�h?�O�pI�ih�C�w��GP�>�q󓚠����N�[j�b����u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4�H�Z]t%org/farng/mp3/id3/FrameBodyTPE3.class��]KA�ϴ�i�G�aB�E y�Eh(,EI��;.��b����.��hf�, ����{�y������;�STR�QPRT����Ď�]{�K�qqE���صo3�#���9����ar�av겖o?�nۍ E��V����9�����Ȩ�:��;�پ���Yv�E~�=鳑����Q&�8LX6�p��r�4�XWr�$�$#C�@�+"�-��P�/$���KU>���I����տ�,oL���Q�s��-��T��ϤFDYjJ�r�KT�>y�eo��<����)�~z��� �������mK b3S�e5�-��$3k��g����PK
Y�n4�Q�^t%org/farng/mp3/id3/FrameBodyTPE4.class��]KA�ϸ�i�G�aB�E tQ
BQ��;.��.b����.��hf�, ����{�y������;�T�PQ�R��%��¶���K����@���k�b�Z��m}@}�֝QS�VS���am�z��v�.$]�ڽ':��
�>��kGFU�չ��Q��i� ��!��tgb�Q�=7P���B��YhX� �3���՗{g�š�}))YZ"8X��t�h=�O�pA�Ih��w��GP�>�q󓚠�����[}j�b����U?�����H��# M�U^|��6� � ���]@LL �8�"��3s�EL@mT��P@Vl[j��r-�9l
6/�Y��<�RH�D �PK
Y�n4N��^t%org/farng/mp3/id3/FrameBodyTPOS.class��]KA�ϸ�i�G�aB�E y�Eh$,FJ���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�o<�k]Ϸ�!�][w�M�[M��S��=�yp��_J����OtB�\?��kGFU�׹��S��i� �������d�{n��@E� k�а��!g>AI���� � )�R2R�"� Dp�&2��*�z B���d��p���P����}���������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4��y�^t%org/farng/mp3/id3/FrameBodyTPRO.class��]KA�ϸ�i�G�aB�E y�Eh$,�I���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�o<�k]Ϸ�!�][w�M�[M��S��=�yp��]J����OtB��}�s׎��6�sO�S��i� �������d�{n��@E� k�а��!g>AI���� � )�R2R�"� Dp�&2��*�z B���d��p���P����}���������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4�B�]t%org/farng/mp3/id3/FrameBodyTPUB.class��]KA�ϸ�i�G�aB�E y�Eh$,EY��;.��.b����.��hf�, ����{�y�������#T��QTRR����¦�-��3.xxN��{��g3�}���9��pLw�4��4;>uY۳�z�w�SE��v����9��� }.�Ȩ�:��*l�m��,:|�"?}9�Q�=���Q!�:,�l&B>��'(������dWIFIV�V����Lp�L��Ч�pA�Ih���T�#(~�ĺ�NMP���c:�v�:?���n���A I�Lj$@ԑ���*/�DUS��P���. &'�lL[�_�&'�7*�Sh +�-5���5����%��̬Yn�E+$�#�PK
Y�n4C:��^t%org/farng/mp3/id3/FrameBodyTRCK.class��]KA�ϸ�i�G�aB�E y�E�$, �I���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�;���������;�έ�����ڞ�<�wn/%]�ڽ':��
�>��kGFU�׹���kyN�4Yt�E~�fj�q�=7Pq��B��YhX� �3����W{g�†�C))YZ"8Z��|�h=�O�pI�ih�C�w��GP�>�q��������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4O�5M]t%org/farng/mp3/id3/FrameBodyTRDA.class��]KA�ϴ�i�G�aB�E y�Eh%,�I��;.��b����.��hf�, ����{�y������;�STR�QPRT����Ď�]{�K�qqE���صo3�#���9����ar�a�겖o?��7� E��V牎�9�����Ȩ�:��.�l�m��, �|�"?u;鳑����Q&�8LX6�p��r�4�XWr�$�$#C�@�+"�-��P�/$���KU>���I����տ�,oL���Q�s��-��T��ϤFDYjJ�r�KT�>y�eo��<����)�~z��� �������mK b3S�e5�-��$3k��g����PK
Y�n4�ͩ^^t%org/farng/mp3/id3/FrameBodyTRSN.class��]KA�ϸ�i�G�aB�E y�Eh$,H�J���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�o<�k]Ϸ�!�][w�M�[M��S��=�y���]J����OtB�\?��kGFU�׹���kyN�4Yt�E~�vj�q�=7Pq��B��YhX� �3����W{g�†�C))YZ"8Z��|�h=�O�pI�ih�C�w��GP�>�q��������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4lY��]t%org/farng/mp3/id3/FrameBodyTRSO.class��]KA�ϸ�i�G�aB�E y�Eh$,�J���L������������ղ0p�2�y��33�o�.PMCEQJIʞ�r
�*T$o���[E�?��<��j]Ϸ��][w&M�[M��S��=�y���%]���':��
n�ܵ#��-����Ե<�e�,:|�"?}?3�$��8RQ!��,4,�|ęOP���3HaKʱ����-�l�Lp�N��Чf�"�,4ܑ�;T�#(~����&��me�S:�֐ڿ���nq���x&9 ��B�b�_"��9�kH{{iH6�戭���/BP��9�������\�j��� f�,�̢/�/PK
Y�n4>@w�^t%org/farng/mp3/id3/FrameBodyTSIZ.class��]KA�ϴ�i�G�aB�E y�Eh$,AJ�M�L������������ղ0p�2�y��33�o�NQIAGAIQɶ�R;:vu�$.����f�� bמ�����;���1�Q��v�l��e-�~�u�� E��V牎�9���>NdT�Y�{���6�}m>d������(�t��(dZ6!p���r�4�XWr�$�$#C�@�+"�-�� �i?\�lZb��.U�
�'�nRT���Ę�ݣ�/��[\�Cy?�"!�I�8�:�Ԕ\�䗨j}
��ޘ�y�� $��S�-���/@����)���ۖ�f��Z�j[��If�,;Ϣ��/�/PK
Y�n4k ��]t%org/farng/mp3/id3/FrameBodyTSOA.class��]KA�ϴ�i�G�aB�E y�Eh$,BJ���L������������, ����{�y������;�sTR�QPRT����Ğ�}�k.xtC���ح�0����9��pMo�0��0��X�w��n�J�%��y�cj��zQ��;3*Ƽ�}�
�����°͇l��&6E���Ce���"�a"����Q[�F�J����ddh��xMd��U��F��%�&�%~�Q����}���%�tȝ>u1������A �Lj�Aԑ���*'�DU�S���쭅�dž�@�~:���O/�49�^>�B[�m�Al�o���f�#ٜd�Ͳ�,Z>�2�PK
Y�n4��&^t%org/farng/mp3/id3/FrameBodyTSOP.class��]KA�ϸ�i�G�aB�E y�Eh$,FJ���L������������ղ0p�2�y��33�o��PMCEQJIʎ�r
�*�T�$����kE�?�o<�k]Ϸ�!�][w�M�[M��S��=�y���]J����OtB�\?��kGFU�׹��S��i� �������d�{n��@E� k�а��!g>AI���� � )�R2R�"� Dp�&2��*�z B���d��p���P����}���������N�[j�b.���u?�����H��# M�U^|��6f � �ͅ]@LL �8�!��3 �EL@mTNgP�@Vl[i��[r-�9l 6/�y��"�RH�D �PK
Y�n4q���]t%org/farng/mp3/id3/FrameBodyTSOT.class��]KA�ϴ�i�G�aB�E y�Eh$,BJ��;.��.b����.��hf�, ����{�y������;�sTR�QPRT����Ğ�}�k.xxC���حg3����9��pLw�0��0�>uY˳��n�J�%��y�j���z�υc^�yO�����A��X��6�'�:�����Dȇ��E���;�$6�)I+���*����D�1}:�$���z�KU>���I��Oj���V��������\�w��~(�U$�3�QG������U��@^#@�[ ;� 9�D�t����^�hrz�|6��2r�J����VkY�bG�9�̛eY�|�%�PK
Y�n49��]t%org/farng/mp3/id3/FrameBodyTSRC.class��]KA�ϸ�i�G�aB�E y�E�$,�J���L������������ղ0p�2�y��33�o�.PMCEQJIʞ�r
�*T$o���[E�?�;��N������;��έ�����ڞ�<�;ג.k���R}L7}�ڑQ�u��}�Z��2M]>f�����lr� T��dmsC>��'(i�����%�XJFJV���N6D&�\'Z�A�S3\�l���*��Ob���&��me�S:�֐ڿ���nq���x&9 ��B�b�_"��9�kH{{iH6�戭���/BP��9�������\�j��� f�,�̢/�/PK
Y�n4�<�]t%org/farng/mp3/id3/FrameBodyTSSE.class��]KA�ϴ�i�G�aB�E y�Eh(,AJ��;.��.b����.��hf�, ����{�y������;�sTR�QPRT����Ğ�}�k.xxC���حg3����9��pLw�0��0;>uY˳��^�J�%��}�j���z�υc^�yO�����A��X�������Ce���B�f"�C�|��Q[�F�J����ddh��xMd��U���>�K�MCK =ߥ*A��$��Oj���V��������\�w��~(�U$�3�QG������U��@^#@�[ ;� 9�D�t����^�hrz�|6��2r�J����VkY�bG�9�̛eY�|�%�PK
Y�n4a�QC]t%org/farng/mp3/id3/FrameBodyTSST.class��]KA�ϸ�i�G�aB�E y�Eh$,AJ��;.��b����.��hf�, ����{�y������;�3T��QTRR����®�=��+�qqM����o3�c���9����ir�iv겶o?�{�����F��D'�Q��D�='2�Ƽ�}�z���>b�����Xp� u�d&,�y�9 JF}�w)l(9T�Q���U ��5� �W��c(:K�M�� ���*A��$��Oj���V�7�#n�������P�jH�gR#��,5-Wy�%�ژ��F��7v19�d�d����,�"49�Q9�A[Y�m�A|�o����-ټd��r�,Z!���PK
Y�n4�h�_�%org/farng/mp3/id3/FrameBodyTXXX.class�T[S�P�B���(�*
i D�xCQ*�UnBe�chOk�6餁A��I���Ȍ�?�qO����3g����6g7���� 8P0��2�J�� �EW�q_ƒ�>�C�<��X�X��,�S�&v+�+� �Y��P0���L
�.a����e[�
C�9`�t��ᶾ�y#g�v�(�↕��Y� '�)uxx�,к���h��F�$ܾ�Zv~��#����o9ƞig��j&��� ���~��%�r첄W^3�湗p-�[��k�A�1=Ү�0X��9ܸ޹����9�Yn{V��.�D�R�ԣ]��"�qi��#�x�V�Sq�Ē$���\�3N�4H�)���q�z��-6�� �Q��*�0�b; ��f���J�r��^щ�_T�❊�ȱ�����9~�FP��q񈻯��-�$��W��{�/�@v�PHq�h٦dz���m��̛4�����b���f�K��Op��T%w�>� i��+�2�-��N3�Y������F!x:��3�� `��&=z_�I��4��l�Y*q��s�`��d�iLPfRԥ�SNs�bo�����l����0}]� ~�`ⵠ�:�F�2�=�*�7 �7ja ]�z��*����<z���=�u�!�����B M��<O�I SBA���V|j���sK�Qd� 3m�V�|����^ ���O'�n�E0�H �/�I���Z�m`�k�KgHW1� U0L�#d*��X'Y�Uv����*�˫wa��Q`"�3����Pc��i"�IU\
�iM��2�PK
Y�n4����^t%org/farng/mp3/id3/FrameBodyTYER.class��]KA�ϸ�i�G�aB�E y�Eh(,�I��;.��.b����.��hf�, ����{�y������;�3T�PQ�R��#��®�=��+���@�����b�Z��m}H}�֝qS�VS���am�z<t�.k���P}Dw�ܵ#�������Ե<�e�,�|�"?ݙ�lr� T��dmsC>��'(i�����!�PJFJV�����D&8_%Z�A�S3\�l���*��Ob���&��me�:�րڿ���nq���x&9 ��B�b�_"���kH{saH6Nf�-���/BP���%��V����\�jۂ� f�,�Ȣ/�/PK
Y�n4�=h��:%org/farng/mp3/id3/FrameBodyUFID.class��mO�P���=��"P`��㙱U�3�n<$KP�� �UY�]���+?���I ��P�{�n�a�5������sz������2��`��9�
����@6-!�@¬�E�Kt�Lo:�=��HŠ�~di�X���Jx�_�l�[g��>1D7�3̤v��� �.��ZV�̬��U�w�ӏۅ�U�GS;GƉ�W ��y�e�W?��3z,G�`ئS���^߶*܏T��yͳ�.Ṅ }e�Ln{V��.�pj�:�\������.�I\.��~A�v�x�۱꞊Fiy���XuR�x�1��U��q�D�q���u�V1� oh�!�0p5�A��)�=�)`�W*�ܭZ��q�ʛR��M�����O=�s]�t���;� �fǐ�N��k��f�d��3 ��X�mόa�@�>1*��o�/0K�.Q�4��zi�~g �]F{�$��� �sܨո-^�]�kG�,�:yNkN��N��T�� �ӹc ����sk5��}��&��r����z����
˄���`?}��wC����t�����^�O""`���Z$�@4�����cB��D(��@�s��8>��P|Z�Qm�g����ކ�m��0 �?���
�E-�@+i�0ݖL��� �;��@%���'�;b��g�?�"M 40(6ځkbHla�PK
Y�n4[�� ��%org/farng/mp3/id3/FrameBodyUSER.class�T[S�@�
!��MA�R J/E�B�j�ՙ>�f�ah�I�O�$}igd���帛�hGڙ=��|�9_�����_�,ࣄ!h|���0/!� ���x,� �.
�I���x��3�\��|�B�K�$(������"ao��Jкlٖ�BЬ�~&��9&%�Tӎ�� ���bL�̘���p��O�ɽ8G�j"}d���p�k��x��CG��o9�a�Na5���҆uL�<�Ѣg9vI@B�AG�z)�ڞuhQ��O���M��`i�91�L�X���W�����R�䤸spDs^�*y2��/�f��ycI;� N�Yː8�(G%el��T+�,�#�]3qrx���k��.#��2�1%�_��"��b�{���Wdo���i��lE.j[�v�O
�$�N���f�[�lã&/���1u8b���F�K��N�p�ޫ�H�T�O0~3A�>5�-3c�a�Mh�2~�#j��6>�#�4��k��]j���F�Hm��k4Yu���lBEϹjj[�V�,�6R �)�K e��0Do�L�٫��ڍU ���0�A�{��v�a�0ۢU@~�~�4�?ЪE+h��G��<Z�7 �tMi�@$;\AK�1a�7�<35�KȩajɧF�h 0��<��Ob*,5�|\���l�\F�VF'3et� LW !AbJ��D�fj��C�/Bd�hUf�� ZbOȳh��������>v��*Bk�i0���c� �PK
Y�n4���4�`%org/farng/mp3/id3/FrameBodyUSLT.class�Tms�F~;��8DH�i4�v��
%�6�K1u^J ��Xg��#yd9%�ԟT��3e�����N�$�v5�=s�w�<��w�Ͽ� �.���C�|&㑄%I<V0��e<��/�nY,E +V�㡌5a���W�{*��� �k��l`S–�k�'�Hx�`�v̠"ᅂYa_J�a��������yɐ\qM�p[+���� ϱ��fA�͂���蚇/vʕ%�~��{Ɓ�7 ����XK�9�-<�]����r��[�u�������ƛ��:- �I�2L����[5���j���pR˜D2��drǷ�6��(A�mâW�w��zv�\������Gsw�x�׷�Z���׻Hr�f�[~�p[,�SY�ڿ���\����K/�\�~H�G�D��=v�0�.���Z��W�K���05|Tl���9F�/��4 즱]x�4�1y�X�����A;� 6���{j�^mMq +�W�O'�%E$�L�f�Ѩpo�v ��"M�<��wާ1̞1'���ݖ�5��Z8X����zi��� s�J΁Ѱ͊a `�q��&諤V&E�ގ�N̔ �����q�������;ɦf1�M�{� �`�oZ[9%*��Q�Οo����l���;�����\q�C��C|��ۅ�{�������_Z?��e���H� �&��|Vq���h6�Ņ~�N���AϪ��HV���C�#����$ۗ�HXHLE)�@"ׁb2"-E��~�(�$^&�܀"Mz��,PT���!�g��an��x�� �b��\&��@%�
�Lq?��@�`1��x�8�Ԡʽ8��q��=��H��lt*�*� ��`�M��i��D������hI<��
�Ң�D�VU�.�w���UU��p7SU�.> 7�U5�� ڄ��PK
Y�n4����,org/farng/mp3/id3/FrameBodyUnsupported.class�T]SW~��lL�@��V�삩�!�D���aE�H?\�'�v�����:���&N�8zӋ��N�w�I!D�09�9�y���������%�� f��~ q��e� s1Dp3�y|%C���-9V.��5�y��2V�Ĩ�1|�;�����]�ޫ�� �/c-�^��-�uV>�b����{^~`�e<�3 ayf����ⶾ������^��ښ�о��BB�FVB$cZ�7M��F6u_B�mХ�\���tAw�t�4�6�����m�߳�r�d;�0&��\�ȴ�wt˰wf�y��fQ����{yQ�L�re�26%tl /w ��d�U�2�V�g�Q(��qy�jy��JA�'�&+��"�M�PQ�IY/�N�\��,���{�"���] D�?uLO(�@A��s$���&/��95�2Ȣ:d��0��:ƦC
�T�%�\ø�m���#�R`��� �?���] ��Sɖ �`�̌���S0�Q���_�F\Ř�}<S0�! ɣy�n��������F���cͭ4F(aః�E�2�����p+��S��,�񳾳y�4�|ѶD3e��eL�{G�Q����,{f1=�8�>1E&�� ���c�}O�"�p_�2�>�!��q�w�m���"�+�c���_�Z�\�L�z��� 2�襒���C�j:��q���y]����(��[2Hߞ6������Cb��:L�^t�UHj��B��
���/#/ȫ�Ȕ�U�@�Dd]{�P�o��
��p쐋4~0X�� �E��2��1?|�$�d�I�~ ��C��N�B��B���ۇ����f�C�Y��#���;ė� 6�BY��Pm?>���r����5<^��!���=r��%T� _����kt>�{;Y��&o�w�՛�i4ϡ�I^#�3T��ՍnQ��ț�F��^�2�Tq���+.�� ��`Ta0��)��M�f���O���Tc$c� �I~z׫8���ZA?��-J�
.��6ݨ����sK�Y~Z�gA�����(��PK
Y�n4#�%org/farng/mp3/id3/FrameBodyWCOM.class�R�O�P=��v�N��1TǦt��1&�H�dd ����z�\�n��y�O��-����e�_77u3���z�9��wO{�����Z��J���)�3k�X�`��s �AO/LMl2o���[��S��0�a٩�W�ksx'q$U�Gr٩�Q�x��Nwד��w񎨆���A�(������;��;�ͦ��e[$���sStc�����2C6q�*�-)"�%�2=��,,�$�3���^�Z�à�n��x�-
6*(0l�swڱы#ތ���Q�.�'���g�5��b(�ݢ��x[�<���͊�/J�3x�+�ϰ3� MQ�$�t�:����8�(���]i0
W�c���ʈu`7��䅑�ǜ���`n��f驉N�>?�i��%,k�
�^%��(��H�`��>2nt���l�/PK
Y�n4��Lb%org/farng/mp3/id3/FrameBodyWCOP.class��[K�0�Ov��Ź��!� �a��0���`��9�Y���і��J�>��Pb��M��N��w��$�o��QIACQIIIY�f[�5�$N���AT���Z���zw@��p�������>Q�Pﺞm��'��Q��V�h{t��]��ջ m��r�WTX�i�����a!O]<�lpW�v5�dmt,&���#(��$��$�d_IVfV���h>�G�`���.���tz���[tĘ:ܺ������:H��H�_Q-��(5%gy9U�O@^C���. ";��MY��*]�.�ؔ�����!�y�E��/�_PK
Y�n42�r�Lb%org/farng/mp3/id3/FrameBodyWOAF.class���J1�Oz�ڋ�7�E
.��E��P�B�P�3��f�L(�V�*��|(1��V�b'��N������ �!j(k�h�jYOc����-��1\���� A��wA����1�<*\�R\�G�=?p� T}8jY�iY��٩�<��۝�V�-�uA��۶�°�=����F��"4�m`� �2�u��|�Y@P1�rHcEKVˮ��ʬ�%��'As�Ѿ e@m9w^^����� ��yZ���-�bL=�\Q������:H��H�_�- ���4�fE5]mN@^"���.!�:�jL[��o<��yU]�)_�sU-`My��3ݫ0�/%�##>PK
Y�n4�{�%org/farng/mp3/id3/FrameBodyWOAR.class�R�o�P=w@˺� ؀�s���e}�� ���,��e�Wzi��-)��7�$��L���Q��Ʀ`l����s����篛��Z�Q&� xH���c ��ؤ�����i�D��S�T2~ɐr�� �W�/֝�>�^���{GR�$�:�0
�6�4��y�?�N"����|qZ;Kl���2�θ��n������D�^_�D/����1�˰��� ˶ÚS���2�������m�a�@?����3J6�(1l�� ��G�O��NS�� �۳6N��b��٢��#�<������%����g8���f�q�:q�t�l�eT��`�� ��qE�r�2b��ub yu"籠o�p���p����;��==� ���ֵ��Ҥ׎�h��7d.G0��Yw�E]���&��PK
Y�n4rN��Lb%org/farng/mp3/id3/FrameBodyWOAS.class��[K�0�Ov��Ź��!� �a��0��`0p^�c��h��� �V�4�����nn�&&pB����$��|{p�Z�J*J�J6��Ұ�a� u���z� q�Y������1}.������Ɛ��Z�ZFǧ.;���~{�j���3���<�m�,:�a�\>�lrOv5��mv-&B>��'���9���$�d_I^fV���h��O�p�����t����[tŘ:ܺ������:H��H�_Q- ��(5#gE9UmN@^#���.!&;�jM[��*_�.�Ĕ�����!�E��U�E���/�_PK
Y�n4��]Mb%org/farng/mp3/id3/FrameBodyWORS.class��[K�0�Ov��Ź��!� �a��0��`0ؼ<�6+�]:�2�[���?�JL��)��� ��N�������)*)h(*)))+�NbGî�=��9<� ��;�ؕk1���� 5*l�x\�g
�׳��d}4n�j-��إk=�w{��V�/�ѣ�rGM�d��� y���d〻�װ�� k��m1�gAI��F� � %i%�J�2�:���d�UG��<j ��t�x$(~ߠ�]�%��ޢ-&��� �x�u���A�=PEB��jquE�)9�ˑ�j}
�N�qفD�d�Ȓg���geu��f|S�e5�-��K�l��<J� ��PK
Y�n4�O�CMb%org/farng/mp3/id3/FrameBodyWPAY.class��[K�0�Ov��Ź��!�
�a��0��`�x���f%ڥ�-C��> |��Ĥ���� ����$9I>>��죖���������4�4�k� Hr��#��޸!H�x6#���:��K�c^�>΁»z���G}Y��&��fۧ}v��Ϸ筻�V�,�yA���[�ł��]����!�D�aS�A�aa�f"�=�|��ޘ��CKJ�J���efu.��?��yG�>}j�S��v�x$(ߠs6MKP��EG ���+���鯃�{����Ւ �R3rV�#QUc��Np 1ف��7Bl�s�x|��:�c���Z����g�Wa%^J�DF|PK
Y�n4s�qMb%org/farng/mp3/id3/FrameBodyWPUB.class��[K�0�Ov��Ź��!� �a������@Q�ϱ�Jf��� �V�4�����nn�&&pB����$��|{p�J
�JJJ�J6��Ұ�a� q���z� v�Z���wtL �
۸ <.������F�z�>5 n5��G���Z��W�Vh�̖s׸��r�M�d��� y���d����װ�a� k��c1�>gAI�-G� �5%i%�J�2�:����d�eG��<jsg�s�\<�oй��%��ޢ#����-�x�U���A�=PEB��jquE�)9�ˑ�j}�N�pفD�h�ȂgV��geu�Ǧ|]�e5� ��K�t��,J� ��PK
Y�n4Z���p%org/farng/mp3/id3/FrameBodyWXXX.class�U[s�V�N|��"qJ�Jd9��z �$)n�&���XǮ�-����>�w����v��3�L'��:�#�v.�g��ݳ���ȯ����Ôq'��(��T�EA��g ,I�+#�{2)��%p_���*aMƸp�\�������P�1��@*JX�q�𡄯d\Ħ�-�/1���Uq��g96�Zxj���a�2[�kٵE��� �����gު]qL:a`9��˶�%���z���Vp�Z�j��hf3��ͬ�F����㝝�Ea�i��Oj��%����̦a�Nc�R�֚U�������*Z�%��\�{9��Օ�%Nh��"O�q��gU-�^�{��'����!�8��m�[Ǭ7v�򊷘z�0N��fOQ�Z����a��k��`Z�xO�SB%���a�O1s�=.�v�A�cG
�lo|���[�gHO=׮VE�q1��_|�o|�y���3���e�
n�C��Q3�/5h�z����F�Ǣ��
vQaȼ���]���۰l������-�>t;��(by��F�˯d����w-�1�+�kG���Q�̒Q;d3���a��j9�Fi7z�3̄l[�F g�TX�h6�M/�a{zB՛?�|�s�� ��| J�mV�a^��*9�egH�L0�~s�����F$��D���8��2��?D5��c�ހ���Ց���4�G^"���'�S��4ُ���]���K�!J|!4��J�H�/t1ځ��c�>S� ��R`��/�c�;8�s��'N�s�A�� ���E�1���� ���fL�c����l��"�:8�wX@6p��>���r�Pʷ��R���&�(t��"وy-�_!�b��$�"�|�W�#9�{ DI�i���h0���}>���|Y��]�ۡ���bY��RO�\V�.��Ы�PK
Y�n4*䋪\
Norg/farng/mp3/id3/ID3v1.class�Wy`eӝٙl&M�9��&l�f��%��L҃��I��(�n&�m����l!���R�����U��M%�rI�x߷"ފ'*���}�M�����;��{߻���/=rIs}p%��#%��!"�����D r�PU�c>���*|\�#*|B�O�`6<�2�T �C�?J�{��G�~"A):<�O�g��AZ#�
9Q�Q�����1"�� >A��D#�8�'�<郧��
��Z=MN�ڧT�.�/jp� ��S�% �L����4{F����u�f�}�f���[��6-���wi�����P�i�c ~B~J�~F���_��g�����o4�--~G��D�@�D��?�_h��
�@1��g�%�w�0vMCF2��cg��* �F�NX�j,5<l&q�� {Ȕ@1� .�f2�K�ѫɄ}��`��hK�#g~�#��7 �<�nnJ�77��i޽d�Lf�l���;76�qSd�%RM��dj�%3-k]b�t���̴�H%-�&�f�v 3�&8�.:��]Hu����%$��_��p�Mx��[е�;�`����OZ� ��6�,�Ϊ�>���d�㍉���!Pqݓ�������eA���T��>'d�g3��N��~���C��(��+k Y��ֽ}��W5nA� ��v
O�
�e��PS;�'ϥv���3 (gL/�-��y�@�t;����d]*�f��(RD�Lđ�˹q�� �2���\�&!���|� ��+;���t'yZX�H&���.�ڃ�
J�,�nM�͚��5I7k�n�dݬ��YEt�&�fM�M$�*#�I���l#b�N$��������)����\�����6'�l:���fw��+�-U V���#�6�Z;��a��);3����E�����H��=�؃f��ij�)�0��? ���C���/xA����u�vHp�D��t��u�l�?O�Q{����??D����Q[��o����E�/y"Ip�.͢���LD!�Ŋ�TH�.�H>�›%8�� E���T9�l�sH4Y*�����]�|��K:O�M� ;Ao�z��Ɂm� Pr\G~�E��};����:��q���4��I��E�f���\s�ϙ�x�: �Қ!��ũ.UH�:��:�D�e����L�&r5\�JUx�T-A�w0a9���L��B*i�$�ް��@*3�$�7�]D���!bAR�jt�V��Cvt��'��*яڻ���Boք��#"�S��Nɴ���5�L63��-,��|yS�u;z� �4)XJo֍�������b��[a�Á���M���-dHU>�mF ���- _l��!3�1;+������<o�����)xo�s�=�*�+������5�����^�:gV���p)�0e��zq^�@�\�76hdZlR��� �1��.�?ў��8=5�$����{�#�:%i#c�l^���`���L� S�ǙL]������v>� �cH�X ���B��3�`h�����q��Pš^��!$�C��0I�nCɳp�>������/| <�PJX����,���T���,�b�:K5�Sm�V ��i�ʃ��~�
?�~�ơ�����>�(T����P~ �:�>e}hje��L��sP�g �T�Y�ԈE�Ԋ�ؙ#v���N�k��Z�#y;:C�B��11;�t���W�P$�Q�9�(Y
W4�W�Hq/�o�đ�D a��r��id�BF�� YȰ���vA��������=�м<��S�v��G�Z��$�2��(ƣ0�3��/�Z���? �]�"uFNA��<�Lȣ(���`��Kqd!�Q
�u���\I�? ,�'�3+8S��=€��W8ᦂ>���2j� _(�:"T!��"T!�Q}����b� �VXT@z:��� ����p�'�f�ysp>�!ր7�9�(��JhC,d�E� !c�1D�!<.��Lp�hd�E� ��� b�E( �`r2D-� �n��1v~O�խ��8��������8F�!j�i�FEB�g#�� x���.r�P<Gȕ�T�����&�s��V���Z#��� /��T�/�[��`o��rUjP
|�\Ї=�Y�6��>Ã����W��B.燼X����XP���H owc��N(r �j�N ������(,=�x*r��
��q��(,�ΎfLǔ�cz�����q�:�9��Ëx�]{&>��۶ ��iy���xI
���]Q�*̔#S���E<�[�c�#~Q(�����%��6��`M������Nb^R�����b����)ƿ��b�v�W��70���XT�>�
�b��3��*�lb��]�(ojQ��Q��Q��Q��щ�Od�������w�LYY��c� ���+Zz#J��^Q`r��D�T<��Q�;��W}���N���ew���H�_~n�� ���gu(�y���m�"���,j�.R��",��H�L�� ��:�6�w��\͟< ���K��]y�wDt�!�,�ؘ�xwA����)��tz�.��wq���K�s� 0�����D �%��U9�,R�E!� ����+�@Q��E!}r� ��!�9[r�U�>4�i����3b�PK
Y�n4�r�G%org/farng/mp3/id3/ID3v1Iterator.class}T�r�T]Dz#K��`��4��Ђ�@�ʭ%`�&q��).W���-ud%�o�0|B�\�0y3 �� �'f�>��aoIƢ��};k�}������������I���e��+�^�㢂Kx����Y��*Ϫ �� ��*JxSƢ�q\����$�d�e,˨�jz�\�@�h[]װ�5��eJT��Wk�j�����µe$����\�xXT Z/��Lj�X�TK���|q�Y �Z�ߞs���t�v��� �j�:��s���˄^P�F�խus�J�ԲZ������5*�h��Tֆѭ�;����ܠe� &ҙ�m���^��i6\:h�1;���9GZ�=�d�f1�!�i id4�� �゠�aE�U����j�U��5Vk�N�R�s��uu 7��X���m��c�Hy�[n���ث[��R�옖[�i��ܖm ��]�1�OQR���؎�2}b�gz�hC
�wێ��wH����d���-�MmM�ڸ�:-��M7�ե�1�}s�C3k�.�p�4(q�iZmN��O�W����M��nx��yz�dz���N��sT4��c�&��k̐=�'�D(>E6�O�}2?E�L(>K��P� =ϧ�ßa�x��s��z���!DV:@$;{�{�O�3��I��c����#r��n@9��!��^@y����)3��`l{~Ǡ�� $ $�$WI�$�����9J�Q{�(;�hlC���� Z��/�/Jh��3~E�
�%�Bb�|F� �O$r�}�?��WHdg�QK�@��CT����Q�r��j_>�ڐ
ڰ���Фݠ3��tf.�����Ĕ?5zG���H6I� ��w������{4!���^�?���X ����au ã�v�1^�C<��kؙ~��b����-Q�w�z��CL����_PK
Y�n4p��� �org/farng/mp3/id3/ID3v1_1.class�V x\U�o�ͼ��W�L���I:�h2�$���$�%m��L�Y^'/��d&�yI X@��TQĔV��T��N
E(�l�;��� ���e2If���r��{�s��9����K> �I�Q!�b����)�v��nw��N�)&�]*��^�d�]�6��$K�X����,���~���t��2ާb �Q�~�����|HƇU,�}*�#
>*�c*V�>�qH�),~B�'UԳ�)�����
>]���GedT��6�dS�����A�e<��L'�ge<��'T��%?U�9��G��U<�/��8O��<��S<<ͨ/��/�،;U|_U�5>��+�Ͽ��w�'�x�[<|���Q�]�}��=�������@��H���D�O�L��9�/�,[�_���x��*~�ߪ�~����Ǯ���ɸ�N�WW��ԙ4j�S�p�n&��GF[�ロ�]�[�[.m9�q�g�w�٫ճ�5�ۘ�����q�9�jު'S#?�No�' [��{U���dZ�h�6���Ȉ��*]�N�-3�t���9��u�sQ �5H��P�0ru�,�u�e8�B��c�GG�� ƕcz"=�@ߎˍ�uV�v��Ըa�2��d:�Hiøb��b����A�ǣwld�a�%�;�Fh=�o]����Q\��H�@U�� ���׶dzlt4eZ�`ߨa꜌lV�:S��NJ�e�Ŭ�J��PLO$���Ж�����51j�Z�
Y;��n�qr��5e�ӣ�O�`�����7���?x�'�,���Kײ�q:�hW�T /�_���` Zl0�C��_�esQ��#58�x| �e����e˹-�X�)���1�FH��[;������GE�A��d��D@ȚPD�����164d�n�+`ϴ���[��)u���C��(t,'τ�U�))��s�<���f좛�dS�kVϴIL��Xz��t;sY,��I�Te�\A: ܈q {� 7�t �*�b�ޔ�!5��a[i�oj Y�]�C �E� �__�g�vfc U��̱ ��^�B��b
,�h�
70�dj+�����2KE5����R�D�V���V�nZq�7,+� �E��o�D0t�Al4��c�ؽ�D {iӢ��E�&�q^���ތd���,V�b�&V�S4\��*�.�՗s�[��w���k� #�D��Xwژ�:�4A� �0�6�SO�5Q��owZ� i���֫��۶�M&?\y�u��r-�3U��VQ�*b�dN-m�≸5� �K�tn�k�P���8��m�o(J����z uy�k/�Q��.�;u�$g���ĝ"����m�����d�c�h����t��C���*��&�М3볫�� ��r+�7��=�-�����6�<�;�d�>nd_��\�e��l͒B�1Q�E]]�]���R�o�@�H[;�s�đ6����wLX�n.p�?~�ac��Һ<��b`Р-8۩��|?Om�O�]�iW�2���.PP�k��Q�L��7CXN�}wR`�� ��d�Ѣ�"���)�p�Q��S3�b���-� S�٠p���;�e(@���Æ�� �B�ĵ��Ă� �)(�4���>�����LA;���I�J��R歔{+Ao��[Y�T�i��(�DZd��W�D�'g�t�l��jz3�=�e�ڤp�TV{ ˉE$��C���\���\di$��C���<%�5���H��F���d}a)���H�!��$��Bc�?��&U�@��$ֲD�)�G��N��2hu|���4�O�!�׶I_~�9Tۮ+"�3lM����� �l�p�-��Am�}$E��x6�̰Y���rm��6TE��xg��� �E���.�'���ne�f�%L�}�SUW��ԛ1AFW���g���ye�&�vA���u�A���ڬ��U�힒^LWtY�KsJ���<��������_���= ��<��K������밣��;'��z_�F�7� �T!����#|�rĹg|�6zL�� �H<}������w���0/6��W��<��MY��,��=��x��J�� 6N��#xs6��B� >SV����ݴ����`�zi���j3�}�swi����t�^IY�J�rR�9:yZU�vչv���
R�Y��pDj� �!|�KX�� B�"_�҇���K��5@���o]��;��irfی (M.����U?�(Z��9TS�m n��CٸE䨷z�-ʝ�~�1�3x�� H�8�K��:��ۅ4��2�����uG_ZH��ї��}E!�,�7��B�}Q�����{����~�[�+ ~�q���g�-꜇NT��zJo�t��{��>;�e�hD*k�F�e�|���������*�ߋE��J�*M����_~n�Tˇ�*��[)�_P��d7���{$�d��hV\m�dp��9e�l ^�vQ�j2q #^�ޞm�K�>����C2����PK
Y�n4��7�� �org/farng/mp3/id3/ID3v2_2.class�X x��g����:q�Aqp�-�1�@9�v��`��Q��d-�e%�$V+�iK�(�hI)�)���%r�B[�қ������>i���x-9·�/����y���{� �{�IX�E� �*@��$�Q<I�)�8���<|��/�E*��A��*P%��=_ _�H|�����Uj�kD�u����}��_$��H|��wh�<|O���%�?��h�ej�H���� ����Ϩ�s� �_�x���
�+�F��",$��ߊ�~'��E��\�$�H�O$�L��ᯤ�7^w��W&��I�Er��!�?��/�-���+�����?B�}�#  yY0�2N`N���k�� B�U��(�J�I"�b���<�Ps>ϪE�Rs�\" Qs!�jDHP��gu"$���g���fn�-�Y�*5���trd'�ȉ���2�@�C�Hx�L`g��F��@�C�H��r��IfI�EVHxx��Ae4=�Q�l6�N1`�,ȥ�c�谚N%��5}�|m"���3p450�:�1�ACSOZ���j*�:�ikM��Z�7���ڽj �-���>��T9����r\�9��g�<*�&ҭ�r*�i�Fѝ����ϋ]WG� ���YϚT��;����PBQ�45I�l��D*���j[�(��ݸ9�QR1l(W��d�Am�4\��^%��i�T�G�*5�!�S1\VQ���-"-m�g�4 $r#���ZR1��A�vUKd5�ߞ̍���Qd�_I*rVA��L����.��&%�"��a��PndPQ{S:� ��15�}%C9m8�"Q&���IY�o�x�q�=����9;��l��ٙ>g�>gg�9k�9;�g ��%� |H��Q0/�Ȉ���2��$s��8��l.�I����(�~
I� ЙΌy:155�Ҫ'��<Q9�Tb+=}z<�XF����ц���sr����q.)�*����ggK��Jbm�\ˋ!�YҡUy�N�+�(F�Il5
�n��eή\u�w��%���]� �ֽp�3�xrCimc:��M K�N�DM��!" ������03�:rCC�����.��Ǝ��~�b�Fbkq��:�^b��%�NIpn�X�dP��#� �ĺ�F�mbc�{ݝ���:_pZb���d�R<�HF� �qb�dd3ټ��z� �� �ꙫ�������QzZ<��^�>��1MɊ���J���[���a�%���k(L��8i_VN*6� �X?9���Q�m���F(�X���c�\�" �煞�ؘ���"������Ι�kp����9u .��CQר�� ��WR�c�O�O�D����X����Ρ�kp["=�+���vR�*�n� ����h���� ��.WHl7 �X�C1�m�����&�ɤS��V!,.:�ӎ�B�Z��6J�=(�M��j����*q�_M��K=l��k�o }����4^@u�՝��Vk/oW�(��a9R���o[.�w���y�3h��+��5!k����.x�ߴ������R7eѐQ�Е�T �UU ��'����*������'c}�DJ�+W�C�5���B;�M�/�ʢh}r,���6g�������:��xm�e����)����-� ��\�)E���D*�*t�l���h!�Q���ZU`�$z� Sf��>I˞w"F����$s�U�Q�}�꛶�dV�7 `#8�I<��06�òڮ[�i����!����f��wtOS:픤3�9퍌��zR5�a=�9tl��)�T��Q���rj�@7��*k ��<��@��2�]v�F��m����_�R�Cy ��D �����u<
e$^g8���O=�|Ą�RFD^�$�O���2����'������7؍�Q����Z��]P5�8 �O�4��c '@�)�f��^�#0��;I�<T87�,`0��r18 �)�����P(����P7q��݆�E�������a���Q�W�:�p��2W6�F��MZ|ؙ�m�.���z���M�MkB����=k'��Z�$���VӯF
�8�FC0�l6��OB��(|L��B�>N�!���Е�I#�q`�at�g����o‰�-'�"��0~��G�Gm8H��4��L²�|n΁�r�6�9���qm㰌4��12 �1rg��,�
yh"���)QIs�ζ���q� �tߊ���oX;�됙<���.Ƀ��P�Ω,���; N���ZI ��n��=M^�1��:�p+����sn����v8���� �p�8H�j1� �������G`m�Ơ= ����(��G�������S���U�a��oDo
.�`s.���є��~��f}���P���\����q9THp���� ���P���ؐ (�ݕ���MFB�J �_B�y�vm.1�1�>�3O��g���4�?=���'��8����ěH����*cD�NTcة���`o��]�a�ۦ'�=�X]Q[�n^v7Ժ�جʼn����U��㯹��ΰ��;´�q��v
;)I��L#e��wo�����Z��0vh����B�� Q�n�2r�h;?Y�N����@�׵ �5����ˏA��|{��"�Y�;��]��†��,��v�B�6�gfAڑQB�l�C� ;r��q�Y��vd��{m��΂�gG& 9bC~���l"��Ȕ�&d����꽮+�*�fm���fG�9jC��Ld��:V[I�,�j8��� �p�$\�w19X`&��a�:B���i��e�]S̷��{���H)��v�=�[���|o��-�7h�Z|��E ��[|��F��/�u�7� �����׀���b�!��]�d)��>&,�+�K|�[|GJ���%-���߻-��J��F�U\�{�5���S58�gq>^�G��c�����|9���PK
Y�n4��  S$org/farng/mp3/id3/ID3v2_2Frame.class�U[WU�$3q<��Z"� �B.@� ji������bU�If�d����Ǿ��_B���7����/��= �PI��g��o�r�9���_~Ї�5t�mC,�a�.��4\�0�k*�k��,�gA�0�!�Q75��k��k��q -��AT? *&U���aL�0��':p��3,�س�~�����U̫�T@�fٖwC�1��:YS�7:��d�p�|r��JZ�Trd��F��o���\c�L;ٍav�X���H;��=�X1֍��$�v�Y�d�Ri�*T�ڭ���Y�]R�@@͛ތ�i��T�kY��#��L�(b,,z%>��_`AŢ��%� =i�&r)���K���V$��bU���_���+pƯ�`P�ϵ�<�S��$�u0�n�+;k�wKh?L�^��LWb ��#V)b;^Ĉ�?뾁�H�3�x���Xb�_�k�o0 �-���T�GD/?M�K'�@���S���.�D�����t�8��C�N�����V�2����{��8�G��YˣhVi��ڢG�bt=��SܘZZ13������p��X�)0~x䏫�g��T�q7C�45��iDz=.�nø@�oCzë^�����9?����qM:md�ԏQg�J(��CZ���٬y N�>H�:_ƚF�N�4Ǔ�7$�OA1�EӦ��S�8�lUg�����19���}��@^�؜�%�D�5;cp���D��N�R0?LJf�pG<n�E=���k���d�~5�*h Ʒ ~�lN���h�/��[hس�Գ7��{k�T����2By�N҂(O���
�?*�=�>rc���� ֪�$%K?�E ~3k;h���2^-C*���O5��.�&�Pi��_C�Dz*M����Z[�ɋ]e���)�Ө��|o-�n���V*h{�D��Z�nt���o��09t6�A��s[8�{<�$*��[���ws��#_W)'�>Bq�n7��e�� �=��ʸ������ߔ�ʸ��R>��B���PK
Y�n4��cd org/farng/mp3/id3/ID3v2_3.class�Wy|�/;�3� ��,��&D ��98 f� �:�N����evEQ������`U�j��*V6H<�V���lm������[�{s��l��|>y����{�w�~��{�����yx� �‹�P/1y��+L^e�L�L��r���}~ ��PޔA��y���L^b�*�ט��8o��m��-Ï�2� ���D���a��f~��= ~��;2̄_���0�-��1��"�A�?�P/���x�g ���_e�f��g�?x�O&����G���e�����.&�+C���G�����'�(�
v� %&�Ld&ed'�N�p��� ��ER��%�K8��S%���R�iN��J��8`��V�!�L6pxp#�d6���9<;��\��D O��d��SD���kX!(aH�ZRX#a���d���zO����i"Ηa+OD\ �v��.�Bv�� ϔa'�%a���d����"�-�ul��؉sx�̶��4��&&�l��I��-���6&�l��I3kb��ژ,a�&&�".E(���%��.K�q\��h�2����R��D��m���i1і%�v�̨�X"_�خ!�'R � �S]�AhK�h��ꎴ��Q�T��/�P��5Է/i�2���E,7g�@�Ƭ��Q#��!��M�Y����>���RS�t_K4�e��I���K�E���H��".q9„�f��(�DOB��V�XI��6t�{Db���5��S3��&��~5�E����[��W��j(I��-��UO�+�J:BV�.;���)i�>��P؍t*II�r�� [t#�5�����>�?���5U�Ғ��卙h���xێ .�R:iT�g��zYg�FM_�2ᎈu �(�d6�olJ��Ig9sJ��+vy&d���s����X��n��E|κ}Ύ�Y���n�����&w—�����
� w�yU�肣�N9��5�l&�� -��JG�8z&�ҙ�@OC�i=�J���Lj�y�UfB�@F���06iU��sV8�g�ܫ`��a�]�NW�*�W� W+�5'��Ԓ��2]��,�)�IY��D ��q5��NU�!ا���
| Q`?φ�� nL��δ�,ݟ��e�r�i�����z$X���D�P�frzXY�G�A��\��z�H� x����>�9�F�S[�d"F��lβWK�;,p.�QMp��C�u��F �$m�t�Ѵ�S�'�)x)�%Tq��Q>Uw�}
ƐY�(�`��q�� ��D�����1�1���17�P}�DL�' c�|lVx2tQ�� pf6�D������*����٦�iE*;��n�ө�v�2���+;�����׾k=��w������;u�%�{��J�[P�,P��D���ŭ
n��s^b����]����|/�+f]�̶�c��:Jx%o�Y���c��B��������^�u AS��me8|h����ytydඕ��6%�HW�y�4%����� ���Wq��֬�| Y��7|L�|�w2�Z�k�n �p=K;���.w�r�;v>�qK^qOq����y��Є�޴�Vӳ�P��/T1��- k�(��|�A+˫6���7� ����S3'��
i��J��7�zg�Z�*�'��l'U�ٟP� ��w7cw%5��T���IY�5����%�&+Ӌu7�n����vn�&m0�]W"i����9ܪ���t"ep�A�� U�ڹ ��Q7} �t�g-�.h%�,�h;�0��G3VYP]�&�D9�#�Y�4VZmޒ�L2U ��#�I��hV����/´D*�k|��ڰ]��B������Q���XX�c�7ʲ��|&�icÞx$V…��${Oh6��V|[gT�;
W�ޖ�o+9�$��&�D7�z�amI���k�
ɇH��9�i�YOרd���Ns�ͷ�ܱ���@6��{��Y��gm�� VV��ߞ�}��0M�Y�:Fǃ� +N�����z+�p����)�nN��{���2��~����PB3���0`гJ�x�L�L|AoĠ/�>�g2#|�FXM%4.����8D�(a�&�F�%h���>�;b�^������Ǐ�b�Y�-��{���2a/L��?a&>ɌA( 9<�����p��(g'3&�~6@�F�q*;Oc�~��q�~�^�Y���F�Jx�C��<��pf6zG`Vw�w�o��(i���q$��([V����G�|(K�+��#���Dݭ��I4�z�s��PGm3W��@cS��8H�)4� B�n�8��(spB��dZ�G� �q��;�~���MYe{���=�A�m������\sj�9��1�Skׇ�D'7����*a{h\��{�빟U�乗v�{;�p�Q�|x���|�!8>��Yd�$'��F0';�䜍��i$��:y?O�sF��{j��!H��Z?��6���P���ͩ�y|{��Nh<�J�d�HI��4X�m� ;�Q�"��K��y+���[�]Ѵ{N;�,�?C����Ѱ�W�+�DN�A���kA���aX��zY��p�-aٽ [���{����
%�3���@���x���x� ���Y��ݪ����t+�r�Q�5��7��*
��A���T�w���JT� �+�t�s����"����r�d�`����C��,:|C�,���TT�o�[��[���.�u�e ��{L
�Js����sVt�t���w�)�h�Z� qdS!��F���j��=v*����un춊�\�c��J"4_����]V:m>>���*s����O/�_k���/��%��/��b�n�/㯳�|�!�6 ���lV8O�Dֳ�#=t��|@{ٹK~��E�Fѝkbm�LcY9��Fa6�G7z�����\`V��<N���gaiE)yy�PQ%д�ꍑݥ8t�*��T �'�7��".̝7F�z�`��7[ �х-��(�C�������҇�t�U� B\�*��!#���k!k3b!�PĆ�*Tn.����Y�;u�N5JU�C�ξ�3?2����[���7QI�k��r�I����|Y�$�m|��f�[3Śi���E43n�ͬ��4�(��uk����|�����V����<TDs����5/wi>UD�
��ּҥ����h�aj^���ɚWw���{`F�������]�_/�ѵn��X�#.�o�3�f+���J,t�s0�_������0\? �V�_�l ���cN�>;^�/��}�/e�}��{n<��o����B��ާ�o���u�� �x���i��Q�eԻ0^c���7��������0?[���¼��|a<�>nw|�\!�v ��޷�û����B!� �f����|�;�]�1b�0�8����k�>^��xK!�u�-<�?PK
Y�n4�R��$org/farng/mp3/id3/ID3v2_3Frame.class�V�{e�m�� �%R r%�V��HJ��BK���%ن�4��m��x��G�>끷�}�����G�?���G�ywӦ�К3�Nf��̼�����?؈� 4��{��c���ML����nar���T�� &�� ��T1ȶ9&�������u$�<���(���,�,�U8A��0;���~|*���3�uH3 �.�w���߽l����������x�5Gx$�Gx,��x"�'x*��xFBc�8T��r�*$H$�B�-9B�<h��x�1�^22���7���p�*�Y��XΨ��mٞB��%����I��*X�V �h�> rG1kJ�$�]�sm��]ȵ ��۬l{[�`ٱ�����>r�N�2���v[7�����]X
�K����"��/a�*�}�1ڬb[�Q��� Uq'�K|�3c�"R�����L'e�e
�I��yǰ�/S��@y�.�9x��8[Z� 2�S���m9䵤l:g�TCvh��i��d��L�LLRlҁ�L������;���^���� /ℊ�4��W4�����|˭�$^Ӱ]*^װ �5��W���[��;*���'�>>��!K{0F�7U��c� 2��4|�W$���B�0b�l��M�C�ҙÃ����|J�#V9R(:#"|#"���"����S8�7~��s|��K|��k|��[����8�>tQ;�=�����ݝ&�ۓJK��S�?�A�o_|�t�n>��;w3K%iί�Z���9^Bݤ��OS����3h��f����$7DO^< ��]��iӘ��������{+/��r�\?���= /?�`�Xu����g{?g�`�06�ng���h^���l�@�"*K�E��00Z]��L�:�NHH�p�NIXf�n6��^#��zt�ݐr�4��vq�˲�Y���͉d�7�'��
���'}j껠��Y�U�:[;�P�o��p���,�����X%�@�3Y�E�i�s,���z��.d .�YnI�:�J�,�C$dv�qs�����W[�̫�$�����<���q�'o���h'���@�!6)�� L|Ld&~&
5VE�+�W���\N�Gc�8��{�i��#��-؀��!.�q?[Wؘ�J�S�����Ew)ķ����^��J֭b�f� ��HzqOP\���.�� +�Z���b�n���V@�����&_�B����B�
�M�
�X9�������T��xz��n5�:ߍp��tӿ@�4=�x���ʱ��fu�?���n��UϮ��� �> ��`1��XC�d.F���J�
��vP�v�&gi��=5�R~���[�!��O��%�,�nᕕ���Tq��0���U����Y���JX���'�����Ocm�i����R�E���T�aџ���e?�s@�1_�b��U�,j˺��u*�UE�T
��� B7����=�U,���M���.�M����B�s�d��� �n��T��0a��], �,7����+�ؿ�a�'������]��4�_:,˾4���E����;����BӴ�U(����h>r��O��S>�I�p2~N$��i)�MS�eB�M45���^�Qܭ�.�ⲓH�v!ܨ�.BB]!�k�ЕBؤ���=t�V�k�Ь�6 A�C[H���}K�ǰp�আ�PK
Y�n4��!X�"org/farng/mp3/id3/ID3v2_4.class�9kxSב3z�{u�Y`�<I�-ɘ`J��$�� �q\�!Mr����-9�L0Mi����MSJjBM��m( ,H$N}$��&�h���v��v�ᄏ��9�J�- ����c�9�:s��̙k��^��xQ������0�[���|��W|��?����Y�*�/�Y�oz`���*|K|[���0 ���c��U�s�ۼ�
?�a�\�
?�a�\�
���j�_:,��f����:,��5� �?��g�s ~�_¯T� �:�?�ɿe�;~��J��X�UV�QE�k�����= Th*z�l�U����C+V� p��3��eP���3u�,k�8��su��y�3_�<.�p�7�b��Y�K�v�fp���th�\ob�:f�g`d�B �A��<62X��Z_�a�۲W1x3�� �S�-L[�a��ϡ�Z��"��: �kx=o~�o԰E�V �4ܠ�F ۙ�I���5ܢ�V ;4�h�py~�Nخ�M:<��N��f>V��V��`���6�=$�e��A5�:�T�偓x�%:T��Evkx ;��6x+k�M��uxM��APz�Ɍ�B�]�3f_��Τ�L<�@� �����C�0�X�'��Ȇ�����Ak�G*K�s2ցLYMs����{J��u�D<s=���~��-�c!,��H��{�T��q`��1����д�m��2ߒ� -{H��D�7ѹ�º�}�~�1�l�4=Ɂ�X�J�����ĬA6#�bL���>+��xo��7��^��7i����D�Z���$��0��$�Xw��i���"�m{�Y���z� Or���+ϐ�+e�$�J[�SXK�Z&)�Gp�
����p{*9 <#���r���F���Ϡt[f���̴EV�HO�L8�}�����0�S�i>�����f�,���!���G��^��Sg�_�_Q$���k ��>ʪjO�Vk�g�+ܵ�w�H�G��� L`��A�7���Ʉ;�dk�h505%ۆ�6�S��m�D(�6F7!��1p>�0{�������3�"�W�.^��z����wP5�H&�X��*���C�.������)Lo�E��pK�����^QEg�V�k&r�S]H��D�\�h�����������<��}��g����b
iQ�X��L� '����ʭB�@X:���R4A�jl�'�m���|r��"���Za��,�!���J����q�W�62��.�� �dU�_» ��%ƒm�d�=9��)�Ȁ1���~���D2��e2��5:5�#l�C ��G <��1�j�� ����V�35+�����<a�#x��G�l�c�Op9 9?�ORt���m���� �$���=��J�50���
W৘�iV�x��g�q*������ ���QMш:��Xr`0Ee�N��[OF��Rv�%��Dz8ۛJ&��L�z?kI�6��_�+����7K�ցA+�7��/G��XV���o+�����$�ȇ��2���c_D��B��N�"&k.m&P�wE�r݁�����*d饚��p&x^6�,R���� <�Tr@�h�
Y�t�(7Iz�e _0�2��9l+�8M��s��!�+�͢*33���a��V*-0��V~ҧ�����+4PM�pg�~�!|����X_����u�����]�7U�Q��BJ#�~�FE0
1�Le�� m���#S�Bme3'Bs9;�F���J�ȤP���%_ٵ��an�j�"�y���ۨ�̘l� �w�����͔*�2����fzo�\˗��M�.�Q��^aY���5�e'���rG�Ʋ��7L�i��$S;�EG �xR�+��]�5�Q����vו�� x�%�S�M&yDOߔ��x!���aA���/�SQ�7�ώ�q��Vj��0u�[�a�2�.yH��'�B`EOK*eS��
7���tޔnO��k�\����wC��G� >"�rFH��#���)a��oZ�봥�Wa��Lz��v�ѳ+���N�t-�1@�4[~�l�ǨLK��B�7�ͫ7���)O�R�m�N;D���f�gl�m#� ��H�y�ݫ��J�=}��>��$?�'wUΕiE����`��%=���������6; �-M�]��|�0%\��.^��"(<b*��?T��r�Lvy�3m���ZJu��s��To�X�.�y5-��
�@2���_�b|���Q����Y{|�ψ���< ��U8hp] p�'7���@c� ����,L;#���
��
�B��@0��<f�Qp��b�,C��b4�,I���4zH~܎����46�) ��0�����^��L��f��O���9�f��1X6�n'/s0��5����W��AM4А��D��g�+��䠶2�<�|�</ *3/�3/� s��2�_0�`I�ӷ�w�rpue�k��1X֝�7��PϨ ��/H�,�Ơ�����`y��" �6��`e��֝��
�ɛ�F�i��fw����1xx V�-h�\WAvH�-#�EÚ����nҴ&͑Q0�2k#�,��6<�F` M�G�A�e�76��nVy����寓�V��[��F7��t,v,�;�r����1��OJ����B��H/5�v�̠���������jw����m^}]����ՇQ��k�È4�$fn�9��A��9��0'd�!�O��r���?����b>s�N�t�d��f�lͧ���LS��b*�RLej��G]Le"����t��������N���O��y�E"t(���q���M w~��B�/8��J 5��h��Zx� -\rAVE�N�Ÿ�)ѼS���8��z�ƌ� z����i� X27��n���f��9�lp*Yx��g��x\M#S����;�R�4����C#��F�E'��(�E�v��av
��� KTa�x�z���:��b\@�]��ū<Uc���۝�[.��U�rlք]]S��&�)��)�c�Х�h�<R� �"_6�%���՞O��$, t��[��B�iC���vZ����o�l�QV�s�W9x��@ګ�B����� ����nAP�X��m�Y�����.k�}��}\�(N�4+�t��f5PK>����}����Y�V��}��Y�`)*|��U��}�p�=�^= �diF/?��,$��[Q'֮/��vM�nQ��ʋZDDh0$co �i��;� �m%�:�t35�'�i�u[HDiU��t¾�S�z��x�W����- �#�U�cR@���,��; ��Y�>��sp0 �(K�[�wT��S�o�����o�$�.I�Y�~���W��[�ﭴ�{$�QI����+��'�J%�{%�YI��$]�$DҵJ��%�S��~Iw���`�~�fE�D�%�K�G/�X��ο���Y*����+?�@1>���^J�fe  �?ęK���NQI5�o�TԹZ���8�OBM�B����:�S��q���]�����Ȧf�V�n��~��.�QT ��F��Y@�%�Q@x �2r48[;��{.�Gh!�|ǫ���%�B_�(�%G���CA��c��S�����o* �͝��9?SǤ�t�9Iy�tǂ29��� {�k�Ěd�
�=��G���Tm�]�.;���LF��t��3�ꖃ�;��oP{��� �Ͳ� �q��(d�X���%!;�BvX�dL���#��t��g�Ə�cL�?�4��G��G�ý$s�@2'�̣�� ���#���B �4�B��[�'�Z�|�~��ˆ�v�ﻪ#��8=>��+�%�O^�EQ
ҧ:�Y��'�_�k��:�7�+�b�‚1x�[|�P�,��'�^�90��G�F� �GPK
Y�n4(/L�p k$org/farng/mp3/id3/ID3v2_4Frame.class�W xTW�ofy///��2,�a2��`��&��"��hy̼$fIg^��P��U����UDc�j3I��R�V�uתu�hź���s�{If�d�s�o�=����{�{�}O���V � 7‹cܼ��o���n��B"o♛���������[����[����ۘ����%�U��p7w*� ǹy��w(4�N�2ޭ`7�p��> qB�{x� �*X��r�> ��x��(X��>� �SE�>�M������̾_�G%|L�j���qkpJ�'$|R�e�\�O���À������0��IxXA��%<�`>+�QW3�1g$<��7�������ȶ=� ��$�ľ�[���7_Q�U|���3� ��)�[�o��x`�\2����2�{�X.�>#��y�G<�c��'����5�N�+���L��.�Y=�to"ҕJ&�Úi$�uF�0� ��V�p7%���Ҫ�d���CK%:k�ݵ5F��&�������lJiq}-�W�C5�M�)-bZh ۘ��Z���[�ڪ]����!֛2"�ښf�'��ǢV�x(�w�� ���i�#Y�MKD��HDO�71VG�O�N�l3떫B�9��-Fk˜�1�6ݺw�1׮ w�S��L��"����s��3�PhN��I�@��X�Ϲ�7�r�Kn~��$�m�I���9��Y �S�{<��8'P5]��#^��'rNh����%h1#�:G=/��IK$��?B�2u�%u՚K�,��d����o����wpW��L[6�oX�?�V�YE�� ���oxQ`х��Z���&��\%�����ۚ� ���'^T�/�[`y�N�8V5
���MS�A �qvr������Ć��%H%;��&�d�옆��HS�mhn�$N#�R�kJ��/e��i�N U���
���P:����:u'S�Ո63e$:{::t:��G$j)��+P��1*ْ�
gU�AI�*zqX��PD�*TQ,���I5G��Y��q�9"f ��W��Z��2<O��o����8}T1G�UE��P�<Q���8��b���,c�r�)���Y�}�{�v����ZgC��S�)=��8WUYU�<|����D��l�L%{�ɦPTO��I��H2�M�U�D$��h�l:��.�|���������Ӯ�e$PL�l-(Z�RZ;��+ϕG�q�i�,�ˍt�=�-,��qd�D�ݽv}���^��E�G ���D�q��M窝@WZ.ӭ��'sF|�C�ׄ>i�vi���L-�m]��X�� %6���.������b߅J��H�-�!r�;au�����E��/�ǻu���ڵ�2�!58I�X(ёLŝT/���v�&� ���;�i�M�6�e�W����`��\��+�d&m��E��2f�g�3R��֤�09�)������k��Ƽ�9�
�5�T�i+9��kJ��"�i]�O]�f��ܨ>N���1�g�C��H��8V ��`az���j�Y�����2�<���9�W.!Փ�w���<���o�� "ҥ�L[�&J�4'˸����=!��G��d%�ͯV� �%Km7�* AO� B\(���������`����Ճp�!�����L9+�;+Kx�'�iy/�\�ߕ�L������� �-��� ��-�I}���$kN@!����WP��2�����7�ٴ����gP�$��$j�����C(?�� �ij:��'Me�W*�����|�moU榍e�*�jLV� Y�J���qVgP����`A����ݷh�ǂ�������zw�;�e�^�.�+��v��b��W5���0<�U�^��>��@��Z)p��=e��I�T�ɠ���32S����'T���Џ��E� �.��Xbk�:��-�a���Z9�WX�'��: ���]��医��E�z s2�[��Y��+��¼�� ���4d�Ș& ����
�6fc6epc��0! S�m�r�١L ��}-�-l ���JM��y;b�#D�++v�����vin�8}����搵��xN�sތ@m��=�=Ҟ�Nv�ח��w��*>'�q���>
�1�|����#r��h*��pA~���M��h�fg�gהy�οP�Ϡ}��+�.���;�����A����;�ם@u5�,�u:��W�e�icN�7 9{w�@ Q[r��>H�~�]|T-�?�Ud�J�X��r�.�i��Q�l��Śm��,���x�8�݁
o�"�g=7jGG�}�r������\T�^�q�y˼|b:N�,�d9��x�F��?�\u�eMf��~i��Bˍ���]a� ���k7�y�8��F�~{\<2.��3y���;�GƲ=v���ǒ=,p��~�m1{�ґ�ܗ�����PK
X�n4!�B�T�+org/farng/mp3/lyrics3/AbstractLyrics3.class�S]S�P=�� ���H-E��#�
2S>t|��FK�I"�O���K��}�G9�
V��f���=�w7?~~��6�5 ���*&4D0�a�XdTL�04tbREV���A�X��(ڌ�����3,f�al^Ŝ�y�ز����@$3�\@Ys�R��]�b��<�b��f��g��Yx��U
����ĬZM:e�d���:�L�5�ZN�=(�J��7� ���%Y l��U�Uq�b˲*b�r�����c  ���8e?�eXR�(t�GR`�5��U�q� ��S>�n�uF`�a����:yt,bI�2�X���:
x�c��E�ƹ��=��V\ӿ���������=W��=�s��\k�p��iؾ��ڌ�%��"�>�����-^rkK×E �Pz��\� �n���2(J���B3[�Uó��
�;
��Br�N��l5�!�B������A3���h�G�$+��W��� "�Q�sF�\����wN����������T�J���7p��ȓ�Q�Ϩv��Tk'�����H��\B!�������X?��Bv���,��'���
��>�H!����t4pqG��~PK
Y�n4~�>���6org/farng/mp3/lyrics3/AbstractLyrics3v2FieldBody.class�SMS�P=�iBP>,m�P�R��! H�� :��GS�N�Aa�p˒�7l
#������}iA�A�dr߻��ܜ{�˗�>��C h�C�eDet�qE�Ut���5n�ˈ)���FBE=zx��r�ǩI�2n
��-��G�b�%⤓gcY�5���k�ɍb*Y�r���J���|���ٲ�90m�B~��oe8]u�������c�uc�HZNrް���x.�<o�*�L\'���+�c{2Լr-��;����Kq����[�P
i^�]�6y�;�bHFF�0F4�bL@��u{�(X�E�<VE���eF�:�k���muV���u���iDŽ�I��0�w�x�aTc���Q@�i���Դk���˸ƣ��s'$'~���`\�gu���9�|B��*;b��j�n����R���1rD*�;1�`��Ӻ��s�����ט��m�7�I�ų��d�Y^���+Nm���|P�gg��bd��M4��J�w�QN����)0���h�[3�q*Y$䤀pp�i�Vŗ�N���/?�d#���*�N�C� <�T 7��n@J��j���"��-��!L>�R>*�=�!����C�˴�G��H�� ������ �>j>�����䔬����*��ɓi}J��{(�(A;@�l(-E$���s�]Ե�#R]��Ix��[D,�_I��;�h昈���J8������.�n�X�J+�PK
Y�n4��+x!?(org/farng/mp3/lyrics3/FieldBodyAUT.class�RQo�0��tM�uK;���)���'RAL�T4�ʤ=z�W<�I�d�W�K+��x�G!�$M�v�t����;ߝ���� �344pW���i�q_��TTl��P�# y<��-�*��W���k�Z;$ȼ�lF�]m{~�:��۳���4�=��g�7?u^ʀ�j���P�<}��"�F�������ov�,���"\{���!��@EM�I�X�< ?{�����r�6��� (-��!?�LЊ"�l�|ʺa���%���*c-O�T�*鰰C�<�+� *#�.��E�V,3�W�a~��4d��c�x�]�����`�jR�8}*
����4��r9�����?$(M��ڿ�}q�8�O IN$�9zsC���iQT�gԎG8 ޺��Gt0`���s$��^?����?4�����]��r � �,N+b%b]4� �#��W����Yca� �%�unJ}�̔U�d�LT��%8�1�,��*�R�r���Q\��!I�h(#dC�p�SN1)M1r1�����uq�����#CC�F��PK
Y�n47^o6!<(org/farng/mp3/lyrics3/FieldBodyEAL.class�R]o�@����1N�:)�B�h��4� �P+EJUD#$�j]�ؑ�F�_/�����]�MZaK{w;�������_^������l*x�B�Ca S���ౌ'*�x*\�2vd�
o�Ǣ�R�� �޷)�N���qb�c Gm�=���F]�o��wz�E�Z�wj�M�59�8
�������|�����cY4 �Kc\��b�Q�|/�ѐ�$PBu��ِo�l[�73�8�kS/b'�e|6:�R+�0Ұ��0-�|,���k�U v V�eyxY����X�H��1�J�42ό�-��^b�`��}#ؽ���Q`��'��^EP���Ʀ���d}$�\t�{t���Yޜ.�P�w4�9~ 3��IhqT.��̓�Y��uOd1�@7G#��}6F�����q\���C;K��%�O/��~Z�+�k�9����:����)�f����b\�M]jM���*�۩��8'�p�B�#k�Ap'S���ʜ�:� �HbE]���򷔳�q�ii��$`���7�I��͟(~֥)� n%��PK
Y�n4���?(org/farng/mp3/lyrics3/FieldBodyEAR.class�R�o�P���h�el��6��ԭ��9�ӌ �-!a�و��w��Z�V���M���Q�{�R6�"$����qzι����%�:�x æ��: <�� e[��x�#�g2��bG�E�}�]�%P��G��{�a;V���9�ݮ���ޥ�;A�>���˃�ɾ�Z� :�v�
�i�s��7�<���:^��� 8�=������sU�\�†� ���{ɪ�� � J�an��9�
B�yp|v�:aK ,� CMt{x���Vр�]��Y_1��}�}/r�c�yʿ�6��ܥ!sd��+�l�t�7�gA�S�@|�*��uI��wڴ����8z��J��m뼽\�$�����J�-�J&�E��Ϩ�p"޾�̫ L:0�i{�=�f??Y���>���(�۝��i �
��,N+�I�s�:�$���&��Vkc,Lq3�נD�!�US������������g1攤�@V��^�ZJ\��5�' �H"GS!�귄��r
Ik���`�Ӿ7�I�K՟�}2�1��ą�PK
Y�n4:^�!<(org/farng/mp3/lyrics3/FieldBodyETT.class�R�O�@��hW;��E*�E-��Ic��%#iL�x�Gs�k��.�_�_�D�g�(�][:� n�]�y~/�=���������(�\�5��a��\j��}C�#�u��D�7Ul�h,��>��(��G�»�a[�^�� }� ;�w�~Ա�9󜷁s�gۯ$a��;�#jyT ���n_��<�>P� ��>��}�$��}�a�?R�T�"(�,�:̏� g!A�ќ�&�"�<�D���VD��������bK�ȥMPL0��!ZU����M�<kA`]�{��Z�v�9�_����i�icx������`�j��q�Tԟ�G;9��~���G��Mݼ���w/D_^7��� �DG�;'�an"),aBFAv��ͫ��<����!�;����=[~6����wr{���.C�4�ĺ,N+b'b/�& ��L�di �,��,L�f�� %���2���)�*ru3S���SLM*�̪@�j�j%+J1�ebwr�Zf��ح�tiG;SC� -U)�n~�5q����O�>���7R-�PK
Y�n4(���� (org/farng/mp3/lyrics3/FieldBodyIMG.class�V�We� ٦�T(m�Xд�
6�UT�X���P�E��4��0�3,u׺֭nU�kk]�V�=�q9�'�|����������$(��ɷ��w�~7�鯯�� ��q �C�9�* /C5F�doo���n C�?#L�<�2��q:� �h�5�7Yގ�v�Wzpg�0��D�apf� ;�Yl�e��`�0�ƦxuH�=<��}�W��|�fS�ƒ<<�����2ƣ|���x��yx�O��ሌ��$�3���, ��uRMm=��2Mu*�[v; t�nwJ�55��ߑ�h.mJ��lbL5�lb��5��2���5�S�r��|f*ٻ��"M��J����Yq޲�B~�-m'�Ŕr�%�o����Ājd�]�fY;��{�9��
��7����"��Ɍf��V75/�!!Db��!M��$3�5X�oiv���.���}d�߫护%g�j&#�g�]E5G�ʺ����'u%��wN��Z���M�Ǧ�fH�λ8%�6�����rq��t`��U�ȡ�6���s
��nG�%��ϊ]
^��
�`��tY�]��[����/�z���ة��W�1����+j�� �U�a:����7���%���2iL�9=3�f�5@2�)�$ �[�Jt\��e:�����&� �y�W�R�b�.��i���|�Q�Ѷ��A� �������S�@����n*�+8�i��SJ�G�g��4���I ����,v�lS-gdrK��R��=$�+�r����)�~��
����͋K�n�ĩ.�y�Vu��{�Ro�^V�-��$�)oENV��L���)T��h�D� ��Q��E��$��l{9?wòU#M�7�[�/
�Q�<6nдB�D���$����@�=@���)��Z(hFFt��p�E�>��]B�\�J��fd�qZ��U��[I�P�(�y5��7�sc�@�P���d_���s6<��h��-��\���5%ύd95'Χ�Nh,�X�RL?P����u\�͆V�hM��N�5�G+�&6)6�����s@hu�ZO2?}��� ������;�F^5:}�7F�Y�#-3X� <|�'���9��=��C͑���9�.O|�'^�P����ϜJ7 ���+���Aj�u�J}��VM3�]qƳK�ջl#���&_�+�pa����-� ��v��]Ȝ��P�������@�4����QMFz+�^�R��FH ��1O+KFo(�ZK�p��y<�ʑ��" )���z�4�y��E���qo& ����o�W�C���~\<��ٍ0�b��ru��-�(�t���7r_�2��nx��rk΢���O��,.p�v+f�0R�8� ���\�D{c-e���`��}+G�7�uT@�c.v��v# .I�5�s�d�� |� �v)�7y⇫(y?�K��C;C�h>������y[�Y����`$(��3�QS�k6��?���N!%6DZ�eG����������v�3^�g�.kx Ws��{�4R�F��Tl�c�O1\G�)�b+H��V� $ln�l���������>��[f����2s��!��H@��G]#�zek���?F�* ��8��.i��X��o<`�^+��*U��.�|� $3W�$p���w���@u�'V�⌗N�PK
Y�n4����g�(org/farng/mp3/lyrics3/FieldBodyIND.class�SkOA=C[v��G�*��n[a��/�T�&U�6&�m�uH���.��+��&�?�3;���&ss�s��������U�֐FVK*(x�!�G&��"'��"/lAAQ�c+ư*�Lk
��n1�obF� A�kS��Qq��ylyN�l�Jf��c5�d�2ڰw\���ݦ $��Ca�ʉնL暟,�v�۵��]֠!N{��F[s_���Aҧ��i����#z�₟�9����0#D0�!e�:;f��&x����� ��)��S��JX��G}� H�n�Z�@n�� �y�ʚ��f��H�fy��Rx�W��_Ż��C`\l��ɔO��$A�Χ��-���w�`�z���x�[���>� {�Rv�V��U�ޟ �To�彡ۍ���f�pxq#\ 1gYs�XWF8t#a��Q˖ �#/_�$W���jQǮ��- (^�"G���<��IC�T�@��p/�-�6Q��"<�u��?0Z(v12��D�$�6+�=v���\�g���7���:��Bj�Ubn 9���?��H*Å^-���P�܋"# 3���߸�=���c&�zczJ�X�7#�=�+�c�@�u1���t�HU�PK
Y�n4q��-m(org/farng/mp3/lyrics3/FieldBodyINF.class�S�o�@���(�2��&N�c�Ƌ�9�'� IH�3����F��Ғ��_�_ ����?�x�v�`�6y�{~/���\���� �44�pG�� �j�qO�]�*�2��⁆,�Ծ��� ���%�R�~$H��,FpP9�|��Qߵ���a:>� �řc�����s)ج��!5*����];��$y��ky�f�˂���ڛ/]6��*�*j���M��2I�����>� �K�b�����P�-憼ǙO��'g�� Ա�� u�����Gx���t�8$X��#�&�@`^m�U1�b1�e���KCfɺ���8"��� �'5ςЧ�@�zx4Q��J��:��P{�x����'3�gˆ��\4Ҭhq|��- e&�"U�g�b{*޿�N-� :0��xӹ�緟��r�o�7&�Q�B�ɀ�+!�Xm�/����{D��FX/����X��F���D�.�5C�����
����E�X��s��Y ��Aps�ZL\3s�%�JґD��2B�7�o g{��'GS�L �p{r�m���Z�'�� e m�q!�PK
Y�n4��~R��(org/farng/mp3/lyrics3/FieldBodyLYR.class�Wk`[e~Ns9Yzƺ��uk!�9�$[�uk�J�u�-Yg�1�!��9m�L�,紬�
N�ްCQX/S7�dPC�˼�(^PDPA����}���&�����v��������I��_/�`�0���1> ��o��ဌQ/<8ț7{I�-<������v����,u��w��!y��ƍ2n�F%n�{x�E�{�X���x�����6� o?����Gx�(#����x���1�;d|܋O�N/B�o�d2�bw1����oo��n��r�z�i�{�|�����G�X�w� ,�E_����q����^�σ70�,��!��'xxp��=��Wx8��#�bB��xT�+��4C�?�OQ�M=�ؖͪ�Q�0[$�7�)�l��o�J�sS:�I��>��4����@�Pfmcr4��k��Z2ўN�F�]-��/'U��6�zj@�/���'H;�i��������nK�κEO7v��Dz���O3�-zR߽�S�g_�0@3# -e���a:M C3�l-�L�n�&|!p���K���S��ܻO�3[v���HX�nm���$�+��ѣiݦ:�h,��ZV5�Ī��JD%b��t�p���q��d55A�f�@�{]���)V���N�N�kΟ!�
���߿���H(x ߐ��<iq�ec��(%�}S��Я`?�
���=
R��̤�P�E��>���$�f4 �2N+x�N�R5cjF�w|�|ߗ�p���kG��EƏK�m_I���� 득?�<�)�1�T�����1�L���) �@�R���S
~�_J����2�V��QT���Q0�x:���5��Y��9�Q�<^����w
~�}���I��I=ѣ��@2�Q=K��� �(%%w �8�eӫ��)!�Rl��ײ
�e��)��怂4ze��W�3�/� ���eS�w�C�?��߼��^� �gΉ����U�h��������"�%�]6[��J4 �Q(p*u��H������
>[IHu�оt�T����s4@ ���O�B�];�E�Sy�٭:+��
2��m%
��[��!���I�(�w�omgn�=�Xe��mh�L�q&�
9�w��xٖ/�:3Lׯ���s�p���C~Q3-��I�v����l�k���ų=Y���=�?.��b�<#)S�w˓Q��F�YZ�3�����MI��"���0e�j�O�'�!:���N7,�oӴL�P�%��O�����b&���$�g":��YZ��b�w���~��I-5`ҢoPͶq���& 5��ٔ���y�;:��z:���F�wPdg���TB;��<c��)������L�g��‰e� ��*�U5���q�j�P�C
N�"���8�Bk'�`I� I͛��<\%��ֺ��p��>�^�� ��'6O<�Ǽfg�NkH»�C?��$z�B_F�4����*'�w�)��2)����O�_MBs��W#�Ih=�!Uz������t��pU�H)0��̪���BK�E�V��'��y�r�vl ��>� X����z{7G?����B�d,�+,��У���q4t
>����. Qs8_H �g��"��{ R�y�<��W��^��?���p�5NaI�sK�5�<��6���fW����BR䰬�ͻ�rx��؛�d���5�^3~f��˷"��鈾׋ �����؂��t�gF�۔�9q)Qv�\o��ʼn%-�b�0�il," ڞ\M�d��e�� 5����]vI�e�K��n���͍���Ū��֌���p��\��K�5ja,��SP_[�'���/4�H?egy�ʙ :�yس=��A�]��=@�<.;��&��y�'����� ����hy��:9l(h�1 �I]^i;�w��lsd��!� �pym�vr�-u�
K���V�I�-I�'C�"��V�2�G+�E�'����'����hr��N�+GPU����V�r�Ku�yo���#X�2u�5.�;�+o+�>_'����j��H�X��YL��R�j)�x1�Y�u�YN���`��+n'G�i�����r�69KZ��y6������ �V��픺<5��9ӂ�z{�s��ɺ�  �I��(��E2J;�%��v�u�KJZRԊ#!��}��I��0�DS9.��PK
Y�n4�14��0org/farng/mp3/lyrics3/FieldBodyUnsupported.class�TKs�T�K��*�M괦M![J"���`� ���! �(ֵ��+I͞?��ê6]� ���-?� �8גM�$3,t�9�~��u��߿�0���q�B�E�ͩx�d�Si粂+2��xO� ���k*p�k��~PT��ܼ)cI�(f9Ň\�HA�ˏ9��^��-�^��*@ڵjM&``�( ~�q�຀X&{O��X����,׽�Y�<�j>l̙�=�)�s��jv�n��u�f�Q�f繣��*r9�Y~`�Z�S7o[�]X(���/95���7�Y#p�/�SCU�l�N�a��S�lHP����s�j�����`�" �y��󀕃|v�ra�4��/`���Fx�����1�������s�a�5��s\�L�m k��Q�.PM67�V�������Nj��{t2�5L�s����o��-_h��f𕀱~�b�Ra�� ���6�71?��� K��lPR9L
�wa�<�
ڻ{������듀K�M��T�^'�DU/��.�os�C����ѡGc�-u9��S3 �g�Q�e=>�ԙ�F/�J�!�(����PrV��4,�gdF#Mq��`.�vꨘm�}��JG�r���jp���8}���~��!��߂�'K�N�NSJ�d�Ѿ@R��t�W � t�x+�\ �ɔn��t� � ��t�e2r9� �hu��sl!ߦO$�;�ќF��$yȱ�^Btx1H$��Cy )��x ��3 n�r�
קB}^L��-��yv�ӈq�ǘ��b$'2r6β���]��Boӽ�u���>�K�
*�4��ʊ1SZ^����Fb'��s�Jb�j��.��+�lg��� �m��[H�06r��W�'��3���z���=N�[�x�E���J첔�����$RbRJ��|' ?��W:��^�`���9"�=��Z8�}��H�-��4��Y�_PK
Y�n4��{%org/farng/mp3/lyrics3/Lyrics3v1.class�Vi{W~'�<Z&���i��D��8�iB�&�v�IJC�$uS�ci,O"Ϩ3#'.
��
p�R�b� �r��&a P(��x��oΙ�m�&���{���s޳�s�ڿ_~�^�=�����D��ǣ"�F��x����0���x�?����0���">F=�b�ä�#A|4����A|�7?ħx�4^�t�p����Y�?��ϰ�g��|_�y�g�K"� �Ka��ca|_a�Wyx�?����xe���y�:����o��1TP�� x�6���q����x�2����{? ��~��+"~$ P�3Ԭ���9yV�,�Z�s�2T-�#��~US��|�����zN�+1���)� �L���Vavu9��==��Q �4-C�Z�]cr��lO8fU������lV1�A����။Y�h��f���y�J��R�T�K���;h*֐�Wcb-�5�D���b��&��9Z�$#SU�#�甬����F.-G 呒\0I�j)�l�D��B�d��δ�O�B�b\0I�4���M$�^����2W�ļu-?�Zʼn���5,մ����di�=�B��l�T
�l*d�WA�>3C1]�xT� �h��1�����̤b�h��e��6T��u�u�#����U��*n�nf57s57sn�jnf57 �p\$� i�xQ@}u���)wݦ��Y�<���bQ7,%7R�S�z�+��_/���-���r�k��ʅ���?a���
�VܚVⲑ/9�߆�~�;L�;4~R�K(�X�p?�s}�AU)���ܜ-q�^�a#C������X�p ��6�?�7p4=,�U<H��l �p7��#�W��⠟�MBXB��< *�����W�M��ɜb�ՙbAa�)6"~*�g�_���k��v2�[�zI˭����r!n�y[���%;�+د%��߰'�e����������{'1J����A����WVs]�� Ÿ%�#���Iȱ�G396��6����N�u͒U��,��ڔn���"a�����sV�nv��J�H��p;�Q{���ڠ] T��u��t��,5�]���V�U'�-Q�{��0h�y�>CI�����nY��S�^Uk���QҲ2w�=븑^���+(Zޚ&V��S.����Гоnl֯u�_�t�N�(�
��Y��KF�@ֲ��Z��2�w�j��g����Q�F=��}�ߞ)�!��Q����Dz��c��1�I�piou�y7X� ]�J�~[bM^4B��.���_�����s�����[����^����~��C6q?��.ZS��q���i_�K�E�覗�b�zbP�큟`��dj~�\B`<�"|��[%4�
eI�O�eͩ[8�� q�����N�yDR7�,@ZBd��H����2�(c� ���:�h(#Zmp����;if�����2�:��_G��v������B3���ત���g�����������O{*\�$����Z�{wC�6����&�-<^v��x�E��^�9P��]�Ȉ$��> ѿ��"y� �q"� ��@�8�渊� �,A_�8��hqg��n{�4t8�2�Z����}D�Ǖ��R� 9Z��&ǎ
�w���tɲ�a;�;9�.�]�>������oD�*�TƮy���D����W
�����l��Z0�ep�%.����=�H\O���v���}��d����ZF�S��b�Yu��Bʃ4_q��Hy{ J �J���}��2�;�i���a[{|��|0����b����)ý��@�)`��t�����
k= 6������h��c8(��s�O�SY��ܲ��-�d�qyt�@�2�K�jdȅ��ȫ�J�缤.��-�\���rJ3ɪ��N$E�o.�A����ɷڡ#�ܫT��M\ v��߁��::l~��~Z6֕����u�����Y̹�+�͌�>�
���|6q8�R+2���Q4�Z�j ��+k��xQ_}7���S5`�5`�k��5`�Հ9_��abn� Ry P[��L Z4�C7�z-F�S��H ��YƪS�0�� 񭈖1X�E��U��PK
Y�n4�� |~�-org/farng/mp3/lyrics3/Lyrics3v1Iterator.class�S]O�P~�:֭���� QP@Puɀ �+�l�l��v �y���HI$�{��=m �a֋�=���<��9����?L⽂. ��ƈ�Q�!��M��� �dL&�+P�XƔ� x"`Z�z*㙌� �gTK�S�+�cU�zcZ�}p̲;��B{85ϐ��W���+2�;�n�I,���-2��[j��+�g�� w�yTH��C�8��B��84��A*���Q �0e���C*z�Qq�*��+㹊��1�b/U,bI�+��̐ T��Y����fy�����V�ʼᙶ�0P��c�u���Yv�n;<��@wR�]a�\Է�9�U]nV*�Q��*�bN�;7�ba6�a��1C�܋��� �*���$�J�/�
9:
S��F��-_,�5nU��`����gD�M�=����YqF���=����Q�I/�� O�Q��w�jb�f�뉉�ؾ���?����%>F�O;��)b�t
I@\'�+��p�-3$��j�7�|�u*��|$>�[�"ڇ� r�q�s�1�\�Q! ���U��$'s���12Q�`�>�k'H�C�H�iY���P���gPN|�rb(ʹB��Vg�ѱ}�[���7N�>n_V%�GgI��>�PK
Y�n4�7UM Z%org/farng/mp3/lyrics3/Lyrics3v2.class�X |S�?�Izӛ -�-- �$--T
����b� ؖGE�����4 �� ����� ens���p��X��!��t�6��sss�����H{�T������~�<���|�|'<��Ï�B�#�8!�7EȃG
�啓.x ��o�)<�yxB�����o��O��i�'���������"L��D(�gX�y^�E��%N �#^�/���'��S6�3'���W]�����Y�%~��<�B�7E�%�D����_~�(��=��f~�ҿ����� a ���w|��E�����x����]mN
x�<�S���/'�o�� E��� �0"�z�Y/� ���/��K�m�� �<�D��� (��� E��6���tQ"_8��� y��L��8��8�؉%��Ћ�X�̉�N!�N�!�L�8ˉ�8�#�l���yΉs�'�><����^�Oz<��y�Ƴ8V�
�\��������'`�tgD��[C �–]����~5�����+"���
�V�`3��)��U�ē=5;C�XOM_��&�?�V�jZ�����Yz�x���� u���:B=���J�g$^����} �ݲ�4G���]\se��P#�"`5�Ud��#,8+
MP3��I�� ������H���f a�i�)�S5Z�j ,��q�D(�\��A ���UD`~(��c&_���*%cQmرK�V�/�����xI6�,Q�dH���Rӱ€�N� �{��$IR�r�̹�r���q��"˻�&Ơ�u%�۟�TӮ�p�d;�����)1M�XOGD��:�-��!�FUo����3��{�J��Q9���s�a�)��'s�L�k�X�4J赃���`�9�!��Ӣ�0�����$J����X�)�)�)ؔ��+6el��2���Ӈ��_Rz)��.��Z�(�j��p.�N���<_�%X/�R\&��7S���q9;���+p%�9g�B8o��m�)�D<��� >����l�<m�'�{�(��d7cO,�z�CѨ^�٨�Q�'dZST��+{Bɞ~f�!9+�Es�Kh�k����t�I�
nf�.��&f�ܪ ��V�޶��n�Ϡ��§ 6'C}2[�a�U��b� n��6`��Mp��@�ƅ��ոF�f n�C|n��S�>�P�}_& ky����b H�nC(_ $\�- �a [i�;�N � �dpH[��f*��1��>��d<$�Ѥ J�72{�Ұ� ���������N����N<aӹ��,�Ծ��V��n��T����5kA���w�ؿs'gϭ؉��P=C�j{ ��F� l���g�Ix9���e��W�v �8�m< � q�w���A�)���5gwNB�tTq'�Rۚ���ho=�|K.�-�����7�xT
d8.+zj�cj(�L ��Hlg<�ңOL6�B_�� LævLB���&�0�C1�<$� ��S2 L5o���1'�^�{�;Q�1ΌviN��Qt�����T�X�gZZn�dܙ8���+���Χ=��X �m����Fj=l{~�.#�[��ėe��7\�]�$G�Ɣ#�Ō�.{%�d��bE��̍�:I��/�77z7F%�_�&����8]5�|
H�8�:�'��m��M;U�������C��B�n�u/S��M5�S��C�&m��m�4K�v)��22RY/1e5]z�ij��HL�6��:�E�i�c=j/'�:���m���j�l��xhd���8��"����_�����x�"M�TP6N�U�,����j����Qy�ƃ����S��X]GEK;�7�YΝV��Q�Z9nh�{C�U/M��(��8��%�U�_�F{h��>��A:����p8�g# �-���T�Ed�+P�RF )r*�4-H��0�~��{�o�Y%ͩ����6 �4p{��Ð�Y�ۃ`?��f�� �(��ӳ���E��؏C>�qZ��ӯnj1�Ѥ!b��oW' ����'�5����T�8�m�ep��Q�����/�2P�N�5�Ǡp& CQ�{�����P�; S[��0wV��dJ�`Z�V����� Cy'�iz
*��vkVk�OŒ!���zd���D��>8��1��Գ�2`$��\",���2`{})8G��'�/�Ė� �L����`ӕI�s�D�iZ�ӽ�$Q�h(L'qV��I��g�}r��䐋^-h��2�2����=�4pK�����N�:�
��\��1q�Ve��
V��v�y��U�ez�5ڧh�Nz���R,O�tQ�
�� C!f~���ȯ�!��V���r1������+G^2�'���|�RU�P�����#��#��:wVY��wiw ��)�y͌����j�&=����v�w��"�KA���ɴ�䅚C{�M���y�0�O=C��S�5fȾ�f�0!�y���u���cY����+&g/�ęF~�8�nOgL���� RGI��_o��^�����j߶а�AK�!��A-7�y�{�+|�۠B�6C�c |՟?8�2�k#��&X��}_�#ae�A���є�L��*��L�넳�GV�*�.�S�諲��i�0,����V�פ�y$ƻ�1� ���B���Q k�_��P���OjA�ڥ}/Lˮ1"T{Ws���ȶ�v�c��h�$���ܕ� {������e�SZ�)hMAн��oL�%�6���=�3k��<E��U� ���4���V�G��tD�S���i��7it�0�f-5V���3`���׾�*-��>[���e��sf�}��V/�T��L�K7� ;ۢ�K{��5��_�Q�� �1��8��O�N�gĶ�������m�2Ay��r��+���Ѥ���^�ϷՋ%"װ�G�����1]7v��.e�M��ۡQ�ɤ�/� d��S���i^�<36@���~�sX���*�`y��50�nkp��-/KI6�(��(_>ET*��8 ķf��Vjr�n�XhF�G����o�оv�t�1��$�,� � N�N�|l�I���1��Jk��-�oZ��{Z��#�h�]Kk���>qZg&�W�IZe$�ǽ����[���4���t����]f~}u��V�(k�Y4�N��j�Y3aѼ7�YJi��"Zﶇ{7C�kXOZ�+l]�X�z���A�XZ��@0WC�ي���kƀ��{���X�J �o� ^�B���q|f����5�`�� �#�:���
�@6s��梆��e�����o�{0����\�0��Lsq��Ms���R��͌�P6�I�K�p�L����j��C9�<�����`m��*6`�f�*�a}؄5���^��}��k2����}D7�PK
Y�n4r ��*org/farng/mp3/lyrics3/Lyrics3v2Field.class�VYxU����8
�Ņ�d)T �[ ��"M��b�d�IH���� ��{�����)R��}��7�}WϙIRڴ�ҏ{����힛/�9x�B�!!�]<��ȸ�S�tdE��0$�薰=<�b�.�Y����"���n\%�j�H��k��-�: ������}��E�$�$�w� �ٍ[D�*��q���#������C�|ֲ׍;%�m+�p72<��OZ݃{y����yx�?(�!�xX�#���K����z[���>��S<<��gXɳ��ϳ��n��&��"�G�Kl�/�xEB3/_�6^�ΎӼ�c�/� �y~S�[\�h�f�'����\����p:��K(Y=YוY\���j��⺰=�,Z����
��5�ak��*1c8�1�xegh�!Nh�J�ja���15chi='�d_x�ң�i�u�Ow5�bj.�ZK1X���$U#WuCKhjV� ���:���jzr��`����}��ϪJ\��H����A�n�a�t��Uà�����wx0E�e�@v9;���y��-i G� +8(c��CxO���[Qf���0��h8rl4#}�����Y�ԑa9�&�x�ϙP�j:%B �C�Ʈ�������t�K�����r�#$�p��0cۚΜvcC�E�F(�s��"J�t,Y��z��ƨ, �[*"o�ux�t�7����׺H$���HB�  ������_��_���\0߈�V�w\e�Í�=JJ��e�ȴ7v'jV���.�W�y�T�kqm�.)�� q۱Cď2~��2~��2~��24|ÃB����&kiE�a��aE�j^3�b�#Բj"�ʂR�9�{�С�3�t�P��k&�9�B[,���T��.�]��J�����>�q�µ�f`�R;��H3�N�3���۠�T��
�Ɛ�bN5�&ʝ�^�}#[�XVRV�q+�d�h�ǰVf{uL�0�02������n%��C���j̰|s�T=�Ο6!���mp<˫����N�3�������D�șS�4��Z��67�B�^V$�]�-: -�t�-7���~]J&��T�����Ld_mʄ��V�:� �R .����T.zL�D�Ls9���*ۮ��M]��p_(��6%�`p,B���3h#�T��!�I�%�5�fz�P�Cx�����m&��
�4��e�}���e$�}a���y��p.wV9=&\}� @�z�ygB
��|"a�#�b��~aAO:�Ĵ~a
A=6tӣ�� �y�l!��<f���Ĝ>,�a'6�$K�Ʉ����&N11�q�cm�ُg����"�{K��Q]`̳;�qjcs�q11j
��,���8���/1�c~��S��z(��A; ���I��[�P�t`f!]�#@�k��.ک�V��O�BzO)T��C�)\�~^�X���jz K�ICX ݝ��#{;_)`�%;�SQ�4o��:�n&;�h����ʊ��V�X�u�L,���eK���\p�Ø;����F�XVE��=�i0�"�s�*����|�6�o�}�J�n���o�A>��M\Ї�{��wV:��OcF-�*�&�Ent
���E��FVAή���t=��� )�Vгʪ��2̣��O=���j�!ហ�¢���!v=k���,����AO�(lfa /
zZ��6^L��g]Q8���$�z"E����X�� -��8:��PK
X�n4�q4 ca ,org/farng/mp3/object/AbstractMP3Object.class���wEƿ�%��Y����nY21 �C��l�[���v��H�4zd��;�HVC
�����፿���l��|�����7��j�������w+1^�eHTa�[]Ƥ��dlT #ɲI�-
�Xn��VP� KV�f�ȱ�e
0ͲE�VM�Ʋ]�͸��vw(h��,wɸ�q��{e�'�~�xP�C2��Ge<� ��*<���?ɽ�X�VЋ)��� ˳���X�gyAƋ��T�v�X^f���
˫,�����g����dyK��[�Դ.�~�&m�֟��S�k�7� c@�����Fr2��f1#�LOQ�<�N�H������f&(X8�*����r�ޚ]ڟ�"���9-a��z���'�L���q����RU�uc�X�����HUS.2;��F59]��l7�����^?��L��E�9��� �>�ܡ[o;L/O���h*3�2����R�<���'Y��[sIC?nm�`o<"a�5.¨��*�p�����ڹ�Z/���d2)]K�x��e;Υ�*��l}(����5�/=��#�a��Y 3��)�� >e�3 �x�P*�*��s�����ᴡOq�}ew�����[�(�U�4�1���_�+�f$��c*�F�{�(� ��0� ! �rE�㍭M秳YJ�O���9�Hf�+�%�,wh���֑��I���k���F�5A�d證Lv{kf�5����V�����8Ľ�*��ׁ־q~��*����f ����7��ۣ,?�����1��Y~a��7羉����5$��X�sD�>ƥ8��\=N��6��S��B�(Q6�MX�Y�l ZGn���s���NM2���9�NQEx�#V�<׃��؉�H��ԲY==!��ܩ>aHl耸K��wT5��kp`N<��<^u~��Ͼ`��_q��Oc�ٙi#�귮����o�"to�^4�{��A�7�{��a�7�^o��(3dϊ�c�c�6�^��o�~�|���ˇ���N"]EO=D�̈́E�"����P}�~������b�o}�|Ԧ�N�A`4��"*�z�0���E��0����|��P�;�-�@�m�DU���"�&�P���D� jl����"N����D�MԚ�+��"v �A 6�`����CM�h��&���"6�Y�6�l�"Y��hD�M��8��3,�Q�w�1$��&Z��?�j�6��SX���XG���Y����:=�ӱ�V�gu9VNXݞ��X���Y=��\XA�
:V� zGg-"\�g�̰�%&�M�U���:�
k�⭣��7���̶��5�]OEJe��P��;ӯE��t��^G7�Z�n@�5]�+L����a}Y`��%l�����6x�
>z���8��በω�U�\���L��&����x�^��/ Ʋ{‡�l5�}�o�k0d�C��j~��(�Y�V�u�9��(�>єpaA���%�\�M�m%\T���%�]�]��% �:��p���dG � ��!;]��%;�Y��|�].��]��*��s�n��v�nAv�piI� �d�%�� �pY�:d�K��d� {JXQ�A򐉈�S�=vMзޮ�F�H�B&�TN�k�)XH5����E� ՗��PK
Y�n4zz��q2,org/farng/mp3/object/ObjectBooleanByte.class�TQo�T��8��9ݚ�lI��1;m
��[��R�Ԏ���2;87������ !��h"Qԍ��Q�sm�fk�P�{N�9�;�w����_,��Σ0�4�,((� ��bQ�W��XJ)$pE��.
�PpU�7\S���i\Q��⺂)L�,R�R�(^;7%���|����= RU��u�syY´�v�~`[��,���5���;�~�I��5?h;���v����m^�����-f{���-���&��^ #O�ھ�>"�Q�y�nu$L �����[��o%�T`ܭ�|T�G�$L�����P�l��V4���� �J�;��z �S��S�^���������+]�a���$Mo��t��FG�^g����E}^��/�V�X��` /������!���p /K�9ds��jm��Y0D7#�u[H�ݎ�Q��Ś�t�=��\���^"7L��K�(DY -�5�g��a�а�a�$@��i��G'�Z�wx`o���R$0 ��Q��f^CB�<z���%_0���:�������3� �Is~D@�'[�$ح.{1�zNؠ�d�Z=:�;$��f�9��? :j1�����0C�E�J�<A��هd��a$� Ʋg�0����>��>����ljc}���Y�4�=���s�cȋ�pִ��BL����g�R�<AVpK���8����#� F�橋�>k���H&[O�^@�~+v��A�e����$�@���}��̜�c�I(�:�ư�L,=s�����l����s�es��9�;(�}L�az���q�}�� Q��0�L��A����%"+NtA�M]�����SL���Wq��O�ħ%�h���PK
Y�n4�k�4��.org/farng/mp3/object/ObjectBooleanString.class�S[OA���]n�J��.P.^�)E�*P%)&�vZ��]l�H�'��0�6�D��e��n�w�9g�|�;ߙ9������,!�p\P��/`��AC<�0�Q7ܒ�EX�mn��守{܎I�l一 -��S"����|3*bF�Cτn��AkpnM��"9��F���nd�C��3M �sf>�hy^����5��"񊉚f�jƉ4!K�%�ˬ �b�}S�r�Su����
���Z�& �#&�iEˬbZ��� �ۼnQ�SFfe<�c�=!�o2zq����B1�[4uâ�٭ݰt� h��^P �e:�d<EA�qz�Hӭxъg�f�HNp�Ow-f24O0�d
�R,S�׵,U
G�̢��%Y�cn8��x�9��4�; �9jd��`H� e, ΢�U�ι�E���c�� �x�W�&�;���������G탬\9�+IOS��3:��w�]� ���H5�f`Sew�mc�i�����̖}�LA{0���'���YC.��f� qoj�"�'G�)U������/۔��V��~��#���bk�򣆽�.���=�|��8Fq0>� �e�V���q� ̲�E�klj�Awb�Nn���p��pwx}p n&x��~��O(C<|�7��P��}H�}xeȾ�%4����/�� ߁��/M1tK��i��6\�e���_�f֩���q�mU�6F�
 �ᮓ:JP�n�8�ߕ]��@K W�C��o��6+��PK
Y�n4���8�18org/farng/mp3/object/ObjectByteArraySizeTerminated.class�S�O�P�.k)E`PXE�[�!�( �!�t$� �T��Y2���!���<h"̈���ޮȯib��sz�w��?}��C=lAW�� -&!.��C��V #!aD�5*e�
9&��2nySA+
�qK�$�eLH�$%-�b�]��n&��]H,2ײ ��g�Y'G ��y�-$���k�����J�,��Dj���57��� u�,�d4�H��5A@��yD�b��"�y&c� �\j��0r}9�L2s�D���t N�r-F���rJ�$ULaZhwT�� A�r�`���Rя���W��Dzu�6���,�& ��U�l�� �����TX&�r*v�|ȿ�x}�J>O]��L>_�Lc��r$�Sa���V<� �z�)ME
��G�9T��]`/<�E H�SqTD��[�1� 6���J��f�=Z��ʛ-��b�ͬ�%� 7���=:A��N�Y�УT��'i�J�� 5Z�W��q�^=�k�!�f��5��cY��*�`i� ������z  D�����W7�� (�*H��F�%0�>&�cBq�����Ƿk\
{$��D�;T!��������|O}t���n|C� �[�V�j<�:�D3�\>5~�m�R��
e/�-Q���.Z�v�.U�>����:\1j\�A���{F-����}��4�"�@�'D������Y.{|���a7'�\�}�K��;D��_m��PK
Y�n4:��w*� .org/farng/mp3/object/ObjectGroupRepeated.class�V�sU�-I��vKi���A�lBP@�����EZ.D��&]�a�Z�+^���ˌ3�C^x�I�:���7�����wv7$)a�d�|��r~�5��_��� 8Ԏn��{8—W9/����5 i��� �Lv�u���q�_���"NqJ�:̈8-⌄�8�YN��˹ ������HP1+!�,W�D�$lG^Ĝ�g�B��烸 �i~�(��K$s���ai�f֧/�W�d���e� �z��h�E�b �X۠n�l��#�BA5��)f�F~��A3� HDҦ�O�T�ؗ����[� ���R�V�T�e�μ�&��D���E��M�D��үѫ�H4%�]�f][�������f���nW�A�A�5��v������OhKS�� Ls�B��h�� 2� ��u5G%`�UKgZ��?=3*c &�ֶp_F;e$� 2.c� ��pE��'sW�U ɘǂ�k2���2���2^�>�'͝�A �R�p�T(L���4��|F+2�4���a����AB܃�l�����6?Qb�Q�dd�� +C8Z��4K���\��X���٦'� ���ci����PX�{x�/莻�; ��gs�FD|(�#\�OxP��p�BA˫��LF��0e|
�Yΰ�j0]��w @�d�⠈�d|�/�ڥʑ��F
9�;jU9~�-u*z^��裵)`cs���q*$�W��1� ���Ѫ�[�Qg�0(P�(�*3 ߦ�&M7�H#T��5�9����.u��p�M���6�X� z7�j�<r����5Gew�ʗ�_)� �M��� �sɇΊ+�v�Mo���U�'�S3��ϴ�W�l�]�s���X���Z\�8�6���������.��*$�"Z��S�~DV �!Ĕ;X[�of�;Էm��?\s��9Gz~�gc�"D��f�'�U��m|�������c,F�x���>�\�� < 4�Dk���^��n�D����@�M��c��0G}�1m�x�g��5zh�%���#k�������L����'��� (j ���2�&�|����ݣ<@�7�n)����ʁr.��8����5T4b<k��-���o�\º���El���-����YB��6R6{C�*�믠?D��S�iW��El�s��Α�M�rϝ�ހ��|Ga� <���W��6�A'�� �L=՟��*W�h�%O�.W�����mr����rp��������9�ei8�lze��z�<w(�<a"�(-�K�\�S�e��g����*���lsG<�[��5�&��x��ŗ�"^��w-�PK
Y�n4KPV���1org/farng/mp3/object/ObjectHashMapInterface.classU�K
�@D�M4Q���Y��(.��d2&�LG��x(1���y���>����a�1a���Id��f�&̗�C�O�b��둫]�uNddB3�,;c �����ugm�)�R�[�撫؉S�~Y���r��v�����0@s�O��5�=G��PK
Y�n4_�x�#/org/farng/mp3/object/ObjectID3v2LyricLine.class�T�SU�. ِ.5D�(�:u��I�U(Jh�A((XM�K�I�\n*��L�q�O��E}�/����dF�O��O��!��� )P���s�9�9�=�����/�FP��,^ �.D0�K��i6_Tp)�yy]�,���+� ���qY����z8���,��˷#�zy��;*p�-�v�CD:��AS!�Wp��=��4��@l��q�Ȭv%�(ˮ� tIk�\���MX�%'���ɫ�l�Z2F�٪Sɔ ����Lu��Y��yW�/fo��n;VqֲM�TL�h}JЀ���~ӔK./�xZ��<��ʡ�4�� 'T+X)+�7?�k�G�{�Ɠ���(嶥9�8�6��\�Ӆe�+(p�ǒf[PPK.�T�(@ų�T$�Rq�5�ѣ�ٞV�>F���U*^�+C�ٮ�����-M��V�ܐVզ�dv ��%�̈́MAO��v�ܚ���r�Z�K�m�3G��j���Η��鄬&V�^��D��Xu3�'� ��P�>��#���?�f�y��N �]X��ƋL��XEQ��=�Zݔ�Q�s Y�=����D��iK�l1S�!�w �N^ȣD���a�%��I�}�����o@���W� rGh���q��uÙ�<M��4������4P��J3E�)�Z���0nL_���u�"���E0���'��#~�9�p-�7j�߃R�F��0�H ����.���Oxs�)
��+�����oъQ� 1�@3�����$g��,?��sx�Џ�O��x/��-x��M��S2|L��o�������J��O�F�>����:�6Or�~���- ����@�� �� <r?�-����w��-졧�@,�h��:�bgH��I����{�%@���x��v}_)M��w1�*�hx�/�U}0�A�[���_�L�Z��#r���|�:�� Pi�nz�x���)�s����Ru� �&��S��;K��;=@2��
.ы��h�g_�i7%v��#��v�a�����G�PK
Y�n4W-q� -org/farng/mp3/object/ObjectLyrics3Image.class�T]Se~6$d�,�K��X-I64���R@��`��j�dÆ&�Z�������3������72�r<g?B
�Csq�{��=�����p�$hX�C�x�y��{L�g[.�e "V�X� !���|� �,���z��)AA>����D��Dl0���S��ߑC^�g��s&&��MN�gRQa�(�tGD��V���m�&r�z%S��V%��;��mnE;���Wu�ؘ^'�5[�ٝ)�b�͚ܵ%@�m���LU��5�nZr�fհt��;kZ�}M@,q�3y�Pܨ��/�8��^1��hð:qD+�g�n�"��F�tJa��̯�ՓHf����r���x�)�)W�Ȑ!L���^�nS�6���u�I� � ��~���.=�2Ѯ�>�/�m���Kؖ�Ƅȴ��L�`r U�3��9�1�~J�fd\}��)G-�m\0z�p�Y��k�e���Eß��6�j��P-rp�(.k���M{�<_kZ�FG��q���r٨ �Z-�iT�����ך�Z+��N���t�TjLh؃i/�"�W��J$e,�����2�.��I���MT�.�c��������Վ�sTѴ���G!H2����?Ip�����v;�9-�d� �6�&���%?��w��i��ww �����3?�r[L�0����5l:c+?m��F���F{�]����t�c���5� �A�o�^��O:��.�i��I >�jAH {���=Ji{����׼�<�N�BJk!|2���-�����"��!G ��_oCR<H�\=��/�g$N�Mu(�/������ov ��tžy� g�>�P��У*��3�7�G�0;��K0��n�~�kx�K�_��<s��{��k!�=B=��?]fi�s��ѥ�m9p9���r�A9��iR�>�y���L� �N;D�� ���<���H\��� 4����6ZxA9����>�)#�`;��o��ǚ2J��.SZ<F0Uj~,*�u1]��V&(�@�G�u�Fy���3�,���[h�o�k�mӫŝհr�}S�a��s�5�yj�1�zP_�S�5���,��~�U�+�O�=�9/ԯ>zT6xضj����P{P; o�I���� �PK
Y�n4�F��E�
,org/farng/mp3/object/ObjectLyrics3Line.class�U�wu��I��0@i�K0��f�6HQ�nlE#�ei�h��$H'!�@Aq�}����<����Hr�=G��sx�E��G�{gICS<؞3��~���n����_��+ }�� �hB^1��1�g�0NJh�c�Ø���/���
g�����HIh� ����0f�� l�ٙa�qV�VL����`KDN�6L�ȳ�9Ev4�g�w%ޝ�piK".�������&�\4&m}1/�5yF?��K���'M묑J�E�_@c�b������ne�v��2$ ��i h��Nʥ Zw2W���z�ċ�xn�1o�ǝ%��}��p�Ģ�� ��O�����n����;��0!&�K�*�K��۱�D�z�U��S��c����$3a��ȳ��R7��5*!�\I�W��u��!�^��s��
��r�b���&���9��B�� �$c/.S��*��=xR5�SxZ���ً74�v����x���#o2��۬|H�;H�qEƻ��d�ǟ�qY���V{=XJ�����1 �z����2>�Q[W����ى�iQ�F�捼m�,��zƈ�ŨEr�WV�X/��郹��*�h���4uT��E���s%;�KG��>�:��(����=�7kX{�;&@8%�S|F��TeNZ���U|.#�)��/��:�:�d��d��u�$c���90W� �=:��f�i,j�L�m�M�p�٭�v���ws"V��$��{��v����D6Cn��a��:�Mo�H���E�{�z���6�'�,�,��:�e\�sꞾߴ�k�T,q^��L�a��./���չ����~@� <�Ύf��f<{��G����P+�e4LW����4�DH�n"���=%A���Zb��2�����@�c`(B�`�ǎe�,
F�XrFU:����䕀p��_���*Gʼn.�Њ|Г�x�&U+��2�a��Vz��H�B?zbz2<�e!@��@`�S�ٶw�ӥZƦف+ D�o������,�!�R���5�/�s:����$���>�#�����/��2ܪ�8~���-e<\�j2b�N�^��N��*�V��TG�>����=�oh����m�q�B=��v�ҩ�R�{�&��3�<�z�ڽ�7��G�al��%1��~�Vk��k�w�_��i�
��:�a]'U��۶i/\�Q
�*�]y� Z�=]��[5��)]�9�����Mݸ38;�ͩ�*P�ۂZ�d���9%����wT�v�פr��k)�����dm7uy�z~_���%�t֟~q���.�T�p�~��W=�Pax���P��QSW&m��;M�n�-���2 ����PK
Y�n4��2�8�1org/farng/mp3/object/ObjectLyrics3TimeStamp.class�T]Se~6�d� �@m��԰�$�_ZK��`((X���l��d7l6Z������^���茄��X�r���� �s6�IҪ��9��>��9�=����O?����DчWX\bq�ū �����X��cdU���c��Z W�.aC�1�X��M֛,�"x����Z�o�x'�m\�Q���� ?~��ߋ�}| A�f�������,
t����h��eˮj�Y�� �p.I�w���tE3��M�6����U��H�2��e��%�&�Z�O[;�z�I��*��m��[~�3Zם5�I0���;Gbj���t�u�ADM������{�+���k��Ƨ��9��B�U�=��5�J�HխZg� �ٺVluA�h���8Lı|����q#}ۆ���q(؉cg�x�E
3qPd�����q,ἀ�N�+�Je�2LG�/�*�5ǰL�V֓F=iΉT �8�8'`��3�����^�Z �X�
1z��l�T�m��R�ڛt�d{�8��p�V)��Z��ku>�M,v�]����n���)j�E,��!*,��8,P�Y,Ӵ^�d8�������l��Nݱ����1��;tc1����Q2��׍��c!�O�@��*�Z���P�����J �R�G��z����FzY.���zC�7��e�B���u��yr�h��:H�j�Z�O��u�F�#�U��Wӧ@zO(�Y�M���I���G�����*�>B?���<�<�L+���|~D�OH�^�����erI��I��� �m�C\ R(�w�,�۰І��<�9<ߎpɅ�1b�G�w�6�{f��/�z�ń��^��*!HzbrR��B*Z�^�b�;t���-��y1���+�DH�����5����������q����E�‹����ѿ-`���W�W�H| �Cۇ���<���x�� Z0N�&?��*����YB�S� 71v㟻�+%:[�.�;S��G�̱k����m�g��?�<���5Ny )��<I�X��b��a$��D�E"�ēl�uƖ�1�v/x����%��\b�\7<c�U6�PK
Y�n4&k[v�2org/farng/mp3/object/ObjectNumberFixedLength.class�U�SU�-��%l(��D���nv������&�V0�
�� ل�e�n6�/u�W_��S_�҇:#�����8�_!޻�!Ba���=����|�˟�� `��jE�Y\aq5?Rޢ�m��� ��qj�u���:�7X��a"�Sg1��=�"�k*�nLS�����f9���M����vR�y,���S�"��u�(�� � �qY34�*�n1���S��b�������D���YP\��UJ��W�F�f~E]��9GLWV�u][W Y=E][K������ ǖU{V�O��ΖjA�nE�� ��L\�Tb�A�R�Bf�VӖ�lq1�`��¥̀��ڶKLωA��f� @~1��a�朻f<D|��^fp��1��jI��V������%u��L���h�L�XT-g�ZY��rY��C��Z���|J�;<F�:����c��
�O�y\�+ ��<�+�>cj��Z D#4qA��SN1b�RC�FA]�U�\1cV�B���b�X$�lS�1+�`���0F����A�k5�Μs�^�5�R�<� ��i e��5~,�i+���G-�K�5�X� Vx|�;X��0x�X�q�g�>�'(ʒ=53���j2AemM5hÚܡ�#�N�>rN�F���i�
d���F�+�l����<�8IE���W�È����Q��.W�eom�Hʽܴ� ��Ge���8��NeN)ݴ5]�ɽm'�M]u�愗c��pr��+�8ބ*��A �$z���F�"d��W���>"G�*ɷ���w���7��|�Hp ��3Z��m���О#f������'����Y��_�$W�;��L���b�3�$� P�'�zIO��a��'�5@\|>y0<���������7���� ��P��5���n � ���3�wpj>�QE�^�!Zc��#�;��4)R�T(�E6�n�Vѽ�Ll4 �h�;?�;��md�r40�y`��%�{>^� ��%��A��M���h���-�y��H_�H�!�:I&g/n��!y��8�^!#�i�3#g�������xӳ�A
C���hV�rYj����F<MO�Q���r�/t�ܗ_3'tp_�����-�@� xz]a;���y�_PK
Y�n4�
��U .org/farng/mp3/object/ObjectNumberHashMap.class�V�{�f~'��k�%mö�ul$V�t�.�:����;��l �ڲ�bK�����eݸ� 6h�]��
teu��]������� <�#���4��<:��������_~ �\I�#��0�Qf�)&��� TP�����e�6�2>ͼ��)�a�2i�x��Ǥ-�g��dU�g��drJ�g����e|���|)�/����2���I&��Oq�O���8�����@
�₿�w������8�M�9T٣��Y�Aw�y/0�!���Lgq:��� CG�|Q��̝0Wͩ��ԧJ�g;�#�e\�훎�h6V,� �Q���3��l����l�Ћ �\����y�8V���;;{hq�<WL���Y��)f�@���������s<b��\Y_�󆄝F�<JFz~�<W(ΧI��k�9�������E=�%��r�$!aW 7�X���*V|�1u�l/ϛ-ZF�����R�e��7[��hM�c��g;���]�׶!;�(a0�V�x�x���S5�#��:4�?aU�B��+�����n�ꖟ��شB�+ E�m���Q��0Oz��Ċ�h�Z�l�g����f#=��^i#]q�
XP�T�c2�<ό�xV?U�(��xQ�K ���Z'}Uw*n�"(x���12�u(s�m���:��/�U?g�_����:�MK����n���W��5�Q슿�Y�q�e)8���a^R�����Z������M�J��l�s��4 �5������,��c5��2��hUlkժ�鶂߱���]mT�Ѱ�f#��W��W?Y������9�R�Y�� ��7͖jW�ٖͮ�:��V���PB�Q�e��Vf�}���"~��x���drI�uWS̜�>E���w�ƶP�G\��
5-�5b� �wT�*���$���i���n�`� ϲJ��r�Œ���q���xO���M0g���9˩����aU YͬP7vl|��f�{�Qs�<��6 5����tw�[4�D��lq�á7��2�U��;�]їQ��V�Ex�EQ�gP �M�����|�+���&�g#&���E�L��GD�/ځ�� �E��xp2������&��\�-�l8H�����q� S� ����T� � �00�*���|Q��V�S�پMM<�8Jw����>���Tᱢ�c�#\T̬R�bt I�m��d�bwl���4}~H����>����4}t `��A&9#�l?+��I�9I� ��|T���|L�o 9+�{�K,�8]e�e��;��C�4�AĈ�)��5H)���R�KԒCl9���E�Yy2 v�Ғ�<B�Do%���%��-D� ��Zr{�";�e-��!ׇ�H�<�%G{Ȯ� -��������%o�!7��MrXK��! 5@����u�[Z�-�up�FO����o��q�a�put������� �Kiob0��'}��#
��8]J��~xS8օ�H�4h\��ڻ�����Ԓ�&:�N�a���� ��@S=�V
��n�rJ#�-�>}��MJJS����b(v�<����Iz^b ��
���h(����� �X���é�w��R�����0��taw.���w���q -y��{�Wxo�m�-��BpWSd��
�$_�,up�E��1�PK
Y�n4�ˀz�5org/farng/mp3/object/ObjectNumberVariableLength.class�T]Se~��f7�!%HM���5�RR��m(JjU0|(��kC6a1�`��`g�Fgz�K���3�����C��3� ��O����@�53y?���s޳����6�~�2N�".�%ɮC�tE�0^����HI�*Ç�E\�\��&��b˨�1��-CaFiA�K��1�) �Hx���|F�u��X� �oG�M��a�u3o-q�F9x� Ӱ�9tF���--Q��|b�*f>9���_-eu��R9��ie�W�̲�h%&�m�Z���Y�lh���$�w[^�ƵU�X-���z�1��39A;r�NkeW4m|F�|�& ��#��T�B�C���� ���Rֵlj��G�em�� );��NV$�T?vDc��&*�� Ko�Gc )Ͷ�1Sps
ΠW�<��=��*�������.p��c4Q-�J�i��k���e�L�,�1j�1Ɉ�g8��s5���d՚̥JU3[i��<�r����e&s9�B�*E2� JU+R�E2v��t�ͮD,"��N{�c�_�����Us.]r
��:�Tl�<D�~ q{\̃��ѱI8f.�hL��e���桨�\R�sG�f$C�ڢ5>5��~��Yz�F�`e
�f�c�PH{.�[Z����9t�4��[F���!��0�X*t�znj���K�{����r�;����y�)D�x���������Wp��W�f*�0xT��3��p��v�*���=������f�٤U��Y���y��� ڻ�5pq~Mqu��7��a��h,�G��8EM����5��Ohj0�!���Π=~顫Tw��R��{]݇���C�L�!~�n��D�K{�BO!x��cxG<�<?(��=�#w�c������ �K�G����?v��2;�C�u&��qQλE�Q�x����Bg}���ƥj���^t]�l���-[��������V� �en -s5��6�o�=���M�M����/f���ߡ��/��zԠ0𕖲s�+���\O ��5�m�<x���.�g\
�au]o$q�N�YF��{4�*)B�n��O����3���x�;m��k;��]�1*
+�p|��B� {~��בpۗ
�5�gY��q�/(�t �ŝ�3��mJ{g}�Ͼz�W�3�PK
Y�n4�� ��)+org/farng/mp3/object/ObjectStringDate.class��O/AƟimw[�UU�������F�KE"i��k�TK;m�*>� *J��n����7��o���g�����2(!�0�� F�2���q�5��u��l�6�Y�e��aU�l��=�ʑE�g ��m�*/������S됙�n�� �,w�R�X���V��{��IJ�� �̺��R��}aL���1�b)i3�U1�y����U1�(�¿�si���N����Z�¦oJ�Z��;�����?��R{�9%�]�k:ϟ�*A�à�Rû��o����F�X�>"<����膦4A�\F�ODy]!�h"Ъ��߯'}���M7������@��4' �q���yjm�%�>ϯ������+Bא�7b��� PK
Y�n4���y/org/farng/mp3/object/ObjectStringDateTime.class���N�@����U*�xEShB�Ӹ�%�  wƦ
���G�X`���0q�‡2N/h�i�ڞ�M�93�_�o�8� � ��#H �&Ra��c����C<� ݺ HH�:P��jhJ�2uC;���N��r�Ԕ[�dr�{�tn��n)W���/U�V�6u�P�Z5�է3S��k�~,q)?�a�ѻ����1ŵ�0"v��'`Y8��A~��#F�� T�{Z�f[7� 8]"�i�Y�8���q�qx�1M��I�-��"LJ��B����#D�����du����c7,�/ ���օE�o��b��38z\�@� ��3bu��3��;
�s��gO@���������#�yD��T~G��h7�#�PK
Y�n4f 7���2org/farng/mp3/object/ObjectStringFixedLength.class�Tko�T~N�ĉ�vm���f�����Y�(0h׍�l�[�tttns�yr��أ� !�e@��D�&���&[3$d�\���������'�iܓq���ޖяr3bG,��=)\b� �$̊}N��,�e���$�rf� c4&-
�%��������2>�5 � ����>���k�Ƶ��YvL�^^|ۭ�-�0�/y5�p^�x~�l�>�3eo��
��h���;�V���j�ɃJb�_��r�)���(��#2��_���d��%60W�� �ܬŦ���<�;�0�o<�*Pq]�N0�ё]v^7��ns7�����?��C��>ñ8}��T�l��}�UqߛU�@E,+
J8'l�*�bM�n2��O�3Lu�X gͳ݀�]�Ś��D�gNu����N5 �֢��f�n�jYT#5����g����,#�y�a��6#��8ZQ�'XWp ��k��>e~9w>S�*ᙞ)X�$\s+XY���5�K�l4�[#O{����5��OR���;� ���v����lQ�|��2^1�H�?�l&=:�-�p� �M'�/�K0h8"f����z�O���-�~;�;��7:�R�5�Kw{@�$���b���К��Jt��]��)E���S��+|��=�6�п�F:�iA*��m!׆�T7v1�H�W Vq*;�>�Q�hC��t�7�u �ƛ�p>��]�38��Gh^�uBx����fӔ%�s�-�:i��o�N=6�apE���^P��C��AJ>G:R�i<���l��yZ������0z���I~�ct��\�S�
�`�^���~���
���I����8&�L<ǰ�#��*?cUОa� �GV~�xBJ�+�$)-b�E���(�j�
#6�PK
Y�n4�gj���.org/farng/mp3/object/ObjectStringHashMap.class�U�WW�.��a]Z��ZMmŰ ��V��-���AۂP��kr�&��fcퟂ/}����pN9�?^�9�z:�l0@l�9�ɽ3�|3�����ϯ���� ��H�
��,�c�f ��\LJ,>�1���>f=�b��8�M9�|�n��X� [ft�����i �����o/��y+:Vb��� wg�� �@f*�-g��q���Yϭ� Vd�� ��쵭�mD#p*�����(k1�-�+~]�窵�/� �_s\'�.p4}�27�"�zEr�L�=��)I����Tƻ��
A�NK�^� �U���o$=�3C�[�J2VW��F�Sj�B���R�s����n�\�O��`/�dǧ�v�L��s&�X�G���\��L��)_�Xc�=�8�"H�RQeY��ˍ�r���U ϥ�2�h�J�g�/.��Te-� ��\/HU�qU1帩`ݩ�
Y�_M��
_���ˌ��ŷC)L|��үz�:
�g��+��E(&* �DS&���&������_�y�*�[���p3ɹtm%Y����,˝�����w��N{�ݽ��[m$k5��D��?��{�>�uw�w�&����H�����u�.����m��*�s�Z�����<�Q���7��mazM�~�FP`��0�Jd��ޤg� R�`�Vg��[���!J�F� 5 ��Є��i�JH��-�>�a�m���,m;m�I�t�|�9<��] ���X�����ĠM�&^���?m�1�DHr��#=i�;:�aٿ �>���}�f��/�a⤩���s+4gz����\ ���$N�"���e��x�m ?F̲Iw(� AU���H%!�=!Tr�"��w8��0i��F�k^41��%v�ڞ��蓐�&:��LĜ���G��.��Y���w0��$6a؉M�\� 8�)���0�%
�gb���s�'Nlq^5�ơ�&N�c�_PK
Y�n4"v���5org/farng/mp3/object/ObjectStringNullTerminated.class�R]OA=C[�,[>* ڂ�|�v����Z(�1�':[��]�n��S��'_x�D��$�/��3� h)&�&3w�s�ޙ����/F�,"�d�x��hX�e!�H��+Fø*� c�\A2��|����a��� c����$�˜q��"�#`��qR7t{��3�[W��tI5��e�ҍb&� 8g(�x"gZŴ�Z,��9�6W�隝λ��_��JO����M .[(R{Y��d�G_U�R��8O$�|N ZT-xr]uj�rٰmb:ɓ ��זnSo)!�Y s�ˣy �p����%����٧���'�=���%S7lj�o��M[7 ��,�e�`^JA�1-k�v�b�Y�b�p�jk��h���V��l��Y�eS�W]� ��)YB����}X.���5���DR�.I�aA�"�|X"`&|�)O��^��*�Q�셥1�ܧfo$�jغ��:���H9�S'$]+���R��-姙��.X�nnR��n���Oly��b��?��ƪHd���M��j�Ȧ�:� 7y�����s���>�
1�O�ac/[u����=4|tQs��D}LcJ�"p�������݁��'���O_r�|1����>#�3Z�o�"����C�}�� �5�"�hZ��U4�w�W��;��!��#�REK��A[�A{4��g��3Ut(����a�)�]{���β�/fa��63�"���G$��~����z�/���ce�g5����PK
Y�n4�v����5org/farng/mp3/object/ObjectStringSizeTerminated.class�SmO�P~.��tE`��2�ʋ[��
�񦀘,�#�h�[�ng�hgw�ğ����MdK$�?�xoۉ�4�M�9��s�sν��|� ��
1ލ(&�wI�^ZA ��1$Lʸ�@FVBN�*�e\��X�dL {]A Y|CޔpK�m����l� �^�2w�\�tʹu��Ny6�s�-Q�����s��qx�:�s�[t��
� ���+�z۶c2Z�2eb� ���y:�nVj��"��g�G�R G�lSS^���mqҙ�$��K�f4�Tq3*f1'�ycU��a��6�b� F�2>�W*k��0��n�*�]��T��5����,��QX�)��B��%��j��&���T�,�L,�F��\�Hޭ3͵���2�]�2�����bY$��j~@�B�2{�Ψ�(�` �*�a���xR���g�X�R�&{�6���N�Df[�(5��N���� It�A��1�U�x��F��VpZ<�P:���V/��N혜ӵcV���n�
q��E��"�����W�� ���x�g(��CNT7�����C<ŭ���:W������"{!��`�
�z�/��FWdOHJ-��� �Oщ��o�9���nB9L�A,%��B?@l��F=�S ����sG��o ���C����>���$�I�%�v��߅��/x �e��� � PK
Y�n4 �AMETA-INF/��PK
X�n4�`M�^j��+META-INF/MANIFEST.MFPK
X�n4�A�org/PK
X�n4
�A�org/farng/PK
Y�n4�Aorg/farng/mp3/PK
Y�n4�A1org/farng/mp3/filename/PK
Y�n4�Aforg/farng/mp3/id3/PK
Y�n4�A�org/farng/mp3/lyrics3/PK
Y�n4�A�org/farng/mp3/object/PK
X�n4�#4iL,'���org/farng/mp3/AbstractMP3FileItem.classPK
X�n4ŇC�*E'���org/farng/mp3/AbstractMP3Fragment.classPK
X�n4aaآ��+���org/farng/mp3/AbstractMP3FragmentBody.classPK
X�n4�*� .�"�� org/farng/mp3/AbstractMP3Tag.classPK
X�n4� D��q'��zorg/farng/mp3/InvalidTagException.classPK
X�n4ro��8�,��|org/farng/mp3/MP3File.classPK
Y�n4 8*nJ����(org/farng/mp3/TagConstant.classPK
X�n4�&ac�c ���sorg/farng/mp3/TagException.classPK
Y�n4��T�r(���uorg/farng/mp3/TagNotFoundException.classPK
Y�n4�"2��-&���worg/farng/mp3/TagOptionSingleton.classPK
Y�n4�֗��r$���org/farng/mp3/TagUtility.classPK
Y�n4eTզ6����org/farng/mp3/filename/AbstractFilenameComposite.classPK
Y�n4M�P� .���org/farng/mp3/filename/FilenameDelimiter.classPK
Y�n4D�m`_6����org/farng/mp3/filename/FilenameDelimiterIterator.classPK
Y�n4�C�?�U5��?�org/farng/mp3/filename/FilenameEndWordDelimiter.classPK
Y�n4U�
�C 0��4�org/farng/mp3/filename/FilenameParenthesis.classPK
Y�n4�.U��8��T�org/farng/mp3/filename/FilenameParenthesisIterator.classPK
Y�n4b v��Y7��@�org/farng/mp3/filename/FilenameStartWordDelimiter.classPK
Y�n48t���
8(��:�org/farng/mp3/filename/FilenameTag.classPK
Y�n4�>�0�/��*�org/farng/mp3/filename/FilenameTagBuilder.classPK
Y�n44���X*����org/farng/mp3/filename/FilenameToken.classPK
Y�n4��1���2����org/farng/mp3/filename/FilenameTokenIterator.classPK
Y�n4�ن���8����org/farng/mp3/id3/AbstractFrameBodyTextInformation.classPK
Y�n4�G;j%L0���org/farng/mp3/id3/AbstractFrameBodyUrlLink.classPK
X�n4:��/�#����org/farng/mp3/id3/AbstractID3.classPK
Y�n4�+�#%��t�org/farng/mp3/id3/AbstractID3v1.classPK
X�n4ǖ�� _%��H�org/farng/mp3/id3/AbstractID3v2.classPK
X�n4��"} �*����org/farng/mp3/id3/AbstractID3v2Frame.classPK
X�n4�O����.��j�org/farng/mp3/id3/AbstractID3v2FrameBody.classPK
Y�n4y��O%����org/farng/mp3/id3/FrameBodyAENC.classPK
Y�n4�� L%����org/farng/mp3/id3/FrameBodyAPIC.classPK
Y�n4 �X^� %��N�org/farng/mp3/id3/FrameBodyASPI.classPK
Y�n4?ǽF�*%��G�org/farng/mp3/id3/FrameBodyCOMM.classPK
Y�n4�%��%��3�org/farng/mp3/id3/FrameBodyCOMR.classPK
Y�n4�����l$��o�org/farng/mp3/id3/FrameBodyCRM.classPK
Y�n4�LP�%��lorg/farng/mp3/id3/FrameBodyENCR.classPK
Y�n4
�䑕�%���org/farng/mp3/id3/FrameBodyEQU2.classPK
Y�n4g!K%%��� org/farng/mp3/id3/FrameBodyEQUA.classPK
Y�n4G� �m|%�� org/farng/mp3/id3/FrameBodyETCO.classPK
Y�n4,Nc�+x%���org/farng/mp3/id3/FrameBodyGEOB.classPK
Y�n4 ���q�%��4org/farng/mp3/id3/FrameBodyGRID.classPK
Y�n4�@RK%%���org/farng/mp3/id3/FrameBodyIPLS.classPK
Y�n4�,^��y%��vorg/farng/mp3/id3/FrameBodyLINK.classPK
Y�n4�*�K�%���org/farng/mp3/id3/FrameBodyMCDI.classPK
Y�n4�c��K%%���org/farng/mp3/id3/FrameBodyMLLT.classPK
Y�n4�z,�%���org/farng/mp3/id3/FrameBodyOWNE.classPK
Y�n4�u��%��]!org/farng/mp3/id3/FrameBodyPCNT.classPK
Y�n4�5#Z$���#org/farng/mp3/id3/FrameBodyPIC.classPK
Y�n4�c> %�� 'org/farng/mp3/id3/FrameBodyPOPM.classPK
Y�n4J��WU:%��[*org/farng/mp3/id3/FrameBodyPOSS.classPK
Y�n4��I�
0%���,org/farng/mp3/id3/FrameBodyPRIV.classPK
Y�n4�ue���%��@0org/farng/mp3/id3/FrameBodyRBUF.classPK
Y�n4hz<L%%��3org/farng/mp3/id3/FrameBodyRVA2.classPK
Y�n4�?�r%���4org/farng/mp3/id3/FrameBodyRVAD.classPK
Y�n4�����%���:org/farng/mp3/id3/FrameBodyRVRB.classPK
Y�n4e�=��%���=org/farng/mp3/id3/FrameBodySEEK.classPK
Y�n4�[��d�%���?org/farng/mp3/id3/FrameBodySIGN.classPK
Y�n4�0�tN?%���Corg/farng/mp3/id3/FrameBodySYLT.classPK
Y�n4�J�_K%%��0Lorg/farng/mp3/id3/FrameBodySYTC.classPK
Y�n4(=]t%���Morg/farng/mp3/id3/FrameBodyTALB.classPK
Y�n4�'��]t%��^Oorg/farng/mp3/id3/FrameBodyTBPM.classPK
Y�n4�%m�^t%���Porg/farng/mp3/id3/FrameBodyTCOM.classPK
Y�n4����^t%���Rorg/farng/mp3/id3/FrameBodyTCON.classPK
Y�n46�^t%��@Torg/farng/mp3/id3/FrameBodyTCOP.classPK
Y�n4�/Fp]t%���Uorg/farng/mp3/id3/FrameBodyTDAT.classPK
Y�n4���ww�%���Worg/farng/mp3/id3/FrameBodyTDEN.classPK
Y�n4gw�M^t%��;Zorg/farng/mp3/id3/FrameBodyTDLY.classPK
Y�n4�òw�%���[org/farng/mp3/id3/FrameBodyTDOR.classPK
Y�n4F�z?w�%���^org/farng/mp3/id3/FrameBodyTDRC.classPK
Y�n4]vPw�%��Paorg/farng/mp3/id3/FrameBodyTDRL.classPK
Y�n4[�t�w�%��
dorg/farng/mp3/id3/FrameBodyTDTG.classPK
Y�n4�H^t%���forg/farng/mp3/id3/FrameBodyTENC.classPK
Y�n4�^t%��ehorg/farng/mp3/id3/FrameBodyTEXT.classPK
Y�n4��<I]t%��jorg/farng/mp3/id3/FrameBodyTFLT.classPK
Y�n4�l$�]t%���korg/farng/mp3/id3/FrameBodyTIME.classPK
Y�n4ZW��]t%��Fmorg/farng/mp3/id3/FrameBodyTIPL.classPK
Y�n4�� ]t%���norg/farng/mp3/id3/FrameBodyTIT1.classPK
Y�n4�M�8]t%���porg/farng/mp3/id3/FrameBodyTIT2.classPK
Y�n4}٤�]t%��&rorg/farng/mp3/id3/FrameBodyTIT3.classPK
Y�n4��
_t%���sorg/farng/mp3/id3/FrameBodyTKEY.classPK
Y�n4�����%��huorg/farng/mp3/id3/FrameBodyTLAN.classPK
Y�n4��A�]t%���worg/farng/mp3/id3/FrameBodyTLEN.classPK
Y�n4, �]t%��Eyorg/farng/mp3/id3/FrameBodyTMCL.classPK
Y�n4[���^t%���zorg/farng/mp3/id3/FrameBodyTMED.classPK
Y�n4����]t%���|org/farng/mp3/id3/FrameBodyTMOO.classPK
Y�n4Ud�]t%��&~org/farng/mp3/id3/FrameBodyTOAL.classPK
Y�n4�`�a]t%���org/farng/mp3/id3/FrameBodyTOFN.classPK
Y�n43�Ⱥ^t%��f�org/farng/mp3/id3/FrameBodyTOLY.classPK
Y�n4m}�^t%���org/farng/mp3/id3/FrameBodyTOPE.classPK
Y�n4{-3^t%����org/farng/mp3/id3/FrameBodyTORY.classPK
Y�n4�)��^t%��I�org/farng/mp3/id3/FrameBodyTOWN.classPK
Y�n49g�^t%���org/farng/mp3/id3/FrameBodyTPE1.classPK
Y�n4%���^t%����org/farng/mp3/id3/FrameBodyTPE2.classPK
Y�n4�H�Z]t%��,�org/farng/mp3/id3/FrameBodyTPE3.classPK
Y�n4�Q�^t%��̌org/farng/mp3/id3/FrameBodyTPE4.classPK
Y�n4N��^t%��m�org/farng/mp3/id3/FrameBodyTPOS.classPK
Y�n4��y�^t%���org/farng/mp3/id3/FrameBodyTPRO.classPK
Y�n4�B�]t%����org/farng/mp3/id3/FrameBodyTPUB.classPK
Y�n4C:��^t%��O�org/farng/mp3/id3/FrameBodyTRCK.classPK
Y�n4O�5M]t%���org/farng/mp3/id3/FrameBodyTRDA.classPK
Y�n4�ͩ^^t%����org/farng/mp3/id3/FrameBodyTRSN.classPK
Y�n4lY��]t%��1�org/farng/mp3/id3/FrameBodyTRSO.classPK
Y�n4>@w�^t%��љorg/farng/mp3/id3/FrameBodyTSIZ.classPK
Y�n4k ��]t%��r�org/farng/mp3/id3/FrameBodyTSOA.classPK
Y�n4��&^t%���org/farng/mp3/id3/FrameBodyTSOP.classPK
Y�n4q���]t%����org/farng/mp3/id3/FrameBodyTSOT.classPK
Y�n49��]t%��S�org/farng/mp3/id3/FrameBodyTSRC.classPK
Y�n4�<�]t%���org/farng/mp3/id3/FrameBodyTSSE.classPK
Y�n4a�QC]t%����org/farng/mp3/id3/FrameBodyTSST.classPK
Y�n4�h�_�%��3�org/farng/mp3/id3/FrameBodyTXXX.classPK
Y�n4����^t%����org/farng/mp3/id3/FrameBodyTYER.classPK
Y�n4�=h��:%��+�org/farng/mp3/id3/FrameBodyUFID.classPK
Y�n4[�� ��%���org/farng/mp3/id3/FrameBodyUSER.classPK
Y�n4���4�`%��?�org/farng/mp3/id3/FrameBodyUSLT.classPK
Y�n4����,��%�org/farng/mp3/id3/FrameBodyUnsupported.classPK
Y�n4#�%����org/farng/mp3/id3/FrameBodyWCOM.classPK
Y�n4��Lb%��h�org/farng/mp3/id3/FrameBodyWCOP.classPK
Y�n42�r�Lb%����org/farng/mp3/id3/FrameBodyWOAF.classPK
Y�n4�{�%����org/farng/mp3/id3/FrameBodyWOAR.classPK
Y�n4rN��Lb%��m�org/farng/mp3/id3/FrameBodyWOAS.classPK
Y�n4��]Mb%����org/farng/mp3/id3/FrameBodyWORS.classPK
Y�n4�O�CMb%����org/farng/mp3/id3/FrameBodyWPAY.classPK
Y�n4s�qMb%���org/farng/mp3/id3/FrameBodyWPUB.classPK
Y�n4Z���p%����org/farng/mp3/id3/FrameBodyWXXX.classPK
Y�n4*䋪\
N����org/farng/mp3/id3/ID3v1.classPK
Y�n4�r�G%��*�org/farng/mp3/id3/ID3v1Iterator.classPK
Y�n4p��� ����org/farng/mp3/id3/ID3v1_1.classPK
Y�n4��7�� ����org/farng/mp3/id3/ID3v2_2.classPK
Y�n4��  S$����org/farng/mp3/id3/ID3v2_2Frame.classPK
Y�n4��cd ��I�org/farng/mp3/id3/ID3v2_3.classPK
Y�n4�R��$����org/farng/mp3/id3/ID3v2_3Frame.classPK
Y�n4��!X�"���org/farng/mp3/id3/ID3v2_4.classPK
Y�n4(/L�p k$��Sorg/farng/mp3/id3/ID3v2_4Frame.classPK
X�n4!�B�T�+�� org/farng/mp3/lyrics3/AbstractLyrics3.classPK
Y�n4~�>���6���"org/farng/mp3/lyrics3/AbstractLyrics3v2FieldBody.classPK
Y�n4��+x!?(���%org/farng/mp3/lyrics3/FieldBodyAUT.classPK
Y�n47^o6!<(��8(org/farng/mp3/lyrics3/FieldBodyEAL.classPK
Y�n4���?(���*org/farng/mp3/lyrics3/FieldBodyEAR.classPK
Y�n4:^�!<(��-org/farng/mp3/lyrics3/FieldBodyETT.classPK
Y�n4(���� (��j/org/farng/mp3/lyrics3/FieldBodyIMG.classPK
Y�n4����g�(��J6org/farng/mp3/lyrics3/FieldBodyIND.classPK
Y�n4q��-m(���8org/farng/mp3/lyrics3/FieldBodyINF.classPK
Y�n4��~R��(��j;org/farng/mp3/lyrics3/FieldBodyLYR.classPK
Y�n4�14��0��DDorg/farng/mp3/lyrics3/FieldBodyUnsupported.classPK
Y�n4��{%��OHorg/farng/mp3/lyrics3/Lyrics3v1.classPK
Y�n4�� |~�-���Porg/farng/mp3/lyrics3/Lyrics3v1Iterator.classPK
Y�n4�7UM Z%��vSorg/farng/mp3/lyrics3/Lyrics3v2.classPK
Y�n4r ��*��aorg/farng/mp3/lyrics3/Lyrics3v2Field.classPK
X�n4�q4 ca ,��horg/farng/mp3/object/AbstractMP3Object.classPK
Y�n4zz��q2,���norg/farng/mp3/object/ObjectBooleanByte.classPK
Y�n4�k�4��.��wrorg/farng/mp3/object/ObjectBooleanString.classPK
Y�n4���8�18���uorg/farng/mp3/object/ObjectByteArraySizeTerminated.classPK
Y�n4:��w*� .���xorg/farng/mp3/object/ObjectGroupRepeated.classPK
Y�n4KPV���1��`~org/farng/mp3/object/ObjectHashMapInterface.classPK
Y�n4_�x�#/��Morg/farng/mp3/object/ObjectID3v2LyricLine.classPK
Y�n4W-q� -����org/farng/mp3/object/ObjectLyrics3Image.classPK
Y�n4�F��E�
,��L�org/farng/mp3/object/ObjectLyrics3Line.classPK
Y�n4��2�8�1��ۍorg/farng/mp3/object/ObjectLyrics3TimeStamp.classPK
Y�n4&k[v�2��b�org/farng/mp3/object/ObjectNumberFixedLength.classPK
Y�n4�
��U .��(�org/farng/mp3/object/ObjectNumberHashMap.classPK
Y�n4�ˀz�5���org/farng/mp3/object/ObjectNumberVariableLength.classPK
Y�n4�� ��)+��Ԣorg/farng/mp3/object/ObjectStringDate.classPK
Y�n4���y/����org/farng/mp3/object/ObjectStringDateTime.classPK
Y�n4f 7���2��q�org/farng/mp3/object/ObjectStringFixedLength.classPK
Y�n4�gj���.��O�org/farng/mp3/object/ObjectStringHashMap.classPK
Y�n4"v���5��r�org/farng/mp3/object/ObjectStringNullTerminated.classPK
Y�n4�v����5����org/farng/mp3/object/ObjectStringSizeTerminated.classPK���9��
PK
R�> META-INF/��PK
Q�>�P�coMETA-INF/MANIFEST.MF�M��LK-.� K-*��ϳR0�3��r�Cq,HL�HU�%-�x���RKRSt�*A��� � t�RKu���4�K�|3���+�KRs�<��4y�x�PK
O�>org/PK
O�>org/openintents/PK
O�> org/openintents/sensorsimulator/PK
O�>#org/openintents/sensorsimulator/db/PK
O�>�ҡ5zAorg/openintents/sensorsimulator/db/SensorSimulator$Settings.class�R]oA=��Эm�~�ն�Z���>�j�[�4n a��'2���̒مğe|����Gﮠ}1>̽sϝ��Μ�����Z@�M����<�x`�����G kN�Ѯ7ڽN�a���ס�m%b���)C�~Q���l�{��y�E�{ŧ���^����u'TQ�U���D�8bX}]c�̐���N�D�!w&��_R�\�2d�� �T�1��n�~ �p��.�2�g`&~+#�qL���.�� x
_����X(�b��Ȏ��B��$�q�m�o{)�͡�y5z�y6f��p��B&��Kw��X(�:�� L���6�Wȫ��ь�����xb�D��S����a����� ;s-�:�J_h������FO�{5�!މ���4Q��Xʌ��(sX�S��_&���_Bs��1���A)���
X#̢�
�)��oP��o�b�d� ��3���O`�#7��R�!n��~�-�!o����i�W>c�#2I�P����E�Q�N韨�m�~PK
O�>Y�� �,8org/openintents/sensorsimulator/db/SensorSimulator.class�S]OA=C����b� и�>�@L�vI*k��,M��vR�Y�;%�gLL��wWD$�0�ιs�{���ϯ�l�Ke,�xdb���5��V��2����`r�u��)C���L�HSIpz��Z�z��u8g��G�TؑPc����PR#V�J�D4�&6�l��ob��F�٫��y�)�"w����ֻ��{�A��u~�k3��O���P�a(�o��F<� 3n�d{r2��/���ʌ�Df�,h��!��ʍ���*TZ*�کTi����$:N����y�� ���Dg��'I �Œu�R���
nc�a�r T� �=����yU0�[ /�^�?��H�a��<���ju��h�Ȕ@����$N������L�Ƥe��
�A�Jh
3�g/�����aj1���`��!��<#_���)_�����Hf�4��N�]��
�N`SN6J�0�/T �oT �/V��3J%�)K9�O�r���� 1d?�B�PK
O�>��~�|� Corg/openintents/sensorsimulator/db/SensorSimulatorConvenience.class�W[p���,Kky�$J��@��X�-��Ғk�p��%I�c����7H�bw�$���VZh��Bix#a�N�L�Й2��N��L�����N��������s�����]��_����$��m�C&�����
r!�1ֆqL��&��'��
���^���~S!<M���(��=��:1�`NCR�d>��$��\L�N�`�"R`�(p��j�v⸂
N*xX�#A<�c-�;��Ǵ��,i�l2�چ9�G�#e�����V��J�W?�
D�5�h[F1Y�$�M6XT[_3ݬ�X��n t5_�Z`�a�~��b��� �SV���6L=S-O�v^�.��VA+�k�!�D�;g8�-{6iUt��,:IG7�v�r�����,N's)�H���u��3�`a������nK�@wl%x+)2�@M�p������Cw>�ȥP�K�.j�6�9z2U�,%C������^q �$�oje�[k�v�~;�M"�7��PΪ��!!ݾ:N�RWŭx\eS��*���U܌[���H|G5�(t�񔊧�LϪx/񒊗������j�����'�E�U��~�_��Q��RA���u�8� ǡftN���5[�Vl�fЈ�A��7*���ۮ�y÷�:t��m�W��U��'�NU��T����H���1KŕU�f� ��,ۮV��h�Zr�
��'�66I���o�^,�ј�� ��wY'[5]��/�ʈ�@��Be�L�(2�A���0�v��+�Д�h�w7���rLNC�a�&�}���8Y����1��l��nڲʔ�$`���A;b�5L���"U�(%��Y֓���s�׽>�(���:d���*i�#GF{j$���Ʋ��a�*��&�l���t��eOfr#��Pzlx ?��͎�5���dX�G� ��V��=�����R**�U' l�5�3ۿ#AeUu�@-��&����I(~�q�e��U�+P&��u�R���w�@je���6�7Iv{٪�y�a;u��-�P���!�����s�u��fyb|m�_LH'cm��u��f�7ܹ����� �jr�+��|�@�B��G��5�V�r�Z����b��5��qt�/���lE?���?������;��I��]\§1�}�;{ zz�����s������<��r ���V���F�M��F��2vc������a݅�;���a�Wh�������A� m�\ C�GG/��?�2�u"�~2���R)|'�%����lbE�F�":'[�y�?�o��5�#}��#�yl�8�BC�C��ӵ�D� ����Ї�~ij�w�FZ/�p�H���J�e%ڕ�� � 6gx�>q7L\������t����;�Z����� �q����A҆�]�� )Y��|ӣ�c�� <����q��^�"� �ǧ�Ÿ1�������k�0�a����c^����=��~� �b �D�ы�Ik��������� O��R^���^Q��!�|<�F���嵦4ݷ��H_=}}�{���p�,Q�K�yL���'���\�� %��c�%���ε�8a�?��<F�� Ǔ�|��<M�g��9��Ua��R 9��Lby �r { 2L]�g�`���V��PK
O�>)org/openintents/sensorsimulator/hardware/PK
O�>��)O�� 5org/openintents/sensorsimulator/hardware/Sensor.class�VKs�T=��q��y���Ph�qCM��4�u�DT~ �IS�b��R[Je9��`Sذa��� �!)��5���� |�Jv�������s?��}�~��_����4B��(���� D<FeC�A�W�†��&Ѓ56\ck��C6|Ć�cX�ẀAm�(�g�YI��BN�$U� ���V��-wE�5�0�!�{ъާ}/���R�P�XTD@������1�K�gr�������EYR�RH�1�TPe)�e4��g|��9_T�R�ʕ�-��Z�*�dm���&劒����X��RF��uU�,H*[�G�հ�V���p ��Su{� ��t�rK�oQ��=�t�Z:�8�m���]2���6z(�)f�#k�UM˖kT gv��ճ5�\Tl���� ˤu�m��lf�Y�]�Io�N��1�^:�ւ�@b�:��k|Jjc�nU۬��6�K�K�3-ӝp"yd�<�" ��+TP�bZF�Y�0Mߨ3��e���;&�>q7Mڢ�����B��wĽ�MZ�z����Ɉ?��]�4�7��z��?���p`�eb�'y�>�3��yOu�?���yi��=Lkѱ�-�TU�p=t<9uD�Lw^9�?Q��N�X4Y�=��Y*�hHaD��P�wP1�WD���El�CE��"��0p�R��-7QQ�%�fp�D8�% �'M/�c��ƖQ�� '���M�頒�N��<��&o�<obM`q0� x�7��o3Nw\l��� f+Ou�u
�3�7?yX��5�;L��m�^����Ct��c ���+� ?�c���'<�'� ��?����/>���_
�� 'x�f�J��g��9jBg�<M���G�ͩ��]K_�s8Oo��0�5{:�B*��©�Y{��]DSgvKM��O\�MO�
�)�G7���-��2�
U�#����m���,� |6G���� ���'bߍ��N ή� �\uԋj�F�.��>�u����Ѻ����%Ű:&S?#��xn�W�I�#4I�={����~yȾ��j�L���6��c�ic���L�m'}�85�%d�p�X��H|���I~y�,��_л��ՃU~F���m����\jK��`٫�?r�x���� ���M��X�x�>3��EHx����N����:�.��7�շ��w������S�.�,ڹ.�s���B<�4a�E]��ǶQ�������2ދp�8��r�PK
O�>mH���:org/openintents/sensorsimulator/hardware/SensorEvent.class�TkOA=C�l)�@��<�jY+��`)H�$��>�a��%�]�ݢ|��XH$��wf�#L��ޙ3s�9gf����&�G�ZЎ�*�㈄�1̊ᕊ�1��#��8� ��YÒ�w*2 1n�5��' l���j�U�g��{~���,�v� �F�Tm�V���/}�e$0Ϡ�c1$��B��n���c^�YU�����yrD;cN֣�_�d��%߳K��ɆF���>�M�DZW2�Տ����L����T�;�6�3y�rK��w�j�]1��U�b�v�`�a0}g�����Q�ʎ�y۵�ל}�/���Q���b�XT������k�ǴKH4/�PC����$��x��Np(L�5
�sT�Vx`�(�1��u�V��X�\�($[�w/x5ߴr���q�턨�a��!Cߵ�k�U����s ��Ћ> I$z��p�T��?�������U��SVŊ�U�4�a]C7z4���a��&=�^l�Z&-E���m��z��s��*[A1|��NH��SCV*�'8r� �l�ohC'��!蒑�H~˘�x��U��%��#� k��̗�B��f��g�����鬎&���s(uD��:��1�����D�9�s��T�o���� Zm��p��g�U���Q6C���J�h�P�UL �E����k:lMg�2K�&��$3��E�\'F��B�0����PL��=I���T�op,�"���;��ֽ►�".=�[
����B֞� PK
O�>�k�b�JBorg/openintents/sensorsimulator/hardware/SensorEventListener.class���A���n�����p!�H$�ctXY32�K����Pb�W����W}�_�:�((�F�J�T��V� � ���؍0֡�Y�N8��X�H�Ɗ��듴,O�?m- U�_���4>�T?��&��'aĄƗ; �G�m��Q�4��ZJ�X�W;Vq�@� �L��E�;��WA���PK
O�> 0P93�Eorg/openintents/sensorsimulator/hardware/SensorManagerSimulator.class�V�Wg~�fw;
$���$�˂���6&�n�D��%�I�dw��Φ3��Զ�Z��Z۪�X�1O>D�n�9G����_��~�O������.��<���}���>����y���`/.F��"��*�(qZ32̆1��3Q.Ϊ�E���� �sa<�W/‹E�=�< �|���a<!
��S2|F��e� ψ�ϩx6���y� �exN��
–�z��1$Sg&Q8gږ홶�&\�v �k�9�+8�Y�����H�1�6fL']�P�JVО:c���a�$Ҟc�3� |S޴�+�a��@��,ZRp�zmW��5P���2T
��ag���]7��噏����L���D<�9=2���<9<�J;y(��IO)PFCL4ܺL~896"EA�2����X2%����e�����$�[�����@�Z�� *8[ӝ���i�C�,њ�ls��?e:SƩ�)�-d�ܴ�X�6�Y���L%��y�3�e��J>�fL/� Ҧ3g ���\A���?[���rMo�<ms^{v��K�Z�|���� v�z�^=+�H:�q>e�B�Hښ� ��0�:X�Q�+y��r'M#I�V���P��8��3�m:�ô��F�x�����y8*@¹*����'����4����E{�����M�r�FEG�o���S?�td-w�l���7�lͶT�2&+�;6��9 �|��M�N�<d ��W��ᨆ�8���А����r��% }��p�T�e _���1��� 6_�0���y} ���E%˧�eB�������{����#��3��Κ�>?k�z�e��-o``@3Κ�ˢ׽�$V� ���5���i��xU�8��5 �B���T����2�ٳ���j�8>�a��������0��uM|���� o₆�)�ԑ&N�!xv�Ճ���M:�F۸_4��v �Ѣ�c��K�#= -�k D
��Y���WQ1oeYp����z�`j�|U��O�}L�ɗ�ej5�R��la���L���:��r��&�/Z�������8?�ՙ6�;,)�uM%D�2l�74�M� B��� �=�T ��a�XjP
v���d,��53g��ѯ�����l�Y�Oi��/̙�]����>���e+�l;އ�\��\B��������������`��]\�]�����j����~�e�p�q�>@� WE��塶;~J\y ���sv���oqqMW��S_ѽ>�f�Gx�D��&����l&p%zY%���2��.(�l�N5��0F/��;��"��k�Y��k�.`�u�r,�+A�Z�b���]�����6^C[ �R��*ȝP9'ԇъG�'�O12���@;ˆ}x�g��\(8���yFN5K`���w=�/��j�:݌Q�*���(]G�5н��о�('%t\f��A�rYYr����'��І�хg��g}cZYM`,��#$~Pj`���Eln��G�m��]%l]@S�R�%��/�ڙI�ER�%Z}[٥i���'(�zv+'}�;J��`�%�~C4�.�1� b�̸��_D~̤���/�K�$ҾO:�H�v�q�_��i��[=$�|$%l��hHh)Ee���ϰ��_��j��j�'�.6
l>����YBw`�&M����c ~_Î������c�h�о��O��z��1�cM��@�B����Q��OT��UU<R%��tw)����_V�~� �?�����y��q��C��B���ܼ̿�n�s'�]K��eZ5� a��ῑ@'����O��_����wkb����8�w�V��2��G@�<�7�PK
O�>)��ƨL :org/openintents/sensorsimulator/hardware/SensorNames.class�V�Sg?Kn���B��"5ޭ�h �����mq a1ٍ��-}�և�w���3}p��C�t���8}鋯�>���H�߷��UB�-3߷�=�߹lx��ψ�Y1�M��Eʊ�iB�I��"D*�4�i����)ïY~]�е���1z�>�����]����
ScI�e�����z9Y�MM/�-m薭���ZYa"-�^����ryE�SE%���#J��rF���墜��+��r>U���u8���XV.*�QEΌs�e�bQ�6����
�܄�!���f�q�8��<�\(����܈<��S#<z[A�ry��V�XP�fT��k�`��N L L��Mgٕ�<3��|��z%�2���=a�^�,�Ng ��4jL�t�鶕��n��UW*�m��%�\�H5Y��ȪUf�z���B"Ю��i�]
����b6��]=� {����o{)2?�Y��Z%�2Mu5�Y�@oS)ǻZ�A(�AD�-�[-�Η�?^ ��}`<�C��4���ȹn���u�^1d�)��Q�K��FA�QӨzX=ך4�ˤ��M,:��nU8 �b��\��E� � #v3�����F5ޗvߠ�N��K ̢Z*�
Zf��k��e��Ziߢ�*�"���%Pm��х�iX%��M����l�Ě�,�iL�ͪ5fzm��L�c��٫�;��%,�>�� ̌��"�Q�&��DZ���@;6U N��(�S��8T��M29[���Y_T�E���2+Y�V
n� b7WԊ��u�di�b[l�Ut��>a�w =
���nTtWԼO2����G٬ǿoa7�+Q75r���-:>z�L���n|<[i��#��Z� \����Ƿ����E��||�~�LJ�������������w�`��G��0�>H�x
x�OI��Q9�;��a�qW��@�|�<�G���o��eqG���i��8�8�q�qd��8�����K���K��Kb]�֥X]�79�
��$�� ��i�ΑB�2$�4J9p����)_“t�y2'`�&�;��wZBjY��
�%��KF@�]Rp�ȠK�AF2���Gsmѣ���GG�k Y��}騀4O;�D���a`h�"R���" @��V�
`:�`_�Q 7�i�j���= ��s ^�K?Q|�)m��u%֩�!� u�GQ_w�k���L��������?��Nw��~�ۂ�>ޒ������SܷI�;���.�|���~�d�@;���Іq�p�!+�qO���P��wC�w���S�� �".�'�ja���=����������(�r�:u^q�� �u�/p��?����_b��B��1:���� D�7m �g�E��7������Q�C�܁�y��mЙW6�N�z�kA��INE#�&� ���7%�X����K���PK
O�>�l��~�Forg/openintents/sensorsimulator/hardware/SensorSimulatorClient$1.class�Wkp���z���7MbP�I�p���v��8i q�DA�8����6�y�]Iy�����>�I�< ���R�#�����og:ӟ��W��?�GI{�$�J�t
�gt���{^���{��t�B;L�pSI �؉�M$p��o
�U�H�n3a� v�wL�n!{L�Ÿ��n��ٌo�.!�� a���E��OȤ��|˰_��E*ی)��y2��m!��Ι�n^H�� �|�ɵwnLz�dܛ�]���n>��n��s�T!k�=?����A˷�#���ى�����Y��u� ��z��v�A/m%��Y����Qk"�HK�KY�]��ȸ��p]�Y�����:}i���f,7����\ΚdkWD� �{�x.yM���^L���(g3T��pX e ���c�OH�Ҭ*6�9�˓�V��w��D��E��T��KQ�v���G�)�i*7)�j�`�x?e9�-W�t`����ꦲ^�q'��|�K8�ЁU
�ᰁ{��~�U���p/�S�(<�#
G�;��)�I)���N�G�>+�\p�i�W�o[y;��R;���#�|E~�
yX�1p\�G��O�S�*<�� �PxO*<���m J��)�Vx�(� �*<��^����/S1
/�璸�^��W� �Tx ���
�� ���M��
yK2yo+��7�z� ̪z�^:0�����b�ʹj�_k|�f,�XZ57r��;5��Rws+(L�`��lV�k�:6�T��wwv6�U%�T��l�
�hK�V����^tnm���!���4�HVG��}����A�C��|y4񿦃y� q���d�ų�V�;I�%��XYÏ�U�W�1V>���&߷�Ye?/�s|N�Qr�Ec�h�|��j����VZ��U�- .N�������ObL��\�> ���D"Cyy)�-ZS(���u��h�����k����#��6��Q��� u���D3{lR^IC|P��$���%'�;���R�M�W�s�O�*�R�nd�}��U�� ��� ���A�/N����}����?ٛ�����E�����P�]�zÍӽ����I��9��o�Л�[�[u�N�j_1���te��r'm�y%�ۋ?xb�^�ŋ�vɜƿ밚 k��� fǪ�A砽Y��3 @���y%<?غx�<4�GoY�����S�΢I�/B��8 *b�Q�Oo� �E^��2j�M�e6t�-��`�9��5���� �2�EE,� x?0r$@g�=S��̠e �x�N�.��0"mFKO<�?����P8T2���W��E����Y_BkO#*�pp�X��̵q�1��r�G�y���G�+`8x_0e�ï���m�;�h8�U��YsՀY-z$HGB�-m��W-�ݥh"'��F�h/K�2�l�~��g���g���C���K�����c��7���_����_q � k��XO��m�)&��?q�>� �����^~op�����i�X �� ] �B-Dm�I˵f��mі�6�0�іQJ[N�T�"t����k1:��.�4�2 ����O�u�I�\n%��.�!~��� r�b6�@��qn�BUt����l��0Ȝ.%Y)W�`+l�J�؆��Ց`��-�EQ� 3� h�PK
O�>{�kz� Morg/openintents/sensorsimulator/hardware/SensorSimulatorClient$Listener.classŖ�SUǿw��$]JJ�%�ڰBh� 4R��`
Z(�jk�d��Ggw�C����t���8��_pFdž::����z�n��m�d�r�ٻ��9��{7���o�0���y.��:I��x� CP0B�<���[2.���·��e,��ߖ�(О�� V�L��tS �*��X�^0
�d[1�Ѱ�|)��E3����U��c��Ҫڏ ���ݺ"�֊�%Й���h��m�bgLS[� ��3��.���ZOg�]�i�l,I��ĕ Ö�Y=�� �$g>��ٗog4[�7��KL���lX}���e������O�BZ&�%�����m
��*f��=e��R~I7絥�t��i-���?W���b%Y�y*�Y��h �ڷ��-V����[j٪V�z�*�]{�˚U�z�h��*�� � �`� ��v �dO;�!��[��[HK�u���0m�;�fSk[�G^Z��ř����n��r�YRMd���e�7��g����?)p�y�9i-.��ڹ�f�+��#�0W,�i����u���
�Q�(�A��.<��tʸ��~�.�)�����/!� r���A�M~{�� +��N�e, \hR�����-=m �v霜���Kz�=�R��Q�/r4���{B^�r%}��@W�zo>vE
�Ȗ>��ԓl�|W�-�}*�/�]�eu�U�TQ�;�2X�p�:O4V7jM�;Z q�I����L��Y� �hg82� ��s�~Gp���H�>�ix���@d��R�g�n"x������e5X�����}��Ȁ�%��
��*z���uD�x�tT7��G `�H� QBQ�#�����0�0�*��h���fi���Խ�=�C�D��o�o|$����ӷ��u�k���&>A���I>&>s��S֊;���'��8���M�0���W}�v�x�W�a_ R+�S;�^�����AA+A}���{�W8 �R��aH|�����[�6�a��$5\r$��ϑ���p+^����  �@�U-�(Ҏk�U�)vMƣ��ic�Ό_��g,yƾ�wd<��u"K;�����IZ�z(�"��ծ���r*��>i��� og�Z��#�)e��"���F!{�KA�g�s� ��?U\��!�PK
O�>�tԑ@Dorg/openintents/sensorsimulator/hardware/SensorSimulatorClient.class�Z |T��?�����aB�!A�=�l�6,B�`$ �8$C���YX,
*��V�Z-T��%m�*j�u�V�m�v�֥�Ŷ�v���7o�L`���ߧ��{�]ν��{���σ�h���K��΍b��꥘/E� �8S��n�27�x����(=gI�$E���]��|^,�gK�D�6/uS!/��s�X.�
)�u^��*7����<��Z��]�w�Xn�y��:wJp�Z7uq��&�:���M>���!w�w�M�qS���"��B<��� ��y��uޤ��n�o���[e����ޢ�V7_Ɨ�|�����O��)��|��y��w�̿Z��Z�Wd�7_�� 0����)>��Ϻ��?'�7J��2�&�9���;�(vJ�E���r� �&�/ɼۥ�C����2�i}U���^A��R|C�S�q��w����-)�r̿�HZw�����|�s����>)��+D� �d�.ޯ�C:?,_t>��!��|[�Gd�Gu~L����'t~R�t~��������k��Y����{n��O��y�_y~_���C7��O��E���{I�u���?�)?��g:��ſp�/���`,�LFcu}��bL�Һ3�<M���kB�pWM[< w�bR ���p�(`r`�4hj=s��%�K[�[��x�c �э����8Sq�?��;k:�+���@���-�E�m��D��D1�>�����H��&҃sa�&fΎ�f�t�����b�p�#�dru�E:. �DÓ ��df:�[*L#5��x|y4D1�u7��N�G�%֮ D�K�Ns��;�j̦��C5uѨ���qڂ]a<s�g�3�C9^�vn�GG��� �C̚��Z�6���.w��Vڻ�h�����m�Ե-mh[
�7B?��3�����ef��.i���x���\�l�� ��Z�Z����0�l�[au��L}�\�j������D�j�JLZ�vD:�v �l!�u��v�X�Ջ�;g���\�s���F��(T�y�aM�p�%ѽ&]�_
�yE:�s�Ѡ|[��� �<��])�(}�e ��LN��wL���/ G6�Fb���x0��G��`w �0'm5�����gg4kΘe}��3�^��� ��c���$[�_TV>��%�
�E/
VesW�X��ȁpo�IA��n�ib����2���lz~4�%�M��X��ʶ�,n���X�� S�G�T E3��8��(��F�=���C6�sO�uQ��i�qÀc�D�wNg ��Ĵ:�q?Z��I�����-1qW ��l�|0.� ¤i�*�|�ڍ@X�)�w�q�T��DO'�[ ?�G�og�� �
��hWBx�h�{�ub��l']Ӈڭ�3DpeYU#���u�X��Ⲭ���:�Xv�a.pGR�(�Tָj��1��4�9g���Y�Y��ؤ�T%W�nݞ �N{Vh1�1.��+e��r��mgJ��,�!��pl�h���DOO$�X���e�Y��3�莉�jh B�(��?\�z?<�7c�%
-���F3�a_B�L�\"Z�k$���hrBA�u��
b�fg�d���0κ������:aڔ)L��mzGF��8%M���h�1�5]���V��h�*4>�"��Bt�$
Im�1�f�G��@;ȳ��:E6Yq› �L6N�b��d�;U�]�07x
����=᭲� Y}vG�J�m�D�#� (AᨬT���Aߢ� vs�A�P�A�����' z��6�q:h�#R<K/�³��Ad�ߦ���O0����+}��k��Ӡ��a�9'�: �W ���1�^�Ϡ�Ϡ~� �ZG���]�P��ÃVWW��W�_���^+0�5~�=��)�y�`�S����1ЍG���o� yk�� ���ꈄ���\*'�m
���������p�� <�p;� �$�8R�ߝ3�m��,��f�)X� O�{e��_�Tɻp|zY@�!��}� �7�Q/�k��edYZ�#�P����X��]�z��R�B����i��wS$�]�_0�X �"DV=�hw0�݂a��v�����X�t���D,�ʘd��Z�6挳����[�6,iiX:�f���1�/�WD0"/l7M3�]~���ߙ�+ �������GBM�:���N�h�Va��=DQ�闤I��?�6�pW�wy4b�.{c�4 �8c��▕�oz�������1�}E�b�\J3�C�ʩ\Lg~Dو�t�k(7ӳ
~�?��� ~ϥ�j(ܐ�5T��q0�Q��v�BC��JC�{�:I�K1J���^5�hu2��"YC��e^5֠��� 5N�G���\�#q$<�'1���P�G�cj�7�{c���P��.5�P���U��ʕ�P�W���=:e~�G�L�-�|2���V͵��``���C@# �ڒr��ӆ ����� ¦��_���[CU 1��i2<�do0v��JP⡙y��R�%��G���}�G��F*11M �?��� >��u����;g�7 :�H� ���L%�>��ŎD4
(B�2�Ze�S��jc�3��5o];/�w�2M����}%���wm`��ʒc�2�6�.�\��u�P��A�k�듋�%�W��CM� ��ƕLU �(����k����2 �M�a�]��#���؎��B`V�% �EEY��{b�d�ݶ���|�� Ĝ��?��p~j� ��"H�'gI��g�C��h@nx�I�Ұ����\��W�
+h��2I�8�(�r��@�`�-�k�����f;��r�q5sG�eY)���RF(��:0ƙ%[d*�!�S4�߄����� ������7�@4z��*��Y���{�+v.J�C�#��Βג��P$�m��B�X�����H���+��*1X���"k椌�P�ѽ�r�?�b>�#�+���1P{,V�i�� n?QL�W���Ӭ+k��ob��ē��� �< ��Ѱ�8���3�F�XO��^�j�z�T��yԊăk7�(;�O`�����ATqh�Hݑ���9�fł̷�d��d#IN�>yX#�;�q����C�%��&�uI�XX֘�J����˼�[׊Y��zoM���2�C�`x3�s���Ly0�f`���C"k��`��Oܘ~�2k��e�3c^�Y�� ��k.��Q��WOnG��O`iD��,s��ذ�ЂP�/�ʙ���� �]�uBf��dh
�/Q!�D_�^b�:���(�F��V|�w��[t�پ��A�7 �7�a��S�Y��^s�>z�4����=l��A�>d�߶�G�z=�:��c����=i�O��f� �+��}��h=K�a������g�o/�����}/���ç�����GC|��h�o8=�G��^r=L��(GZ9�ȉU��X>��<���W�G��*l��O��F�Q��8ϣ���(�c�&vG��Q8��N��T�)�򫴀V�Y�N�i%-�U�I��қ<4}�~`B�t6[/����9�I����Cė�N��X�Q�O�>�',��Oc�̖�fO�~ 0�y��ӄ
�y&���_?M2W�����l/� ���fO�
�^��]�SU�~���k�Ҕ�4;��g[�;��u����d̙q sNd��U�Z���~�>�����3���O�����Zǽt�����%�v��4U���԰��B����ah�ib�O �@&ʹ���if}�j�?��H��y*ʹ�c'MB��uB�А.*� h,]HԍU=t.EQư�2P��u����� 0��ЋM�|1����7��t ��RF[���r ]���<���j��_ŧ�v�EW��t-����O��t_D��M�9��n2�o ��o<�L?��1[?A�E����S�@�0[�:KK���3�uTp�-��W�/��0�)}�ۀ�+�$
vЩ@�����~Z���YI�j��L!�&�����lcZMy(o!݊��i$�A���&��M��+����}��á| nL���e'lZm��B�bL�ڃZlq�l����b�6W�����=���7������!8ݯ������a���I�S=o�L:�7A�7��e�a���G����4]�OV�^��o�f8c����h �FC�1 ]9�n4��G��%�~Z\����L;h���0�U[mnq�>ZZ�5r�ֺz����O�+��3�S[�����P2�g����2���O+�WV�O��R�U��凉�x\� ��t�� *�����R^�u��`a�\LK؀��R[���&�|_/@~H>�qd~
�{4v6t�tH�2_,�ð�����Σ?�:�#��Ot ���m��ҕ����?�K�O�ӿp%�����ߧǠJϱ�~�9�:;�0����ߜˊ�(�p�'���|��[��I��N�eХߣυ܉3� ͂�S�Zĉ�l�gRf�/�_�u��?��%饴,I�]Ps��_R��T�}�b�D�#)}p;l-�)΁ ���;��W�DP�B����}��v�q���b�����?��v`D�B�v�G��uU=Z�:�l��e��[�sI�ZL.��|C�<��x"M��t*�����\C��
�ݭ[Q� �x� �\��:��I�����s��mӀ����h%NA���.� ��� ��/fl���A�-�+S��\*�Sr��h���*���~Z���H��u���i�>
�l�����_H.�9��N�����W���o�q3��Gn��� 4��D^H��H�x5�Yt.��Ja^L�l\#��:���T8��P''�u����E&f���
{�h0��L��+^��-! �%��6 ��-Ǜ��.Zɕo`���o���f.�m�T�U�:�ĭT��+�X&8+�W� k�w���>���Tg�,))vY��Swm�O44�KS��G<=�饷Q�p�7��O����H溜3��4�VOG 1D �d�'��˅���WA<8��!д>7�����&9�&�U�� ��͈��/FHK� ��4������.��0�{K�Ks�>�gܝ���t�.>@��m�o#x������I��������O�~�=���������k���ߧ��l���?��qÎ��Y���m[�o�%`�O|���i��F���T��S�E�>�v^� q�d�o.S1��'z�Tk%��#9 ��\�ɻ�
�n��)��64�Wj�L���ؽM�$^�v�61R�R�Jn5���L*A{����k���& l�@f��f6��ɱ7P��5璸�<+�y��5%���Z���Q )Wrm�KD7|"��a�]�J�8@'Lv8�D������:��j E40\�S�:�o��[i�ZD�T U��MFb�I��`�Xj/�� kl���P�%i �|��nFkN*gZpr\�#,��-��f"�-���-�R�Q�2B�<{�<k�r������K��b�i�y�z.Kł����r�֔�]a����3�y��7Wz���'w���mO��T*e�2�p/]u0M�~`ƃP�93Ԕ(sd�Ŏ2g �#u.��<�`5���4MuP��z���*L[ԅ�U��*�Mת� �,��<�νfb��;��l����I�_ݲ@�݆f��Oh��&h�&h6�M��b@s)���l4���Ͷ�F~�����u��7�������;�P���֤�I�{��w�q�bE�6�Q�(�ES*
ֲ���00-�r���y�Ӓ N�=8�h��b
�0jRW��@�j�54Z]Oէi�� �-T7�����qumD�Ru+]�v���t����W_�#���6���Ԏ�O��r 7Q�,�J�6�f��)���iw\j���fCfX]�&�3��q�:V�1q<�R��
�W
�i8(��P�B
��O��| ^�.���F���T5+��4�Ճ&��!�/Iv�3�]e��*KM
h�ͮ�G[A�L0+����'��kmv�K�s}��O$R�7� L���������Lj��g~65�s� $g8*:v���t������~��s3Z�)���B�Ž�f�(��RE:�,v?gK2���!�S^���W�G�7~�����d�NH侺%��"T��"�R�2��i5��P!�ǠӏS�z���i�z���Y��st��}U�H�Տ��s:�~A�W�=�+v�_s�z������{.Ror�� �Uo�D|����S��i�w<C��Nޡ>BwAϧZ�"z�T��� G0p!�1��fک�LKa�J]�h%��:z�T"���9�^��N,�ƴ�[��l[���:�Y1�m��ѷ���9�5I�G����Hm[d��p�|��U�8�Bڈ�)ec-�R����By�]��ߨP�NV��2�-��hZ���9��Vk.�F�^ˣ�Z>}BB�hC��0ڮy쨢�F�� *]iB�@fl��5�%^c���s� l!��3Gu�x�`���\�Kд�l'~��kH�����G� ~�m��a�(����(�� �l;���l�,B�CZ�Z1 �FQ�VB�Z)M���l�K �X
h(�M��5�j��[��ǵi��VCOkS�m*��M���l�n�ŧ3��K�0^���c���'�$KK,�n�Ep����u�V�f���!l~$�ɨ�n����|9�Nֵ�z6�94M;�j�:���Q���6k ��Z#ݭ5ӽ�"�O;��kMtPk�񭥄��}���=��"t�L���YB��6�w��•�X�� ���2�u�jX+�*��`u��|ڪ��*m ]�u�F}x��s�[H j�M\���&�fgR����o���
����#Dp�.Y˙k1����l�瘶��)Y���<-�bDZ->��ы�c[|*ϰ/��Z��TV�%�'�z_rNr�ٚi��:�f��:Lt�kyV���m6ϱ�2m"��be�`��LN�O�����t�k��p������ȵg������.�� �*����F��+���u�?PK
R�> �AMETA-INF/��PK
Q�>�P�co��+META-INF/MANIFEST.MFPK
O�>�A�org/PK
O�>�A�org/openintents/PK
O�> �Aorg/openintents/sensorsimulator/PK
O�>#�ANorg/openintents/sensorsimulator/db/PK
O�>�ҡ5zA���org/openintents/sensorsimulator/db/SensorSimulator$Settings.classPK
O�>Y�� �,8���org/openintents/sensorsimulator/db/SensorSimulator.classPK
O�>��~�|� C��4org/openintents/sensorsimulator/db/SensorSimulatorConvenience.classPK
O�>)�A org/openintents/sensorsimulator/hardware/PK
O�>��)O�� 5��X org/openintents/sensorsimulator/hardware/Sensor.classPK
O�>mH���:��rorg/openintents/sensorsimulator/hardware/SensorEvent.classPK
O�>�k�b�JB���org/openintents/sensorsimulator/hardware/SensorEventListener.classPK
O�> 0P93�E���org/openintents/sensorsimulator/hardware/SensorManagerSimulator.classPK
O�>)��ƨL :��torg/openintents/sensorsimulator/hardware/SensorNames.classPK
O�>�l��~�F��t$org/openintents/sensorsimulator/hardware/SensorSimulatorClient$1.classPK
O�>{�kz� M��V+org/openintents/sensorsimulator/hardware/SensorSimulatorClient$Listener.classPK
O�>�tԑ@D��;0org/openintents/sensorsimulator/hardware/SensorSimulatorClient.classPK�.L
PK
� �> META-INF/��PK
� �>��[��META-INF/MANIFEST.MFM�? �0��@�CF�E���8t*�J�Wȟ��~{� ț�{w�����Iޠ���
�4g]�K��M �������S����Q�����i�nܒ�T2�� ���I�9�O��KQ3EB�\���Ư����5�"$rT��q�8�7H^*��6F�ԭ�ƚ�mO�q�PK
ѽ�>hr/PK
ѽ�>hr/fer/PK
ѽ�> hr/fer/tel/PK
ѽ�>hr/fer/tel/sensorsimulator/PK
ѽ�>org/PK
ѽ�>org/openintents/PK
ѽ�>org/openintents/tools/PK
ѽ�>&org/openintents/tools/sensorsimulator/PK
ѽ�>,org/openintents/tools/sensorsimulator/swing/PK
ѽ�>*org/openintents/tools/sensorsimulator/web/PK
ѽ�>0Ǐ��-hr/fer/tel/sensorsimulator/MenuListener.class�UkSU~N�d�m Rn�6�j�pYQ��PlKAS��Q*^N�CXf�w7�������2:����c��Ǝ���%Uf��=�����>�=�|����aEE/�"8��d�q�ƛ*���a\
cBE�a\V1�w\Q�aL�U\S1��a�H��0ޕ��d�QpC��
� '<^,��<���0�]����nVE���;�f�s���N���M��N�r=n�Õ��Tt�&,��幺gۦ�7�; �B{.9�4,ÛbXN<��qQ�� �i�L��Y��z�(0i$��K�\�!�OCު�2$����"��!����Y�%F¡@Ԗ� ��a�����5/�۩�2ùf�:��t�N��W}���YGv�0\>� M��A;jͭ�߯�]�ٖd���'er��sȈfp�ؒ��Ĭ!�?���5*�k8���~ h��
��0O���2<h�%/6��� ���v<ϫbT����@�@��>�C��(���S,+�L���g��q���),���KpڒiӦ)����2(ދGL����s�5Q"�϶յ�$���0�l��kEx���*�(�z�v;��p��$� �Jd$N߾����I�gu�]�72V��]7�iW&�dp+��CL�/�n�U��t�N'�8��0u���A��r�u�҉#����uX��=@'��ٛL��f�]��7'\�WĎ�ɣ*L�{(
¤�(��2��$�~D�U{����I."NoO/��������֯�J�Y*_����TGS��RC�H �C�ox��BT�@�D����܃~��E�o] �^" �2^y
�;�^j �؄�F���I o#��� ��� �B[����P�kG8Eu`x �@t ��F�}�Mt�i�7�\=�&�3�#�� ]�X�B�E�ы�;��`b!���Z�'0�#'�c$�E$(�qR$����! 
ŵ��F0JQ3�� ^�PK
ѽ�>Ѩ`*`b6hr/fer/tel/sensorsimulator/SensorSimulatorMain$1.class�Q�N�0=n)!@�<�s� M�ZĂ@B* ԅ� �u�:���W�@ |��1�2�`ɏs|�}�����ÖKjXv���b�ar_*�0��w� �az-�:R��|���b:i̓.ײ�_�� �a���Ї 7F�� tp#t��$0B�T9���:�,���)���צ t��(�u,�e���ms�o9�x��$5R�OE6H�]��Xdž�I�>6�2��͂�Zx���yo(�JS�R��7��z5����Ug�/�4�.:��8�4�0D�2͊a�W�M��+�����'�G�=e
�����1�b4s?�ŀ��X�������җQ���X�l ���*�U�PK
ѽ�>] P<�)4hr/fer/tel/sensorsimulator/SensorSimulatorMain.class�W{t����f6��$K,�)-���H A�B� `���$؝��IX�����Zm�VԶ�%mM����J�Z��ڷ�i[O��韵߽�d7� ���s��w��{��<��Ǟ� ohh��5���� %�S4�Tq�U�߭� ��O�8�=tA��^��P!�>[F��4qL��<��w�`�[��/��C��~I}Y�+.���WxX,||M4_W� a���0��Q0шQA�h��a%��pBŷ4���ķ5<��h�.�V� $��S�}Ϫ8��*�SP�2���a&S�cwE�+P6)8�ͱS�a�;�����עa�:�m_���Ql�k ��a�G:ݤe��((�ŝ�����K�������JȘ�R���I�G��mٮi����8�T$e�)'9q"�)�SxU�*˶�V%������5�l�ls�`��L���)�tbР��g}�E6����>3q�x��; ����i��Z��s���U��K �VI������Ȧ bU�$q�ô�I�'�d�I�Kp�`��}��>ꚉe
�L�;�T�s�)�\�����f��14����-��P���AL�Z&�t��hU��L�yS��,��q�w\�x?9�S깓�ns����)?h���p��cƧ�@�
�b�Ssݠ�:�%� ��}�$ �Lw��%����sGx��T��*��ޝ��K &4_�b�v#ޞ<� �|��������U� �9D63�W��Daj�D��a�1�)��b.��M��\k����Joe�id�| � �>�gj��1k$���
l�
����d��Ll�$�
����%�[y�9L[1Ƕ�,�4�j��0������&�Ӻ�$'���v� -(B�|b1J;'!ϟ"���,���F��1����BV��,�u:�ɘ���on�ܶT���D��vt0qN�fTK�IA��C�m�ܖ��ܮ��aD��^��#�� ��� �:^��$,��2?�؄��ʟ(�.�=Y׶�õ�l�I�ƾ+X�tl�F?r�K����~.�sH
:�b��[��Y�%^��+a���J�12ɮ�`�!6ƍT�V$�ں!+e�����5~���ߋ��G��H�5V·V2'�!���6q��R�'�_T�U���w������_Bgt��s+�
��5.��&܆j�_09d�o�~~z��.��$����nu�p>�����3�tBf���e*_8*\8*{>��mI��H����!FÜ��1h��%FA8\�mQ_�qUx�W¹��N3��u<aؽ^�7C�4�~��!��
H%�C$˼�Jy����f�^�}c�R�߈1P�
-�eB9;͸�ax����*��x
J��;��e���WC��>E�_!yo�B����^��e�S�]��\K�f�e9��v�d��j��m��΂����)�Q�/�:��_�]�k�x*/����Z�wO>s�r%���OAV��c �X������X��H�D�}T�e����$-�%�-�E�31��0��H��lK��e��V��n\�^��;<���:��q�t}c�on(M�tj���(��Ɋ Ơ�Q>�;x���Ѹ8��;�QA��fv�JG0k U��8�����0g����'�!1�/��4��FP#z��_RӸ ��:��/Ic���!���E*��V�8.$úP��,8���J� Cei�#C[��T��7��Ά�\D��<W߬�4I��ģ��a����cX�\*/IciCcy��4e}��L��c&W�P勰��]��KU�`b���Fя�1��,ŷc1�8ʝcp���8R�v�,)��0N�^�A��Cx�Ὸo�F�7)58���enSq�҄�H��a5Ep���ev`'�.��.t��]�܍=��E\ő�<<M���-��߸�Б��U�`�_�䷇�r�GYL��X�q?�A5e�PN]�����Kx�p����[�՜����w�i���A����h%��-m$��|�{��a�G�qt1r�M�"���X������}9��BS�b�8ı"C�!�/1\�"�C<xF�2�� �ʌy�V0�.:����s��H������p�����IY¾�QvI�b�.=
��.����c��㌵'0 OI�Z���U����'��;�,.�3�H}SFq*q��a|�� �B�,!n��� NM q��s���Q��;�(��G���4e�D�g���;��`h�DZ�voŬ�y�N���V��rZaOTr�1�K�P�B��PK
ѽ�>Y2�?� 4org/openintents/tools/sensorsimulator/FileData.class�V[SW����2�(��5ʲ\�/ �$�}�``�Yggc��D5������bŪ<�%U��!�T�33;�6V��}�t���>���ϯ�x O����˸R�f\�5��.C�`TAIaL��(�q
���I�3)cJA�HU�t�Bf"0��
�2,��l9����榌�D��ʸ�`�byO,�����b�#�����XA# �ȸ+A�ٖ�MK��3�����2��eغuLB������1��SK�� RBB�2�i ��a''$�3r�zҴRFf\�&7CZˌ�;M3�k��si��Q6f�Fѯk)璲Q��<|��v;�D��䔙�%l�12zo~zT���4-U=fRKi�!��1hO9 zLk<nf���������ę���Lδr�t>�٦�Kh��k�$kg���\}�����z���lR�چ)�*�SL��D"!�J9�k�:��z�="���w�(K�iw��Ljy�H�ut3˹����_��m���Q=��ڃ攞aa�Y�s���q��%�3��m����sn��3o%��/֦E$Tю��� ��8�7T�=t���q�P1��Ia��"�}q�P]z��*�e+�(��/ѡ�:$l]]�μ�N�_�k6�I(�(*᱊opPw�T��X H��v|��8NH��Ҿ���%T�钊���X�O*~��㠊Cb9��E�+{&���Ͱ��Ki�F'��]����7�t^�#��ņ�oYu�!�ɡ���i1�,{�aݐ��=`kɩAKK2>�L�9ʰ�%����h�aMJ������}/�ئk�G'�֑��ob�#G��S�C����ƴ;����d�K ���� 3�|��e5�I�]�Z&�����O*G�x#���Cp$�ő�<yؓ|��<�I�#9��
$�h��䮛v�rKlR,�e x2�� {�k�\���@<���I����N��K�}�(��b� P@�)����+\�4�^ <R%/"��rn���/b��9Dz ��Ӧ�A��h��:���. b��E܆
�Q��Ա$�,�qdz��� F��Yz�09\��2��Y< �-�MF|��|�g����wzG(�|^�/P9����6Um.`KCQ�Z5���ɂ�v��msP�d�U<cV��}6���f)�ۊ^���i�>G��v��h�t���'r��.����H�&�&�hbpB����7�u��o^��cpu�����v���,`75��;�s�^���L��d�M��O��I c/Fxz���L��5��'rՌ9�4�ׁ��7���7�B~6� P�-`wO�X_���� �i\�^њW�ƚ
���P��F��j��`�� _5ii�k"V!]f���u��&�D zM��i�:�F zg9�7��bs��|��0�Q�b ��12nC=}�3s-9���}�l�S� �G�J�R����~��a�~g����GJ�J��-�.{���*a��?\}oYt؏.]�d�� k���q�.� PK
ѽ�>�<ԧ@�8org/openintents/tools/sensorsimulator/FileRunnable.class�TkoG=��&f�
��---���hCB ��C�E��i����f7�GJN�RC�V�菪z�x�Cd�@+U��=s��3wν�?���W�c��p��f1�91�bn�YsK�m1�wG�]��8��y 衇G�<,+� �^L6[іV8�|�A�Fq�hL�ی2;�0����v c&���w�q���k��=����,��ġ�Ҥ����u�Tv¸�3��a��8�G�ؗ���8zq-)����Ba�7��W��Th4S��m�D�Il�4�� �I������X�\�T����q��6;�(�|$��,�T�$�
�L���_:ז?���T�/ٖ��&�2܌�M+\��9�L7��eh"��Β}e����$�Led��V�G�Ć�ם�F�Q���l�r���8`���W�3�?�w=�����M��'WWҎ����у]�,�>����>�>�� ���Č�9-�+|�� ���M��{��O�����}|��>�H�O�,�����_� ���zq�,�Y;Q�ӑ��X=��+o�AZޖ�$?���:��ڏڟ>����"+��=yQ��Z.F���@�*��7��C�Gau�=�z�܃��zp�N3X�(YSI"k% �y�V�C�^��w8"����<�� �;��E����qz��i�9�2o��-c�p?ak���ob,a� /�WA���4�.�LTt( *94M��]���|��*�L�n���e{�6��m,gk� ^ސf\�uZ�͊��!�|GW�H��,�py\U.�k`C{&~����J�r�="�2�n�k�]���
?���PK
ѽ�>U����� 6org/openintents/tools/sensorsimulator/FileThread.class�V�oU�ݝٝ�2R(�P(�P>��c�Ԃ�(�R��R)Ep�;,Svg��ٖ��|�Q^4}��O$P�$��d���ド 5���;���c����s�=�w�=��wS_~`>�`�k� ��X�����$=����$�R�Org+Џ7�8�8/Ń.D�oi�(/ix;�jÐ�$��0#����+aX�5\X�4<��2�@u��1b�󞕎r]c���y��V�6��K��r:maڰS�^ϵ�Tk;��L>mx�c��ei�z�>�#�7sTrM�*�{�FB
b��i{f�t}xa��J����.Bf��̴mz��;b��ݎ��;YӶhk{���8�\<g�9�-z���V�Y�� �7���?v��[e����N����l�d>3d�}�P���n'a�� ג�P��X v�s�p̢�f*ɸ�e��%RJo1 MZ!�MEI�����G([�u�\�X ��V6�ek�T��2X��eZ7��* ��xt���泞�<z=afedS���0����6��nrq���u�n”�eє�C�����2��b����l�d�$[$iDL�VlӑFF�v��`�p���axtv,Z*��e��D/s�h�3\B�5.r:<��.���d��υ�Q\X1_ޑ��IYq�Yg�t� #k$,o,�c 7t��;n�x9 ��x��>;��y�N�I��/�Xs�5-Rs� �O?/��/6�fz����u���Y���,YZ-/g�r3��f.g��#Ӱ���ZO��\�l��~jh�L�'(�=���BE'�ͼU��!�G ���{���CFo{�}��E"w�H`y�B��鎘�#/�����9),�������:��!d�n�,�zr��7͛o�7�2k�@��G^��G���&��;9�p
�r���G <��j� ��P��Jl8FR�*��I��R�V�J����j5����$I��������&�,!��G��1W�h�x��<F+�q��(�Ѕ�8�v�� Rj�o�����g
GA3^|������ ��^r�ϽFN��} Q��Z��ϵqU� ^��V?�V?�V?�V_Dk��Z1�D9@_� �$�F��`���J��/Pg*CӦ�WڕUm �QT1.~\�~"���$\M�%_c�$�>�x�^�M#��9�jUbp59��U�?B5�XS�b+)��
6�M�v��(��+��6[|' &����Qu�c4ϊ�R>��JK�9}za�ꊅ=����#uq��ɸ9��S{��&�����7��ZB<O�SԱLd�e��X���a��D[�4֠�wC?��{x��4H���ȇ�nc�!���C� L���`��E��H�=|&��`���s" O�0"�bT��S�-����)�x�G�)��s�' �C��ހF�t�EJ��j�ol�K|��G���(G�)X#~�1r*��g�N� 5;���� PK
ѽ�>#\��~�8org/openintents/tools/sensorsimulator/IMobilePanel.classu��N�0��P(�ʾ˅���
���D��t�9qd;,�Ɓ��t�"U�!����c��~}�)�� �f����T�0Y;~���]鱍�3���t*t���-�]��G�3��j���ж�{�Dd�G��ya���ѣ}*���v����ؿ2q*�{q:#���ӑ��Y4�{�X�����{�S��g��/� M�D�v�x�o2�2�������p׆�z�+��<8ʚ+�I�z�Q��"�V���^$��3��� t�m2��$Vnn� ��2A}��pfl�zAL� �1��x'��LKol�%�6r�򊡟 `�Z�.�@�bN3���-Xa�1� �E�s���\e�A��:l�dn�v��nNJ�G� ��PK
ѽ�>z8�:<org/openintents/tools/sensorsimulator/ISensorSimulator.class�W���?زٖb[Ö�t�&RGԴu:�E������-��z"Ol`P��Wґt$�{MGڦm�ӽ���D?}<�@��� }�}�w����{�{�݌�����w�ٽ�[�Lc�����%�,��[|��nk��ۺVc�� B�+��
�}L�B�(V�l� Kg߇��F�jX��e��+����YX[0�RQg?�خ��x���il�jUΘe�����[f�b�l?���y�P)k���l?�؁ک��5�%���il�����V��|?��x~��5R��~��ɞ�)�d�Rʯ46��%�Z�5,�7�h�DR�-1�R�1�h���%��Rc�Ec�2���~�*����?�v��kesi�?�[��%�� f���v���ٟ����_46���`�N�
�v[��Fh{���
�"�z~�����lx�+����qE�3�Áp��U�w���E���8|[g��Œ��y�|��O��v�ᡘ�a(|�� ��bX�$�-����S��b�טf����H�z�H��-���"iة�=��,� �-K;ӿ}gW ����&�휙5!O�v� E��\c'gfK�ߚ�:µ�2 �B�s�9�>����*��92 �3� ��hj����E���A�shƔ�X�̺�*w���k�w\����Ҋ������n���8����5�A�=u�j�N�͊/��r�D����a"� ��k Xbud]�;��a��2oA�vc�N��Jvk�� ���]��v����-�� J��~V�<�`���u'S�Tb���+٧����3?�Hީ�d�Ι�y�aP�C3g��9�ʙ��@%{2"��%���R��
ȼ���F[�4�ٷ�/��943{}Qc'�Gd�w�q� �����C/���H7R�[Pv++N���v�A�g_
��6Q'���yZ ����A��<�B*����� ]�~�ׁ���<�B+jhEWC�f��h}�z����dw&���"��'����f��<:�5������PZ<=�{sl�F
ٟ��O�ї���`3��a�x����c�� ����R� �N�*���˅T��Q]���2ULjOB��>�[�,���JrӢo�E�U���K[�#�x9i��;�>G����wo���Vv6�IyM/��
��� @��Y���'w�c��!�|S�|p�pҗ��U��]�ON�a��M����'B�#3�ʎO�J�c���2H $�Iy0�)�-�ω��pK��!�z"^��\岟��*ݰ� �jK�۲îl�\�$����c{�NK�-I��� �g3�Ό�Z��v�l4���/3��t�*���l�x���\]�����6�Hn#^�]N�ۑN�ґ0�ǻ$���@;:Ǖ-��v���#s����S���Y3I&�J�S=k6�ў���q�@b#���6��N��v���\�rW�:��w��.�tWtI��ƹNt����'����sԏn89+���y/@`�{On=��E�zr�ړ��=���v���l��dC�v�� � |�p��{��%|�Q�ǀ_B�~�?|�� ���O?D�a�ӄv��K�#�2�� �?A���@���A�_�J�g���`�!��F�U��8� �G�(�' ��  ���8���x�O ���D�� �^ �� |�";�p�S*��e� il�U���"�X-�:[�p�ٙW���G����� �5�g�8����`��b q�F<�x�Al#��b�Y�>b��n�[�/"n#>�9��E|{~�/`/��E�/��_��K�~⍨� ������D�&�oF�_��kP-�oA��ס�z��񍨿��9· ��m�oG|�;q�ߍ��=��E|��?��A���#~�C�8�� �D��m��#ށ�i�ϰ;#�,�\��G��w!~�K�_F��+��W���ރ���q�o ~�[���oG��w�PK
ѽ�>��w�
8org/openintents/tools/sensorsimulator/SensorServer.class�V�se�m�6i�-m�!\�6- 7�PK�� T��n��ݒ���M)T�"�eF�ʃ3}���"�3�8����8��>�������BG��}�����η���/���Q��2�a��N!{�<��0J���>��s�U�'q@x�B�T�8�� ��Q�����!���I��A�r� �/��0�H�+C!�aXȊ�!�a2tC�1�� �T $uӱ�1��h�e+hNXvo���a���:qײ2N����`�����}}���D�ڠ�hfo����a;nAd���w�ۃ�=a*��&-��w��R�tWA�����xr��Y˦�Ү�,c8������-�i�[���6��.zh�Һ�9 ��w�z�֓ѥ VJ�ti�!�<3�������������+�s&i���9�
L�k��V��s�PJϺ�e�VmM�3�1E���S�9QHǵ���}z��b�ؕ���S�NC���n��PьV hT�j��C���;�"�'T�B������A<��N�X�U��:&t�^�����wI����tm"`{�Ȥ�B ۬\&5-7�.j�Q��樊�qF�Y/�E/�t����d��hjb�/����5[�K��x]��Vq^ś����5%�D�j�t�)��T\�9o�������K�`X�.�Y$7����0bk�����ӯ����$ko�4}���%f���)q\M�r��Ǝ(���=�`��@]��-ղ4F<�����xK� V�b���uȵ|��yu3�q����q�^���y���zH��L�0�6o$f�$�0,�æ>4�vVfm}аrN�1���D�˪��ԧc�p��� �L�)l6%+� ǭ$%pd[�!��2~�� � )�~?so��k��HF�;s޽�o�w��D���S<qm��C�5��(���XH EI�&J�yE(v�1�]����.G�t#m4��6+is.o`+Vb#|[(1����ȇ���U޷�#Y�A�cO�{����.ϔ� �M)����)SLޟ1�Yt�
F�r�~��Uɨ��Tv gsx�ʄ��Du�8"��c�'�c����-�Ue�ĂI��=���+��.cX��X��&����q�+��ߡ*�(& �`yn�4�fK}��k#���-��hd����W���CX+�
|��2�DE#�ЉoA� ��W�~ ����؃��>���~b� ���AJ����b�+���L���)����s����E_!�o`��Izs�=r���z�~���0~�c�;��Z��m執U�� ��]��QZD�9��j~���ۉ+��� 2vM �e\wJA �P�pK:�pcb��_�b�-�u 5R�����{z��hqB�'굁����苈p_��(�>V0�&\��'����q}�l�xy�Y%5۽�6�sX���TB��x+9=��<�PK
ѽ�>lN�u/>org/openintents/tools/sensorsimulator/SensorServerThread.class�Y |UүzstOO�t �D 5(Gb8h��!i��d&�L ��"��x��7(FQD������}}����z��*�W53�ӓ���ϟ�~�{]��_��x�{��� %���3.��e��發��E ^R@�����<{E�٫������*�)�[����(��*����� ߗ�on�>d��e�H����1>�������L���3>�� �d�1���y�� ���o&�2�N��y<�� �C2��&?2�I�#<���&�����a�;�G����.�CF������.f�ݨ��<B��?d1�IJl;�C&9L�2�Ϻ3�e҃y=e��^�p�zSp0_�>�p48�e���q<�+c? d,䱈��L�3�d���<bR�d0�!LN`2T�a2���Ix2?�2��&�2��4O籌�H&���3�d��c)�8����u'a� +� �O�� 2N�p���L��Z©NC�j�փ�P�����ECa���B���P���z0)��B�Hq$�0b,,�h�9Aj�:'�����.���|���8��JPo�+J�K3 +zx�6���a}�?�1�< �~B���գ����z�8�b�\�g 8O���Ut�i6
�#�G��t���'45�"�}�:�$T� L����`ڣs���i�Ј��+[�)H�����5�~�_A �456��Q�.�G��϶$�:�P4�z0��g�/�K͛����X��*�� �.':y��L�)A�� ���P�ˉC�Cœ'zf�չH��4��‘M�g�a�n
m#&w�MQ�FH��[Q+&�n����P���t�ף�i��)(��ľ�r���iWa=�V[��H4�H*ա�p�>��q�^�ٌ
����T� nVa �[`�
��m߶3H��p#�V�LV�6�f2DO³T���q6B��1D�5cġ�뾆�L�s�\V?��L*�6e���Huг"Xj�@�SZ�z-G9�[D�(�,kѧbG='C�
U���*<OR��Fd�?s��9�gr��sM��G�.�@����BM2<��Z=��C z�w��L�`H�F�GJ �zjLm�l��S1���(�ݡ07����b��3YF��F=�*�Ulf�B&�bȳ|�Zj��p"���"&����ω���9K�\�lWc8��o�G�x)s�2��EGE�C �+��( �75�kfq#t��Q��t_�I�pp�/���=I�G QT\��K�\�+�J�
ZIܫ�i%����z���h�UW�k�\��:�L��g70���jF%�|?��K� ��\K�@�R��x{p��w��N~����r�ļ�;E��I…s7�#w��שx�{�l`r s2��f {q?��ld� ���JҊdҢ L<C�M*>��U|����ɣL�1�Τ�P%73�����<�d'�Ǚ�b��.<�lʄ� cK��z~�I݇��[zuYC�/XW���)�o9�$ܭ�|
�h 7���pI��v<*���}t`���"� �@``;�]�k��P�v��� T�/�4�(�� <���Y�t�$YS�����[AU:;v�:"Q_�Դ6w0q�8&Ʈ���G�MA�ykX%t �(�,��6��d9Aٝ$�E0�Md0J�(q�1Wj�c=��)�v����[ �R����z$⫧�������>�tQ)4����P;��[���H�P�dZ��J���WPёX�����H������� [Wdt,�m�y3:�э:6��� �f���kc �V�m�tmb��X)�$R
ߊ35yYqR���uw#�W���]�ewm$Y�*��KL�CKj'8],Z��{�Z�Դ0;'�-\n��Yt�L��u�� =*������!H)��b�Y�X�QfT�i�O�~t�zt•�}vX�̉�r�<��79+�S��!�T��U
5��Z�x��̝֒x�
P@�S�,�k�e'R�����9z����؉D���C���9�HW$}J�1�p��t��&c���,c��R;*u�)1uz���%�P)����E�Hӫy*?����,���Xd�tK�Zvч$���aBO.h�j�LkLO{g���qE�׹�V$|�Ifف�L�@�G
]S=��j��7n�����g����g���?ӊ��gZa�?��M��پ�@�L[���4iZ�V�e0m�%�i2��W��ʅ����ᴟ̷��ؔ5������J1��5p- \N��� @#}C�F�k#}}��p���w����;��wآ�E�oQ�����^�;8����Y� �Z!oW�6p������E�/���N@e4 ^����h��*`T�ݴ*?n ��\��zrc�{�MA�{aC¹!4��Q�
�A�F�Idpr T�/J�"���zq�Y�]�֐�V��w��Ա ��]��`v��;�s�3�K���ȕ[!�$"��N�& ��
�kJ���\);�z�
e�S�RW.!���^�G�B�\��V�o�>�o��(�X� ѕ� &�2[~����#�s4�͎aD�� ${ �m�\1����Oe�v�qH�*I���Eh�~q���q�-��0
�E�b��?c�G���(΀1�1zF�cp�C2`�@�.a �b k�� '1� �q���]��0Na� �q�cD��e�8�1�\Gv1[~���F���M{�%�RSh0S�kIiR>�LW�%]I�3��T��<&��aε�ٔ���\K��W���Z“�o2���=�r4���h��喭/2k|-�1c�x,�Nǁ�ȮL垑�[�RR��s]����-�j�݄�w3��-q^d6K��L�hvRF��v��B���p�f3��-I]dv]��Tg4;5#wZ;��[C�χ g~�oV� KM0�w-�d8sf����1P�V��2K��R�~���B�t������1[��j�����X�����fyϰ���Lhs粕��77�6wd�a��&�?fX�c�y`�o��v ���t�@��`GF��Y��m�fK���Z� �׀����~�c��~�{�=�p˱[n;W�+��M]2 �UO5�~.��>h�i��R͖�J��3�_��b6Q����gg4�������m�li������/���5 ��R� �s2��?���f�7[�>aޟ��K�<�'M���#�sۦ��4�˭S��E�j��i���;F��Y敖2a�9�������­����l�p� Xh�b��GXN�`�#�C�0�gW���FXN�`�C��M�+�r�����)�l��tp�Q����X�жJ,p)�I�\�DV���vB�-?5�\b�s�zM�����K:;ԛ�z3k%��u�������i?�u�3�^�A���K*;��LV�cf�Ē����Fb�H�b�y�mb�,�j��� xf���M��9Pn��@���2K��Z2�"��t}�����3qe�� ��a:�Ō���~����Ld�%�C-헎��q8��L�Yf��,�j�t�%�� ��X����2K�Z�-���~����ݛF*�{�My)!K�7��wu�w�����R��eE�/�e-P\꠹s-��
˳�h�+Y�(�
O��E+�"�s����� ��ڷ�"��-�Ӂ�Q��k��������
���·N��� ���F@* ��h�̃��+i���h���E�$\o�� E�R��ተ G�r<�� a���x��=p ���p��������f1ֈip�� ���p�X w��a����6�G���p��
����ں�C�"x�vl�U��T�j��٢��v찭��mw“��a�m3�= {mo� ���/�b/�W��u�)�}
�m?>�?�����'�����"|f�_��ÿ'���p�Q�U��c:���ώfǭ(���؈v�&t:v���
����-z��0��;9{b��7vq��g!vw��
�sN�^��ǹ�v^��8��㜫��s#:[���t��b�8ȹ;�0��x���R) �K}�Ti��J�4�ˤq8R��(i.�K�i��J�Bڌ��N<Cz�K���c�(}��dN��X-���8]> ϔGb�<g�3�lُ���h\�3�{�'o�Y�����.?��台^��lX�Rq��hlp�Ǡk�\��<W9�]�b�U�Q�RW��:\�z��ㅮ=x��i\����>�K�%���+]p�r^��+��J��(��Z%�7(�q�r5ެ܂k��x��$ަ<�w(ǻ����A\�����x�{ ��.����=7��ٽ��W�V�M����p?�;ݯ�.����s��;�U��/���E�/����/����_U'�k�y��7� �-u)����wԛ�]�!|O}�Wǿ�{��U�P�'~���}��X=��x��'?���{�� � ���L���k�L����<K�g�\��<k��^<�y�<������=��|"��Ka��&$�$\�^��-�w��xG�Nމ��W9�y���Yt�=�kD/�&�ۻS�{�}����D?�aQ��(�dq��K ���ک��B �&�a�.�k!q��P�kk�X�N1N�GTh�tm�8C�,��V1^�-&j/�)�kb������/j��� m�8G; ��~3�d��2�k(��;����i3����V�
���E]��&�=d̨#�٭��� �Ĭ�9[`J�3fR�ul�% ���0l�4��#ijK���ͦ�yC*�2��@C*�1����M��YC�:ߐ��RW�)�gJ4�ORe2��s|+��ޜ4f�rsv�9�ܘ������0g{��c�)[b6��1f�I[ ��FP�-��t�;a�V;(����c4��7@���qpj��v���?F�?T?A�F�jl;�`k��$���Y�u��}l�2��w�&y ހ$o��+I���I^��;9�a�Ne^�4�6̞c�[��؏ϱ�^f�/�o<b�,�<���).��."���D
D# �`���)"
e� ���$�a�Xg� �N\~q1�h����R�D\W�ep�����+`��������G���O���]bc�&���M����v� Oѓ��{Ϳ3�# �I�W����a�fdU�[����a Vm��A�xe��(� n�X ��4qd����XC�^s�+��"-N>��2���X���_PK
ѽ�>�a��Dorg/openintents/tools/sensorsimulator/SensorSimulatorInstances.class�S�kA�6Is�<MبѶ�ӈ]�!%(�P8�C��o�d�[.�ewO�/�YP
�Q��6V ����͏o�������W�q;E�vu�Hp3E� 6l&�bX� �v�լ,�7��an씛#���R{ǽ1��.&�_�|o��ϐ�F�z~(�^zU��֊��r��C5�—V2쟕�{^B��*����>`�=1��̕����H��bT�g57cQ����Y�1���i�KG421���~��3�!�n�ҡ)�X>U����x��f��f����v�[�0 �od���]=��C9�����n��o�B�n2����d�@�d��b���\&'�H/����ǔ����`�dv��5\�p�h͋ ��
�n�*���}A��1jQ �������S�7~���{Du�zpl�Oub�� �_��� ��X�'PK
ѽ�>�d� "8org/openintents/tools/sensorsimulator/TelnetServer.class�X xT��of23�<�0@ !@p �1��� ��"�h��<f^��ɼq� �h[�jk�ݬZ�VPQ2����u�ֽ�j�.Z�j[[7��{/�IHpi���s�=���r�;��p�:$�SqEZ�W�_���ʏ+�D>v��*?����3�B����나�]��@F�d{�{���+�^�� n������9�[�u��`o� �>n��~+$wp�p�ۏ{����;��>~/��~<�\<��CA���~<�ǣA�����?��� ��������'��O !�:�z\#h���?�$����� V�Y���@�(��|/��^�+^�{_��~��P��f�Sf�-ړ�閙T8��Lvՙ #�[F�J�Y�Kեl��b]�(�E
Z�Hn6�mfx�a)Llިo���U�l���ޝ4�B�9���:gO�{��h�KA�U�i^3�A��u�I��f����d:�7� ���S��h�X�R�o�L��jR(��Q��G{�,˴���'����hJ�/h�v�u+�$Μ�p�(EA�ɢ%�+rE����� {-��o�K)�6Ӕ��/�@���1=,G��ŧ��]F�f�[�G�%
��>�笡x���+n�ƍ�t�#��:�l���=���鵺����v#Ɛh�C�"�FG ��az�S%�(�5K��7����J3e5l  ���0iZ���DS�2�
��4��j��ŽUM�%���&
����y �� 8(����0��Y�4���MI�r��j�Fr����6"M��32\��Um�L�#+Z�z13�����H$��e�l�@1�D9��*kٰ%�w���Q(q�O��+/�EX�[�(� 4۴,��tg��4"��öK��"�3RG7��ty��V#�?��3o��B�H ��F� ����0�N܋�w�N�(غ��7�X�� ��
S� ���;%՘4{���d��\���M�k��)n��z
�֍�Q��L'Æk��?Z�5lDJ�j�����>�O2�GH��L�nƶ�GC;NS�q����:+�ƈ��ݜ��������XGg;"W�yB�J $#R��M���ma0u��K��XDR�8!�T�z8jm%�;��!�Ry2x4��[��I%��JJ�M�٩�R�-tv�p��� �:;�cg�mg\ev��ӦRS�ʧ)� �cZtfegt��
�Q]�Ic�V ݠ��������L��9ǣR��*�P:v���Y� �8gBY�)M 8�a��T��J�D&��������
�I
��dU<*�喦��-�j*{�hwj� ~�0��Rs��3�qM�1�U���W��!q�jj����J5�}_��D#duJ�‚��+���v�gO��t�Z`��ℓ8zxS{R��_� V����X ��dKU� KCY��'ruP�DN1R)���I_
�L�����|8Վ�x�����`�O&�e���I6�j�m�m����[W��C3�-�f�3ɪ>ۜ*�&�aK�����#���Y�N��Ōx��^M:Nf���=~U��{��Co(F�qV���+n&�ezj<��6���v���-�
>ʞ��~i՘���ss����5�UbR��T�r���>��:��Ai��5�L'h��T"�|�XV��z2�rl��&���Щ�%]�P�4V�
kp�=�����f1�g6j{�� 6m�cd������r���ُ�m�&�1�ν<�S���k�W]� y{�Q�w�M��1/����ۈR~�ŹS��D�f6gQ]�`$�r�<�O`�ZQ=�����#Ї�� �}ȬaB� ��%�J���<섇�M�p�=W�|6��Ύ� �%�³ӈ�
S�2��� �a6�>�V_@O�/��i}Q��*Nៅ4şaC� ������B/��J��Y�,qğ��n���nS(�t�4�x�O�;A�w �3�é$�i+�v9����i&9� br���J3�:}7�qʠ,��a�m�4u��q�̬�f�S�q٧���Z7.ʧoC�� M�}�JB#�wB���R�������)��)�g��眃��g�|.��u�|.�Ϲ.��Q���l�EU�k�m������ �Rx�p�ߋǥ�q�{��b6��"��j'KQX�@�*48�a
�"�>��
r8%84�#BG8l����*��㕔o;�g����е� ���A�ė�e�7K�By�����p�k��-{��q�g(�{N������>��U��f<j���1��fǴ b^G��]���A�QƲ�`�/�/�������}8�̗�GJ�.�,��(Y-<�P ��vc�,�pF�/�8����[�`���&���"�r�Ww�ƻ^d߅���*H�$��^��`M�Y�sv^����[���$V��� ���ɬ?����u����ly8�����溑a��!r�p3��-ľ��v����;钻X��fރ��^>�����<�[� W�I<���(^�c��4�>�/�'���x���)~.=c��Lȿ�v0ɾA���ߤ��L���-:q��m���)Uߕn�-�8x(� }ߗ¨<��L�m�`���#��C5�=3XvCa���
wq)�kl��f��h؍�VۢO1VH�8J|%b��\ ���h"Ԕ���1}+0�<W/@Ë�/1�_�\�B_ex�V���b[X�檒ǎ�C����gXn�Y���>��M�� ��9�*�AW��~���Es�ܻ �+Ƚ�"7���T:%���ڽ�Kp\�g�n���y��d���zs��k�V�k}�?��Y;�"� G��?
T�U��8�0���S�����)�B������>��PK
ѽ�>S����2org/openintents/tools/sensorsimulator/Vector.class���SUƟ�ݼ�����
Œ������(M?��pl+꠭K��-a����_9������?��s�+д3����'{��y�K�~��:�S�9,�F[�U �,���p�JxO�M�ݒ�,��,>PP?���y��'�̊�î��hn(���Ҫ�9��{[Np���2����������*,���v��x�7t�a��� l���A�����7�>Etg�!���6z�����:N_!�IC��DSC��yl�T~��>�+�]�_�>��q�Sw��Q��60P�J҅����υ�9p��9Y-������+�"�KO��� \(b�"�K(���x����,V���nW$�Kh`����9�*�^{`{��/��p����5{H��OS���:�p���%*9R"T���h��·u�%P�~���EJ�!���&���mRZ��v�g(F����Bwqo��S̗t�_���̆���!u�jT��EX25�!2��Hi�[1n��,��Յ�P5=�@�"���e���c�� fR���#YEC�d�}1F?��NGN��6jv��tg�*I���\��8fs:�O����� fc�C�3V���
JFƮ�dd�NhS+���l�e�;�`3 l�\Ұ��W�������\f���e�j>Gn9#)������H��Z��/���è��fX��[>���܇O����>��Ϲ:��a�q]K�"#"�k�)R��J���.�e�V�p������g������R+>��~m͌lD֌Ț��d�KJ�K�=ʹO!_Q�n�kZ���j#,�_c��vɌv�_��5��&�}G����BR��d���+,5FXj�ƒ�\f'��e�~���<�/���ϵ����yAw�]�r"�ːQ-��e}��/$ȝY!�$�y(�:c�4u�_�G�ǿA���P+ ��P+ uQ�k�PK
ѽ�>���Q]2
7org/openintents/tools/sensorsimulator/WiiMoteData.class�U�OU��ewgF�.,�piY���R�Ҳ��B���a;�0e���̶ ���U�֯�hbb�1i�&�����W� ���93����M�9��{~�}g����'2�p�����O�>X$�&C�%&�#PYm\BV��\� &�|3�Dgr�Ϧ%2�� s��A>��,X�f��(�L��p�� ���J��ֿF2]M���f#�����L�%�!�M%�:�Q��N�Δ@l��zMM�9�v
�9�O l;�S���0�1�P^w�%ZZ���Hw�n�N�@U�� !�&P7��ډ�̸VQ� �YY�8�tޗ�ΔNnv X�ɴ��L�t4ӱӎev��L�*��L�P����A��2�EYgkN�d�ɧ��$S��iDt��蜜� ��L�9��j)���ʸ��\�J�V�gQ��솼JvV5M� P�]�H{��<_Cn�"��+Z��ܐf G5ڕ��U4�&�#���wt�$kՓ�3\nFC�ݯY�x)jjT��e�AϺ�o3�1�M�����I �[S���B���Q�i����>o�(տ_5ۜDASs� ��y֏>Uݠ0:�)��[
�ƨ��[A7�=L�A����u#�ծ*�M(x�1y��֙�ݛp���ƐB�t��]�)�⎂��W��P�|*L�X����l�.��O$�q����+Z��+Q��@T�䓓�s�m-���p�m~��;d�����UtQ(kX6񰚧x�U׿�y��dm3�����8�wD�aUk�}OA�j������j*ӈ j��N� OP����HA�jh��W��
�����q9���ʜF���e���2�'ѽ�K�C�e��]�}D��a�*�����A�����`�T�"�h�=M�ݵ��i�-�t�u�+�:� �X�Um�>G][Bĥ��Vݯ��s������P����������i,��eD:�P���TL^DM��GP�:��L�v u���%�[D��ce^O�!��e4��/���E��!�ѓc,o��z�����Ӧ��HKw�uxM����C<�J5���X����ͦ��[��ͺ��(�
��j�\PS�c�M�*�uU_{�3l�+j�x溩�5��������ќ���?��];eA5J�M5�˽Ql��n�.��2��_�?�4w� �h��i�vPzH���5�:��<�nQ��a_��2^Ư8��h ~� �Sx��Bƈ�aT�qNl�y��E�zIl�eq�8��;C�@�x����'�:N���+�B����}�����6)�y&_�!���$��ee�O���W�5�U���+ƈ��r� _���Jp�|�+��
8�m�����*�%_�/��<� >�j��PK
ѽ�>�Qx��Aorg/openintents/tools/sensorsimulator/swing/JTextFieldLimit.class�S[OA��JK���* ���kaA�K
$�E���py��mʚ�n�;U^�>� H|5�G����n�gΜ9�}�93����o��8�$���G^�B��H�.����������ۖ�+���ܝ��\��@Y�ڵ����� ��c7lŤ����v�M�׬@2�'зd��Z��˅]��>�2ە�Z��������pū��"7�`Lځ�r���ה��*��T��f ����F˱���ۭ����Hm��ٯhe%J̗�4y��� �m�E�-�3_`1_����[�cq{;Z
#GHED��J���T% ����G��
z@X�����?�R�G5�Tly��<�[^˯� [�!{��Y���%�K�"���`(��XH`1�XH�!�1����h��x��7�e�k^�� ��TO�Sk_���[���=K֥�H�������N'��}Z �S6_�m1&y����Q� ��x9�`�?���Q��,ˌ��^3�1� �� "�� ����0b�&�4 �p��
#��6\ŵ� dB��t����tٿ��1zr���aX"�21VB���]�l�%�Qj����r�|�����;6N+�"����g�8D>������hq� ��"�i��9�YF/BF�+���&(1z��I���Ǹv��T�~�PK
ѽ�>J�B�?org/openintents/tools/sensorsimulator/swing/MobilePanel$1.class���S�@ƿ�J D��2"j�R���.A.Z-X)�>�t℄IR��K����� eZf�q�CN�u��9{�۟�N���] ڑTс~) �x�A�'LC�V��a�2 3�0�2�q�0�a��SS
����O�&󮷭�{ұ�@:���k�/��|k�l������l�+�e˂�H{�L�-�
f���]�7b nI
��-G��w���nl٤��]Ӱ7 ��qU�q��r�#���}I�T�$*F�u˾,x��J���Gc�Ѝ�@���F ��%�0iA���c��Zt˞)�-�:^�{C���]rL��)��%3:1��n2=S0�a�5,`Q��2� �T�����׬�V�V��0�V�S�i����{D�����HO`<�35�_�\1��B؈�$��v�ޘm�'�+�iR��tV`&�c3v�P�̰��`8M�˿�Ɉ�)c�V҉�z��ZY���Ԃ�;5}�u��5׶k�h���\�j���X��$�&�Y��U�A������5�Ӊ[tIt�И55p�:A��pN7�&�]� ��5f��A/��.9�9�:�C��c4V۬�
�B���*h�����^�4֮�i�*h��+��YK�>�)�/��+��!���1�� L��Ӱ�γT�e0ݣ�t� �J�!}����1��U��oPK
ѽ�>�,�?� ?org/openintents/tools/sensorsimulator/swing/MobilePanel$2.class�VYle��v��Y�S���)W
9J�9rHR08M�K����� ��ԻI�>!*U�7�RUR�7�R�R�*.�S�< $ސh�ٍc[s�gv}��˯h�l5�FG�EvԠ �
ꎢ���ĶS�m"n����1 hP�.Q�t�����E�#"-b(�� G0B�S�S�$t��B>a�*˰\e�Nµm�I8�r�c�̙�k΂a�C��a��Rf7�����z*fi#���"�M��=73�
{�I�-��vV7��!�1$�@�R��
��8�-ݕQ���h3���
z>�r�� �i}^O� nB�3�����ÖZxT_ P�P�ʬ�f���4}�=�)��8�[��܄�W��sA5�)c��j�!++}��� ZY�v��!�Nٹ��Ǩ�k�IPF�������0�}ܯa�(`����5L��GN��Aq�E��uZԇaj�d ��ᙪ�:ps�ɘ:{�'�U����k�v �JgPBg�9yl���2�!S4xclճY�8�ۓ�R�*���R��?���#�-�R��Z��լ7sm��a�e���tIIv�;!�jH���,;[�I��ʋh(�j�T�~�dk[��wy%s�d.F�KT��F�5_ j-ꐠ�ҹ��S�dG9s�0G
jVgN\Ǐ� |c���d��)�Oul�̨ ~Ѧ�AM/!�k\�2 ����,�&Q\�zȭv n�O2c�M�7�-"���� ��5�g�a$�����3��A��ӧ.����>��4��2I| U�?���q�e�j�\_�
W��[�
�s�-�2����.?���K]�R���R�Rc�Rk��R��K ��N__wi�^�E\��7]yir�oWy�3X_���<���7��΢��� ��Qz���;x���S����x�>�+�!��G�>�/� ~�O)B�Q�>����З��2�5�o�0}GG�{:F?�I���EO�� \�!t��Q���$6�mt���=�1Tc���<��n�6�GB�8�h��d��g/�z�Y�`��(��7L�[���C� ��}�e�^PK
ѽ�>�E=org/openintents/tools/sensorsimulator/swing/MobilePanel.class�Z xSU���KҦ�Bi�eQ�R��"�@� �R!�! m���Pp�PD�"��
�"�̸+�:�˨#�0.��{�lM��8~_g��{�˻7��g� �<����� x �6���������!�#��v� ��Zҟ��A�7kIiX��Z��>��䅥�[KJ���ϭG"�|a�_Z�(W�R��p��+�׀o�� ��=�kɕ%!�~�������<��� ��֑��r?���� �d-9�n^��^ ��NZ W#���g� �_m�7;�?!A0��v6Ahv,6a��I�`KI"`���2���� )�����h��GC ��&:��<�ȅ��3�4�8]t�SWp��uw�3�ɣ�'�,x�J�&�l�7�|;�>vv�� ��ov�,
���b`�� � 80P�����s�0\ ``4tc���Ѝ7p� � ��G��M\����.�CWn*�i�逋3����Y�ـ9��s�N�|@��,�5`!�P�x>@������̀%���K�G�/S;a�bJB��T�(���e��W�,\�p �ZT�:��֒��v��p``%`�F�M�������Z oF[`��}!��!n��ۭ%��6���P�!���Wb=� X"w���،�-h��Z2Ȍ��&�8�ht�=κ�.���VV���Y���1���;�\�_/��]a��d__��6����:g���윉>������z��7�X��� u�FӰ�,�sg)~��z����U�L�Fi�DIK))]���78�c�%12�'���b��:�� T�p�� ~_]�G�����h�8K���W�]s��fN\�\�,�sz����fF��k��8r3���=������=����pͭn��Tb��z��9�9먲nk��l�����{�ԺM[�����~#���嗭4�X }�mn�m��mQ>�h�mtT�����(���?@�7���Kb�$ңs�^F ǹ�F�vZ�ͤ�aZ��[�jI[u�.F�N����V�i�/�TSR+�a��"�6Ũy��a��Гִ�Z��q�Q1��C ��%�/T3ev�h�F7W_��3��jN�՜:�9eI� H
>)\p��ТJ�%K��Mmi2S�&Gt�LJ]n�˅yAS�#�)X�}�\͊R������ $�E��,���S�8��7�8��� B���z�p;��dRM�ֻ.?���Ӭ/J7����R��Z���F�o��9R��8�
�U�RC
�Ta5�h� �MO]A��[?CP`V�C`&�!�� б�R��R�r�,:ۭ�=^O�\Ά���OF��T�1�L�O�x]4��w�:�׹����>eN�Z��C�m���q1�3�|�=u�)N���F��u-n��ko�B�~J͒FOu#���mh�)�1j���nZ���wU��T����M�\�j��F���5�*-P��_�7f�����*���1a�.gc�f%�!t���E�*�����OwU��$q��Ή���;�6�"��8�#j�!���&��������P�Pg:��~�'�]�r5R-��w)�� 2�a��E�
Vx��{��ۨ�sq���B{��щOcC�-<o�a��~gC ͓��ĢZ�܃���hf�8���(4a�ME��h���\���$�Qy��}�.=/��AR�F�ts�}�&��/���� ���JW�1�a8��������JS�����)�ᐢ�r�h�T�������4˜��ۑu�q�����w>z�e� ���v��4�N�<�SIQq��qhl�QXH�2���&m�vYo���B��p�k
E���B�m�����we3�A�� �Ύ� ���C�e�X�D����F� )���s��AFNOd?���T]����E�0rxh��5�\�<�dDd�k��'q��O����t�\�� �8� \5�
��;x|�^�����hE�*uЇ������B�T�N�Tfff�.��8�gй$�9����Ϥ��e�~�|!�#C����}Dae^��?��N ! p�����!n�C�;m�!���i����G�u�G �� �t��"@9��@���Q�������Q�:�!�c�C<xB��'�(�<}<n$�c�J�= ��π����Y�3�#�l��3��  < x�!�'Q��/�oU� �C��7���}�nx�R)�-�p��%
"^Fjk�Z�x�8���
�5��7o򠃏B�F� �Ș�$����m��(�"�x��
�{0ލ����>L>��/>����W�C| �O��t���z�|z���N(@C�}���0 ���0 �!� ��9�
q�a�C�H+�wX�H�B��CL8���H��H��i� �]�u�Go��udcП�G5>��/���W�� �o���w�Ǣ�l{+¢�������z����Ŀ�Gq�!�-~r��G'��M��Y琓��/�����G��I�`[ >�8į�7�d�gC��FWchV-���w~8�"eD\M�4ғ�^���I��:�qk��},�Ғᬮ����D���^�q�t-��Q�[�m��7��+�s����?v�0.d�"��T�$�i�7-� ѓ�! թ̸�7.�毄TV���Pm���O����U4�F��s���!J��8#J�����j�+-կ���.�!�'����ߺ<�c�x�Eߔ���;��GG*]#ћ�"��>���H� TYW�3@���y����FW���DU��g�� �(ǯ�TpN��쨤��x�� �j��a�'��ym/�z��B/M��g֯����fU��*�c�gU�T���4�#����_�Bo��B���h�a�33I=R�y\uՆC���m����qsb��Co�pN1]X�o�P�#/�
�E�C�Q�,�(E�=J�z+�>�Ɗ�bU$ՙ�o>�B~���شPWJ�2�|S��吘r�Pv2�ᣌ_�b�;y�1NI�t(�i�MVT�1�Ϛ�㹆Zs�����5�c�E������L&�s�Ef���^n<7��!�!�r��s�h��'j��h�+��д�I>�W��W����M��h�0��U6��b��_�FO�6�g��#�̊����cS�ת�]Q�lp�-��ǎ��ug?�_��+�N�7��9\�=gt�.F:MR4YQ��)�:MU4M�tE3m�3uJ�"�f+�]�h����vR����)z��]�h7E�+z��g*�C��Sѳ�k�N�J��>J�W�~��WvʮP�(Z��@e7H� V�~�ҟ��0T鋕~��W�J��3R�EG):Z�1��*:V�q��W�<5/e�� ����'*:I� T>���腊�+�
E�*:M��^�� E+���,Eg+:Gы���<E���W�J�S��K����Qԣ(���f��n� �Nr}��I�7B�&�!��!w&�� �CO��.��1���dje��,-?��Y;"�A�E$;�:� �ND:��D�Y��n�Y�Ji}�V)ɫ�R#��JK;���RS�.1zK�5J�#��%�'E��gX5�d���! �qr��R�d�785��IWoHKԐ�(݌Dl��#3�dd�O4��ӑ��h��G�D�Q 9zC�pC�j8+��S���Q ]� �%j8=��.���O7�����=?-�$@x� 2+@�䣡�/��?�PH�m@� ̧}9���A6��9AVLdX�� rn�����c%� E��AV��(d����� +#vB%m������O�~6y�~-&���I_�L��Y
��#���r7��kX/�a�y�������j9��"��[���� �m��o�~�\���+�zy �S���7�r �[���&�Y�˷��V���+���'�6� o�/��|�������$�'o��:��]��kJܥt]�� ��_nb�/��Hf�K5�`S8��hi�61TŞ��|�](U�ܰ����Z���q�R��m`��L7 �&�C� �"�T� C �?�r�w-&R�4�
��U?�D�*!�W����}l ��W\[$�4�I�ijfCS�o��h
� ;]Sh� �ȥ��ž�h�P�{1�I;�X�!6�U.&Q�c��A�L%ګZ�sb8� ���|ý�� �
����6VՎ������T�(�'R�P)k[���>�X���Î��� sz)�l(vb�Tb�JCO/�VheMũ���٢b���Z��s�iO��4�uI��b�rإ�|��qV�����t�絲˫�IS�@�5%$Ubx_�Y�PG�<�r�8�K��q �./^��� ���a�1� hj#,j 9¢��e�$q<U�+Q����&�a�W�f�W�a�ט���0�E�HS\ZN��2�Hr�r9���@;n?��Ͳ0&�:5y׫�[�R�p=`��� Hu��+@E���A�ʰ���p$j�¬�
H+Mi%�U��J����b݄���w36�j����$�V��V��$�+�[ឡ���]��64����� ���A��� ~��Og���&��[�=���� pl4�l بl�ä�#�D1��b�N3E�Ϛ���5���R]?�d]��
!��8�̦�6W8X�HeK�Y�Fыm�l������9q6{O cߊᜋQ��͇� �8Q�/|��ɗ���-b�(��1�U��_
7�^���#��i�G��)�&�y�"�P֋)�+�xq�(�� ��\\-�U�-n��&j�Y���:�V����.����b��P�)�wI!6�,�Iv[�i��]l�g��H�#�C�<�KV�=r��+��#�^쓋EP^%�[�AIe�8"w�'e�8*��c���i��|E<+���O�k�k��Q�%ok��^��uՊ���6\|���j��g�L�V-���h��o�e�{�F�A�ж���v��iG�О�R;.5�SiӾ�)� �H�nI������,�e�#;�_�#�=�N.��_�REK���U�e�����,s�Vϯ���C����ZℜC���`����*�cK��ĥ�
:n��!c ;��uT��ԛ�YRM_j�{Ηɝ�����)��|%�j|��"��/����K��~pqv���l~��혅Iz�t���M�D�}3NRڗ�!l��I���|$�[�yA��4�*��Z���I��~��p?���川�Ժƒ$�$�A;HXE�;ᷓ4m��)v��ZwA؍�ݤyX��!~�� Q��u/iQ���H�� ��J���Ů�j? �ΠN�w�m#m�DU*ő�*m]N��G!m1���1��8�6����uk +(�r�('�4D�����z(��!��z�x �9 i�)=�~Sz=���9���S��+��d���v?9!�I��H(�#���9`�v����4�� �0�c�y;�A��S�B��TN�`��=�Ş��p>];� эf��h{�
.�3�c-���x���^�����A�G�(|:z$�t�]w� �܆n��>�:�Dsu�/��2� ��P�^2Vkt�պ�x؅
�na)hZMJD;nF;N« �x(�qcu�Ѱ��^O_���9ڃh{U���D���h���E}=�uc7�Ѱ���&��C�������'?��q�d7�"�`9�L�S�`E�'.���Ϧ�>l����~, ٥��� ��� �Uf;�9�Y̎�a�Yy.{E����(��,e��q�g9�[��.'���$�SN��_ ���x�$/��L>�Q.9�/�s�_:�R9�_-��JY�?���Z�]z�.y �F�=�^�M����F�/�R������W�_�2a�OR��^t�7�r��'oEr�*o��1M�U�QC��z�^���T�-����J�Y������~��>gA�}ƶ����]�C�]�?�=�g�W&�}�� ʮ�̗��� 9R>)'ʣr�|ZΔ�N���d@�(/����My�|[�)ߑ�����C�[~,�O��3������������{�� ��E��R�/Z��tB�Y��B��zj��|���p~��y��y��r,>XP��P(ƂGB�3��qXPv�l\���Uj����ل�xfж|����z+.Q�D��_a~������1e��2��m͟T�O*�a������ee��2���'m�_U�*�����������kX�x=��jY������:�|��uf����x�t6U��*�3��L֠�`������A�g�k}�f�/ۦ��O[kՊ�1m {Q�^����!�3��� c�hù�F� m$��F�3�1��Vʋ��|�6��j�%э�����=Ab����G��!���Me������ Y��k�ݽjw�Fj��T��M ��j�o��>�Y����^9��ߡz8�z���i������v�/��ˇCѭh�f��e(�u|�Z�A֎Z)�O+�G�#�IY�k��롖,��P�<;9;����V�Vv���w/�n?�>;9#g�.�@�z��e'���ò6Oפ�ڣ�i?��(�b'*{��������rl�96��n_U��7?.D��{�ĸ��\Rb\�w+��~�ӵɢ����h4�Q�IKK�7fq���X�-J{�=��$iT-�?s�cG;T5��4�Ci&Ǥ�l�씋a�,��.fiƫ�Es3����i���V�r�z�S�����.a�5?sj�̯h5�Q�I�2nծ�ڕ<W[��kW�a�5|�v-��]�_�nԗWKa��6����v�dk�ĥ��t������˂zk2�϶�v,:s����M��Ο��f�i�I�E_���c��,,�������5�a6�2Q ^�{bv�:G�F������6��,��أ�c6І����u>�%�sK\烱�-q���|8�yW\��q��u�u~0���Ώ�u���h��Sq�w�u~*��ٸ��u>��J\�]q�_�u~+��n�pș������u����q~mW���q����f��wq���r>�v>I��^A&c��Ot��'|[������֊����Dl�ߘ��Ě�b�Ə�cbY�˖ �͗g$�G�kE��-��� K�]"6$"��T�l�k�X�@�S t8A��S �8"����Ɯ{= 9I�E�f�d�@I��h�@�S �?�.��ab��t�,,��ş�f��,��9�
�u�K\� >���lh��b4�^s�P���ol���f�`y�f�|\�[-��C�:��f�`a�f�R�,�f�r�,��,^I������x�,��,^M�E�ݐ �|M�]���(�f�7I�b��Ē�PK
ѽ�>�س\u�Corg/openintents/tools/sensorsimulator/swing/SensorSimulator$1.class�UmS�F~BU4Nxi��6�nk �pB�c !&ujH�!�䛐n�eds:Q�S� �3�ô3��o�Q���v=yaȌ; ��j��gw�����Jx>�sXt���Trp7�Ē�n��m��~ܵ���Ѯe�h���Uk6�m�3`��� T�B6=q�b+��SBD���82�4�^���^#�6z�2��U녁��07D� ���m��}&w��,�"�g��Z�M]�pkq��F�' #�� D�%*j<8��& �C_Q�|���?�!�P�"H[$T�����&����D�� ������%�XO�H3�Ǽ�Տ��X.�$�����T�����P�r"H�$�-���֎���k�$ �@q����/��7�4D*��uc'�j�u���R��H$T�S"�q��$�..`�ŗZ��U�x��;�\<B���.��r���ros����S�h`�����@#�%�����W,��͞>�:O( �Ζ�Km�%t����B�q���!�S�DL��x�7�����bfG�e�� M���JK��M΢��OS�i���f�n2�9ϓ�XgL %ɕ`��0Ux��������ԃ=�e�H=%���j�aj�0�D糎��� �Ю�ц9#��眖��Ob���$-a���8���k �B�>��E>��p�dW˴�?� �κ�ϻzk��b��`G��ֵ `�����D�.8�~�"A�΀��0�%��u�.�_䣛�W�� �6F~¥�bu^v�m���y�������6�Wg.���nܔy��)�Om�D�ƭ��[e,X+X�*X�VQ�ְk��(/���&�˸�oH�:Mu��aTi�E�LM�[�0�L �Fo�~o=|�5�6cV:�PK
ѽ�>]�!ޢ�Corg/openintents/tools/sensorsimulator/swing/SensorSimulator$2.class�U[s�F�6q$GbLʥ�ҴuL��@Sh�7S� qB
���1�6]I�����>w�5����?�K�gg<L_�Ig�~�;�]������;�q�Y�@���y Wp���B_Y���Z�~-Z����u+��&�X8���������1�db��=#z�S���Z���D"�B'���P�T�׎}I�o����m�@�HD7���n1�� �4���*ɦ`�x����P��f�"]�op��uW��)0��.�P%��� ��A����Ƹy2X�Tm�d8���⯹��D�xM�N1�,i9 �)g�#�w�xДm"�pc�U��M�E�� �J4ㄆP*��W�Jҋ~d�=�_����n$�+;�T�(|���%I(�.c�eO��ġ�/kJ{)p}�AUD/e��}�(��⤍��D�F5+6V�ax��fb�F�6�Æ�G�0�i�1����Ԫ�Rq�!s�:&��x�g6���G�r��8I�_i���0|ܷ~/$�ڶ8�K�@N���+�p�J���g!i�nw�nE2��d�C}���������($Sp&׏�J'��O�lQ�f�@%�nS�h\�T�F*sXG*�C���
�%Ҭes��No�
6� ���,؃u�-{�o.���i7'��LJZ/I
���S����e���'(��U(h�3:�f@� "�+kE:�e˒�}+�����`��>��W�g��IWi�5V��o`��%����A[8C��eX8�s�7�y\�2�Mh��2�+��;H��Cuf���� ��7�������̸��_�G�űZ�����l6�Afa$�ʎ4�.K���q"腙��`<A�x�S�3�m\7��hp� l.��&�E��}
��Y\ħ�;�L�3��I���K��I�N����r���3���%�>��$�Y\�o���b�e�;4���PK
ѽ�>�y�Corg/openintents/tools/sensorsimulator/swing/SensorSimulator$3.class�S�n17�M�� J[ZR �&�n+x+W�"E�rQP%7�I]m��v��B�V���� P���a���9s������fe���Q�p�G7�p����o���x=4�v_��ãX�a���riMd�JMd�4J1��U:2GB�n�v�[$�PHa3< gRj�1�Հ3Tb!�����ۤ�R�U?I�-�z
���t��z;M��<����}�T%�[��k��+=��z$�$J�l�'$=�(;.Κ��eX���缾���m�ҙ��.����~� ����xh�G;@�� ��.�.�XG�P�bĵK�p�t�3��P�
� �}�;�}���_{���\3l�P� ���!����ca3>��Z J�y��a�?9�ߠ��T�� k�f|�?���U�.=�9��Q!�J�Z;�o�?��N0�!�\��H�F�Q���.b�F��S�7�s
K��`_�{�>F��B�x��_��#�K����i�T�EKX&��f9+X�9O/���Y>��1�PK
ѽ�>e�(l�Corg/openintents/tools/sensorsimulator/swing/SensorSimulator$4.class�Q�N�0�@J�����p q+� ��DQ9prS \�6��.N |�؄GW,Y��x�;o�/�����L�)�� 0`�adW*�����6����a�)�8��a.y'%��� O���<�}w+-���9L������67��J*'����:���jce?K��&�R�ĭm}����c2��tfq,�j�x�=~ϩ�#����C����n��KX�0� �
����P�K�)���NO$�2�.2�>��Gg�K����us�x�"7rsB�$���N��:<��a���M��DQL'y��'���z� X�DHq�I@��ݛ�o9�?ch� ��6���/����P)�����1V��F��PK
ѽ�>-���kYF�Aorg/openintents/tools/sensorsimulator/swing/SensorSimulator.class�=`TŶw��l�nڦnzO�%t%t-��,!�dC
EDTT@�.vQP�( ���� �޻���{�f����rΙSfΜ��3�����=�(Jw�����L�$B�I�Y��)*M5+*MH�JfŬW�!�Pi�Y��)�$K��f%����#�$+�@RI$�*-1+ɴXu���PiOA{��t��>���~���L��J�*�������1+�t�J���nt8ЏPi��#�JO�[�Q���d���?F��H�Jǚ�Atǫt�YJ'Be�&�t�Y)��2���L3��th<S�Yt��NРJ���cV&ғ�~2$��A�
z�J�fe��!�����Ԇ�����,�LH�!i����M*]lV���*m6+ h �%h+(���.t�Yi��A�r(���4AW�tAWB~��� ?Sг ?[�Ր�#���
��s!9��!Y�H6Br��
�I��P�HЋa,.�RA/��^!�P�"�U�_-�5�_+�u�_/� ��(�V�o�fȷA��[����������݂��A�|$�t��=���>H�Ar��@��� �� �B�1A� A@�IA��iA��ڳ�>����˂��@����A~X��}C�7����o ���=A����CA?�c�}"观~���B�/��_C����B���� �?B�'A�A��o��.�P�Sп�[У����`X0"S7+G�p9vLLf�Y�0�,��"B�H����2�YXl�c�A4av���dKX�`)*K5�X+X�`�� �y�`Y�g �y.$y�� V X!�+���R��A�]����b/�z ��}맲�fԝ�A2@���$� � 6��
6L�ႍ�Z�`#!%�h���B����l�`T6ьF�I@1JSd"��*X�`��.� �f�,��T6ی�i����$�O���B�T���� "��%�|�j[�:�
����5@�(�[�&(.���Zkl�`Ke�b�[nF����l;��V�3��*v&$g��l��V�9*[cF+i�`6�������\��3�a�|�֫l�`Uv���Ehv!$��l3�JCr $�Br��.W�ft�5�� �8��� ��̮a�B�:3��� c�H�����&3��m�d;8�-�8���fv��C�r9��NH��n��`f;%��Cs/4�I;t@i7${䈰����}���%�=(�C������#�<*�c�=.�2h�@�$$O��OC� $��9H�����(�Kf�\��3�eX�����A1��
Dv��!y� �-����`�A�>$vD���$C�`�B�$�C�`_B��`_C��`�B��`�C�,y��M�\����r��u*�E�-�N�U��L2� *�C�\ٟf��� ����}�r�s����1'*��33�\5s!}��7�"3q � �#�)��GA-� $øM�1�ǚ�M���8���NH�$@b�;�I$r�2��@ �,<M���
O�$�TH�T�iƹ�����%9DQ���d�y *�h+�C�7)�>t�P�P��
P��H��*/Qy�ʻ!%���\笟�jn�s7N�(G
����ƖVgc� g}���r�FM�� )��U�\.�*d����Ռ���%�e�-K�kK�pR�ۚj���JWc��y����UJ�!R:hdC[����<���U�jv7�Z]�Vi� љ$R�p749[Z����H�aj nRs�����*��h��%AH����O�@g��_W���h�7J�Lnv/�k�k]n4L��765��Z\�5������e��xwsm����X��*Ml)mu��[J[��j�3X�VL�Lv6��� ��;�V��Հ���X,iš�Z�x�����zo��]���:͵Lj�����\�5�ET�����Z�G�lv9+��(#�9H�%�G�5�H����Mk�Y�0�P�ƴx[�~Z�lu"��j��c*ۚ��ͭ�?���}�W����e�{��E���jhr5;[ۚ]-&8ke/�Uk�"��a4ߐ3��ztZs]��Y�{?�Ý��������0��9�>ȦX4Ho/u��^� ��=pC�hO�O_/�O[/� ]S�k�>U�k � �8g6���;��[}d!�F�57K[�I�d��D�Y�
�xM<AFk��Y� |'���@�Χ�&�?2i��;K A�Ir'{�����?�u�A�Nt� ����M=Bc�Iv��T?�-P��vI����H�,�E'�A�R��C�������7�Zh�^��x`zpj�窗��0�Ae ��P�\Q����D��hG0��/�"�8�$1�D�k���v�Ǽ����%ڲ�oV<h4�1ֆ�u�\��]�|�%�cS��@&1 �Ά�N����c�{Ԙ��x�UA���b�D�蘸@�Hg�!61!wk��בQ ~��ch@�ԁ�?�hr?�0��X���^��l^��~-'��r
&z�TgM�{x[k��q���櫷�ӌnv�5��~��-R�wC�Д` B�jO�N]�iСcu�_7����� ��eח���U�(U׸��Y��ά�kp��`��';[h{!��Z��<����j�{�.�i�����l��7�Y�Hv�<g����V�Q�,甫�v�d���j��m2��t�$�0ϭoc<�c�ʭ t�(�OWmj���Z��͗;� ��Wg���I�f؉�IƵM-�ݍ�u�m5�(FH
� �����u-�ڎW�<���Y�j^j���׿�*�� z�h�w�-�}��S���[��yi]��'�.�� 2��k]��΢� ��Q0��u�u���B��g ��� ���]��I���t��n�f8�1R� `��jVS#]M�J�6ԥTZ�K�.˳J����՗V��duC��p�x�Q'���`�_�&�v��ə�j]�n^T!�m�stC�p��<���g��˪]M;ں�N� :�.���p� �G7���j�x�rw���S�\�Z��ĨZn;�����)�Cg��]�[��W���s k��dD����p���~�v���K\�
��cq�~*���!��?�$V��0��E��A���9J��B�iИ���Q1��F9��CiXfiq��!�mя~���T��?�{��-�&��a�Λ��v��� ������ @V����=�q��[[T�c��ɣ��pqN���U���@� � ��o贑0�ht6���Z� �!xg�݂��YxvX����_�y�� ?DD=,�~k�w���� ��d��4�S��ȑ.�ETXX\�ZH�l�V\�����z}(���R�a��� ����V�<��5����t���6У4'�3<�;�-��i�x#�M�ji��a ���f4��b M���qP�M���i���5`Q7��@�{����N�c���k���AMu�o�� :B��F1��6T���M� ���[�=��
��,�~����I���(�u���,�\˛<�Wi�f`�el�X�עӂ͢�553�_/�x�4&�7t�X�RI� #�\��*�ݍu��\r���<�t�P�x%�@��Y���|L-:l�\��WGԻ[��x�P��L�%2����t�`y�j��>8n�jF^���5ӱ>�ӎC#w-�f��F���U "�S�� G��{b�h���ɤy ��ߩ*y���nn��z,�I��O�:]�[�u��쒁�q��>��3�F�b���]��=��4����8NK|�ki��-7���
�=��R��YZkp�p������j��r�1��{e}�6�x�A���v]��}=�}��n^dЧy���C�"����si���r�0Y.�҅����:��Cא�5��d���� ���w�uk��"�]2�bǡxyR��ou��Xfv���u���Rf�G!��@J��,}/���.I i��(�>���:��{c��s�n>��0 2���zo�`+No� -<G����P�I5,�_(�u�<%.;~��J����f��MF��!п&?C��I��>#L��Gԃ��}R���餻�ۇ��rY��¶����1��[��I]rCިz���X�F�`��(XW�u��]3̟wzu�_+\��k��%��IS]�` ���{�Vװ���5z:\��o�4�P�[�.�{�7J��w��M�8F��G��F��y!�Z�t6׶�=7�wc!�3�Oǽ���/�c!�뗙��[�y ;B�w��s�R�nȸ�T�\����^�|���n�x K�k4-^�dжxh���ZB_:�y,cE�:�¿e�e����(?��!<���]��wq��;��F�u������G�{�ahn������� �9VG(�i�l������G|���������|>��������w��ْ$ݰ��3�H���49���y屯Ѽ v���@}|�\�T�vu&}&@�l0�i��u�8�ř�V?ԝY��۬��;Q��,Xt�(�s�J�.�U��8� `|�?�L %&��������-��;�W�3)��)�Ba>E@�CQ}�
�gH���Lp�uy6���k�t�ϜΗ^�NA��j��y���/�i�}�;_v����
�U�f�:u���z>FI� {>E�q@��NS�S��; �W�;!DPp��"F���{&��E�ܭ�� � ������G$�6by�}|��o�ڞ*�[�nH���W��u{��u�I��f��J���ӣ��̞P���)3�j�#��&�R�r��Nc�ؔ ق_����� �d��!� ��W�H���7��~)%��zƂ�C�<!���`����w
ޝ�'��72�Azu��i!�a�=� �IoH�@����O��o� |�Y�t<����2H�$t�2�ȝ�#ǡm�ecRg�!DX�4P�e �3�K`Յ���>� ���h��{ Pt�ѣ�4�Ղ����� qA+7I���v��Xn����~EZ��ҡ�pRe�k�j�� >;�,�{�4�|
�k�#ɭ�Y�`��5����G��\�%�yx���Xxk���xy���|�@:���� ��'�t�5�< V:[*]�u�A�$ �̧H��� 35T?�v�~? ��Z�L<˂� �-^ɧY�t�X��=f�/,|$U�̖��@r�z~29 ���<x��t�p�2c�H��X�=�8 ׵��T w�y�c�y�'�"�"ǂ�c��Ws8�x�W�u7Y���۷�Xp��j��ZEF�چ݂�v�+��A��J����4��^�q��7A���VHC� ����;,�T�΂VЈ�>lK�Â���M݋ݻ9zw�p��޽��NO��%@�{�(al������u��:GPO.�Tc�f�ˁ�i2-�4�'�V@)��"��O��w�����}$���i0.gj��w|P�n%��� 5$ ����9ژ���l H\ �:h�ia �ڐN� �y@z>$�>�C�7��M��"�D��4��p����8��o���t8a[ � 4��]�.Q�v�~�o��<_T�VG�#�_���ZX$�B�t��$�oH~������f �z �$BB�}��c�@��F�Q ���:�I�n}��;J[�G�]��r $3��B�-G�4M�@;�:�*] h�SۀQGSi�t?}S퓛���!_�n�z�7�rI����m/50�Jc
$���۴g2�x�6 �$�e����f��Z�4(^EQ�7bB����ݸ���nt����G�~}{�tGi�&���t7h�һ��%�u�g�Ht�ƬW���UX�6:ܯ�[5˻�-� ���rW�߇MF o��d��[��3����rPû��٫w����w�%)��Z7k��K��6���/�e�8��GNpJx[��d����� �2�_lV�d�+r�T46��G�;�� �L�T^o� ^C��^��ǀ[�1�đæ�ۂo�;����M���d�~�� ��;h�[�]�R�7�wj�-h~ߩ��G��!��ɽ��QLjT�y�e>R�����S�Ў=r3] ߚ�):`y� ܳJ[����h'���&i�Օ.�q6ɪ��N�^{ |����_�,x/�O���'px� �3; �x㽁���.h��w��[�Ű-�#�7-~;A�s�f�e9�;v ��#7���Jo4��x�-�q�\K�2�h�o��uIC��7���?*�ۻ��ָ�ѽT�^�l�Հa5u-�����Z���m�� ���d9���v{u�<#��n7t�ܧ7/p���q��9 K�����:�YW�-���R��xd�{Nh����a '�éQ[�0jlT]3|{��W4���Տ��tiX��5;H�g�VJ�v9k��j���F���C���>�]jE��Ὦ� q@��5�Z�\�F`\W�I�kPυ@��¯��0��+*p�����/gq�C���g@-7��Z����u��ֻw�^H1��N���,�r�7�ɮ�D�`����^�{
8����퐣����l᭰닟�ni��OG�d���h�L����/��e|��O���t����3H����g"��� ?�/�+L�g����s�����>���!Ym��U��J���[�M������k���l�K�'�H�C.�Dn_��k���y��`g Rz��W��,~΂G�*_g����,x4l�c�W@i8g�;��_F��0#Ϸ�r<�����i~U�-����/��& ��ϴ���{� �E ��ܪ�K,�R~��_N[�d��_ ?*��¯�5�Z �.�$��u��x`�ư��A� �F �*R+��M�� �6���o��x��߆�|㝭ci�ܷx}Vz��?5��N Y�n'��� ;�J ������r75�F;�)��ӣy�'�{he�U�X'7��^6�!�X� �L�� ��!� ��TCr���ĝ_\H53��Z�=�^  1<b<�&@i"�&Ai2��@i*�*�`ڠu7�}J�Z�w��rg[$K�䠅w@U�WT>~$\����n���^ w,��>���~ ����0*�(+��,��j�������SA���C
7��Q�BZ�S+��S��i��? ��b<<��sk����0R���U���7�� y��3�,Đ�����aE�g}�P5�2�ʟ���� *Q�`��Qg�%� �ep6?�Q9rb天���[�K�e���>�_��W�k~X��?�o!��AE�:#�{�(�&?2(X�*��]u'oA�� ���|�BW���}r���){��]�?b�� ��,��q���?����'r ||[;������2�˙#�c3R���}����Ujg|�[>GW��|$IA,�řkj�W8�'[��e:l��Qn������c���z��j�6z��/��@�|i] �����џ4�u)~ڌ� �o�A@�Cw~O�Z�.K� ���g�0����~�<�:l|��6ޝk,�Ye�Pet�,���ƅxť�Q�� P�~dy$>����Pj�9{�xMv˽�r�:�G��jnv�T֝�
���>�q�~����n؃F뛱� M�ˇW��R7�]@���pF��Gy�S�A
���a2D7J�Zg�5�(��I�'�@�l��J{篡u�!
�]? %��3_��P�Ǣ?�)�}7�<�n<�p�ɍ�wq� �/T/��w�p�Ѡu�APh;nQ�b0��v�  ~�{Ii��'V}H�յ�[ c�z�zXj���Otf�k�5z��9֐�B��k�akj�#�ۀ������]�֠����S�#X�����E�|��M��?Fc� �W���3�?|
����|}�ʿ�ɺ�C���#i�P��)�[�+���x_��.(�z�lEc�k,'r��h\�����g��e��#�l��F��K�h��qXs�s9t���(,�A��10̿��Oɬ����8[��%�F�G�OV�/��U�߹�.�rN�8���t�1�E���-��ݜͮi�.�W~�Y.��V�����~�F���"%�߃�\a&�p;�]-� �iG,9��~~jU ��[����r̗�C����o�M5&�����j�j�{�������;
��>���K��ے"��9�~!���4~ mH��XV��lb�o�u ڿp��6'��P�0;`u����;�1��
x>���5�K���R�^����ppvp C]�<|+�sֻk���T��s�����G b���� Dj1[_�tS]�q̖���/�g �,o��n����1��Fn��}@��1��W��(�o��c��C>G��_�>ќ��� �l�3-g��|V'HU'�l�<@�+r�Q1n�Ì�~an5j�(��K�(�;�伊c��8mJM�㮧����XB�ﴓ�����!.4F�oF���pX��C���K�Cѧ�xWc���2?2�N6��_�t;`��X ddlqU4zC��6�؛5�Q :GL<�/´v�ZȆ�r��͑z�5sLŴ����@�}O8�Y�~^ ���L�������B-��!����}W���jR���m�>^�>��y�11<!���m֧����dDD�V��g���\: �+/מS
�����r��c�3��q�{�k�S�C9��Mmk�vp� �t��* ���q�*g+�x� ����p<B+��Z>ʨ��t��1�F}�Qg��� F}�Q�d�'�)F}�Q�4�ӌ�t<C�g�YZ^e䳍|>I�O6�S�\-?;�|�Q�6�5إ����y��/4�EF^o� F�h�n#o2��F�l�-F�j�m��K�|��/3�ˍ�iF���O7�+��F����4�g���|���c����F����5����|��o0���F~!ޤ囍�"#���/1�K��2#��h��_i�[��*#�ڐ{�Q��ȯ3���#��ȷ�MF~��o3��F~���V�C�o3���Z~�Aw���m�;��#���wy�����w�=��{�}Z����7����A#������Q# ?��O���'��)#�ȟ1���i���<{��@�%�ćd�AƄW�2}MQF�(�2AQJ��Vx�>E�ڭ�v�$�fY kW,�] ��Y��P��)Ѳd�O��<f�>%��p�7
����"֮�EYە�"��IboW�$��*)1�]I�ӂ]J�~%�CI�Yl�E�c��^e�حd�1;�ft(YvF;��ڮ�h�\@r;��J���jW�y$_�QP&���:�B�q=S!cJ��k�
��_�.%��
JJ9I�v��P{��T ��>���Z�v+�e�b�I#�p���[�حtoWzK�{h�Q�}J�*k��J�2s�� `��ڧC�k7K �u)��&$��JH) !�Rl�hB,� Ģ �0b����`qƨ ��Q����ve�� ��̇�V��+�eixT\�2
��h���ɻ���(�ax����u���h��Y��:&�1��8ʬ�w�Rѡ��ze�^ ��[�w(�E'VY'������{�=�C�b"*Fh��j�*�F��H��M�@Q�(h���Gk ���*}t|��+�����veV�1 V�#h�����92�2��F�
��u{���b�t�)^�l0W�"$�L4kN����(I��
�e䄪6���t5�ˬ�sZ�|�n��{<0)h�%.��v+h�$UT UUh��@�ٚ[����f(n3L)��ۤ{���c5߲��%����6�.m���1`�=F����c@%-M���D�Y�d��2I�S�f�7��R</K�'�ST��n��CYhO�.ڣ� ����A�.]����ޭ4�+��}��5C.��Ş%��:Y�F�&�mY����G�D#[*�K ��^��>�e�r \Nt��^��>��4��� [�%[�#;]#[)�+ ��^��>�34�U�� [�%[d��Сv�]�P��C��3�աgI�g]p�&���=[�6�����ܡ�%p�A��K�:�Cϑ�s ���ܡk$p�A��K�&�C�J�Z�l��lmp����u�:/ٺ�j�v�߄I�L�${�6�� �1۞�M�$m$[� �pm���-L��$���'7�.Q�\I{����-l�-�:��Z#�=>�x82 �/��,l��ɺ9Pئv�?v��}q����',p`�t��Ds�K%�K g�Ts�|���O'O(�ɼ�?�˥�[�����h,�����n v�4�WI�W ��_����X^#�\c��5ޱ��D����t,��j\</����z����r�4�7H�7 ��_���Xn�|�c��;�[Od,o�O��f����m�����v�{���@a�����U�5Xح�j,whcy��s�1��y�����ӱ�C�qG��w�Gcy��}g��;����K�+X�]�j,���r���˝ޱ�y"cy�:��J5� ����h,wI޻����Ʋ]�n���ƲC�ݒ�nc,w{�r���8��G;��qr��q� �S�{B���_R:��}R����)��˾�~I������$���=���`��:aa�x?�+�Iy���c��>�O�>��}�O��>VO���:�c�����)?VO�X=�?�zƏ�3>V�����c��������X�p��j���K��r�xl�S;ψ���/Y_�������#̈T�<􏅽"y��?�@�+>��v-�,��}��z���>�ot-��,�-��-�ہ���q|�ka��ca�I���o�A�{>��v̥�m)9"�1��і�|�8��ʗ�NؗӬ��収�/i���c�����~I@W���?��ca�Jޟ ��}���}.yn�"P��������2� ���e�!�JS#�+���`þ�v|m��g�>þ�8f�9�>�w*�ka��¾�����(�������ZXV���$?
�)XX�W���jȲOxȲ����_��ٝ}�7i�o��}�e�g��eװ�P�地a9�?C�ױ ��7,*\��oi���PGJBP�!�35 �=9�5,'�a�'lX���P��9�e��� т]���� �����ږʶ��-�zOh��cۖ���ⷧ�*�@ž%?M&��d2�c�p�O5�P�@a�`7
ߋ"�b�2�@�����P$,�(JL�~��eX��� <��e�h�Yۑͨ�P�*��x0Ю`� �Wz�dq����� �t(Y@%Yh%d��w(E�
�R���#к�Ǚ�B9S� ;S� Ň���ckA�"���W�t��8Q�?��$�'KK�j�����s J ����2�Kq�[&BH�;�,-��e"ж�D������]�@q� :!ĥK����һ��Ǎ���@� O�B�y5lC�ZX�y����e98��?ek��j�r�F9z#���&�o ��:֕\��z&�#�In�s3�M��.+ �eE'�eE6T��zJ� w+��Q�]�<T��=�܆�;��P��De�FY�Q���6�M�,ʮ (� ~��==��=Cݫh�ݺ�(+�G��Գ�^lC�:P��i%���^y��K;?�f/�w��B�~��%v�{_o�z�u�����������{-D�j�z� �_v@���/s�P� �_���5��б�����2��e�����r����<�m�?�=AE�_lh��y���e��������� x����O{����\���.&�@m~ �� 2��A���%�k�� ��!�/ݐ������o�)�ߣ��ʡ�
�а*bC�+��qDe�\��+�� ���RmhTe�\���*{�n4�UH�j yAg����K�]�h� ��2��������)3QSf�����*aCS*��* �T�*��t��j* �Rg��E �3�����ㄦU�F��� c��Ԧ�,�y�6�a�f�P�̀b�F1G�̱����N�����q�F;W��kC�괲��i���_�A����� �w�mh^�]R��V �j�l���Z��1���R��eϥ�j,{��C�p�5ܰ�� �$��OLm'1ýb���h�]��IL���:?V 5V�^1�~�End�bFvS�'�ރghМ��K^��Q��r�.�x�ե�� F���Zbﮗ���^l/��d�}T4��-&���Dn�e�m�O6e6�X/ ���Ԣ�Zeij+m�-�@K�����Eːr�r:��#e?:���^сV����5����dS����^6~Z)g�6���i߁��@g���tΕ
|_ҙ†�Ȣ���l?�c��3�+�e�uׁ��йp�9��_@���=hC;�� �����v�I�n��}�i��\�]Ҏ.��K���2�;��;T<���/�Z��Êb��~�(��BQ���)������*h�� V��e�T�re���F)�h���QP���U֢��F4Y�MQ�CS��Q��MWd�Q�G���Jy����NV�A�(��ʗh��=�V~E5��h>"���Ȋ�-D�h*@��j@P����MB-hjE���b��-C����Yh� K��h :]/!7���]h5څ�A��t�CϢs�atz�G�ߡ��Wt:�.� ]���b�.�1�R��.Ù�r�]���-�]�OB�b�/D7�V�/G7�u�f|چ�C��{��ݎ�Fw�W�N�6����ߣ]�(�M��bE{I*��d�}�;���C��h?9=LZУdz��F���� r5:@�@O�ѳ�9�<y �D>B/���A�3:D�F��p��Eo���E��"�큎о�C:}D���i�ND��J�=}N]� �}I[�Wt9�F����[� }G����u�z+��D?I���G�����=�� �ED�?���1fvLYf,sV�U� ���0��a ����\�`+[�c�z����vv=Nd��$vNa�Tv������3��8�}����8�+8���<��y
.๸����| .�帔O���܃W�|���p~6������E�?����@~7�����I\���c�g�������8�� j��&�I�OV �T�/�T��i�h<]��g���Y�|\�6���2|����nħ����uةގ穻p�z?�Q���Ճ�V}/P��:�+�H�� ��D4^"�R���D.^.��i�'^!��b>[T��b.>G��ф׊��\��'����f�^\�7���b'�P܇7��x�x_,^×����c|��_!~�W���� _e��kL��ZS.��T��7��7���V�X|��o3���M.|�i�մ�0�·���;L��;M[�]���N�N|�i7�״�����g�n�kx��C���%���#�g:�0��f;~Ĝ�5�������� �H�y
~�<?m>?c^��5/�ϛW��k�� �%���y+>d��b��f~6?�_7?��0���4���6��1���5��� ��(|$,��?+ğ�uǟ��ş� ǟ���_���_������� [�� [��[�ۀ
��v�%l+�5�n�[��{�~�G�3�W��a��a���A�%���",��d�'fK/fD�-$�2�DZf�(K5�Z��fi#1�3H��|o�D,����h�A�-$��I�<N�,/�t�[$��ɴ|A�-���_$7�����O
�3IQx)�AJ��n��{�$�#|�~
�^C�I���I��sH�� �,�r20�F2(|'��(�~����MF�FF�CƄ�D*"26�D�GĒ �dbD�QJ�D S#��ʈ�dz� 2#�$23b��@�"��9g��"֓�#6�S"�&�F�B�w�y�IMģ������x�,�8BF|CE�J�#�& �&⎌%M�Idqdi�, ���H[��$r Y9�,��E�GV�����ȕdU�y��� �Y����#�'�#o%k"����}d]�����g�y������ �����ߒ "� ��T�9*�\G.�� �F�ˢJ��Q��Q�ɖ��䪨��ꨓ�5Q �uQ����� Q��֨ �MQ�����"ۢ���Qw�[���Q��ۢ�&�G�B�z��� �;�[rO���ި?ɮh��Gǐ��d�;:��.%�E��}�������9d��<]O�n#�E�E�^G���HD_A����<}y&��<}?y.�y!� y1�u�R��`���P����ɫVF^�F�׭�� k&yӚO޲�"�X��w���{���u9bu����#k3�غ�|j]G>�n"�[/#_Xo _Y� _[�%�X�'�Y!�[�$?X�������ߒ_��?m��eS��6+9jK��VH��UmeT؆Q�m45�&�0[% ���[ ��-�q�U4�v>M�]Lm��$�-4�v'M��i�ǩ�� M�����h��c�m���~��1
͏�Ђ�XZ�D�brhILZӏv�F{�L�=c*i��*�;����i��bV��1gѲ� t`�tP̵tp�MtH�]th�:"�1Z�4�"�&�!����%tbl$�K'�&�)�9tjl)�;�N�Ag�N�U�����S��������������s驱Pg앴&�fꊽ�Ώ�Ikc� b� c�E�����ic���3m��.�Sis\m�K�mqYtI\)]7�.�FO�MW�M���͡g���Uqnzf�itMܙtm�Z�.n3=7n �0n�w/���^��^��$�Yzi�����Uq�ӫ�~����M��7�����Tzc|.�_Lo��G�ŗ���c�-������x�#~�3~ �+~���� �7~ �3��Iw��{���}�����_������I���>��� *},�J�HH��� ������ل!��������*�R�����H&��C �� ��k ���-�̈́m������ ��w��&<A�Ox�~��&=��>�0�K�q¯�����v�~n�_�m�K{*��^H�������o��O���g�T��d�}>�˾��m_E���0ž�!�E ۯ`�~-c�{��� 3�ca�����
���"ퟳ(�,���&R��b�X\b�'����,)�/KN�RDZ�ę̑x*KO��2��ĕ,;q5�I����`�ײ�ěXa�]�(q+I|��&>Ǻ%d��a=?g��e�ce�Gـ$�&E�AIv6:)��I��*��ICظ��l|�86!i
���b�I�ٴ��lz�J6#�\63i3�J���N���$��NJ��NIz��Mz����2�Nz��$}�\I���I?�ڤ�Y]��-L��E�vV�����1wr֔<�5'�c-�SXk�L֖<�-I^Ė%/e˓�d�%�e+�7���װ3���Uɷ�s��ak����ɏ�u�ϲ �o���� ��`&�6%��6'��.J���cL�bW��-)��U)��)��ڔ�캔*v}�\vC�B�5e �)�tvs�v[�zv{�fvG���Δ�ٽ)�lWʃ�=�1֑� ۝�ۓ�ۛ�6ۗ�{(�/�?���SM���hj
{<��=�Z����'SDz�R��gROa/�ְ�R��S����3�k��é���S�ao����L���J�������M}�I}�}��6�(��8�k�I�/�4�>O g_��ؗi���B�MZw�mZ�)m(�9m�%m
�5m6;���+i-�-�8�LN��r��������������-i{yx�C<"�i�v�G��˭i�r[��<&�g�@<��1��H�I�����S}x�cOs���<�1��;Z�H�r>�q���+����xǝ|���Ot<�'9�O�)�W�T�{|��>��7��n�3�c��4>;=�ץ�� ����Q�!}w�O�M�s����%}1oM?����㧥o�+�/槧_�W�o�g������sҟ�kҟ�k��u��s������/�@�� �o��3�E��b~iF~Y�@~y�h~eF%ߒQůʘǯ�p��2���+� k��2��7g�ķe���3����m/�;2��wf�we|�������ߛi�2��=3�wdf�=�����>��!���q��)��̙��y|�"�H�R�h��̵�����@�5��̭����3�{���2��g��_�|����9�k~0�G~(�(5��_˲��YI�<�fV +�;k'k /k?�d�AV5?���?�Z�?�:��u>�2k�*�2�u� ����Y��߲��g����z�����+�~4��d3�f��,;V��I������"՜]��eW-�c����jD��jTv���T�f�Tm��1��q�7����Մ�{T{�jj��jZ�S�#���Z��Z��Z�C���Z����Ī�s
��9��>9�վ9��~9�Բ�yꀜzu`�uP���s�9��9��#s�U��lU'�ܢN̹C��s�:9�~uJ�c����ԙ9���s>P��|���sTu�ru^n�Z�����橮������ܩj}�\�!w���]�6�R�s�U[r7���W�m�׫Kr�R���U��>���}A=#�]���O�չ?������ͳ�����������r��yEꆼ�Ƽ~�y��My���y3ԋ�檗�-P/�[�^��A�:o�zMލ�y;���v�7�=�ޘ���5�e�����my����Uw��ޖ/�;�Sԝ���{�'���g���� �=�-�������ר�_�>���h�!�����'�?S��>����tW�)�T�/HS_,襾R0D}�`��Z�t�p�S}����Y�B}�`��v�F�݂���
����T?(ث~X��Q�s�o��|�~^��E����_U�.d귅�ꏅ��O���υ=�_
���V/���Q8[�Х�]ج-\&�³.�@��K-�"X�͂�)D�>a*|X� ����Ex�"��SU�.�CX���YDLQ��+��Ey"���H,*��F��I"��$�V4O8�����Qt��*:O��"�h��+�E��)
�v�¢�Dq�Ӣ��(-zK�(�@�,�T�*�A�.�S�+�b@q�V�*F�Qťb\q1�x��X<AL)�)*�OӊOӋW��[���Ŭ��Iş���_������*�P1��$jK�Ă�XQW�,�K2ECI�h-.��T�e�uE!����P�~S_�Q��oᷕqū�j�~W[|�����W*��+�5�ⓔ���]�b�G���h���#�(=J�'�S)e%Q�3�%*������,Q��{��x�”��K�7�ĕū񷲤*������@s�����M� m(z���S�h���G C�U�$̂_-l�?KX8��p.���D���!�7 �$��E�wY�"� ��Y�����O�������%K6�Y��-u��?���G�\%���E��c��D���}@�l����n&T��*�;�$]�H��F��$�s�Ub�m�IiD�RJ܎��I�R�Kb�,�%���I�,9�[_'�%=�Qyf
����w��$B�2��E%�����Vt#��-�S��1Z�rR/���Xe)7ma�{�&Ky����$��*��-�8 +Ⱥϴ���Ra�W�d� KE2�-'v���h6�$IX��i�H��V*�Z�"�g��Jl�ܩ�W�&K=r��/�C���}�/"��+�>�d���g��I����ǎ�,�}��H�����Brd��0f"�$O)�_C'�6 �]B
$l`A-$�6��m�@�dipa.�$Œ��f|������ ��T�����n�4��'<�t��EC�������פ�,�,NEE���|�-�7N����>��5_'}��I?�_��)�`��X漰�]�S�[+�ej�8]ab%�/�T�̐%RFș��@2��5TցJ�_ϯ �v����~܄���G�`�ې��]�m���8܆z�A��D��X / �e1��,�=���gq�qX�8>��â��,���H2�`� �D��v�-��جm
�"�(��}�EW!e����@�S(���@��)���6%VfW?�D@���)eJ�4e�"�f%J\�����q��C\� �)����4q�2O\�4�-�q��R\��+���w�y�?O�?Z�/���<Kv"d��X�uI�Fʎ�zemS�d�:z�����f����m��@�y���G�)��@�Mi�nj�K��;��F�>�ǎ��Z�l2�Aϵ�3��� mW
�)�^Ʉ��hJ��� ���o�2:�2����J�A�hp��`�Ւ����%���!]2���� 9��d�U�;��]�&�P�� ޫT�e�ح�{�Z�Wq��b��Jܯ�(��-�!�F�_�!V��(��G�Gē���)�u��xV�Q<��!�GD��l� J�P�x�����0*o���8�,!�S04��!�5��@&N�3IuH�yӄ"kF��Ji&mWr��%ߚk���Țg���Ȇ�is�n�};�Xd��߲�,���oݎ���tەJ� ��5�$���8�t�;:Н�Q�Ѥ��& F�
��]ۑZW��woW~.����G�#�:���ʛE������g��ߐ,Åtg4C.<�N٢��hW�[DBf��Ӿ]
����{�r��. ý���R��ؽ��ں��ۮ̖��B 6�^jAہz�����҃:����.1�_� <,K>}D�&}�]��+�%NQ�ćJ��H����W?Q��O��~�L�+U� t�T��W�9�ke��F�Z|���+���O�/V��(��_���o�7�@L�,�/'��t��
L��0�k"h����&���,�S8Z`�@nS$:�dC�M1h�)m1%��Lvt�)����#���Ɂ�25��%����H&��
EJ.��Gh�~���O���RI�����]���LXdÙӁ�RQ��<*�=���ǑƟ��BzR�<���Ť(��l�U"L���T�$��)Y�J������_�m*Ӵ�� �?�ڼ/瞐�]h==���>;��M3]r�R)�\�&M�*�� ��m�F��i��}�*zv7z�L��p��j�@�w�3��<o^П����>
��D1 �& SbLå�#�<S���4Zj�PN5�S\���B�DO�+y�p2�]�K�Cf�* ���d�<?HC #c���$�/�'�6�0���^h�}�x�^�^l�4i�ti� i�Li�,i�i���ܹ��S��������6�E0���h�K��=p<s_s_
6�%͝/ͭ��.���Is륹���&i�bin˿2wnhs_s_a�ˁ� m�S�3�e0�`��m��%�ܥ��e�����ӥ�gHsϔ�%�]��=5�����C!�=h�+��}�x�s_ 6w�4w�4�\i�y�����Js7Ks/��^��u�6�U0���h�k��}�x�
�l����+��WJs�Hs���^+ͽ^�{�4w�4��e���s�0�p����6���{�}=��[���JswHso���.ͽK��S�{�4w�4��_�����K7�>�PXF�s��oH���Ъ �G�`��b�P$��7u�}����.ԗͷ�Wj�k�o�����JB��� xp�O��
��C�ݕ��T�HH��F��!�ȇ^ݕ��T哐�O����5 П���h���
~�o��и. @�C����~h]� ��R��@�C���9���)�w3W�����+���+��%�;_@�O)��~%���izH���+%���~�G���'��LO*w��Q�3=��`z^y���5DM����a4��j2��N3���4���6}��7}��4}��M��$ӧx��s<��%�5}����kM��M���񣦟�a�o�������$Y��I�B&� �e�����R3'�Wڙ@GU�a���}3��;�3I �$��
,""�H����mAEV�����ǥH#���eU.�ZP�X��T��/��`�����1|9��s83���{��޽��e�;T�\��|B��*�eN+w�.L�ǃnͣ<�M��c� \�}!wff�]�to��"�?���/S�WA�k&Oק�}�w�$V� R �J�J��^�<4���N��H{�%���c6w>e� ���p��LMyB�m��bi�ҝ��–��?h[�U����,UIE�h꠪�ՕNV�� UM�U2d�lgu��:�N��ҳW�>�-��5y��|�^��z�pyns����῎����)���j ׿��q�j\mJ�2��ȗ}���k��6�]���ļn����In�B�kOQ66���@��|i�Ij�F uwB6�V��o�z��3���D�(���`�XE�ɋ�%��K�d[���
_z
�%:�-=]�i��&:��]<5 ���G��S(ʣB�F;����g�g�RgR�E�j$_�_S�:+0��Q�W/ �zX��T%/l+:��~d�f3Z���Z��a�����l�\�x[�?X�B��Z�ʯ�fam�����Ŭ!\껬>�J�Nd+���%le2[���\�A�F���q6��RN l\mL8RW��ilc:ۘ�6�f�� Ӭ�?@�����|�q�X�6nd7� ӭ��� kc�ݦ0�}��Q��5�`�B���\ZYW�,�5�3?�z8�@���[�
o��͖s,olz��JM��I����ބ������~���2�^�Z~��+�]V�����(�s=�"�k��0�S��XJN�<���1��Y�q���>�%��c���.�H�C�ڂ��z���z�j��j�J���j3թ-�_m�Aj�� ���\�:_^oM.f�f�^U��疼�Yh~򠈧D��8I�:8���2 c$W�W����$ճW�q���i=Oe�*W/���\�Yf���:E��\�U��f�<��g��T�����d������f%k�L�:d�F��Y�e�� XwY��h��rJ��Y��������b�[�:�zT�Q��I���T�>�b���.��I}�J[B����MV8C��\ک�nc'.�TSW�ﲺ�ʃ��)��:����(��4�Sl�\���S��E� %
����m}#��]�-y8k��MD�{(Q�����:� #�D����6Q��3ʩLD�k����i.���σ'���ϫ����(�����Q'����ԇ�\:I��P���t �E4B�(]�m$G]I���ۏr N� �-K�/o��\���E�j��ۨM���m�4J�I6�w��y� 8�E5��"1<M��-��a�(;=Yc> &�%S�}�O�����tgҺ��WIe��:�jꢻs���h����|TF�r �2�B���f�L��G��ޖ0_^�s�'�����w�9|y#u3��2%�w�I��9}Ԑ>�࣌1��I���Jto�ׇ����S����G��B�h� ����G,��Rg�>.������n�覅-�FQl ������>��b���ZL�QW>j2]��f8&�m� �d��C�V���T:U�=���g�����}L.��X��L̏z��Ɨ��Yt��4ףH�F�{�n���n$t��F�nו�6D=.$���u���ck3�㡸 �ٻ9��B�_�
+>�V��d��|�zoayJ$3�oz"E�$���jB�kB����P��u�,�dhj�+Q��MW�����g;�*�o�+�~5ԏ�iP�ƅ:Ȇ3��im�
5���5�,c.˘\k�\q 7�q�[�=hqA���˸y���[�w�Y^� k> k#�O�P� �S�����S�~!�o���@��[�~�/��^��2��
�? �C�6�� �+���� ����Q�����1�����q�������P-�o��'����Ǡ�Ix��@�$��M>e���;1��3�<=+�^��E2�"۹_y�
�3�����-����x“�!{�e? ٻ��,��k��4dϱ�g �f����m����Y��d���W��j����vf��#�l��>�� q�"�ی{� �.�������{���p0no�����ێ�bf톔�92�8T�c���C��7���3&��sx���K��nST�/DP���ׅ�����%��"������4�A܃��q�A�������3��`�� �><�x,�k8�� �xg� e���3�d�f�&�`9Ƞ,¿pM �
x g�eP3xf�Ƞ;����*�AX�wq�A� ��8�5(�>0��`�@�`{p� �"�g�d0��l@ �|3�23�+?��_�7f�5�ۺ5�cY� �4�����;M��i��:���|��[!��đm?��e��b��6��@�V� L��SH\�
q,�i��$nh�x.�k��9���Au�V�/0`+\_:@_[���|�8��I!F�1��&v���}���Ţ01��3^/�c*d|�o�>�12����]��g�����9����!�{ � � �n��1� X0`4B�O�� �Ono3 ��8>c?$� < �!@�"x�@V@�ĀrX>t�u��N���6A@T�V�F݁�tpEďA}W��+"�r��a�٬�Pm�z�����z�kY4H��vRv|���q�������`)>���/��y��|���#B�<2q�_ ���� �u���ӟ���Z~���b2`�O�������E��!�PK
ѽ�>��\�Dorg/openintents/tools/sensorsimulator/web/SensorSimulatorWeb$1.class�R�J�0=q�ݭU�����]�(����*���i k�&Ҵ�]�����Q⤮(�N&'�3s&����`s%8�Ў1�w1�b��CGz-�|�a���F�**5A�ul#�щ��Y�S�" �9V��.E�EL�R�t�ao�5�� g__ ���T�$� Er�Ø����x|�i�Mб"��)%��#�m����UH2Ev�V��u�D�Pڤ���o�=��Tk#U�X����Ŵ���pQ�Q��,<�yk�1�m� ���7"J�A��Y��w��[ID�/K�y C�R���Ɖ^�\��h���/�#���U�[ī,=�U^������R�5t��s�C7za���M�uZ�Y�����o��3oP��?�&G��A ���ď��G���PK
ѽ�>��/���Dorg/openintents/tools/sensorsimulator/web/SensorSimulatorWeb$2.class�S�n1=nB�, ���) M%����V�$������RW�vd{��Ԃ�ЏB�MPQyA�J���gΌ���?����8�k1���܈�܌p+��� �+mg�ak��(�c��rB9�:� �Z��6V�U��6�Dd�0`�?�G�=%� ���bxޝ�je����;��5�J���L��<+����H���u0$���_pk!�f���U3�"��U�C]�\��>�ҿ���>��_���V��k�v�N�; �b!�Y4�~v��񀄟�D��Ϛ\�ҷٞ��t������,���\}S���>��
m'��iz�<F�z߫����ĥ}]��"6j ,S7�#�v� I�=G#�9�4[�u@z�G`�o�;>���H�.�M�<F ��=s S�M��{��!�8D�+�'4qH�h��E՚R�p9x.b��uziWq1D1*>|�PK
ѽ�>5��Borg/openintents/tools/sensorsimulator/web/SensorSimulatorWeb.class�TkSU~N.�d��K�"��Hې�.�X�lL) z ��8��W7g3{N
�K?�Qpd��?��;:}�&�)d�3�L����y�罝�_����x &F�h�Sq�1�9�0�ew�Ka��2V |e��b���ț��[��}�&�q'�� <d�<���� D�x���3 !�#Զ�7y��/�lm���{ү���AX��M�QAȰ\
�=;hp� Ņ��
_�2R������Ğ}�c��� O�0�3s� �B�r���'�f�^��S�I2R
j��!�to �GO2��O�z������@�����O�3��b�zP� E�!�t-��k�"C���~B���`�\�08�S�玨��tj5.����<C>�A���2�A3���~��m��� \�0����~��.0��*
�Â�Hɥ�{�@��:�a��#YJ6��p���i�s� 5-�QZ~h���t-�7|���G� C��^�p�2r���zn�9 �J�~j��- l���E��v��3.��~�c9h���oh� ��Ҳ^+��=�q�O< ~�y��8���3]��)�������ˇR�:� ��x��8$�eEE��N3�Z��o� \�+�L�"G�L�����U�+m]]��l��#D�q]�l�N�RJan���7J�e ��8u�Dt{�N�tNщF���f�N͍d����4�"�M2X-��c�1��]z�c�O� �K �V�W#�#�_Dȋ�D�Zv���ɖHz������� �k��&�cz���%��6�=��{���â��n"~�KG�f�u���7�� Ak�|��͇���L'�L����N�� ���p���'=��w+=�1R?��%�:��.�HW .S ��2t��t�#�K�*�Fu�� {=k1�r=��'�գu��~�un�y��:O ��#��pk{ PK
� �> �AMETA-INF/��PK
� �>��[����+META-INF/MANIFEST.MFPK
ѽ�>�Ahr/PK
ѽ�>�A0hr/fer/PK
ѽ�> �AUhr/fer/tel/PK
ѽ�>�A~hr/fer/tel/sensorsimulator/PK
ѽ�>�A�org/PK
ѽ�>�A�org/openintents/PK
ѽ�>�Aorg/openintents/tools/PK
ѽ�>&�A;org/openintents/tools/sensorsimulator/PK
ѽ�>,�Aorg/openintents/tools/sensorsimulator/swing/PK
ѽ�>*�A�org/openintents/tools/sensorsimulator/web/PK
ѽ�>0Ǐ��-��hr/fer/tel/sensorsimulator/MenuListener.classPK
ѽ�>Ѩ`*`b6��3hr/fer/tel/sensorsimulator/SensorSimulatorMain$1.classPK
ѽ�>] P<�)4���hr/fer/tel/sensorsimulator/SensorSimulatorMain.classPK
ѽ�>Y2�?� 4��/org/openintents/tools/sensorsimulator/FileData.classPK
ѽ�>�<ԧ@�8���org/openintents/tools/sensorsimulator/FileRunnable.classPK
ѽ�>U����� 6��org/openintents/tools/sensorsimulator/FileThread.classPK
ѽ�>#\��~�8��"org/openintents/tools/sensorsimulator/IMobilePanel.classPK
ѽ�>z8�:<���#org/openintents/tools/sensorsimulator/ISensorSimulator.classPK
ѽ�>��w�
8��,org/openintents/tools/sensorsimulator/SensorServer.classPK
ѽ�>lN�u/>��2org/openintents/tools/sensorsimulator/SensorServerThread.classPK
ѽ�>�a��D���Forg/openintents/tools/sensorsimulator/SensorSimulatorInstances.classPK
ѽ�>�d� "8��Iorg/openintents/tools/sensorsimulator/TelnetServer.classPK
ѽ�>S����2��gTorg/openintents/tools/sensorsimulator/Vector.classPK
ѽ�>���Q]2
7��oXorg/openintents/tools/sensorsimulator/WiiMoteData.classPK
ѽ�>�Qx��A��!^org/openintents/tools/sensorsimulator/swing/JTextFieldLimit.classPK
ѽ�>J�B�?��aorg/openintents/tools/sensorsimulator/swing/MobilePanel$1.classPK
ѽ�>�,�?� ?��dorg/openintents/tools/sensorsimulator/swing/MobilePanel$2.classPK
ѽ�>�E=���horg/openintents/tools/sensorsimulator/swing/MobilePanel.classPK
ѽ�>�س\u�C���org/openintents/tools/sensorsimulator/swing/SensorSimulator$1.classPK
ѽ�>]�!ޢ�C���org/openintents/tools/sensorsimulator/swing/SensorSimulator$2.classPK
ѽ�>�y�C���org/openintents/tools/sensorsimulator/swing/SensorSimulator$3.classPK
ѽ�>e�(l�C��K�org/openintents/tools/sensorsimulator/swing/SensorSimulator$4.classPK
ѽ�>-���kYF�A���org/openintents/tools/sensorsimulator/swing/SensorSimulator.classPK
ѽ�>��\�D����org/openintents/tools/sensorsimulator/web/SensorSimulatorWeb$1.classPK
ѽ�>��/���D����org/openintents/tools/sensorsimulator/web/SensorSimulatorWeb$2.classPK
ѽ�>5��B����org/openintents/tools/sensorsimulator/web/SensorSimulatorWeb.classPK&&� ��
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class com.android.vending.licensing.ILicensingService
-keepclasseswithmembernames class * {
native <methods>;
}
-keepclasseswithmembernames class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembernames class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "ant.properties", and override values to adapt the script to your
# project structure.
# Project target.
target=android-7
�PNG

IHDRRR�G�GtEXtSoftwareAdobe ImageReadyq�e<�IDATXí�떪0 �y�Wԣ���(���9��6��]�o��t'A�%#��Z�d� Ī�9x��K1҇LW�<�A5��b�0A"Mw4̙�/#�r�����[�W� ZQ]�\�u�v�Bo\�1�,��{�� ?�<��a�q���;���8L`u���J��i�W����~K�W6r������ k���?� �B@���;���_e�ֹ��i������4ٻ^�]�L���aΪK;!8䌠�&uf� '���`h�]�j举7$�%�mM��`��|d�|>�#7� ���Ni4iq|.\���t���@�$>���
���o�x\�kR�9�ӡrv��wγ33Z��y�Z ;H�޳��x����2��3����L�3��G���#��y<blRL^<b�R=�� x��!W<b�� 1pH�_�uR;�A8�@�ۭ%�,R`��R��3�Xb ���T��?�8* �dJj�Uΰ䶳��4�w搸ۦ
�ƱYJJ���o�ӐK#����)_�׋��X7�,�J錯U�Eҗn*Ѫ ��?Y$�'��$�Q{,@v� S̿";=ꖳ1�=��v�ٱK�o��6��wK/����s�>H�zr�k��Cv������#�z����\?�"l��PSILQk���
�iMѥ N�ڵ?��Y�6<G�Z{��ls�τ�����7 ��IEND�B`�
�PNG

IHDRHHU�GsBIT|d� pHYs
�B�4�tEXtSoftwareAdobe Fireworks CS4�Ӡ�IDATx��yp]�}�?���mҳ�lY�,c�6f1�,��g�@���&�4�I��LB�t�2�&���4M���-f�iJ�$�L ;aI�o��͖ޓ�z�Y��}�z�-�'�b�W�O�ܳ|������ιGXkySC��
�w�OP�OP���B���������� �*�zm��>S��i ��F�S�*��5��+A�UQU��5%TO�Ā� ���'?i�kE�*�"j��E����~(��TӒ$����D�m���}o��|u���B ���������o��e $�(3����R_���ﵶ{�4ZϿ���0>��[_~�6"M*���D4�b5 ���V�M]Iޫ��0<0� XD�9!��h����I��FB���1�M����*!�F�lQH�NY�j:��R��l����q��+c��mC�U�2�D��*� p��� �LG�H�6U.FJ"{�1y�����0�1k��ԉ6
W$�m���x/JW�uC �X����)�c�i�c�:��u1FK�I� U�Ζu\{��;��:$�d���ә��@9�n'���j�\�(��9���0�X���k����݉V�,:T��J��a*�� (Q����|�D����RFCV�������� �U�Pa k$��6�t;Qa��u;�(�}�i9h�Q��Xy�5�Q�f��̾B[����j�����[H�Y�z!���]�X� �V�Ao�G u�\� �.qq�_��/eq�<����6��{Z�.~����k ʄ��7��U_�!�e�U��4=lM�'�i��pLk��$�e��t���Į�(T�Y��
J����X��gl�9ge.cE�d��e_bב�)�H<� �H��EK?O���ɕ�j�w��������� �w�)1�����P��7���c�9�n����:��3ւ5�
��$�p�ϑ��Y޶ GİVsxl /���J�Â�r��������!�J,��ܛ<��.��LW�����ދ����HE�e+��J����K�2�ěT�ieB���7%Q�v1J�ŊW�-چ�^�q�s[�F08��3&�/��qE�B������d�+H�z��R,��te����C�Jd��Y�X�6������4�B�<�x���Xm���C�(VF�zJw���RΤ�3#��ş����-�*b^�� ��f�C��5�x7+^·{�B:�C��pI� Hᱼm#I�K|���đ1BU�����${Ix Y��F� -��˿��=_�f�lY����cբ�Q
�\�s�-�$��X��b^W&�����#��4��}5 ,.>�ow��=AZ��?��AX����Z��A`uhmj�Zk��U�>��� muX}�Zku5�c�����J�2Q~ط��L�M˪m���`FT FѺ�UT0�o��?e'��@��������'�M�Ǘ?ǡ�6����#� 0# :�P�©�}F�j!��R���X̸�c0��V}fB�kь4�ڵ�1�6����~�5��G�3a���(*z:�[��4f���l-<�.�: h:�����s�M� D��S�KJ���x�7m�E�k���h��Q���.�R�x<޶y��n&DŽ�Čm���"�đ � ��T<i-�㠔�СC��e�٬uh2�8#��C�� km��ºH\.��X̱t'{�q*�
�v�" CR��Z��fU5YC-����W&p���eS$�E��J{b5�L�pۈ9i��(S�X}\�����T*�HLӪ�on�y�����X���k�=���.FJ�)�G,��#\-�:S`y�GX�� �i�� �.�ˌ��㺓�)Ą���ē�8"�+c��^d���{���.������ X�w2��ʶ��J���%_dE��(- !PJ��o��v�� �+�H��B�2�œ)���f���ж��w���XtUA��� �ǷП��u�ױa�mH��J)|�$���e���̏.�8�^&_9�y���.sZ�U�ľ�s(�17�/��Z�pE����Rx<w���q�p��R���J>��o"�R)�X-�N�Hi��l%N�oxΌ�����ᵑ�ٗ}���7��z)#���z�_s������X�?�y��Vf6#�˫�~D)�N4��w2�~���Ƈ�݉�����g^z��i�T�-���x��wZ[�&W�4��P���Wq��{�6�O?U�����v�n[��'�[
�bx��޾!��}H�몢: 9�gK����]IOz#����Gر}' zq��rqv4�� P��@ra��Y����u+C�7�� n]¡/�"`�Ԥ{�Tt�E�sX�u-^�T8R� �8��6F��{�@a���Gir>6�S c5J� T����duk��-2S�'�x2U���Ps8���ҿ�ڳ�k-����� Io1���%+�un"$�8U��8#ü�c���+ �ftcB<'�#��� ���}�K�|���w{���c/`���ǧ�}�mW����&�p2�3e�s�8�A�g�ő ���*s=��2p?�`)������L�����s+)o1[�c�G0V��t���o����7�7�4ڪ��঴N!�X�NUc0�c��խt�u�7�q��t�n���~?|��(�Y��b�\�-6��C�o�����6�O���E���@����B=% ���TC�H��)�mh�ʡ�s ����"�r,�@��e �ofmǟ3Tx��y�&�v�9)bN���(#�z�l\v����/ʲI#=� �mB����"�ǁ����>�'�'l� u���\���Bۀ�������H��1S�-�M���#���S\��Fv��Փ6k��)A�1�K�c���8������M@h�t�.b��[X_��?�#?C�2�lij�)��x��w���{�Ix��:�i<�`���0��SFa����<��%l칓��+�3�;��� ���ӂ/Z"o��jx"���K�y� Ko���b� ��Hz'�o,�@�qe�u]�sa�-��W�ng(�:��<fgf�z"{������ HY��S`�� c5����>�h�+�.g}�MH��{؛}��wT�?�bqD�\��-c�mrmn>9���LGr-)���J?����y�ル���lz�mC�E`
�2�wk�Gx{����0�ü1!)���lbǑ_�q�WX�~ }c/��_d�҇/S�~�!����qF�)]fm�gY�~ �T�힯�?�\���տw�]��� �;�9��1�k؟{��޾)$1Y5���bR��s��,��$_�g�� �Io�+����K��27�8̉��d�#��<��댕�B�u�A���6t�Σo߄���y��)���aַ��ց� W�O�]���2��6�X7g/�5>�U9%�A�L�"#���2u�-�"�X�0[��Iyh�?�2k� ��� �<�خ�L�c���������f�7�y�� p8wѧp����X�A����k�����sP��T�����XДzՈ�EߦB�K��/ce�J��tϗ)�e��?���Kn�`f�:M���Q�R�t:���X��gG'd`-�tX��F���RR��R2��u��|b�875��W&gTF3�x1�2�)x�7ш�Z�S�����}�1�Z+�k�M�s�N��#)��;qelҽм�; ��ﴰmx !
յ�ӆE`�"1:��D�.���M�F'/$�$���z�ѧ�1���|=����"R
�A`'0�"Xk��2hF�jd���A���&Ay"R���5<���j�o�C�7�}{���3�D��:
U�n2m7k� Uͼ����8Gh��S�e�ܠ���r��f��D�],`���X���SCM��X
�8����R+Dq�1]0I�w�!u��������L%,�IEND�B`�
�PNG

IHDRRR�G�GtEXtSoftwareAdobe ImageReadyq�e<�IDATXí�떪0 �y�Wԣ���(���9��6��]�o��t'A�%#��Z�d� Ī�9x��K1҇LW�<�A5��b�0A"Mw4̙�/#�r�����[�W� ZQ]�\�u�v�Bo\�1�,��{�� ?�<��a�q���;���8L`u���J��i�W����~K�W6r������ k���?� �B@���;���_e�ֹ��i������4ٻ^�]�L���aΪK;!8䌠�&uf� '���`h�]�j举7$�%�mM��`��|d�|>�#7� ���Ni4iq|.\���t���@�$>���
���o�x\�kR�9�ӡrv��wγ33Z��y�Z ;H�޳��x����2��3����L�3��G���#��y<blRL^<b�R=�� x��!W<b�� 1pH�_�uR;�A8�@�ۭ%�,R`��R��3�Xb ���T��?�8* �dJj�Uΰ䶳��4�w搸ۦ
�ƱYJJ���o�ӐK#����)_�׋��X7�,�J錯U�Eҗn*Ѫ ��?Y$�'��$�Q{,@v� S̿";=ꖳ1�=��v�ٱK�o��6��wK/����s�>H�zr�k��Cv������#�z����\?�"l��PSILQk���
�iMѥ N�ڵ?��Y�6<G�Z{��ls�τ�����7 ��IEND�B`�
�PNG

IHDR$$����IDATX �X[lTU]��t^}0�>�����"�!�壉 �?L����WLĘ(���Q~�`�降JPJ)��J[�i�L_�׾�N:�w*4�?�ɞ{Ϟs�^g�}��s��eb���VD�Q�Tխ��-�Щ5s�^l9q:��)��R�NOq�>3���ݘz�����=�q�U��� H�(}����^�a�&�����'�����'�fs�*�Y"!+*%C���iB�E75xT��Ÿ5(��a���MӀ����*
��|*D�� ��"��SI3���
�'�U3����uz�!�d2#X��
�A���0i34ZVÒ�[�>��kꟅ�1e8�X�Ҧ���< N���g�t.�k�jF�[��w�4>���.��շ<�PQ%������-8}y?L݈��Wy*P[zT��Lq"�DzE!C�� y`��q�]� �N"�Œ�U\j~4��b�=8�e��Ϣw�y��� ��Y8Ҿue+�U�QU��^zY-�4�ʤSy��S��� H�V�6,^g��љ�-@e�:d�AT��3/L��f�Y#���� �lg�ː��f3�ql\�;/�H̖� �C\EB�03��1J���{s���ܽL�28/ז� fY� �)�Vp��ֽ�%!����f����0&Wٿ-� UuK�ѩ��u.c�c��f�$>���t@� ���'�Du$L6��+�&w��MW@�yҀL���ܫfr��B����!T��8d��$���ۦR�sOGF�^5�ʣ��bU�N0�h�T
�XL��kĎו��g�w��ه�H �zǺ�A�W����y�m&X?'�!�H  � Yj(�+C6;��Z�S0�,|�2k�C;���TUJ)�~�Zt$~���}8� �Mo��WǣDC��FVώ�'�u$@�Y�_��־/�`:�����Yb��4l*�����,_ ����u6-�F�_�� ��R�V��U�yJj�%� ������V[���5����OY����c��m�{����\A���~ ��˕!�c���?�4�,Z
�'��*b��_�Edǃe��~��K�4�n|g�!���(�m�j�]�!4���D1��B$0M��V�J�#�Ƃ�a�=���1����;�X6�E��ޯ1'����r�DI�
2�+�nkj]�G��] [4#�H� ��G2ۇ�;1���{�w��h� ����+%#NP����@�� �@%����ŧ����'Ph�����=p�%l�U(
s���T���a�?/{���)�z��e�. ��~:��.���h�~�ɋh���:t���A�>E��ɼt�V}�����u�K�C02� ��W٧R�(������ujŜH3>l�d��4��vF9�l���q�*^�nG��T��qYo���=<\��ѶȂwפ�� �����9�ǏޑsPx\��j,v��k�x
/�a�E�s+6X�J�O29�Vo�΍�J��5��X����`\ȤC6�'���R�ʠ�\�x����/����MEs��S�>9�z�-���I�@�����/��f>5B���7J�y���P[�}��g&Jh�ϿLU^�S�}h�� 9������6/��dH��:CX�\�F�dDɤ�0%*/��n�߀�ZUDH��IEND�B`�
�PNG

IHDRRR�G�GtEXtSoftwareAdobe ImageReadyq�e<�IDATXí�떪0 �y�Wԣ���(���9��6��]�o��t'A�%#��Z�d� Ī�9x��K1҇LW�<�A5��b�0A"Mw4̙�/#�r�����[�W� ZQ]�\�u�v�Bo\�1�,��{�� ?�<��a�q���;���8L`u���J��i�W����~K�W6r������ k���?� �B@���;���_e�ֹ��i������4ٻ^�]�L���aΪK;!8䌠�&uf� '���`h�]�j举7$�%�mM��`��|d�|>�#7� ���Ni4iq|.\���t���@�$>���
���o�x\�kR�9�ӡrv��wγ33Z��y�Z ;H�޳��x����2��3����L�3��G���#��y<blRL^<b�R=�� x��!W<b�� 1pH�_�uR;�A8�@�ۭ%�,R`��R��3�Xb ���T��?�8* �dJj�Uΰ䶳��4�w搸ۦ
�ƱYJJ���o�ӐK#����)_�׋��X7�,�J錯U�Eҗn*Ѫ ��?Y$�'��$�Q{,@v� S̿";=ꖳ1�=��v�ٱK�o��6��wK/����s�>H�zr�k��Cv������#�z����\?�"l��PSILQk���
�iMѥ N�ڵ?��Y�6<G�Z{��ls�τ�����7 ��IEND�B`�
�PNG

IHDR00W� �IDATh�Y[�W��{fw��e�]��.ׅ@�%�b�2&!��B-�IJԊ�Ԕ�K�2/
j�I�Iʒ��1�%/�" � ��.˲�6�Kw��=���NO�@���_���>��������p{5�T�|��*$W�4���R�I�J��r������A�¸NL�0�����u�@�����X�>�d�`��v�q�}�a��'u�h�Ƀ��{H(JLE�(�P5g~��>Sר~;c�}_�ЋG�&Ƈ���x��\R���U) ��Z�)�[|�Y� �fE�]����~A ��$�XE,� �M,����$���Y�j�F%@�f�"�d\���R )3 ��s���� 'E{Ab<�S +9�P����Y^gpE�P������QyfL ���{"�G�_�cj��t&�u��η����}��Ykd�N=SV��l<�I��_' ��*�RTaDP$�Z�����Dt��S����h
��[~�Hb�]���9�9�;�����x�K�hق`�<�v�[�3:R�ڂ]X��%4�W�H��Z�4��%��B(e��R��6�:�n�5���>�����SXӲ �Ǝ���~4�tb$�>��j4�E��X,�4��ԣ�Zg�U3��l\�]�O��x�>��:�V>f��b�⩐��ɻ59�
#��D�h*R�$��>�� �&�
�Aϕ=Hi�+�v��^$�1$�1��dž�wG�P�UH�&��$,7�~��ɩ5d�|����OEB�r!�5-[�tQ ��F�׊��.M�����aS��QS݊ G�쵘�բc�#�=��JC`�~��%��mִn�;�`�)"�!1���W�U}ظ��\Pۼf[��No�*_v�I�1�k%�;v쿻:;;V�z���G��{�4 ��=�[w�W��q�X�JK�@��<���|�΃� Y��'�����]��p;�Dq���o��?Wl�+ф=w�۲�J �8�|,-��U���3]�Эּ(#��p�h�h9\Z�nE���8�U[��'�O�����555r�r��.$(�G��:�!�%XFK�m�$�����H$�+W�```@xE;m�֙��@��h��D��7�\�����#�}�K\`)=o��~ƐR? *KPa|ppP�/������<(k���7����pa|��o#���Ӈy�fI�K�܇%,��fU*�5::
D��R� Vp@�/���`�(��nd�Yuz����g��(-��Hݔr&����MP� 󾉕M�K�d��B� S�aEld�,꾱�yq���.ꁇGD��[�v"��$1YF�x���������9���z /��x<D�Tx�^��C�ӘH^v���}�B��P�9��߉�F_���?��jp��ߠ�~񁩀ͪE��߰����h<+�x�g+^�2��X���?����D�c�fie/��g�V�tW�Ѹ��N�9�]Hnb�� ���4���n�)����4��1��67�j�B�^�$ �b!VD��v�./�P6��A���_��>�E�"�;�>lں*��L�!\��3  =��>���w��zԆn4�1�r�['\c�2�,Ar{49��� ]ݸ M�� �x�4�P�1��^l^�s����sO#�G%�=�2�1�嶂qlk�H�d�@�,$�M@��rLLe���E�-+Z��]1��Xݸ'������H(�**7���?�Z�z�2�gNX,X�8�Z@��V(�Ts8��+CNQ�8;�w\��勸PV��Ӛ�b震p��N��yk�IDa
�|89�����\��D�.���i;���$��w�m@1�W�5%@5?�j~՞:�3� '��B�K���-�7 F��8�c~�G�eoY ��rڀh.�� ��ɯd���6<��gܐ=�߷}*כ9�f�fU��,�u�" ���W+J���D, �(&�~ ��F^n ��߁M�~�>�?�|���;U��"r0�þЏ]�v@��}ߕJn0�5aq��^�G��..�c��R�Q��
HJ�_�
p#1����di���=�9�ex�>����_���Q��{��1��U{R�V�ʯ��qy�0�h����糥D��?ห��ۭ�Z*���ߡg�OVzjd7���ލ��.:���<!�R��Y�`;�ZY`$�>�S�55nP���'�!�����VR�c����R��Ypb:��`�E\�S��{qnl/��Wr7Nr��>�X�Qɾ�~]��U�Z���>��d �K&�6 �F����A�hI@7�V޲~,n���/A��ܕ8~��Xoo�$��I��u9�/ƻ���4�N�B/-"�^�@N�8�?u�D��w �c>u�*}�9\�v1��(5p�� ��J�$��qb�x�8J�㝌M��2(���4gk�,\��gD� �aZ�"��Ă�Tʅl ��r�!D��R1á[
�{D�U�F����JY@�E@���3)�hZ*9�n����H�$��tIEND�B`�
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget0"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/widget32"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="73dp"
android:layout_y="27dp"
android:text="Shake it 0ut!"
android:textSize="30sp" />
<Button
android:id="@+id/bConfig"
android:layout_width="200px"
android:layout_height="wrap_content"
android:layout_x="87dp"
android:layout_y="141dp"
android:text="Config" />
<Button
android:id="@+id/bShare"
android:layout_width="200px"
android:layout_height="wrap_content"
android:layout_x="87dp"
android:layout_y="84dp"
android:text="Share" />
<Button
android:id="@+id/bExit"
android:layout_width="94dp"
android:layout_height="wrap_content"
android:layout_x="24dp"
android:layout_y="370dp"
android:text="Exit" />
<CheckBox
android:id="@+id/cbServiceEnable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="152dp"
android:layout_y="366dp"
android:checked="false"
android:text="Activate Service" />
<QuickContactBadge
android:id="@+id/quickContactBadge1"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_x="114dp"
android:layout_y="218dp" />
</AbsoluteLayout>
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget0"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button
android:id="@+id/Receptor"
android:layout_width="200px"
android:layout_height="wrap_content"
android:layout_x="84dp"
android:layout_y="100dp"
android:text="Receptor" />
<Button
android:id="@+id/Emisor"
android:layout_width="200px"
android:layout_height="wrap_content"
android:layout_x="86dp"
android:layout_y="42dp"
android:text="Emisor" />
</AbsoluteLayout>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, ShakeContactActivity!</string>
<string name="app_name">ShakeContact</string>
</resources>
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="android" name="Android">
<configuration />
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="jdk" jdkName="Android 4.2.2" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="lib" level="project" />
</component>
</module>
package linz.jku;
import java.io.IOException;
import java.util.UUID;
import android.app.ProgressDialog;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothServerSocket;
import android.bluetooth.BluetoothSocket;
import android.content.Context;
import android.os.AsyncTask;
import android.util.Log;
public class AcceptThread extends AsyncTask<Object, Void, String> {
private BluetoothServerSocket mmServerSocket;
private BluetoothAdapter adapter;
private UUID uuid;
private String name;
private ProgressDialog progressDialog;
private final String TAG = "AcceptThread";
private BluetoothManager btManager;
private Context CONTEXT;
@Override
protected String doInBackground(Object... params) {
// Use a temporary object that is later assigned to mmServerSocket,
// because mmServerSocket is final
adapter = (BluetoothAdapter) params[0];
name = (String) params[1];
uuid = (UUID) params[2];
CONTEXT = (Context) params[3];
this.progressDialog = (ProgressDialog) params[4];
this.btManager = (BluetoothManager) params[5];
BluetoothServerSocket tmp = null;
try {
// MY_UUID is the app's UUID string, also used by the client code
tmp = adapter.listenUsingRfcommWithServiceRecord(name, uuid);
} catch (IOException e) {
}
mmServerSocket = tmp;
DataReceiver rec;
BluetoothSocket socket = null;
// Keep listening until exception occurs or a socket is returned
while (true) {
try {
if (mmServerSocket != null) {
Log.i(TAG, "Accepting connection");
socket = mmServerSocket.accept(30000);
}
} catch (IOException e) {
break;
}
// If a connection was accepted
if (socket != null) {
Log.i("INFO", "Starting data transfer");
rec = new DataReceiver();
rec.execute(socket,CONTEXT);
break;
}
}
return null;
}
@Override
public void onPostExecute(String buffer) {
try {
mmServerSocket.close();
} catch (IOException e) {
Log.e(TAG, "posExecute Exception");
} finally {
this.btManager.setBluetoothToPreviousState();
this.progressDialog.dismiss();
}
}
}
package linz.jku;
import java.util.UUID;
import android.app.ProgressDialog;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.Toast;
public class BluetoothManager {
// SINGLETON PATTERN
private static BluetoothManager bluetooth = null;
private final UUID UUID = new UUID(0x0003, 0x0003);
private final String TAG = "BluetoothManager";
// Key used to find the destination device, both devices will change their
// name whit this key
public static final String CONNECTION_KEY = "OJETE";
private BluetoothAdapter adapter = null;
private BluetoothDevice device = null;
private ProgressDialog progressDialog;
private String PREVIOUS_NAME;
private boolean bluetoothWasRunning = false;
private BluetoothManager() {
// Getting the Bluetooth adapter
adapter = BluetoothAdapter.getDefaultAdapter();
Log.i("Bluetooth", "\nAdapter: " + adapter);
// Check for Bluetooth support in the first place
// Emulator doesn't support Bluetooth and will return null
if (adapter == null) {
Log.e("Bluetooth", "\nBluetooth NOT supported. Aborting.");
}
}
/**
* Start the transferData service. Specifically start AcceptThread to begin
* a session in listening mode (server).
*/
public synchronized void launchServer(Context c, ProgressDialog nopp,
String previousName) {
this.progressDialog = nopp;
// Start the AsyncTask
new AcceptThread().execute(adapter, CONNECTION_KEY, UUID, c,
this.progressDialog, this);
}
private static synchronized void setBluetoothManager() {
bluetooth = new BluetoothManager();
}
public static synchronized BluetoothManager getBluetoothManager() {
if (bluetooth == null) {
BluetoothManager.setBluetoothManager();
}
return bluetooth;
}
/**
* Start the ConnectThread to initiate a connection to a remote device
*
* @param device
* The BluetoothDevice to connect
*/
public synchronized void launchEmisor(Context c, ProgressDialog nopp) {
this.progressDialog = nopp;
Log.i("Bluetooth ", "conect to:" + device);
// Create the Socket
Log.i(TAG, "Starting the thread");
new ConnectThread(c, this.progressDialog).execute(adapter,
CONNECTION_KEY, UUID);
}
/**
* Change the name of the bluetooth, it is a friendly name for recognize
* the mobile which is the server
* @return
*/
public synchronized String changeName() {
// get the actual name of the device
PREVIOUS_NAME = adapter.getName();
// set the friendly name
if(PREVIOUS_NAME.equals(CONNECTION_KEY)){
adapter.setName("Shake Contact Rox");
return PREVIOUS_NAME;
}
adapter.setName(CONNECTION_KEY);
Log.v(TAG,"Friendly name changed: "+CONNECTION_KEY);
return PREVIOUS_NAME;
}
/**
* Enable the bluetooth of the device
* @param c
*/
public synchronized void enableDevice(Context c) {
CharSequence text;
if (!adapter.isEnabled()) {
adapter.enable();
text = "Turning bluetooth on";
} else {
text = "Bluetooth on";
this.bluetoothWasRunning = true;
}
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(c, text, duration);
toast.show();
}
/**
* Enable the visibility of the bluetooth during 30s
* @param c
*/
public synchronized void enableVisibility(Context c) {
Intent discoverableIntent = new Intent(
BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
discoverableIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
discoverableIntent.putExtra(
BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 30);
c.startActivity(discoverableIntent);
}
/**
* Return if the device is enable
* @return boolean
*/
public synchronized boolean isEnable() {
return adapter.isEnabled();
}
public synchronized UUID getUuid() {
return UUID;
}
/**
* Set the previous name and state of the bluetooth
*/
public void setBluetoothToPreviousState() {
Log.d(TAG, "Setting bt to previous state. " + PREVIOUS_NAME);
if (PREVIOUS_NAME != null) {
adapter.setName(PREVIOUS_NAME);
}
if (!this.bluetoothWasRunning) {
if (adapter != null) {
Log.d(TAG, "Disabling Bluetooth");
adapter.disable();
}
}
}
}
package linz.jku;
import android.bluetooth.BluetoothAdapter;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
public class btStateReceiver extends BroadcastReceiver {
private final String TAG = "btStateReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Bundle caca = intent.getExtras();
if (intent.hasExtra(BluetoothAdapter.EXTRA_STATE)){
if(caca.get(BluetoothAdapter.EXTRA_STATE).equals(BluetoothAdapter.STATE_ON)){
Log.v(TAG,"Bluetooth ON");
}
Log.v(TAG,caca.get(BluetoothAdapter.EXTRA_STATE).toString());
}
}
}
package linz.jku;
import java.io.IOException;
import java.util.UUID;
import android.app.ProgressDialog;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.AsyncTask;
import android.os.Handler;
import android.util.Log;
public class ConnectThread extends AsyncTask<Object, Void, String> {
private BluetoothSocket mmSocket;
private BluetoothDevice mmDevice;
private Context mmContext;
private String CONNECTION_KEY;
private BluetoothAdapter adapter;
private BluetoothSocket tmp = null;
private UUID uuid;
private final String TAG = "ConnectThread";
private ProgressDialog progressDialog;
public ConnectThread(Context c, ProgressDialog p) {
mmContext = c.getApplicationContext();
this.progressDialog = p;
this.progressDialog.setMessage("Searching device...");
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
public void run() {
dismiss();
}
}, 30000);
}
@Override
protected String doInBackground(Object... params) {
Log.i(TAG, "----------STARTING THE THREAD1111111");
CONNECTION_KEY = (String) params[1];
adapter = (BluetoothAdapter) params[0];
uuid = (UUID) params[2];
Log.i(TAG, "Finding device.........");
// Create a BroadcastReceiver for ACTION_FOUND
IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
mmContext.registerReceiver(mReceiver, filter); // Don't forget to
// unregister
// during onDestroy
adapter.startDiscovery();
return null;
}
public boolean findDevice() {
Log.i(TAG, "STARTING FIND DEVICE");
// Get a BluetoothSocket to connect with the given
// BluetoothDevice
try {
// MY_UUID is the app's UUID string, also used by the server
// code
tmp = InsecureBluetooth.createRfcommSocketToServiceRecord(mmDevice,
uuid, true);
} catch (Exception e) {
Log.e(TAG, e.getMessage());
}
mmSocket = tmp;
if (mmDevice != null) {
Log.i(TAG, ("----------Device discovered: " + mmDevice.getName()));
try {
this.progressDialog.setMessage("Device found");
if (mmDevice.getName().equals(CONNECTION_KEY)) {
// If we're already discovering, stop it
if (adapter.isDiscovering())
adapter.cancelDiscovery();
Log.i(TAG,
("----------DEVICE FOUND: " + mmDevice.getName()));
this.progressDialog.setMessage("Sending data...");
Log.i(TAG, "----------STARTING THE THREAD");
try {
// Connect the device through the socket. This will
// block
// until it succeeds or throws an exception
mmSocket.connect();
} catch (IOException connectException) {
Log.i("ConnectThread", "Error connecting mmSocket");
try {
mmSocket.close();
} catch (IOException closeException) {
Log.i("ConnectThread", "Error closing mmSocket");
}
return false;
}
Log.i("Bluetooth ", "connected, sending info to device: "
+ mmDevice.getName());
// Start the thread to manage the connection and perform
// transmissions
new DataSender().execute(mmSocket, null,
this.progressDialog);
// mDataTransfer.start();
return true;
}
} catch (NullPointerException e) {
Log.e(TAG, "Error, Retrying");
}
}
return false;
}
@Override
public void onPostExecute(String result) {
try {
if (mmSocket != null) {
mmSocket.close();
mmContext.unregisterReceiver(mReceiver);
}
} catch (IOException e) {
Log.e("ConnectThread",
"Error in OnPostExecute closing socket/unregistering receiver.");
}
}
public void dismiss() {
this.progressDialog.dismiss();
}
private BroadcastReceiver mReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
// When discovery finds a device
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
Log.i(TAG, "BLUETOOTHDEVICE ACTION FOuND");
// Get the BluetoothDevice object from the Intent
try{
mmDevice = intent
.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
if(mmDevice != null && mmDevice.getName()!=null){
if(mmDevice.getName().equals(CONNECTION_KEY)){
findDevice();
}
}
}catch(Exception e){
Log.e(TAG, "---Error: "+e.getMessage());
}
}
}
};
}
package linz.jku;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import android.bluetooth.BluetoothSocket;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Environment;
import android.util.Log;
public class DataReceiver extends AsyncTask<Object, Void, byte[]> {
private BluetoothSocket mmSocket;
private InputStream mmInStream;
private final static String TAG = "DataReceiver";
private Context CONTEXT;
@Override
protected byte[] doInBackground(Object... args) {
Log.i("DataReceiver", "DataReceiver Launched.");
this.mmSocket = (BluetoothSocket) args[0];
this.CONTEXT = (Context) args[1];
InputStream tmpIn = null;
// Get the input and output streams, using temp objects because
// member streams are final
try {
tmpIn = mmSocket.getInputStream();
} catch (IOException e) {
Log.e(TAG, "Error getting InputStream... " + e.getMessage());
}
mmInStream = tmpIn;
byte[] buffer = null; // buffer store for the stream
/*
* First: Read what type of data we're receiving. Only one byte.
*/
byte[] rawDataType = new byte[1];
try {
mmInStream.read(rawDataType);
} catch (IOException e1) {
e1.printStackTrace();
}
int dataType = new Integer(new String(rawDataType)); // Decoding byte.
/*
* Type 1 is for Contact. 2 for MP3.
*/
if (dataType == 1) {
try {
Log.d(TAG, "Type is CONTACT");
// Reads bytes to contact file. We couldn't save it to a
// temporary folder where Android address book could read, so
// you need a sdcard plugged in your phone.
readToFileFromBuffer(Environment.getExternalStorageDirectory()
.toString() + File.separator + "contact.vcf");
} catch (Exception e) {
Log.e(TAG, e.getMessage());
}
launchContactAdder();
} else if (dataType == 2) {
// Reads bytes to a file in sdcard. Since this method isn't working
// properly, no filename is read from stream and file is stored
// statically in sdcard only.
Log.d(TAG, "Type is MP3");
readToFileFromBuffer(Environment.getExternalStorageDirectory()
.toString() + File.separator + "music.mp3");
}
return buffer;
}
/**
* Method to read bytes from the inputStream to the given path.
*
* @param path
* absolute path where to store bytes.
*/
private void readToFileFromBuffer(String path) {
try {
// Opens the file, and if it exists, just overwrite it.
File file = new File(path);
if (file.exists())
file.delete();
FileOutputStream fOutputStream = new FileOutputStream(file);
byte[] buffer = new byte[1024]; // Read buffer.
if (mmInStream.available() > 0) {
mmInStream.read(buffer, 0, 1024);
}
/*
* First token of 1024 bytes stores this information in this order:
* - Integer with the size of the content sending. - "\n" separator.
* - Bytes of the content. So, this is the decoding steps:
*/
int sizeOfContent = Integer.valueOf(new String(new String(buffer)
.split("\n")[0])) + 1;
// Calculating offset to read bytes of content.
int offset = (new String(String.valueOf(sizeOfContent)).getBytes().length) + 1;
byte[] content = new byte[1024 - offset]; // Allocating space to
// read content.
Log.v(TAG, "Size of content: " + sizeOfContent);
/*
* First if case runs if content size is bigger to be sent in the
* first token. Most cases will use second case.
*/
if (sizeOfContent > (1024 - offset)) {
/*
* Reassign content bytes from buffer to content before writing
* to file.
*/
int counterBytes = 0;
for (int i = 0; i < (1024 - offset); i++) {
content[i] = buffer[i + offset];
counterBytes++;
}
// Writing current content to file.
fOutputStream.write(content);
content = new byte[1024];
int nextLoopContentSize;
while (counterBytes < (sizeOfContent - 1)) {
// If next loop's the last one, we change buffer size to
// match.
if ((sizeOfContent - counterBytes) < 1024) {
nextLoopContentSize = sizeOfContent - counterBytes - 1;
buffer = new byte[nextLoopContentSize];
} else {
nextLoopContentSize = 1024;
}
if (mmInStream.available() > 0) {
mmInStream.read(buffer, 0, nextLoopContentSize);
}
counterBytes = counterBytes + buffer.length;
fOutputStream.write(buffer);
}
} else {
/*
* Reassign content bytes from buffer to content before writing
* to file.
*/
content = new byte[sizeOfContent - 2];
for (int i = 0; i < content.length; i++) {
content[i] = buffer[i + offset];
}
fOutputStream.write(content);
}
return;
} catch (IOException e) {
Log.e(TAG, e.getMessage());
}
return;
}
/**
* Launchs Android activity to add contact to address book.
*/
private void launchContactAdder() {
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(
Uri.parse("file://"
+ Environment.getExternalStorageDirectory().toString()
+ File.separator + "contact.vcf"), "text/x-vcard");
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
CONTEXT.startActivity(i);
}
@Override
protected void onPostExecute(byte[] buffer) {
try {
this.mmSocket.close();
} catch (IOException e) {
Log.e("DataReceiver",
"EXCEPTION HANDLED CLOSING BLUETOOTH SOCKET ON POST EXECUTE");
e.printStackTrace();
}
}
}
package linz.jku;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import android.app.ProgressDialog;
import android.bluetooth.BluetoothSocket;
import android.os.AsyncTask;
import android.util.Log;
/*
* AsyncTask class to send data over bluetooth socket.
* If code == 1, we send the contact.
* If code == 2, we send the MP3 (Only if we shake the phone meanwhile a song is being played.) NOT WORKING YET.
*
*/
public class DataSender extends AsyncTask<Object, Void, String> {
private BluetoothSocket mmSocket;
private OutputStream mmOutStream;
private final String TAG = "DataSender";
private ProgressDialog progressDialog;
/*
* Async Method to start a new thread and send the data.
*
*/
@Override
protected String doInBackground(Object... args) {
Log.i("DATASENDER", "DATA SENDER STARTING");
mmSocket = (BluetoothSocket) args[0];
this.progressDialog = (ProgressDialog) args[2];
OutputStream tmpOut = null;
// Get the input and output streams, using temp objects because
// member streams are final
try {
tmpOut = mmSocket.getOutputStream();
} catch (IOException e) {
Log.e("DataSender", "Error getting OutputStream...");
}
mmOutStream = tmpOut;
try {
Log.e("DataSender", "WRITING MESSAGE");
int code = Shaking.getCode();
if (code != -1) {
switch (code) {
// Sending a contact
case 1:
byte[] b = Main.getDefaultContact();
// Sends dataType
mmOutStream.write(("1").getBytes());
// Get the length of the message
Log.v(TAG, "Contacto: " + new String(b));
int length = b.length;
mmOutStream.write((String.valueOf(length) + "\n")
.getBytes());
mmOutStream.write(b);
break;
// Sending a MP3 file: NOT WORKING YET
case 2:
Log.v(TAG, "ENVIAMOS EL TIPO");
mmOutStream.write(("2").getBytes());
// Get the length of the message
File mp3file = new File(Shaking.getUri().toString());
long tam = mp3file.length();
Log.v(TAG, "ENVIAMOS EL TAMANOO");
mmOutStream.write((String.valueOf(tam) + "\n").getBytes());
//mmOutStream.write((mp3file.getName() + ".mp3" + "\n").getBytes());
Log.v(TAG, "MP3 File: " + mp3file.getName()
+ " --- TAM: " + tam);
InputStream in = null;
in = new BufferedInputStream(new FileInputStream(mp3file),4096);
byte[] buf = new byte[1024];
int read;
while ((read = in.read(buf)) != -1) {
mmOutStream.write(buf);
}
mmOutStream.close();
Shaking.setCode(1);
in.close();
break;}
}
} catch (IOException e) {
Log.e("DataSender",
"Error Writing throught outStream... " + e.getMessage());
}
return "Message";
}
/*
* Method that is called just after doInBackground().
* Here we close the ProgressDialog and mmSocket.
*
*/
protected void onPostExecute(String result) {
this.progressDialog.dismiss();
try {
this.mmSocket.close();
} catch (IOException e) {
Log.e("DataTransfer",
"EXCEPTION HANDLED CLOSING BLUETOOTH SOCKET ON POST EXECUTE");
e.printStackTrace();
}
}
}
package linz.jku;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.farng.mp3.MP3File;
import org.farng.mp3.id3.ID3v1;
import service.ShakeContactService;
import android.content.Context;
import android.database.Cursor;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Environment;
import android.provider.MediaStore;
/**
* Get the list of songs in the device
*
*/
public class GetMp3List extends AsyncTask<Context, Void, List<Mp3Data>> {
// List of Songs
private List<Mp3Data> songList;
Cursor musiccursor;
int music_column_index;
int count;
MediaPlayer mMediaPlayer;
@Override
protected List<Mp3Data> doInBackground(Context... arg0) {
// Get the context
Context c = arg0[0];
songList = new ArrayList<Mp3Data>();
System.gc();
// Get the song played, including data, name, id and size
String[] proj = { MediaStore.Audio.Media._ID,
MediaStore.Audio.Media.DATA,
MediaStore.Audio.Media.DISPLAY_NAME,
MediaStore.Video.Media.SIZE };
musiccursor = c.getContentResolver().query(
MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, proj, null, null,
null);
count = musiccursor.getCount();
if (Environment.MEDIA_MOUNTED.equals(Environment
.getExternalStorageState())) {
// Get the index of the columns
int dataColumn = musiccursor
.getColumnIndex(MediaStore.Audio.Media.DATA);
// Move the cursor and get the list of songs in the device
// as MP3File
musiccursor.moveToFirst();
while (!musiccursor.isAfterLast()) {
String filename = musiccursor.getString(dataColumn);
MP3File mp3file;
try {
mp3file = new MP3File(new File(filename));
if (mp3file.hasID3v1Tag()) {
ID3v1 tag = mp3file.getID3v1Tag();
Mp3Data m = new Mp3Data(tag.getArtist(),
tag.getSongTitle(), tag.getAlbum(), Uri.parse(filename));
songList.add(m);
}
mp3file = null;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
musiccursor.moveToNext();
}
}
return songList;
}
@Override
protected void onPostExecute(List<Mp3Data> list) {
ShakeContactService.setMp3List(list);
}
}
package linz.jku;
import java.io.IOException;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.UUID;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothServerSocket;
import android.bluetooth.BluetoothSocket;
import android.os.Binder;
import android.os.Handler;
import android.os.IBinder;
import android.os.ParcelUuid;
import android.util.Log;
public class InsecureBluetooth {
static private class InUse extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
}
public static BluetoothServerSocket listenUsingRfcommWithServiceRecord(BluetoothAdapter adapter, String name, UUID uuid, boolean encrypt) throws IOException {
try {
Class c_rfcomm_channel_picker = null;
Class[] children = BluetoothAdapter.class.getDeclaredClasses();
for(Class c : children) {
Log.e("TO", "class " + c.getCanonicalName());
if(c.getCanonicalName().equals(BluetoothAdapter.class.getName() + ".RfcommChannelPicker")) {
c_rfcomm_channel_picker = c;
break;
}
}
if(c_rfcomm_channel_picker == null)
throw new RuntimeException("can't find the rfcomm channel picker class");
Constructor constructor = c_rfcomm_channel_picker.getDeclaredConstructor(UUID.class);
if(constructor == null)
throw new RuntimeException("can't find the constructor for rfcomm channel picker");
Object rfcomm_channel_picker = constructor.newInstance(new Object[] {uuid});
Method m_next_channel = c_rfcomm_channel_picker.getDeclaredMethod("nextChannel", new Class[] {});
m_next_channel.setAccessible(true);
BluetoothServerSocket socket = null;
int channel;
int errno;
while (true) {
channel = (Integer)m_next_channel.invoke(rfcomm_channel_picker, new Object[] {});
if (channel == -1) {
throw new IOException("No available channels");
}
try {
socket = listenUsingRfcomm(channel, encrypt);
break;
} catch(InUse e) {
continue;
}
}
Field f_internal_service = adapter.getClass().getDeclaredField("mService");
f_internal_service.setAccessible(true);
Object internal_service = f_internal_service.get(adapter);
Method m_add_rfcomm_service_record = internal_service.getClass().getDeclaredMethod("addRfcommServiceRecord", new Class[] {String.class, ParcelUuid.class, int.class, IBinder.class});
m_add_rfcomm_service_record.setAccessible(true);
int handle = (Integer)m_add_rfcomm_service_record.invoke(internal_service, new Object[] { name, new ParcelUuid(uuid), channel, new Binder() } );
if (handle == -1) {
try {
socket.close();
} catch (IOException e) {}
throw new IOException("Not able to register SDP record for " + name);
}
Field f_internal_handler = adapter.getClass().getDeclaredField("mHandler");
f_internal_handler.setAccessible(true);
Object internal_handler = f_internal_handler.get(adapter);
Method m_set_close_handler = socket.getClass().getDeclaredMethod("setCloseHandler", new Class[] {Handler.class, int.class});
m_set_close_handler.setAccessible(true);
m_set_close_handler.invoke(socket, new Object[] { internal_handler, handle});
return socket;
} catch (NoSuchMethodException e) {
throw new RuntimeException(e);
} catch (NoSuchFieldException e) {
throw new RuntimeException(e);
} catch(IllegalAccessException e) {
throw new RuntimeException(e);
} catch(InstantiationException e) {
throw new RuntimeException(e);
} catch(InvocationTargetException e) {
if(e.getCause() instanceof IOException) {
throw (IOException)e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
private static BluetoothServerSocket listenUsingRfcomm(/*BluetoothAdapter adapter, */ int port, boolean encrypt, boolean reuse) throws IOException, InUse {
BluetoothServerSocket socket = null;
try {
Constructor<BluetoothServerSocket> constructor = BluetoothServerSocket.class.getDeclaredConstructor(int.class, boolean.class, boolean.class, int.class);
if(constructor == null)
throw new RuntimeException("can't find the constructor");
constructor.setAccessible(true);
Field f_rfcomm_type = BluetoothSocket.class.getDeclaredField("TYPE_RFCOMM");
f_rfcomm_type.setAccessible(true);
int rfcomm_type = (Integer)f_rfcomm_type.get(null);
Field f_e_addr_in_use = BluetoothSocket.class.getDeclaredField("EADDRINUSE");
f_e_addr_in_use.setAccessible(true);
int e_addr_in_use = (Integer)f_e_addr_in_use.get(null);
socket = constructor.newInstance(new Object[] { rfcomm_type, false, encrypt, port } );
Field f_internal_socket = socket.getClass().getDeclaredField("mSocket");
f_internal_socket.setAccessible(true);
Object internal_socket = f_internal_socket.get(socket);
Method m_bind_listen = internal_socket.getClass().getDeclaredMethod("bindListen", new Class[] {});
m_bind_listen.setAccessible(true);
Object result = m_bind_listen.invoke(internal_socket, new Object[] {});
int errno = (Integer)result;
if(reuse && errno == e_addr_in_use) {
throw new InUse();
} else if (errno != 0) {
try {
socket.close();
} catch (IOException e) {}
internal_socket.getClass().getMethod("throwErrnoNative", new Class[] {int.class}).invoke(internal_socket, new Object[] { errno });
}
return socket;
} catch (NoSuchMethodException e) {
throw new RuntimeException(e);
} catch (NoSuchFieldException e) {
throw new RuntimeException(e);
} catch(IllegalAccessException e) {
throw new RuntimeException(e);
} catch(InstantiationException e) {
throw new RuntimeException(e);
} catch(InvocationTargetException e) {
if(e.getCause() instanceof IOException) {
throw (IOException)e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
public static BluetoothServerSocket listenUsingRfcomm(int port, boolean encrypt) throws IOException {
return listenUsingRfcomm(port, encrypt, false);
}
private static BluetoothSocket createRfcommSocketToServiceRecord(BluetoothDevice device, int port, UUID uuid, boolean encrypt) throws IOException {
try {
BluetoothSocket socket = null;
Constructor<BluetoothSocket> constructor = BluetoothSocket.class.getDeclaredConstructor(
int.class, int.class, boolean.class, boolean.class, BluetoothDevice.class, int.class, ParcelUuid.class);
if(constructor == null)
throw new RuntimeException("can't find the constructor for socket");
constructor.setAccessible(true);
Field f_rfcomm_type = BluetoothSocket.class.getDeclaredField("TYPE_RFCOMM");
f_rfcomm_type.setAccessible(true);
int rfcomm_type = (Integer)f_rfcomm_type.get(null);
socket = constructor.newInstance(new Object[] { rfcomm_type, -1, false, true, device, port, uuid != null ? new ParcelUuid(uuid) : null} );
return socket;
} catch (NoSuchMethodException e) {
throw new RuntimeException(e);
} catch (NoSuchFieldException e) {
throw new RuntimeException(e);
} catch(IllegalAccessException e) {
throw new RuntimeException(e);
} catch(InstantiationException e) {
throw new RuntimeException(e);
} catch(InvocationTargetException e) {
if(e.getCause() instanceof IOException) {
throw (IOException)e.getCause();
}
throw new RuntimeException(e.getCause());
}
}
public static BluetoothSocket createRfcommSocketToServiceRecord(BluetoothDevice device, UUID uuid, boolean encrypt) throws IOException{
return createRfcommSocketToServiceRecord(device, -1, uuid, encrypt);
}
public static BluetoothSocket createRfcommSocket(BluetoothDevice device, int port, boolean encrypt) throws IOException {
return createRfcommSocketToServiceRecord(device, port, null, encrypt);
}
}
package linz.jku;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import service.ShakeContactService;
import android.app.Activity;
import android.app.ActivityManager;
import android.app.ActivityManager.RunningServiceInfo;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.res.AssetFileDescriptor;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.ContactsContract;
import android.provider.ContactsContract.Contacts;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.QuickContactBadge;
public class Main extends Activity {
/*
* FINAL VARIABLES
*/
private static final String TAG = "Main";
private static final int PICK_CONTACT_REQUEST = 0;
private static final int EDIT_CONTACT_REQUEST = 1;
private String URIEncodedString;
private boolean serviceRunning;
private CheckBox cbEnableService;
private SharedPreferences mPrefs;
private QuickContactBadge badge;
// This is a contact which will be sent to the request
private static Uri defaultContact;
private static byte[] byteContact; // store a contact in bytes
/* Called when the activity is first created. */
/**
* All Activities have a method called onCreate(). This is the first method
* that is called always when an activity is started.
* ShakeContact/res/layout/main.xml
*/
@Override
public void onCreate(Bundle savedInstanceState) {
try {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Declaration of widgets
cbEnableService = (CheckBox) findViewById(R.id.cbServiceEnable);
Button bExit = ((Button) findViewById(R.id.bExit));
Button bShare = ((Button) findViewById(R.id.bShare));
Button bConfig = ((Button) findViewById(R.id.bConfig));
this.badge = (QuickContactBadge) findViewById(R.id.quickContactBadge1);
bShare.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(Main.this, Shaking.class);
startActivity(intent);
}
});
serviceRunning = serviceRunning();
// Checks enableService checkbox an running state in order to start
// or not the service.
if (cbEnableService.isChecked() && !serviceRunning) {
startService(new Intent(this, ShakeContactService.class));
}
cbEnableService.setChecked(serviceRunning);
// Setting up listeners
cbEnableService.setOnClickListener(cbEnableServiceListener);
bExit.setOnClickListener(bExitListener);
// Get the shared preferences and the Uri encoded String from memory
mPrefs = getSharedPreferences("DefaultContactFile", MODE_WORLD_WRITEABLE);
URIEncodedString = mPrefs.getString("URI", null);
// Parse the encoded String to URI and get the default Contact
if(URIEncodedString != null) {
defaultContact = Uri.parse(URIEncodedString);
contactToBytes();
}
bConfig.setOnClickListener(bConfiguration);
badge.setImageResource(R.drawable.droid);
badge.setOnClickListener(cbBadgeListener);
} catch (Exception e) {
Log.d(TAG, e.toString());
}
}
/**
* Method executed when the application is resumed.
*/
@Override
public void onResume(){
if(!serviceRunning()){
cbEnableService.setChecked(false);
}
super.onResume();
}
/**
* Get a File which contains the Contact object, get the Stream associated to the File
* and transform the Stream to a byte array
*
*/
private void contactToBytes () {
String vfile = "POContactsRestore.vcf";
byteContact = null;
// Get the default contact from the content resolver
Cursor phones = getContentResolver().query(defaultContact, null, null,
null, null);
phones.moveToFirst();
// Get the lookupKey from the contact
String lookupKey = phones.getString(phones
.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY));
// Get the VCard_Uri using the lookupKey of the contact
Uri uri = Uri.withAppendedPath(
ContactsContract.Contacts.CONTENT_VCARD_URI, lookupKey);
AssetFileDescriptor fd;
try {
// Open a file with the Contact info
fd = this.getContentResolver().openAssetFileDescriptor(uri, "r");
FileInputStream fis = fd.createInputStream();
// Get the contact in bytes
byteContact = new byte[(int) fd.getDeclaredLength()];
fis.read(byteContact);
String VCard = new String(byteContact);
String path = Environment.getExternalStorageDirectory().toString()
+ File.separator + vfile;
FileOutputStream mFileOutputStream = new FileOutputStream(path,false);
mFileOutputStream.write(VCard.toString().getBytes());
Log.d("Vcard", VCard.toString());
} catch (Exception e1) {
Log.d("vCard", e1.toString());
}
}
/**
* Return the default contact established.
* @return
*/
public static byte[] getDefaultContact() {
return byteContact;
}
/**
* Check if the service is running.
* @return
*/
private boolean serviceRunning() {
ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
for (RunningServiceInfo service : manager
.getRunningServices(Integer.MAX_VALUE)) {
if (service.service.getClassName().contains("ShakeContactService")) {
return true;
}
}
return false;
}
/**
* Set the action when the checkbox is enable to activate the service.
*/
private OnClickListener cbEnableServiceListener = new OnClickListener() {
public void onClick(View v) {
if (((CheckBox) v.findViewById(R.id.cbServiceEnable)).isChecked()) {
v.getContext().startService(
new Intent(v.getContext(), ShakeContactService.class));
} else {
v.getContext().stopService(
new Intent(v.getContext(), ShakeContactService.class));
}
}
};
/**
* Set the action when the exit button is pressed.
*/
private OnClickListener bExitListener = new OnClickListener() {
public void onClick(View v) {
((Activity) v.getContext()).finish();
}
};
/**
* Set the action when the config button is pressed.
*/
private OnClickListener bConfiguration = new OnClickListener() {
public void onClick(View v) {
Log.d(TAG, "CONFIGURATION PRESSED");
// If there's not defaultContact, launch an intent and the user have
// to create a new one
// If the defaultContact is already created, it's showed to the user
// and can be edited
if (defaultContact == null) {
Intent createContact = new Intent(
ContactsContract.Intents.Insert.ACTION,
Contacts.CONTENT_URI);
startActivityForResult(createContact, PICK_CONTACT_REQUEST);
} else {
startActivityForResult(new Intent(Intent.ACTION_VIEW, defaultContact), EDIT_CONTACT_REQUEST);
}
}
};
/**
* Set the action when the picture in main activity is pressed
*/
private OnClickListener cbBadgeListener = new OnClickListener() {
public void onClick(View v) {
if (defaultContact != null) {
startActivityForResult(new Intent(Intent.ACTION_VIEW, defaultContact), EDIT_CONTACT_REQUEST);
}
}
};
/**
* Method used when we define the contact.
*/
@Override
public void onActivityResult(int reqCode, int resultCode, Intent data) {
super.onActivityResult(reqCode, resultCode, data);
if ((reqCode == PICK_CONTACT_REQUEST && resultCode == Activity.RESULT_OK)
|| reqCode == EDIT_CONTACT_REQUEST && resultCode == Activity.RESULT_OK) {
Log.d(TAG, "ON_ACTIVITY_RESULT");
// A contact was picked. Here we will just display it
// to the user.
defaultContact = data.getData();
String dataURI = data.getDataString();
// Persist the URI information as encoded String
SharedPreferences.Editor editor = mPrefs.edit();
editor.putString("URI", dataURI);
editor.commit();
// transform the default contact to bytes
contactToBytes();
badge.assignContactUri(defaultContact);
}
}
}
package linz.jku;
import android.net.Uri;
/**
* Data with the information of a MP3 song
*
*/
public class Mp3Data {
private String name;
private String track;
private String album;
private Uri uri;
/**
* Constructor need the name, track number, album and uri of the song
* @param name
* @param track
* @param album
* @param uri
*/
public Mp3Data(String name, String track, String album, Uri uri){
this.name = name;
this.track = track;
this.album = album;
this.setUri(uri);
}
/**
* Return the name of the song
* @return name
*/
public String getName() {
return name;
}
/**
* Set the name of the song
* @param name
*/
public void setName(String name) {
this.name = name;
}
/**
* Return the track of the song
* @return string with the track
*/
public String getTrack() {
return track;
}
/**
* Set the track of a song
* @param track
*/
public void setTrack(String track) {
this.track = track;
}
/**
* Return the album of a song
* @return string with the name of album
*/
public String getAlbum() {
return album;
}
/**
* Set the album of the song
* @param album
*/
public void setAlbum(String album) {
this.album = album;
}
/**
* Return the uri associated of a song
* @return uri
*/
public Uri getUri() {
return uri;
}
/**
* Set the uri of a song
* @param uri
*/
public void setUri(Uri uri) {
this.uri = uri;
}
}
package linz.jku;
import android.app.ProgressDialog;
import android.content.Context;
import android.os.Bundle;
public class ProgressSharing extends ProgressDialog {
public ProgressSharing(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.shake);
}
}
package linz.jku;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import service.ShakeContactService;
import android.app.Activity;
import android.app.ProgressDialog;
import android.bluetooth.BluetoothAdapter;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnDismissListener;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.Uri;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
public class Shaking extends Activity {
private final String TAG = "Shaking";
private boolean service = false;
private final BluetoothManager bt = BluetoothManager.getBluetoothManager();
private static final int SERVER = 0;
private static final int CLIENT = 1;
private Button bServer;
private Button bClient;
private ProgressDialog pp;
private BTNameChangeReceiver btNCR;
private BTStateReceiver btSR;
private String previousName;
private boolean client = false;
private static int code = 1;
private static Uri uri = null;
/**
* Called when the activity is first created.
*
**/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.shake);
// stop the service on create
service = getBaseContext().stopService(
new Intent(getBaseContext(), ShakeContactService.class));
bServer = ((Button) findViewById(R.id.Receptor));
bClient = ((Button) findViewById(R.id.Emisor));
// Server button pressed
bServer.setOnClickListener(bServerListener);
// Client button pressed
bClient.setOnClickListener(bClientListener);
}
@Override
public void onDestroy() {
super.onDestroy();
if (service) {
startService(new Intent(getBaseContext(), ShakeContactService.class));
Log.i(TAG, "Service restarted");
}
}
/**
* Show a message in the screen with the info share
* @param type
*/
private void progressDialog(int type) {
pp = new ProgressDialog(this);
pp.setOnDismissListener(odlProgressDialog);
if (type == SERVER) {
pp.setMessage("Server launching...");
pp.setTitle("Receiving");
pp.show();
} else if (type == CLIENT) {
pp.setMessage("Client launching...");
pp.setTitle("Sending");
pp.show();
}
}
/**
* Create a new file with the bytes received, transform the file in Uri and
* make persist it in the Contact list
*
* @param
*/
public void setContactInDevice(byte[] stream) {
// Create new file and OutputStream and write inside the bytes received
File file = new File("Contact");
OutputStream out;
try {
out = new FileOutputStream(file);
out.write(stream);
out.close();
} catch (FileNotFoundException e) {
Log.e("DataReceiver", e.toString());
} catch (IOException e) {
Log.e("DataReceiver", e.toString());
}
// Create a Uri.Builder and a Uri using the File path
Uri.Builder builder = new Uri.Builder();
builder.path(file.getPath());
// Add the contact to contact list
Intent createContact = new Intent(
ContactsContract.Intents.Insert.ACTION, builder.build());
startActivity(createContact);
}
/*
* Listeners
*/
private OnClickListener bServerListener = new OnClickListener() {
public void onClick(View v) {
Context context = getApplicationContext();
progressDialog(SERVER);
CharSequence text = "Launching the Server";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
// Enabling the device
if (bt.isEnable()) {
bt.enableDevice(context); // Registers ON state
// Change the bluetooth name of the device,
// it helps to recognise the device
btNCR = new BTNameChangeReceiver();
context.registerReceiver(btNCR, new IntentFilter(
BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED));
previousName = bt.changeName();
// Enabling the device visibility
bt.enableVisibility(context);
return;
}
btSR = new BTStateReceiver();
context.registerReceiver(btSR, new IntentFilter(
BluetoothAdapter.ACTION_STATE_CHANGED));
bt.enableDevice(context);
}
};
private OnClickListener bClientListener = new OnClickListener() {
public void onClick(View v) {
Context context = getApplicationContext();
progressDialog(CLIENT);
CharSequence text = "Launching the client";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
Log.i(TAG, "Client launched");
client = true;
if (bt.isEnable()) {
bt.enableDevice(context); // Registers ON status
bt.launchEmisor(context, pp);
} else {
btSR = new BTStateReceiver();
context.registerReceiver(btSR, new IntentFilter(
BluetoothAdapter.ACTION_STATE_CHANGED));
bt.enableDevice(context);
}
}
};
/**
* Set the old previous state
*/
private OnDismissListener odlProgressDialog = new OnDismissListener() {
public void onDismiss(DialogInterface dialog) {
if(client){
bt.setBluetoothToPreviousState();
}
finish();
}
};
private class BTNameChangeReceiver extends BroadcastReceiver {
private final String TAG = "BTNameChangeReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Bundle caca = intent.getExtras();
// search the other device, knowing the "default" name
if (caca.get(BluetoothAdapter.EXTRA_LOCAL_NAME.toString()).equals(
BluetoothManager.CONNECTION_KEY)) {
context.unregisterReceiver(btNCR);
Log.i(TAG, "Server launched");
// launch the bluetooth server
bt.launchServer(context, pp, previousName);
} else {
return;
}
}
}
private class BTStateReceiver extends BroadcastReceiver {
private final String TAG = "btStateReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Bundle caca = intent.getExtras();
// Open the Bluetooth receiver
if (intent.hasExtra(BluetoothAdapter.EXTRA_STATE)) {
if (caca.get(BluetoothAdapter.EXTRA_STATE).equals(
BluetoothAdapter.STATE_ON)) {
Log.v(TAG, "Bluetooth ON");
if(client){
bt.launchEmisor(context, pp);
context.unregisterReceiver(btSR);
return;
}
btNCR = new BTNameChangeReceiver();
context.registerReceiver(btNCR, new IntentFilter(
BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED));
previousName = bt.changeName();
// Enabling the device visibility
bt.enableVisibility(context);
context.unregisterReceiver(btSR);
}
}
}
}
/**
* Get the code of the object, used for select a contact
* or a MP3 file
* @return integer with the code
*/
public static int getCode() {
return code;
}
/**
* Return the uri of the object
* @return uri
*/
public static Uri getUri() {
return uri;
}
/**
* Set the code of the object, used for select a contact
* or a MP3 file
* @param i
*/
public static void setCode(int i) {
Shaking.code = i;
}
/**
* Set a new uri
* @param uri2
*/
public static void setUri(Uri uri2) {
Shaking.uri = uri2;
}
}
package service;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
/**
* LockScreenReceiver manages BroadcastReceivers for types ACTION_SCREEN_OFF and
* ACTION_USER_PRESENT and starts or pauses ShakeContactService when the correct
* intent is received.
*
* @author Diego Mu�oz Callejo
*
*/
public class LockScreenReceiver extends BroadcastReceiver {
private ShakeContactService service;
private static final String TAG = "LockScreenReceiver";
/**
* Initializes BroadcastReceiver.
* @param service ShakeContactService to manage.
*/
public LockScreenReceiver(ShakeContactService service) {
this.service = service;
}
@Override
public void onReceive(Context context, Intent intent) {
/*
* Determines if should start or pause the service.
*/
if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
Log.d(TAG, "SCREEN_OFF");
service.onPause();
} else if (intent.getAction().equals(Intent.ACTION_USER_PRESENT)) {
Log.d(TAG, "ACTION_USER_PRESENT");
service.onStart(intent, getResultCode());
}
}
}
package service;
//package service;
//import java.util.Iterator;
//import java.util.List;
import linz.jku.GetMp3List;
import linz.jku.Mp3Data;
import org.openintents.sensorsimulator.hardware.Sensor;
import org.openintents.sensorsimulator.hardware.SensorEvent;
import org.openintents.sensorsimulator.hardware.SensorManagerSimulator;
//import android.app.ActivityManager;
//import android.app.ActivityManager.RunningAppProcessInfo;
//import android.app.ActivityManager.RunningServiceInfo;
//import android.app.Service;
//import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.database.Cursor;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.media.MediaPlayer;
import android.os.Build;
import android.os.IBinder;
import android.util.Log;
/**
* ShakeContact Service. Runs on background and listens to Accelerator changes
* in order to launch ShakeContact. It has implemented methods to save energy in
* case of phone idle.
*
* @author Diego Mu�oz Callejo
*
*/
public class ShakeContactService extends Service implements
SensorEventListener,
org.openintents.sensorsimulator.hardware.SensorEventListener {
/*
* Current track detection
*/
public static final String SERVICECMD = "com.android.music.musicservicecommand";
public static final String CMDNAME = "command";
public static final String CMDTOGGLEPAUSE = "togglepause";
public static final String CMDSTOP = "stop";
public static final String CMDPAUSE = "pause";
public static final String CMDPREVIOUS = "previous";
public static final String CMDNEXT = "next";
public String artist;
public String album;
String track;
private static List<Mp3Data> songList;
/**
* Broadcast receiver to set the current track and artist played in MediaPlayer.
*/
private BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
String cmd = intent.getStringExtra("command");
Log.d("mIntentReceiver.onReceive ", action + " / " + cmd);
// We have to save this information, when the mobile is being
// shaked, we have to get the file from the hard drive -something
// that remains to do .
artist = intent.getStringExtra("artist");
album = intent.getStringExtra("album");
track = intent.getStringExtra("track");
Log.d("Music", artist + ":" + album + ":" + track);
}
};
/*
* Current track detection
*/
private static Context CONTEXT;
private long lastUpdate; // sensor last time update.
private SensorManagerSimulator sensorManagerSim; // Only for testing.
private SensorManager sensorManager; // accelerometer Manager.
private boolean isSimulator; // defines if current device is a simulator o a
// real device.
private LockScreenReceiver powerSave; // Intent receiver for power save.
private static final String TAG = "ShakeContactService";
// Used to know which app is running in foreground
ActivityManager mActivityManager = null;
Cursor musiccursor;
int music_column_index;
int count;
MediaPlayer mMediaPlayer;
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
Log.i(TAG, "Service Created");
CONTEXT = this;
this.isSimulator = isSimulator(); // Determines if system is a simulator
// or a real device.
/*
* Initializes LockScreenReceiver to save battery when phone is idle.
*/
this.powerSave = new LockScreenReceiver(this);
IntentFilter filterAUP = new IntentFilter(Intent.ACTION_USER_PRESENT);
IntentFilter filterScreenOff = new IntentFilter(
Intent.ACTION_SCREEN_OFF);
registerReceiver(powerSave, filterAUP); // If using SCREEN_ON it will
// turn on when user press power
// button.
registerReceiver(powerSave, filterScreenOff);
/*
* Initializes Accelerator Managers for real device or simulator.
*/
if (isSimulator) {
Log.d(TAG, "Running in simulator mode");
sensorManagerSim = (SensorManagerSimulator) SensorManagerSimulator
.getSystemService(this, SENSOR_SERVICE);
sensorManagerSim.connectSimulator();
} else {
Log.d(TAG, "Running in real device mode");
sensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
}
//We register the filter to get MediaPlayer state changed.
IntentFilter iF = new IntentFilter();
iF.addAction("com.android.music.metachanged");
iF.addAction("com.android.music.playstatechanged");
iF.addAction("com.android.music.playbackcomplete");
iF.addAction("com.android.music.queuechanged");
registerReceiver(mReceiver, iF);
// Implemented for mp3 support. NOT SUPPORTED YET
/*if (ShakeContactService.songList == null) {
getMp3List();
}*/
}
/** Import all mp3 data in the device
*
*/
private void getMp3List() {
// AsyncTask to perform the task
new GetMp3List().execute(CONTEXT);
}
public static void setMp3List(List<Mp3Data> list) {
ShakeContactService.songList = list;
}
/**
* We destroy the service unregistering listeners.
*/
@Override
public void onDestroy() {
unregisterListener();
unregisterReceiver(powerSave); // Unregisters BroadcastReceiver.
unregisterReceiver(mReceiver);
Log.i(TAG, "Service destroyed");
}
/**
* When the service is started we register our listeners.
*/
@Override
public void onStart(Intent intent, int startid) {
registerListener();
Log.i(TAG, "Service started");
}
/**
* Pauses accelerometer service (useful to save energy).
*/
public void onPause() {
/*
* Unregisters Accelerator listeners.
*/
unregisterListener();
Log.i(TAG, "Service paused");
}
/**
* Returns current context.
*
* @return context.
*/
public static Context getContext() {
return CONTEXT;
}
public void onAccuracyChanged(Sensor sensor, int accuracy) {
}
/**
* When the virtual sensor changes, we get the values to launch or not Shaking activity.
*/
public void onSensorChanged(SensorEvent event) {
if (event.type == Sensor.TYPE_ACCELEROMETER) {
float[] values = event.values;
// Movement
float x = 1;
float y = values[1];
float z = 1;
float accelationSquareRoot = (x * x + y * y + z * z)
/ (SensorManager.GRAVITY_EARTH * SensorManager.GRAVITY_EARTH);
long actualTime = System.currentTimeMillis();
if (accelationSquareRoot >= 2) //
{
if (actualTime - lastUpdate < 200) {
return;
}
lastUpdate = actualTime;
onShuff();
}
}
}
/**
* When the real sensor changes, we get the values to launch or not Shaking activity.
*/
public void onSensorChanged(android.hardware.SensorEvent event) {
float[] values = event.values;
// Movement
float x = 1;
float y = values[1];
float z = 1;
float accelationSquareRoot = (x * x + y * y + z * z)
/ (SensorManager.GRAVITY_EARTH * SensorManager.GRAVITY_EARTH);
long actualTime = System.currentTimeMillis();
if (accelationSquareRoot >= 2) //
{
if (actualTime - lastUpdate < 200) {
return;
}
lastUpdate = actualTime;
onShuff();
}
}
/**
* Actions to do when device is shuffed.
*/
private void onShuff() {
boolean found = false;
unregisterListener();
RunningAppProcessInfo rai = getForegroundApp(getApplicationContext());
/*if (rai != null) {
Log.i(TAG, "Device was shuffed in App: " + rai.processName);
if (rai.processName.equals("android.process.media")) {
String artist2, song2, album2;
if (Environment.MEDIA_MOUNTED.equals(Environment
.getExternalStorageState())) {
if (songList != null) {
Log.i(TAG, "SONGLIST NOT NULL");
Iterator<Mp3Data> itr = songList.iterator();
Mp3Data mp3file;
while (itr.hasNext() && !found) {
mp3file = itr.next();
artist2 = mp3file.getName();
song2 = mp3file.getTrack();
album2 = mp3file.getAlbum();
if (artist.contains(artist2)
&& track.contains(song2)
&& album.contains(album2)) {
found = true;
Toast.makeText(
this,
"Device was shuffed in App: "
+ rai.processName + " track: "
+ artist + " DATA2 -"
+ artist2, Toast.LENGTH_SHORT)
.show();
Log.i(TAG,
"FOOOOOOOOUUUUUUUUUUUUUUUUUNDDDDDDDDDDDD!!!!!!!!!!!!!!!!!");
found = true;
Intent i = new Intent(CONTEXT,
linz.jku.Shaking.class)
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Shaking.setCode(2);
Shaking.setUri(mp3file.getUri());
startActivity(i);
}
}
}
} else {
Toast.makeText(this, "External SD card not mounted",
Toast.LENGTH_LONG).show();
}
}*/
if (found == false) {
Intent i = new Intent(CONTEXT, linz.jku.Shaking.class)
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
//}
}
}
public void onAccuracyChanged(android.hardware.Sensor sensor, int accuracy) {
}
/**
* Determines if service is running on a real device or simulator.
*
* @return true if it's a simulator
*/
private boolean isSimulator() {
return Build.MODEL.contains("sdk");
}
private RunningAppProcessInfo getForegroundApp(Context c) {
RunningAppProcessInfo result = null, info = null;
if (mActivityManager == null)
mActivityManager = (ActivityManager) c
.getSystemService(Context.ACTIVITY_SERVICE);
List<RunningAppProcessInfo> l = mActivityManager
.getRunningAppProcesses();
Iterator<RunningAppProcessInfo> i = l.iterator();
while (i.hasNext()) {
info = i.next();
if (info.importance == RunningAppProcessInfo.IMPORTANCE_FOREGROUND
&& !isRunningService(info.processName, c)) {
result = info;
break;
}
}
return result;
}
private void unregisterListener() {
if (isSimulator) {
sensorManagerSim.unregisterListener(this);
} else {
sensorManager.unregisterListener(this);
}
}
private void registerListener() {
/*
* Registers and starts Accelerator listeners.
*/
if (isSimulator) {
sensorManagerSim.registerListener(this, sensorManagerSim
.getDefaultSensor(Sensor.TYPE_ACCELEROMETER),
SensorManager.SENSOR_DELAY_FASTEST);
} else {
sensorManager.registerListener(this,
sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER),
SensorManager.SENSOR_DELAY_NORMAL);
}
}
/**
* Check if the service with processname is running.
* @param processname Set the process name to check
* @param c The context where we are going to check the services
* @return true/false if it is running or not.
*/
private boolean isRunningService(String processname, Context c) {
if (processname == null || processname.equals(""))
return false;
RunningServiceInfo service;
if (mActivityManager == null)
mActivityManager = (ActivityManager) c
.getSystemService(Context.ACTIVITY_SERVICE);
List<RunningServiceInfo> l = mActivityManager.getRunningServices(9999);
Iterator<RunningServiceInfo> i = l.iterator();
while (i.hasNext()) {
service = i.next();
if (service.process.equals(processname))
return true;
}
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment