Ismaila Sy

Ismaila SY #5

  • Date de naissance1979-05-29 (46 ans)
  • Lieu de naissanceVersailles (FRA)
  • PosteArrière
  • Taille1.92 m
  • NationalitéFRA
MINUTESPOINTS% TIRSREBONDSPASSES
-----
Statistiques cette saison toutes compétitions confondues

Cette saison

TYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTEFPEFF

Carrière

SAISONTYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTEFPEFF
1415SRSORNM19725:0111.43.69.338.125.337.52.32.691.30.92.33.20.722.902.91.710.2
1314SRSTQProB12114:206.624.940.70.83.3251.82.3750.31.31.70.72.11.302.12.34.6
1213SRFOSProB7728:177.12.7738.80.93.6240.9185.70.63.74.30.72.14.402.1210
1112SRLEPProB301220:446.62.35.541.51.23.238.50.80.985.70.52.42.90.71.510.11.70.86.4
1011SRLEPProB342119:285.41.84.540.50.92.732.60.8182.40.62.22.80.61.3101.91.35.6
0910SRFOSProB201024:307.72.86.7411.33.932.511.186.40.62.42.90.92.52.50.12.92.17.5
0809SRBOCProB4220:005.825.834.80.83.82011.566.70.311.31.52.81.302.51.82.8
0809SRBOUProB5025:125.82728.61.24.626.10.60.8750.42.22.612.81.402.62.42.8
0809SRCLTProB11729:169.93.38.2401.75.531.71.61.985.70.73.341.11.2302.82.511.6
0708SRHYEBetclic Elite7314:343.91.13.334.80.62.126.711.4700.91.42.31.11.62.901.71.76
0506SRBREBetclic Elite27919:376.92.4733.70.73.321.31.41.686.40.51.62.111.82.302.62.15.6
0304SRNANBetclic Elite13118:557.92.96.247.50.21.515.81.82.3801.51.73.20.81.520.12.62.48.7
MOYENNE - 10 saisons1848521:026.92.4638.913.329.61.21.483.10.62.12.80.81.81.902.31.86.7
SAISONTYPEEQUIPECHPTMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTEFPEFF
1415SRSORNM133:0917511504766.75510025724405518
1314SRSTQProB19:00135871.42666.74610024528204516
1213SRFOSProB36:00146148028502210026724503617
1112SRLEPProB35:0016514100491005610037734415317
1011SRLEPProB37:0018510100461004610038935404520
0910SRFOSProB34:001961166.758754410025646615520
0809SRBOCProB39:002491466.761154.655100291135505730
0809SRBOUProB39:002491466.761154.655100291135505730
0809SRCLTProB39:002491466.761154.655100291135505730
0708SRHYEBetclic Elite36:00166106036503410024434605321
0506SRBREBetclic Elite40:001541460281006710024545805616
0304SRNANBetclic Elite34:002161366.7125091010056723515820
RECORDS EN CARRIÈRE40:0024914100611100910100591148815830
SAISONTYPEEQUIPECHPTMJTITMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTEFPEFF
1213POFOSProB2217:00315.518.202011100123121040.51.5
1011POLEPProB3320:2072.3638.90.32.712.522.385.70.333.311.70.301.72.76
MOYENNE EN PLAY-OFFS5519:005.41.85.8310.22.48.31.61.888.90.62.63.211.80.602.61.84.2
SAISONTYPEEQUIPECHPTMINPTSTRTT%T3RT3T%LFRLFT%RORDRTINTBPPDCOFTEFPEFF
1213POFOSProB18:0042728.6020221002352310414
1011POLEPProB25:0093866.71520341001552310448
RECORDS EN PLAYOFFS25:0093866.71520341002552310448
Fantasy Basketstats

Newsletter

Sondage

