/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
D | LVM_FO_LPF.cpp | 71 LVM_FLOAT Y, in LVM_FO_LPF() local 74 Y = LVM_Polynomial((LVM_UINT16)9, Coefficients, w); in LVM_FO_LPF() 75 pCoeffs->B1 = -Y; // Store -B1 in filter structure instead of B1! in LVM_FO_LPF() 77 Y = Y / 2.0f; // A0=Y=B1/2 in LVM_FO_LPF() 78 Y = Y + 0.5f; // A0=Y=(B1/2 + 0.5) in LVM_FO_LPF() 80 pCoeffs->A0 = Y * FILTER_LOSS_FLOAT; in LVM_FO_LPF()
|
D | LVM_FO_HPF.cpp | 71 LVM_FLOAT Y, Coefficients[13] = {-0.999996f, 0.999801f, -0.497824f, 0.322937f, -0.180880f, in LVM_FO_HPF() local 74 Y = LVM_Polynomial((LVM_UINT16)9, Coefficients, w); in LVM_FO_HPF() 76 pCoeffs->B1 = -Y; /* Store -B1 in filter structure instead of B1!*/ in LVM_FO_HPF() 78 Y = Y / 2.0f; /* A0=Y=B1/2*/ in LVM_FO_HPF() 79 Y = Y - 0.5f; /* A0=Y=(B1/2 - 0.5)*/ in LVM_FO_HPF() 81 pCoeffs->A0 = Y * FILTER_LOSS_FLOAT; /* Apply loss to avoid overflow*/ in LVM_FO_HPF()
|
D | LVM_Polynomial.cpp | 45 LVM_FLOAT Y, A, XTemp, Temp, sign; in LVM_Polynomial() local 47 Y = *pCoefficients; /* Y=A0*/ in LVM_Polynomial() 54 Y += ((*pCoefficients) * sign); in LVM_Polynomial() 66 Y += Temp; in LVM_Polynomial() 72 return Y; in LVM_Polynomial()
|
D | LVM_Power10.cpp | 57 LVM_FLOAT Y, Coefficients[13] = {0.999906f, 2.302475f, 2.652765f, 2.035494f, 1.165667f, in LVM_Power10() local 60 Y = LVM_Polynomial((LVM_UINT16)11, Coefficients, X); in LVM_Power10() 61 return Y; in LVM_Power10()
|
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/windowdecor/ |
D | DragDetectorTest.kt | 76 return@argThat it.action == MotionEvent.ACTION_DOWN && it.x == X && it.y == Y && in testNoMove_passesDownAndUp() 82 return@argThat it.action == MotionEvent.ACTION_UP && it.x == X && it.y == Y && in testNoMove_passesDownAndUp() 95 return@argThat it.action == MotionEvent.ACTION_DOWN && it.x == X && it.y == Y && in testMoveInSlop_touch_passesDownAndUp() 101 dragDetector.onMotionEvent(createMotionEvent(MotionEvent.ACTION_MOVE, newX, Y))) in testMoveInSlop_touch_passesDownAndUp() 106 assertTrue(dragDetector.onMotionEvent(createMotionEvent(MotionEvent.ACTION_UP, newX, Y))) in testMoveInSlop_touch_passesDownAndUp() 108 return@argThat it.action == MotionEvent.ACTION_UP && it.x == newX && it.y == Y && in testMoveInSlop_touch_passesDownAndUp() 122 return@argThat it.action == MotionEvent.ACTION_DOWN && it.x == X && it.y == Y && in testMoveInSlop_mouse_passesDownMoveAndUp() 128 createMotionEvent(MotionEvent.ACTION_MOVE, newX, Y, isTouch = false))) in testMoveInSlop_mouse_passesDownMoveAndUp() 130 return@argThat it.action == MotionEvent.ACTION_MOVE && it.x == newX && it.y == Y && in testMoveInSlop_mouse_passesDownMoveAndUp() 135 createMotionEvent(MotionEvent.ACTION_UP, newX, Y, isTouch = false))) in testMoveInSlop_mouse_passesDownMoveAndUp() [all …]
|
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsicYuvToRGB.cpp | 61 int16_t Y = ((int16_t)y) - 16; in rsYuvToRGBA_uchar4() local 66 p.x = (Y * 298 + V * 409 + 128) >> 8; in rsYuvToRGBA_uchar4() 67 p.y = (Y * 298 - U * 100 - V * 208 + 128) >> 8; in rsYuvToRGBA_uchar4() 68 p.z = (Y * 298 + U * 516 + 128) >> 8; in rsYuvToRGBA_uchar4() 94 extern "C" void rsdIntrinsicYuv_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, size… 95 extern "C" void rsdIntrinsicYuvR_K(void *dst, const uchar *Y, const uchar *uv, uint32_t xstart, siz… 96 extern "C" void rsdIntrinsicYuv2_K(void *dst, const uchar *Y, const uchar *u, const uchar *v, size_… 118 const uchar *Y = pinY + (info->current.y * strideY); in kernel() local 154 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]); in kernel() 163 rsdIntrinsicYuv2_K(info->outPtr[0], Y, u, v, x1, x2); in kernel() [all …]
|
D | rsCpuBLASDispatch.h | 28 float *Y, const int incY); 33 const int incX, const float beta, float *Y, const int incY); 61 double *Y, const int incY); 66 const int incX, const double beta, double *Y, const int incY); 94 void *Y, const int incY); 99 const int incX, const void *beta, void *Y, const int incY); 127 void *Y, const int incY); 132 const int incX, const void *beta, void *Y, const int incY); 163 const float beta, float *Y, const int incY); 167 const float beta, float *Y, const int incY); [all …]
|
D | rsCpuIntrinsicBLAS.cpp | 255 void *Y = nullptr; in invokeForEach() local 279 initABC(ain, sizeof(float), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() 281 lda, (float*)X, call->incX, call->beta.f, (float*)Y, call->incY); in invokeForEach() 284 initABC(ain, sizeof(float), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() 287 call->beta.f, (float*)Y, call->incY); in invokeForEach() 321 initABC(ain, sizeof(double), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() 323 lda, (double*)X, call->incX, call->beta.d, (double*)Y, call->incY); in invokeForEach() 326 initABC(ain, sizeof(double), &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() 329 call->beta.d, (double*)Y, call->incY); in invokeForEach() 363 initABC(ain, sizeof(float)*2, &A, &X, &Y, &lda, &ldb, &ldc); in invokeForEach() [all …]
|
/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | SurfaceFlinger_GetDisplayNativePrimariesTest.cpp | 47 primaries.red.Y = startingVal++; in populateDummyDisplayNativePrimaries() 50 primaries.green.Y = startingVal++; in populateDummyDisplayNativePrimaries() 53 primaries.blue.Y = startingVal++; in populateDummyDisplayNativePrimaries() 56 primaries.white.Y = startingVal++; in populateDummyDisplayNativePrimaries() 64 EXPECT_EQ(primaries.red.Y, startingVal++); in checkDummyDisplayNativePrimaries() 67 EXPECT_EQ(primaries.green.Y, startingVal++); in checkDummyDisplayNativePrimaries() 70 EXPECT_EQ(primaries.blue.Y, startingVal++); in checkDummyDisplayNativePrimaries() 73 EXPECT_EQ(primaries.white.Y, startingVal++); in checkDummyDisplayNativePrimaries()
|
/frameworks/rs/support/java/src/androidx/renderscript/ |
D | ScriptIntrinsicBLAS.java | 286 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { 292 !Y.getType().getElement().isCompatible(e)) { 295 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { 311 Y.getType().getX() != expectedYDim) { 331 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument 332 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local 339 long yID = Y.getID(mRS); in SGEMV() 343 yID = getDummyAlloc(Y); in SGEMV() 363 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument 364 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | ScriptIntrinsicBLAS.java | 279 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { in validateGEMV() argument 285 !Y.getType().getElement().isCompatible(e)) { in validateGEMV() 288 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateGEMV() 304 Y.getType().getX() != expectedYDim) { in validateGEMV() 324 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument 325 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local 328 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SGEMV() 346 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument 347 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local 350 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DGEMV() [all …]
|
/frameworks/rs/cpp/ |
D | ScriptIntrinsicBLAS.cpp | 184 const sp<Allocation>& X, int incX, const sp<Allocation>& Y, int incY) { in validateGEMV() argument 189 !Y->getType()->getElement()->isCompatible(e)) { in validateGEMV() 192 if (X->getType()->getY() > 1 || Y->getType()->getY() > 1) { in validateGEMV() 208 (int)Y->getType()->getX() != expectedYDim) { in validateGEMV() 214 int incX, float beta, const sp<Allocation>& Y, int incY) { in SGEMV() argument 215 validateGEMV(mRS, Element::F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() 221 beta, Y->getID(), incX, incY, 0, 0); in SGEMV() 225 int incX, double beta, const sp<Allocation>& Y, int incY) { in DGEMV() argument 226 validateGEMV(mRS, Element::F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() 232 beta, Y->getID(), incX, incY, 0, 0); in DGEMV() [all …]
|
/frameworks/base/core/res/geoid_map_assets/ |
D | geoid-height-disk-tile-5.textpb | 2 …Y\215*\344)W\241L\326\225\274}+R\332,\342\265\255\242\351Z\326\261\364\255(W\025v$\311\253\360\245…
|
/frameworks/base/services/tests/mockingservicestests/res/raw/ |
D | backup_telephony_with_password | 11 �[=�4m���`�x�����\R�}�� �f��h�?4��}J$̩2 �N�Y.]�t������3{� �/m 12 6�Y�N��&E4�4��S�e�u���� g��@c"�I-v�0B_��f�EǧZ��'��8^�կ0������?{�v5"�ہ2�U"���W��wSbG!�����eU… 24 �,e���=����3��SM��@Ɉ�ɌT I��'�ɽ��o�c�m��3;,�I���?/�i�s��X��i�3Y��U?�k�g��x�0��k��}E⣛,��… 26 …�%e�Zo�C�I��"N�]���{%���� �?"�g�;�S��ڟѧ -�Yy��I�55ң�z�s�-0�s �Џ�ԃX��s��E���XO~8�qʝ���K4��… 33 …�Gӗ��a�v�i�<]c�Ұ/ɺEg�q��sn6�u�.I��/�<tM�T{&k}��l�~jyB��2C%�@��3Y[�����J�,��5~�z�贍��… 34 >S�B�zH�o����f]�����'���P��[>ᯇ���yy����iҹ�1^Y:�d��<�W�S���v$QQ�1��3�칉���{��8�է����:_%4f… 37 …Y�!�c!��x���[���Ң�wB��dZ5K20lL?0���h4��Cmb-�q��k�5@+r��W�/��F(C�y�p���Lm~d����&�%h��b�1;�L… 38 Ɨ�u�7��*:��,ίr�(�v$!5�&���Y�!���Tig(&X_6q�>��5�2��@e��rf��[cDL��C=q��PR�Gi{A���2N��P�x�$�… 48 �6�Zd�_J������t���� ���|�T���"�"��w���qru�M5n��$ �D�(X�Y�,��D>_�XH��W[����N�W�X ����…
|
/frameworks/base/tests/LegacyRestoreTest/ |
D | jbmr2-encrypted-settings-abcd.ab | 10 …Y�e�Y��� ?A>Q��ª_j��a<�E��K��g�;�e���c��:k�(�K*rFA�ȏ�"��wR���&�%�?\��}����z��%������*���(… 15 …Yڸ ��B\�:+g�%��H��zK��;�Q2���+�b�w�-uyxj��^�qqy��>� ��`�x���⼖��0���I�0j��T�z�,aB�… 17 n��ɭ=��aA�|ݽ��8E.�h�xi�Δ��e������/��óQu|A%Y�Mp�5���Y1O���C�;X!Oq1H����}���z��~TA<2xI|KL�г�…
|
/frameworks/layoutlib/create/tests/res/mock_data/mock_android/fake/ |
D | InnerTest.java | 73 public <X, Y> void genericMethod2(X a, List<Y> b) { in genericMethod2() 76 public <X, Y extends InnerTest> void genericMethod3(X a, List<Y> b) { in genericMethod3()
|
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/ |
D | index17 | 29 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 36 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 53 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 107 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 114 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 123 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 129 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 133 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 134 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 136 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|
D | index9 | 30 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 37 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 54 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 107 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 114 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 123 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 129 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 133 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 134 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 136 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|
D | index13 | 29 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 36 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 53 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 106 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 113 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 122 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 128 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 132 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 133 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 135 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|
D | index15 | 42 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 49 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 66 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 119 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 126 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 135 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 141 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 145 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 146 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 148 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|
D | index11 | 30 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 37 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 54 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 107 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 114 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 123 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 129 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 133 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 134 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 136 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|
D | index10 | 34 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 41 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 58 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 111 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 118 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 127 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 133 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 137 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 138 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 140 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|
D | index18 | 27 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 34 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 51 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 105 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 112 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 121 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 127 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 131 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 132 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 134 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|
D | index16 | 47 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 54 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 71 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 124 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 131 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 140 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 146 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 150 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 151 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 153 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|
D | index12 | 33 1Y|� �A��4LA���GA2�f�~�������������������������������������������������������… 40 1I�Y �A�R,�eGA7��)~�������������������������������������������������������… 57 1 �� �A�B,�-�GA7�Y~������������������������������������������������������… 110 …8�M��=t�p��G��4�؎�A��R���r����|5��Du��T�mG�+;��Y��U/��.�"$�o�)B"�,��^�8�1�f��)��Y�`�… 117 YǦ �R24o�%��q�ؾC4�>��0�F���<��#�Rx(�7���N���XSpO�T2c�7�_#��Q�/f;�^ ��9� �������u�J]… 126 8f�A�����a�ђU2���s4R�{��u92_"�7����aY���z8�h�9ˁU>D��cz��j��9N��w��j�I,*u� 132 �WO��OC���[���=�g2!�,�{�t�3Yh��n<�q�6��{��lWZ�2�H;�q��*j��($hc���a�$�b� 136 …�e��Iǻ�V��@�����O&$��ܒ�i�-�q8��|%p�Y���?�l����^v�3�"���,A^�IU5���`̨<b��1����3"�N��� ���1… 137 ��KA��rR�����~�~kƶnz���.�ȉ�0��9}ի�XدQ�R<�kwf�YS�k�c�A�Y���*��&��b`t��-��WG��… 139 ވ��SX���~�R��m�7\�CN\Ȓt��Ʊ�ũ�F��Y����[?��\}o���T�[Į_;`��w��1�r1�L��R�"1J����� o����x…
|