2019-05-03 18:19:39 +02:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# encoding: latin-1
|
|
|
|
|
# Thomas Nagy, 2005-2018
|
|
|
|
|
#
|
|
|
|
|
"""
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
|
are met:
|
|
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
|
|
3. The name of the author may not be used to endorse or promote products
|
|
|
|
|
derived from this software without specific prior written permission.
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
|
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
|
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
|
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import os, sys, inspect
|
|
|
|
|
|
2024-04-02 18:44:50 +02:00
|
|
|
|
VERSION="2.0.27"
|
|
|
|
|
REVISION="7960a1ef00f01e312c17c65859d08920"
|
|
|
|
|
GIT="cd0c77725e40d970ae1ce215d51d8d59f0a46d41"
|
2019-05-03 18:19:39 +02:00
|
|
|
|
INSTALL=''
|
2024-04-02 18:44:50 +02:00
|
|
|
|
C1='#:'
|
|
|
|
|
C2='#8'
|
|
|
|
|
C3='#.'
|
2019-05-03 18:19:39 +02:00
|
|
|
|
cwd = os.getcwd()
|
|
|
|
|
join = os.path.join
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WAF='waf'
|
|
|
|
|
def b(x):
|
|
|
|
|
return x
|
|
|
|
|
if sys.hexversion>0x300000f:
|
|
|
|
|
WAF='waf3'
|
|
|
|
|
def b(x):
|
|
|
|
|
return x.encode()
|
|
|
|
|
|
|
|
|
|
def err(m):
|
|
|
|
|
print(('\033[91mError: %s\033[0m' % m))
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
def unpack_wafdir(dir, src):
|
|
|
|
|
f = open(src,'rb')
|
|
|
|
|
c = 'corrupt archive (%d)'
|
|
|
|
|
while 1:
|
|
|
|
|
line = f.readline()
|
|
|
|
|
if not line: err('run waf-light from a folder containing waflib')
|
|
|
|
|
if line == b('#==>\n'):
|
|
|
|
|
txt = f.readline()
|
|
|
|
|
if not txt: err(c % 1)
|
|
|
|
|
if f.readline() != b('#<==\n'): err(c % 2)
|
|
|
|
|
break
|
|
|
|
|
if not txt: err(c % 3)
|
|
|
|
|
txt = txt[1:-1].replace(b(C1), b('\n')).replace(b(C2), b('\r')).replace(b(C3), b('\x00'))
|
|
|
|
|
|
|
|
|
|
import shutil, tarfile
|
|
|
|
|
try: shutil.rmtree(dir)
|
|
|
|
|
except OSError: pass
|
|
|
|
|
try:
|
|
|
|
|
for x in ('Tools', 'extras'):
|
|
|
|
|
os.makedirs(join(dir, 'waflib', x))
|
|
|
|
|
except OSError:
|
|
|
|
|
err("Cannot unpack waf lib into %s\nMove waf in a writable directory" % dir)
|
|
|
|
|
|
|
|
|
|
os.chdir(dir)
|
|
|
|
|
tmp = 't.bz2'
|
|
|
|
|
t = open(tmp,'wb')
|
|
|
|
|
try: t.write(txt)
|
|
|
|
|
finally: t.close()
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
t = tarfile.open(tmp)
|
|
|
|
|
except:
|
|
|
|
|
try:
|
|
|
|
|
os.system('bunzip2 t.bz2')
|
|
|
|
|
t = tarfile.open('t')
|
|
|
|
|
tmp = 't'
|
|
|
|
|
except:
|
|
|
|
|
os.chdir(cwd)
|
|
|
|
|
try: shutil.rmtree(dir)
|
|
|
|
|
except OSError: pass
|
|
|
|
|
err("Waf cannot be unpacked, check that bzip2 support is present")
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
for x in t: t.extract(x)
|
|
|
|
|
finally:
|
|
|
|
|
t.close()
|
|
|
|
|
|
|
|
|
|
for x in ('Tools', 'extras'):
|
|
|
|
|
os.chmod(join('waflib',x), 493)
|
|
|
|
|
|
|
|
|
|
if sys.hexversion<0x300000f:
|
|
|
|
|
sys.path = [join(dir, 'waflib')] + sys.path
|
|
|
|
|
import fixpy2
|
|
|
|
|
fixpy2.fixdir(dir)
|
|
|
|
|
|
|
|
|
|
os.remove(tmp)
|
|
|
|
|
os.chdir(cwd)
|
|
|
|
|
|
|
|
|
|
try: dir = unicode(dir, 'mbcs')
|
|
|
|
|
except: pass
|
|
|
|
|
try:
|
|
|
|
|
from ctypes import windll
|
|
|
|
|
windll.kernel32.SetFileAttributesW(dir, 2)
|
|
|
|
|
except:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def test(dir):
|
|
|
|
|
try:
|
|
|
|
|
os.stat(join(dir, 'waflib'))
|
|
|
|
|
return os.path.abspath(dir)
|
|
|
|
|
except OSError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def find_lib():
|
|
|
|
|
src = os.path.abspath(inspect.getfile(inspect.getmodule(err)))
|
|
|
|
|
base, name = os.path.split(src)
|
|
|
|
|
|
|
|
|
|
#devs use $WAFDIR
|
|
|
|
|
w=test(os.environ.get('WAFDIR', ''))
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#waf-light
|
|
|
|
|
if name.endswith('waf-light'):
|
|
|
|
|
w = test(base)
|
|
|
|
|
if w: return w
|
2019-09-10 09:32:12 +02:00
|
|
|
|
for dir in sys.path:
|
|
|
|
|
if test(dir):
|
|
|
|
|
return dir
|
2019-05-03 18:19:39 +02:00
|
|
|
|
err('waf-light requires waflib -> export WAFDIR=/folder')
|
|
|
|
|
|
|
|
|
|
dirname = '%s-%s-%s' % (WAF, VERSION, REVISION)
|
|
|
|
|
for i in (INSTALL,'/usr','/usr/local','/opt'):
|
|
|
|
|
w = test(i + '/lib/' + dirname)
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#waf-local
|
|
|
|
|
dir = join(base, (sys.platform != 'win32' and '.' or '') + dirname)
|
|
|
|
|
w = test(dir)
|
|
|
|
|
if w: return w
|
|
|
|
|
|
|
|
|
|
#unpack
|
|
|
|
|
unpack_wafdir(dir, src)
|
|
|
|
|
return dir
|
|
|
|
|
|
|
|
|
|
wafdir = find_lib()
|
|
|
|
|
sys.path.insert(0, wafdir)
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-11-07 00:35:15 +01:00
|
|
|
|
from waflib import Context
|
|
|
|
|
Context.WAFNAME='waifu'
|
2024-04-02 18:44:50 +02:00
|
|
|
|
Context.WAIFUVERSION='1.2.0'
|
2019-06-07 01:22:20 +02:00
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(os.path.abspath(__file__)), 'scripts', 'waifulib'))
|
2019-05-03 18:19:39 +02:00
|
|
|
|
from waflib import Scripting
|
|
|
|
|
Scripting.waf_entry_point(cwd, VERSION, wafdir)
|
|
|
|
|
|
|
|
|
|
#==>
|
2024-04-02 18:44:50 +02:00
|
|
|
|
#BZh91AY&SY<18><><EFBFBD><01>~<7E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><7F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Uhf<>$m~d<>@<40><><EFBFBD>cܼ{<>t#.#.#.#.#.#.#.#.#.#.#.#.@#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#.{<7B><><EFBFBD>Rt<52><74>c<EFBFBD>g^]<0F><>=<3D><>G<EFBFBD><47><EFBFBD><01><><EFBFBD><EFBFBD><EFBFBD>On<4F><6E><EFBFBD>w<EFBFBD><77><EFBFBD><EFBFBD><EFBFBD>^<19>[u<>#:<3A>#8<><38><EFBFBD><EFBFBD><EFBFBD>vѻtMl<4D>`^.<2E><>í<EFBFBD>U<EFBFBD><55><F]<5D><>v<EFBFBD><76><EFBFBD>ٷ[<5B><><EFBFBD>ݷ8<DDB7><0E>V؍<56><D88D><EFBFBD><1B>9<EFBFBD><39>v<EFBFBD>=<3D>G<EFBFBD>2<EFBFBD>N<EFBFBD>-<2D><><EFBFBD>wN<77><4E><17>K|{.<2E><><EFBFBD><EFBFBD>=7#8<>Rw<52>}<7D><><EFBFBD>i:<3A>5<EFBFBD>@ٞ<02><>#8<><38>J<1D>rv<72>θ(E<><45><EFBFBD><EFBFBD><EFBFBD>UTH*<2A>F<><46>Һ;<3B><><EFBFBD><EFBFBD>&<26>{u<><75>u<EFBFBD><75>v<EFBFBD>|{<}<7D><>>#.<02><><EFBFBD><EFBFBD>#.*ŭ<>K<EFBFBD><4B><EFBFBD>H<EFBFBD>]<06><>P*m<>,<2C><>5Z<35><5A>-<2D>]<5D>uAUQ<55>#:#:<3A><><EFBFBD>iQi<><69><1A><>s<EFBFBD>u<EFBFBD>ww$<24><><EFBFBD> m<><6D>UY<55>r<Ǿ<>:<3A>)g<><67>z<EFBFBD><7A><EFBFBD>s2)A<><41><EFBFBD>/{<7B><><7<><37><EFBFBD><EFBFBD>S]<5D><><01><>z<EFBFBD>ɒ<EFBFBD><C992><EFBFBD>wL<77>f<EFBFBD>Ǽr<C7BC><72>ؾǯ<D8BE>GMu<4D><75>yn<79>U%TU#.(!@Ja<>B<EFBFBD><42>à<EFBFBD><C3A0><EFBFBD>:JDv +<2B>}<7D>}<7D><>/<02>wB<77>Y<EFBFBD><59><EFBFBD><EFBFBD>=<1B>v<EFBFBD>5><3E><><EFBFBD><EFBFBD><EFBFBD>ݺ}<7D><><EFBFBD><EFBFBD>J#:#8<06><><EFBFBD>Oy<4F>p#.#.#.#.#.#.<2E><><EFBFBD>#8<0E>U<EFBFBD>O<EFBFBD><4F>|<03><>/`<60><>#.<06>J<EFBFBD>h<EFBFBD>6<EFBFBD><36>t<EFBFBD>Nӭ<4E><D3AD><EFBFBD>;<3B><><EFBFBD>٥h#.<01>J9<4A><39>Vδt<CEB4>d<EFBFBD>t4V[w#.5ӐV<EFBFBD><02><><EFBFBD>p<06><>Mb<4D><02>o<EFBFBD>ސAA!@$<24>:#.Ҁ<>B<EFBFBD>hh<0C><>wc<77>X<06>8P<06>Os<4F>+<2B>ﻰ<EF8F95><EFBBB0>y<EFBFBD><79>#8<>U]kT60$̍R<>ik<69><6B>Q{Ϯ9^<5E>{<7B><EFBFBD>U#.j<><#.<07><><EFBFBD><EFBFBD>jk<6A>}<7D><>^<5E><><EFBFBD><EFBFBD><EFBFBD><07><><EFBFBD>L<EFBFBD><4C><EFBFBD>]<5D><>u+<2B><><EFBFBD><EFBFBD>w<EFBFBD>w<EFBFBD>\<5C><><EFBFBD><EFBFBD><EFBFBD><13><><EFBFBD><0C>5<EFBFBD><35><EFBFBD>o{<7B><><EFBFBD>}#8<><38>[u<>o<EFBFBD>o7<6F><37><1E><><EFBFBD>wd<77><64>TD<54><44><12><><EFBFBD>T<EFBFBD><54><EFBFBD><EFBFBD><EFBFBD>#8<1E>#:=<3D><>6<EFBFBD>n;<3B>+<2B>kf<6B>X<EFBFBD>sv<73>ی<EFBFBD><06>f<EFBFBD>`<60><><EFBFBD><EFBFBD><EFBFBD>1x<31><78>zwε<><CEB5><EFBFBD>à;<3B>U<EFBFBD><03><>2<EFBFBD><32><EFBFBD><EFBFBD>vګ<76>C<EFBFBD>g+<>v<EFBFBD><76>ڼ<EFBFBD>k<EFBFBD><6B><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>n<EFBFBD>kfWw;<3B><><EFBFBD>]<5D><><EFBFBD><EFBFBD>0<16>;<3B><>͝<EFBFBD>uK<75>W=<3D><><EFBFBD>}t<><74><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>oOVc6hR<68><52>nў<6E>W<EFBFBD><57>u˭}}<7D>w<EFBFBD>s<EFBFBD><73><EFBFBD><EFBFBD>}<7D><><EFBFBD><EFBFBD>yݶ3o<33>w<EFBFBD><77>;<3B><>M<EFBFBD><4D><EFBFBD><EFBFBD>C{<7B><><EFBFBD>9<EFBFBD>e<EFBFBD>6<EFBFBD>e<EFBFBD>k|<7C><><EFBFBD><EFBFBD>{<7B><><EFBFBD><EFBFBD><EFBFBD>|+<2B><>wz<77>:<3A>Jl<4A><6C><EFBFBD>Y<EFBFBD>Ҫ<EFBFBD><D2AA>ݧ֓ݱ<D693><DDB1>6<EFBFBD><36><EFBFBD>{<7B><>o<EFBFBD><6F><EFBFBD>ٍjԱ<6A>72\s<>Nm<4E><6D>n/7<><37><EFBFBD>۟cǼZ<C7BC>Z<EFBFBD><0E>.r<>=h`{<7B><><EFBFBD><EFBFBD><EFBFBD>><3E>_wɶN<>Mo<4D>8<EFBFBD><38>[<5B><><EFBFBD><EFBFBD>i<EFBFBD>:<3A>}rs<72>j<EFBFBD>iپ<69>k<EFBFBD><6B><EFBFBD><EFBFBD><03><><EFBFBD><EFBFBD>PN<><4E><EFBFBD>S`<60><>Ib`<60><>\a<>N<><4E>_><3E>}<7D>:<3A><><EFBFBD>OON<0B><><EFBFBD>mj<6D>뾎<EFBFBD><EBBE8E>֝<EFBFBD><D69D>f<EFBFBD>mw<6D>ڵ<EFBFBD>m4<6D>ٻ<EFBFBD>r<EFBFBD>m<EFBFBD><6D><1E>y<EFBFBD><79><EFBFBD>:z<><7A>g<EFBFBD><67>h<1E>i<EFBFBD><69>wf<77>[<5B>UvF哫<46>3tR<74><52>ԡ+<2B>j#.<13><>8<>T<EFBFBD>{v]^;5<>,<19>#.#.<2E>R<><52>y<03><>6<><36>#8k eM<03>#:<3A><><0E>UJ<55><07><>=<0E><>kV<6B>+b<>L<EFBFBD>k<EFBFBD><6B>s<EFBFBD><17><01>.+<2B>Q)J<><4A><EFBFBD><EFBFBD><EFBFBD>0<EFBFBD><30>+<2B><0B>p<EFBFBD><04><><EFBFBD>Ŵ7]<5D>^P#:/M_l<5F><6C><EFBFBD><EFBFBD><EFBFBD>[ۻ<><DBBB><EFBFBD>*E!*<2A>L<EFBFBD><4C><EFBFBD>e<EFBFBD> <20><>+<2B>v<17>N<EFBFBD><4E><EFBFBD>}ۡ<><DBA1><EFBFBD>CJ<43>{<7B><><EFBFBD><EFBFBD> #.<1B><>NViVv<56><76>&G{ڝ!<21><><EFBFBD><1C>g<EFBFBD>=<3D>]<5D><><EFBFBD>j<1D>N<EFBFBD><4E>Y<EFBFBD>85#:<3A><>ڽq벙]B<>ۻ:Pj#.<05>vmI<0B>WԘmDj<44><6A><EFBFBD><EFBFBD>4<0C>n9<6E><39><EFBFBD>̇<02><1A>X<EFBFBD><58><EFBFBD>_v<5F><76><EFBFBD><EFBFBD>k<EFBFBD>#.<2E>q)<29>S1<53>#.<2E><>f<EFBFBD><12>#<23><>܉Ͷ<DC89>O]<5D>3<EFBFBD>V<EFBFBD><56>E흶<>sY<73>wd<><64><EFBFBD><EFBFBD><EFBFBD>b<EFBFBD>g*<2A>붏g4{c<><63><EFBFBD><EFBFBD>Ơ<EFBFBD><C6A0>7<EFBFBD><37><EFBFBD>v<EFBFBD>=z<><7A><EFBFBD><EFBFBD>;<3B><>S<EFBFBD><53>l<1D><><14>λ<EFBFBD>e/<2F><1E>b<EFBFBD><62><EFBFBD>O<EFBFBD>NZ<4E><5A><EFBFBD><EFBFBD><EFBFBD>^<5E><1C><>ג<EFBFBD><D792><EFBFBD><EFBFBD>t<><0E>#.M<>F<EFBFBD>=<1E><EFBFBD>4<EFBFBD><34>Փ<EFBFBD>u^۱<><DBB1><03><><EFBFBD>k4&CP<02>H1#.<2E>6PCm<43><6D>㹓R<E3B993><52>m<EFBFBD>b<EFBFBD><62><EFBFBD>S{<7B><><EFBFBD>>-<2D><><1D>#8<01>m<EFBFBD><6D>(:݁v9*<2A><>d<EFBFBD><64>td5<64>l<EFBFBD>r%<25>-<2D>#::`:<3A><><EFBFBD>*<2A>c<EFBFBD><63><EFBFBD><EFBFBD>R<EFBFBD>vɰ<76><C9B0><EFBFBD>v}<7D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ye<59>Vw76<37><16> Bp<42>h<0B><><1B>m+ֻwt<1B>b<EFBFBD><62>l<EFBFBD><0B><02>p<EFBFBD>p:D;7-t㮷Y<E3AEB7><59><EFBFBD><EFBFBD>Q<EFBFBD>k<EFBFBD><6B><EFBFBD>:<3A><0B><>PeN<65><03><><EFBFBD>k<EFBFBD>)<29>kUn<55><1B>t<0F>#.jT(A<>><3E><>"<08>nǐ=z<>A<>'C<><43><EFBFBD>uB<75><42>{<7B>.<2E><1A>nΕ=<3D><>>`<60>i<EFBFBD>[dUۻ]#8v<38>fdf湆I<E6B986><49><EFBFBD>й<EFBFBD><D0B9>Ema$<24><><EFBFBD>fv<06>n<6E>z\<5C>W<EFBFBD><57><EFBFBD><EFBFBD>o^<5E>TP<54><50><EFBFBD>YQ 3<>]<5D><>#.l<>#.<2E><><06><06><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Sڪ6iBє<42><D194>{*#:<3A>p<EFBFBD>aU<61><55><EFBFBD>fn<66>><3E><>8<EFBFBD> T<><54><EFBFBD>r<EFBFBD><72>Q<EFBFBD><51><EFBFBD><11><><EFBFBD>d<>9v=QmD<6D>d3<64>H <09>a<EFBFBD><61>ò<EFBFBD>l<EFBFBD>p6<70><36>Z<EFBFBD><5A>(E<>s/<2F><>g<EFBFBD>g<EFBFBD>[<5B>Yu<59><75>l٫<6C>{{<7B>S<>vR<76>x<EFBFBD>uxl<><6C><EFBFBD>ݲ)Rv<52>S^x<>L&<26>Z<EFBFBD>{o<><6F>_o<5F><6F> #.@4#.&@ <09> <09> <09>LS<4C><53>LO2zjdɓh<C993>O<EFBFBD>6<EFBFBD>OSOL<4F><4C><EFBFBD>i=A)<29>B <04>22?3 <09>?T<07><>Q<><01>#.#.#.#.<01>#.#.#. <20>!2 #&<26><><EFBFBD><EFBFBD>T<EFBFBD>S<EFBFBD><53>SyI<79><49><EFBFBD>OSlT<6C><1E><><EFBFBD>S&<26>Р<01>#.#.#.#.#.#.z<><7A><EFBFBD>Bz<14>j<>S<EFBFBD>)<29>ѨF<>P#.<2E>z<EFBFBD>#.#.z<>hmA<6D>#.#.#.#.#.#.#8)!#. &@LLFL)<29>'<27><>4<>SƚS<C69A><06>&<26><>h#.#.#.#.#.<06><04><><EFBFBD>#.<2E>FC@&<26>h#.#CL<43>&<26><>T<EFBFBD>Tޔ<54>G<EFBFBD>hz<68><06>#.#.#.#.#.<03>Я<>*<2A><><07>{<7B><>t<EFBFBD><74>hծkyUoy<6F><79><EFBFBD>V<7F><56><EFBFBD><EFBFBD><14><0C>$B<>UYt<59>m<EFBFBD><6D><EFBFBD><01>)#. H<><48><EFBFBD>"<22><>~#<16><><EFBFBD>d<EFBFBD>_<EFBFBD><5F><EFBFBD><EFBFBD>.1o<15><><EFBFBD><EFBFBD>j<EFBFBD><6A><EFBFBD>X+BOO<><4F><EFBFBD>>,<2C><<13>VN.<2E><>b<EFBFBD><14>ە<EFBFBD>H<><48><EFBFBD>ϥ<18><>҈QL<0F>?<3F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><01>#.<2E><><EFBFBD><EFBFBD>(<14><> >f#:<3A><><03><>6<>c<EFBFBD>bSKE<4B>+=b<><62>YGdM<64><4D>dh<64><68><EFBFBD>w<EFBFBD><77><EFBFBD><EFBFBD>젚^Q<><51>*<2A>K<13>K<EFBFBD>C<EFBFBD>i<11><><EFBFBD><EFBFBD><18>#:<3A>b<>P<EFBFBD>N1XEA#:<3A><><EFBFBD>y<EFBFBD>^F<><46><03>y<EFBFBD><79><EFBFBD>cH.<2E>K<EFBFBD><4B><EFBFBD><EFBFBD>AIҴm <18>I<EFBFBD><49><EFBFBD><13>b <20>Y<EFBFBD><59>H#.<2E><>P<EFBFBD><02>^Z<>ʪb&<26><><EFBFBD>\֫q2AW! @<40><> L p<>*<2A>E<EFBFBD><03><>/<2F>_<EFBFBD>p<EFBFBD>q<01><>b <09>U#:<18><>U)<29>H<>'<27><><EFBFBD>"R<><52><EFBFBD>0<EFBFBD>E1S R<>bQhP<68>?<3F>T<EFBFBD>E<EFBFBD>#.<2E> :P<>TI`<60>e<EFBFBD>Qt@MKI%<18><>1<19><>.<2E>z<EFBFBD>pS<06><>mf"<22>F<EFBFBD>|ҡF<D2A1>((#.|<7C>D<0E><><EFBFBD>P(<28> <20>#.%#:- *6<><36><EFBFBD><EFBFBD><EFBFBD>[V<>I<12> <20>D<EFBFBD><11>$<24><><EFBFBD>I<EFBFBD><49>A%2i1M$H<><48> L<><04>"&̣D<11>fRi#0"@S2H<32>"jF&*eE<65>[f<>1<EFBFBD>6""fL<66>"%Rajj<6A><6A>Z<EFBFBD>d<>h<EFBFBD>jj6<6A><36>*<2A>6<EFBFBD>jM2<4D>#84)<29><>14<><34>-<2D><>YMm<4D>m<EFBFBD><6D>e<EFBFBD><05>%<25>),cj<14>J5<4A><35>6QQ2<51>%bD<62>2<EFBFBD><32><EFBFBD>A<EFBFBD>#:<3A>R̔<>FI<46><49><EFBFBD>R<> <20><02>%<25><>)%<25><>l$Bld<6C>4<EFBFBD><34><EFBFBD><EFBFBD><02>Ųj2<6A><32>b<EFBFBD><62>LQ<4C><51>3<19>6<EFBFBD><36>M<EFBFBD><4D>cL<63>M<EFBFBD>h<EFBFBD>Md<4D> lcX%<25><>4<EFBFBD>fX"<18>%<25>Za<5A>C#.<2E><>Q<EFBFBD><51>6<EFBFBD>[ILjm<6A>ijH<6A>Қ<EFBFBD>3m<06><>a<EFBFBD><61>I<EFBFBD>fd<><64><12>L6<4C>,ء<><08>6<EFBFBD>M*K!<21>ֶV<D6B6><56><EFBFBD>l<EFBFBD><6C>M%<25>1b<31>2<EFBFBD><32>H)f<><66><EFBFBD>D<EFBFBD><44>2<EFBFBD><32><EFBFBD><EFBFBD>bm5<6D><35>Sm<53>S$<24><>3h2TĘRY<52><59>)6<><36> <09><>QPQ"F<>ȖH<C896><10>L<EFBFBD>H<EFBFBD>Q"h<>EFPP<50>2&̈<>*"#8Jb#8J<04>0<><30>I2Q#I<>L<EFBFBD>UbRjK <09><>J<EFBFBD>$<24><14>3!#8I5f<19><>F$<24>,<2C><>-<2D>RcE<63><04>F<EFBFBD><0C>RB4ViK5RdSL<53>%)<29><><EFBFBD>dč<64><01>dX<64><58><EFBFBD>1<EFBFBD><31>Y(ڍE<><45>fI<66><49> )<29>%ERB<52>&)<29>3`<60>*I&2<><32>5$<24>I<EFBFBD>F$<24><>2<EFBFBD><32>"KD$<24>F<EFBFBD><46>M"<22>DQ<44><04>(<28>%$I"<22><>E<><45>0e<12><>J!<10><>ZR<5A>K<18>b0I<30>,<2C>b<EFBFBD>T<EFBFBD>(<28>)<29>e,<2C><><08>"R<><52>D<EFBFBD><44>i$f<><66>vJL6<4C>cE<63>3I<33><49>K1<4B>1$E<><45><EFBFBD>&ɋE<C98B><14>&TH<54><48>"6<>&<26><>J<EFBFBD><4A>RJ1<4A>T<EFBFBD><54>BD<42><44>H<EFBFBD><48>ciMҖF<>ʙcD<63>d<EFBFBD><1A><>YBjc0!<21>T<EFBFBD>J<14> <09>m$<24><06><><10><><14><14><>l<11><><EFBFBD>A2<41>4<EFBFBD>Q#BA<42> <01><0C>l<>*h<><68>b<EFBFBD><62>͊<EFBFBD>ěSL<53>&)e<18>55 Me4Ś!<21>P<EFBFBD><50><EFBFBD>B<EFBFBD>F<EFBFBD>#:*#8b#F<>lI<6C><49>dԑ<64><D491><EFBFBD>cb4<62>͓L<CD93><4C><EFBFBD>Fm<19><>kDF<08>32̓)cdjT<6A>,؉#8<><38>KdRѐ<52><D190>1<EFBFBD>2<EFBFBD>X<>,<2C><>E$<24>$<24>JmH<><48>$<24>CLl<4C><6C>$<24>EM2<4D>C(<28><>) <09><>J1BCa<43><61><12><>1<EFBFBD>bf<62><66>i#:<3A>f<EFBFBD><66>VMa(<28><><EFBFBD> ĕ$S&<26>V<EFBFBD>e4dJHC<1A>1"!&l<><6C><EFBFBD>f<EFBFBD>YdJ&<26>F<EFBFBD>jV<6A>ҁD<D281><44><EFBFBD><EFBFBD>B<14>!X<>e<EFBFBD>e3R1<52><31><0C>1<>S<1A>PY2DL<44><4C>6<EFBFBD><36><EFBFBD>i<EFBFBD>,`<60>Bl<42>2LB<4C><42>d<><64>
|
2019-05-03 18:19:39 +02:00
|
|
|
|
#<==
|