ERROR
(function($){ CUWait = { //init_delay:0,//(debug) init_delay:1000, cnt : 0, panel : null, timer_id : null, dice_id : 0, rand : function( min, max ) { return Math.floor((Math.random() * max) + min); }, randColor : function() { var px = ["00","33","66","99","FF"]; return "#" + px[this.rand(0,px.length)] + px[this.rand(0,px.length)] + px[this.rand(0,px.length)]; }, createInner : function() { var nx = 2; var ny = 2; var dx = 20; var dy = 20; var w = 20-2; var h = 20-2; this.dice = []; for ( var y = 0; y < ny; y++ ) { for ( var x = 0; x < nx; x++ ) { this.dice.push( $("
") .css({ position:"absolute", left:(x*dx)+"px", top:(y*dy)+"px", width:w+"px", height:h+"px" }) .appendTo(this.panel) ); } } }, animateInner : function() { if ( this.dice_id >= this.dice.length ) { this.dice_id = 0; } var die = this.dice[this.dice_id]; this.dice_id++; die.css({ "background-color":this.randColor() }); }, create : function(e) { if ( this.cnt == 0 ) { return; } var z = 10000; var w = 40; var h = 40; var left = (e.pageX - w/2); var top = (e.pageY - h/2); //-- panel this.panel = $("
") .css({ position:"absolute", left:left+"px", top:top+"px", width:"40px", height:"40px", margin:0, padding:0, opacity:0, filter:"alpha(opacity=0)", "z-index":z }) .appendTo('body'); //-- panel inner this.createInner(); //-- show this.panel.show(); //-- make it visible after init_delay var _this = this; setTimeout(function(){ _this.visible(); },this.init_delay); }, visible : function() { if ( this.cnt == 0 ) { return; } //-- panel this.panel .css({ opacity:0.5, filter:"alpha(opacity=50)" }); //-- panel inner var _this = this; this.timer_id = setInterval(function(){ _this.animateInner(); },50); }, destroy : function() { if ( this.panel == null ) { return; } //-- panel inner if ( this.timer_id != null ) { clearInterval(this.timer_id); this.timer_id = null; } //-- panel this.panel.fadeOut(function(){ $(this).remove(); }); this.panel = null; }, start : function( e ) { this.cnt++; if ( this.cnt == 1 ) { this.create( e ); } }, stop : function() { if ( this.cnt > 0 ) { this.cnt--; if ( this.cnt == 0 ) { this.destroy(); } } } }; //---------------------------------------------------------------- // CApp //---------------------------------------------------------------- var app_object_selector = '.ajax-poll'; function CApp( jobj ) { this.children = []; this.jQueryX = $; this.jobj = jobj; this.tclass = this.getAttr( 'tclass', jobj ); this.tid = this.getAttr( 'tid', jobj ); this.url_app_entry = 'https://www.basketstats.fr/sondage/ajax-poll.php'; this.url_app_root = 'https://www.basketstats.fr/sondage/'; this.url_app_img = 'https://www.basketstats.fr/sondage/app.img/'; this.appid = this.makeRandomString( 64 ); this.app_init_cmd = 'init'; this.tipbox = null; if ( this.app_init_cmd != '' ) { this.send( { "cmd" : this.app_init_cmd } ); } } CApp.prototype = { isIE7 : function() { return (navigator.appVersion.indexOf("MSIE 7.")!=-1); }, isIE8 : function() { return (navigator.appVersion.indexOf("MSIE 8.")!=-1); }, leIE8 : function() { return this.isIE7() || this.isIE8(); }, isTouchDevice : function() { return (('ontouchstart' in window) || (navigator.MaxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0)); }, showWaitIcon: function( e ) { CUWait.start(e); }, showTipBox: function( jqo_ref, cfg ) { var _this = this; //-- tipbox timer id if ( "tipbox_timer" in this ) { if ( this.tipbox_timer != -1 ) { clearTimeout(this.tipbox_timer); } } this.tipbox_timer = -1; this.hideTipBox(); var jqo_cont = jqo_ref.parents("."+this.tclass); var jqo_inner = jqo_cont.find('.poll-inner'); //-- tipbox var jqo = jqo_cont.find('.poll-tipbox-'+cfg['class']) .html(cfg["txt"]); this.tipbox = jqo.parent('.poll-tipbox'); this.tipbox.stop(true,true) this.tipbox.show(); //-- animate var ref_pos = jqo_ref.position(); var xt = parseInt((jqo_inner.width()-this.tipbox.width())/2); var ht = this.tipbox.height() + 10; var yt = ref_pos.top - ht; var xm = 0; var ym = 30; var period = ( "period" in cfg ) ? cfg["period"] : 2500; var opa = this.tipbox.css("opacity"); this.tipbox .css({ "left":(xt - xm) + "px", "top":(yt - ym) + "px", "opacity":0 }) .animate({ "left": "+=" + xm + "px", "top": "+=" + ym + "px", "opacity":"+=" + opa }, 300, function(){ _this.tipbox_timer = setTimeout(function(){ _this.tipbox.fadeOut( 500, function() { _this.hideTipBox(); }); },period); }); }, hideTipBox: function() { if ( this.tipbox != null ) { this.tipbox.hide(); } }, //----------------------------------------------- // makeRandomString( n ) //----------------------------------------------- makeRandomString : function ( n ) { var s = ""; var src = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; for( var i=0; i < n; i++ ) { s += src.charAt( Math.floor( Math.random() * src.length ) ); } return s; }, //----------------------------------------------- // errBox //----------------------------------------------- errBox : function( data ) { var errbox_sig = ""; if ( data.substring( 0, errbox_sig.length ) == errbox_sig ) {// prevent double errbox return data; } else { var msg = ''; msg += "
"; msg += "
ERROR
"; msg += "
"; msg += data; msg += "
"; msg += "
"; return msg; } }, //----------------------------------------------- // getAttr //----------------------------------------------- getAttr : function( id_name, jobj ) { if ( ( typeof( jobj.attr( id_name ) ) == 'undefined' ) || ( jobj.attr( id_name ) == '' ) // for Opera ) return ''; return jobj.attr( id_name ); }, //----------------------------------------------- // send //----------------------------------------------- send : function( json ) { json['appid'] = this.appid; json['tclass'] = this.tclass; json['tid'] = this.tid; var _this = this; $.post( this.url_app_entry, json, function(data) { _this.process(data); }); }, //----------------------------------------------- // addChild //----------------------------------------------- addChild : function( child ) { this.children[child.name] = child; return child; }, //----------------------------------------------- // getChild //----------------------------------------------- getChild : function( name ) { return this.children[name]; }, //----------------------------------------------- // sendMsg //----------------------------------------------- sendMsg : function( msg ) { if ( typeof( msg.receiver ) !== 'undefined' ) { if( Object.prototype.toString.call( msg.receiver ) === '[object Array]' ) { for ( var i = 0; i < msg.receiver.length; i++ ) { var ret = this.children[ msg.receiver[i] ].msgProc( msg ); if ( ret != 0 ) return ret; } } else { return this.children[msg.receiver].msgProc( msg ); } } else { for( name in this.children ) { var ret = this.children[name].msgProc( msg ); if ( ret != 0 ) return ret; } } }, //----------------------------------------------- // process //----------------------------------------------- process : function( data ) { CUWait.stop(); var b_evaled = false; try { this.res = eval('(' + data + ')'); b_evaled = true; } catch(e) { var msg = "[ERROR]:" + "\r\n\r\n" + data.substring(0,1000); //alert( msg ); this.jobj.html( this.errBox(data) ); } try { if ( b_evaled ) { if ( this.res.result == 'OK' ) { window[this.appid] = this; switch( this.res.cmd ) { case "alert": alert(this.res.html); break; case "load": this.jobj.append( this.res.html ); break; } if ( typeof( this.res.msg ) !== 'undefined' ) { this.sendMsg( this.res.msg ); } } else {//-- code error alert( "^" + this.res.result ); this.jobj.html( this.res.result ); } } } catch(e) { var msg = "{ERROR}:" + e.message; alert( msg ); } } } //---------------------------------------------------------------- // ready //---------------------------------------------------------------- $(document).ready(function() { if (!( 'ajax-poll-script-9009' in window )) { window['ajax-poll-script-9009'] = true; $( app_object_selector ).each( function(){ var app = new CApp( $(this) ); }); } }); }(jQuery));