亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? nndicon.m

?? 《神經(jīng)網(wǎng)絡設計》英文版的配套源代碼
?? M
字號:
function h = nndicon(c,x,y,f,s)
%NNDICON Icons for Neural Network Design GUI.

% NNDICON(C,'book')
%   C - Chapter number from Neural Network Design textbook.
% Draws the icon for chapter C.
%
% NNDICON(C,X,Y,F,S)
%   X - Horizontal position.
%   Y - Vertical position.
%   F - Shadow box flag (default = 0).
%   S - Size (optional).
% Draws the icon for chapter C at position (X,Y) with size S.
% If F is nonzero, then the icon casts a shadow.

% Copyright 1994-2002 PWS Publishing Company and The MathWorks, Inc.
% Mark Beale 6-4-94
% $Revision: 1.6 $

% DEFAULTS
visible = 'on';
book = 0;
mini = 0;
if nargin == 0, error('Not enough input arguments.'); end
if nargin < 4, f = 0; else f = 1; end
if nargin < 3, y = 0; end
if nargin < 2, x = 0; mini = 1; end
if nargin == 2,if isstr(x)
  if strcmp(lower(x),'invisible'), visible = 'off'; else book = 1; end
  x = 0; mini = 1;
end, end

% FIGURE
if mini
  pos = get(0,'defaultfigureposition');
  fig = figure(...
    'units','points',...
    'pos',[pos(1) (pos(2)+pos(4)-60) 60 60],...
    'resize','off',...
    'number','off',...
    'name','',...
    'colormap',nncolor,...
    'visible',visible);
  set(gca,...
    'units','points',...
    'pos',[0 0 60 60],...
    'xlim',[-30 29.9],...
    'ylim',[-30 29.9],...
    'nextplot','add')
  axis('equal')
  axis('off')
else
  fig = gcf;
end

% COLORS
if book
  red = [1 1 1]*0.5;
  blue = [0 0 1]*0.5;
  yellow = [1 1 1];
  orange = [1 1 1]*0.5;
else
  red = nnred;
  blue = nndkblue;
  yellow = nnyellow;
  orange = [1 0.5 0];
end

% STORE FIGURE STATE
NPF = get(fig,'nextplot');
NPA = get(gca,'nextplot');
set(fig,'nextplot','add');
set(gca,'nextplot','add');
hold on

% SHADOW
rect_x = [-1 1 1 -1];
rect_y = [-1 -1 1 1];
if f
  shadow_h = fill(x+rect_x*25+4,y+rect_y*25-4,nndkgray,...
    'edgecolor','none',...
    'erasemode','none');
else
  shadow_h = [];
end

% ICON FRAME
frame_h1 = fill(x+rect_x*25,y+rect_y*25,red, ...
  'edgecolor','none', ...
  'erasemode','none');
frame_h2 = fill(x+rect_x*20,y+rect_y*20,blue, ...
  'edgecolor','none', ...
  'erasemode','none');

% CHAPTER 0: TOC
if c == 0
  icon_h = [];

% CHAPTER 1: INTRO
elseif c == 1
  icon_h = [];

% CHAPTER 2: ARCHITECTURES
elseif c == 2
  line_h1 = nnline(x+[10 9 8 8],y+[8 7 6 -14],4,yellow,'none');
  line_h2 = nnline(x+[-10 -9 -8 -8],y+[8 7 6 -14],4,yellow,'none');
  line_h3 = nnline(x+[14 -14],y+[14 14],4,yellow,'none');
  line_h4 = nnline(x+[0 0],y+[8 -14],4,yellow,'none');
  icon_h = [line_h1; line_h2; line_h3; line_h4];

% CHAPTER 3: ILLUSTRATIVE EXAMPLE
elseif c == 3
  orange_x = [5 0 0 5 10 15 15 10]-7+x;
  orange_y = [15 10 5 0 0 5 10 15]-7+y;
  apple_x = [7.5 5 0 0 5 7.5 10 15 15 10]-7+x;
  apple_y = [13 15 10 5 0 2 0 5 10 15]-7+y;

  orange = fill(orange_x-11, orange_y+7,orange,...
    'edgecolor',yellow,...
    'linewidth',2,...
    'erasemode','none');
  apple = fill(apple_x+8, apple_y-7,red,...
    'edgecolor',yellow,...
    'linewidth',2,...
    'erasemode','none');
  slash = nnline(x+[-14 14],y+[-14 14],1,red,'none');
  icon_h = [orange; apple; slash];

% CHAPTER 4: PERCEPTRONS
elseif c == 4
  line_h1 = nnline(x+[-14 14],y+[-14 -14],3,red,'none');
  line_h2 = nnline(x+[-14 0 0 14],y+[-14 -14 14 14],4,yellow,'none');
  icon_h = [line_h1; line_h2];

% CHAPTER 5: SIGNAL AND WEIGHT VECTOR SPACES
elseif c == 5
  vec_h1 = nnarrow(x+[-14 14],y+[-14 14],2,yellow,'none');
  %vec_h2 = nnarrow(x+[-14 2],y+[-14 14],2,yellow,'none');
  icon_h = [vec_h1];

% CHAPTER 6: LINEAR TRANSFORMATIONS
elseif c == 6
  angle = [10:2:80]*pi/180;
  circle_x = cos(angle);
  circle_y = sin(angle);
  patch_h1 = patch(x-14+20*circle_x,y-14+20*circle_y,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  patch_h2 = patch(x-14+18*circle_x,y-14+18*circle_y,blue,...
    'erasemode','none',...
    'edgecolor','none');
  vec_h1 = nnarrow(x+[-14 14],y+[-14 -7],2,yellow,'none');
  vec_h2 = nnarrow(x+[-14 -7],y+[-14 14],2,yellow,'none');

  icon_h = [patch_h1; patch_h2; vec_h1; vec_h2];

% CHAPTER 7: SUPERVISED HEBB
elseif c == 7
  half_angle = [90:2.5:270]*pi/180;
  half_x = cos(half_angle)*8;
  half_y = sin(half_angle)*8;
  line_h1 = nnline(x+[-15 -5],y+[0 0],3,yellow,'none');
  line_h2 = nnline(x+[5 15],y+[0 0],3,yellow,'none');
  half_h1 = patch(x+half_x-2,y+half_y,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  half_h2 = patch(x-half_x+2,y+half_y,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  icon_h = [line_h1; line_h2; half_h1; half_h2];

% CHAPTER 8: SURFACES AND MINIMA
elseif c == 8
  angle = [0:10:360]*pi/180;
  circle_x = cos(angle);
  elipse_y = sin(angle);
  elipse_x = circle_x + elipse_y*0.4;
  patch_h1 = patch(x-15*elipse_x,y+15*elipse_y,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  patch_h2 = patch(x-11*elipse_x,y+11*elipse_y,blue,...
    'erasemode','none',...
    'edgecolor','none');
  patch_h3 = patch(x+3*circle_x,y+3*elipse_y,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  icon_h = [patch_h1; patch_h2; patch_h3];
  
% CHAPTER 9: OPTIMIZATION
elseif c == 9
  angle = [0:10:360]*pi/180;
  circle_x = cos(angle);
  elipse_y = sin(angle);
  elipse_x = circle_x + elipse_y*0.4;
  patch_h1 = patch(x-14*elipse_x,y+14*elipse_y,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  patch_h2 = patch(x-11.8*elipse_x,y+11.8*elipse_y,blue,...
    'erasemode','none',...
    'edgecolor','none');
  patch_h3 = patch(x-8*elipse_x,y+8*elipse_y,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  patch_h4 = patch(x-6*elipse_x,y+6*elipse_y,blue,...
    'erasemode','none',...
    'edgecolor','none');
  patch_h5 = patch(x+3*circle_x,y+3*elipse_y,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  line_h = nnline(x+[-20 -16 -14 -10 -5 0],y+[8 10 10 8 4 0],2,red,'none');
  icon_h = [patch_h1; patch_h2; patch_h3; patch_h4; patch_h5; line_h];
  
% CHAPTER 10: LINEAR NETWORKS
elseif c == 10
  t=0:.05*2*pi:2*pi;
  yy=30*exp(-0.4*t).*sin(t);
  xx=1:length(yy);
  xx=30*xx/length(yy)-15;
  line_h1 = nnline(x+[-14 14],y+[0 0],2,red,'none');
  line_h2 = nnline(x+xx,y+yy,2,yellow,'none');
  icon_h = [line_h1; line_h2];

% CHAPTER 11: BACKPROPAGATION

elseif c == 11
  line_h1 = nnline(x+[-14 14],y+[0 0],3,red,'none');
  n = -5:0.25:5;
  a = 2./(1+exp(-2*n))-1;
  xx = n/5*15;
  yy = a/1*15;
  line_h2 = nnline(x+xx,y+yy,4,yellow,'none');
  icon_h = [line_h1; line_h2];

% CHAPTER 12: VARIATIONS ON BACKPROPAGATION

elseif c == 12
  patch_h1 = patch(x+1+[-17 -10 -4 0 14 0 -4],...
                   y+[11 16 0 8 -15 -2 -7],yellow,...
    'erasemode','none',...
    'edgecolor','none');
  icon_h = [patch_h1];

% CHAPTER 13: GENERALIZATION

elseif c == 13
  circle_x = [ 5  2  0 0 2 5 10 13 15 15 13 10]/2-7+x;
  circle_y = [15 13 10 5 2 0  0  2  5 10 13 15]/2-7+y;

  circle1 = fill(circle_x-3, circle_y+9,yellow,...
    'linewidth',1,...
    'erasemode','none');
  circle2 = fill(circle_x+1, circle_y-8,yellow,...
    'linewidth',1,...
    'erasemode','none');
  circle3 = fill(circle_x+15, circle_y+6,yellow,...
    'linewidth',1,...
    'erasemode','none');
  slash = nnline(x+[-14 14],y+[-14 14],1,red,'none');
  icon_h = [circle1; circle2; circle3; slash];

% CHAPTER 14: Dynamic Networks

elseif c == 14
  line_h1 = nnline(x+[-14 14 14 -14 -14],y+[-14 -14 14 14 -14],3,red,'none');
  n=[-6    0.5  2 3 3.5 4 4.5 4.5 5 5 5 5 5 5 5 5 5 4.5 4.5 4 3.5 3 2 0.5 -6 -4.5 -4 -4 -4.5 -6];
  a=[-5.5 -5.5 -5:.5:5 5.5 5.5 5 4 -4 -5 -5.5];
  
  %n = -5:0.25:5;
  %a = 2./(1+exp(-2*n))-1;
  xx = n/10*15;
  yy = a/10*15;
  line_h2 = nnline(x+xx,y+yy,2,yellow,'none');
  icon_h = [line_h1; line_h2];

% CHAPTER 15: ASSOCIATIVE LEARNING RULES

elseif c == 15
  radius = 6.5;
  angle = [0:10:360]*pi/180;
  full_x = cos(angle)*radius;
  full_y = sin(angle)*radius;
  half_angle = [90:10:270]*pi/180;
  half_x = cos(half_angle)*radius;
  half_y = sin(half_angle)*radius;

  line_h1 = nnline(x+[-15 -8],y+[-5 -5],4,yellow,'none');
  half_h1 = patch(x+half_x-6,y+half_y-5,yellow,...
    'erasemode','none',...
    'edgecolor','none');

  line_h2 = nnline(x+[6 15],y+[-5 -5],4,yellow,'none');
  full_h2 = patch(x-full_x+3,y+full_y-5,yellow,...
    'erasemode','none',...
    'edgecolor','none');

  line_h3 = nnline(x+[3 3],y+[15 7],4,yellow,'none');
  half_h3 = patch(x-half_y+3,y-half_x+5,yellow,...
    'erasemode','none',...
    'edgecolor','none');

  icon_h = [line_h1; line_h2; line_h3; half_h1; full_h2; half_h3];

% CHAPTER 16: COMPETITIVE

elseif c == 16 | c == 14 % Temp remove 14 later ODJ
  angle = [0:20:360] * pi/180;
  cx = cos(angle);
  cy = sin(angle);
  paddle1 = patch(x-11+6*cx,y+4+6*cy,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  paddle2 = patch(x+11+6*cx,y+4+6*cy,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  handle1 = patch(x+[-13 -10 -5 -8],y+[4 5 -5 -6],yellow,...
    'erasemode','none',...
    'edgecolor','none');
  handle2 = patch(x+[13 10 5 8],y+[4 5 -5 -6],yellow,...
    'erasemode','none',...
    'edgecolor','none');
  ball = patch(x+2*cx,y+5+2*cy,yellow,...
    'erasemode','none',...
    'edgecolor','none');

  icon_h = [paddle1; paddle2; handle1; handle2; ball;];

% ODJ 9/17/06 New Chapter
% CHAPTER 17: RADIAL BASIS NETWROKS

elseif c == 17
  line_h1 = nnline(x+[-14 14],y+[-14 -14],3,red,'none');
  n = -2.5:0.25:2.5;
  a = exp(-(n.*n)); %radbas(n);
  xx = n/2.5*15;
  yy = a/1*30-14;
  line_h2 = nnline(x+xx,y+yy,4,yellow,'none');
  icon_h = [line_h1; line_h2];

% CHAPTER 18: GROSSBERG

elseif c == 18
  angle = [0:10:360] * pi/180;
  cx = cos(angle);
  cy = sin(angle);
  eyeball = plot(x+15*cx,y+15*cy,...
    'color',yellow,...
    'linewidth',2,...
    'erasemode','none');
  angle = [120:10:250] * pi/180;
  cx = cos(angle);
  cy = sin(angle);
  iris = plot(x+15+8.7*cx,y+8.7*cy,...
    'color',yellow,...
    'linewidth',2,...
    'erasemode','none');
  angle = [135 180 215] * pi/180;
  cx = cos(angle);
  cy = sin(angle);
  for i=1:3
    iris = [iris; plot(x+15+cx(i)*[0 8.7],y+cy(i)*[0 8.7],...
      'color',yellow,...
      'linewidth',1,...
      'erasemode','none')];
  end
  pupil = plot(x+15+3*cx,y+2*cy,...
    'color',yellow,...
    'linewidth',3,...
    'erasemode','none');
  icon_h = [eyeball; iris; pupil];

% CHAPTER 19: ART

elseif c == 19

  angle = [0:10:360] * pi/180;
  scale1 = [0.8 0.85 0.9 0.95 1.0  1.0 0.95 0.9 0.85 0.85];
  scale2 = scale1(9:-1:1);
  scale3 = [0.75 0.7 0.65 0.65 0.65 0.675 0.725 0.8 0.9];
  scale4 = fliplr(scale3);
  scale = 1.25*[scale1 scale2 scale3 scale4];
  cx = scale.*cos(angle);
  cy = scale.*sin(angle);
  face = plot(x+15*cx,y+15*cy,...
    'color',yellow,...
    'linewidth',2,...
    'erasemode','none');

  cx = cos(angle);
  cy = 0.5*sin(angle);
  eye1 = plot(x-8+4*cx,y+10+4*cy,...
    'color',yellow,...
    'linewidth',1,...
    'erasemode','none');

  cx = cos(angle);
  cy = 0.5*sin(angle);
  rotate = [.707 -.707; .707 .707];
  ctot = rotate*[cx; cy];
  cx = ctot(1,:);
  cy = ctot(2,:);
  eye2 = plot(x+8+4*cx,y+8+4*cy,...
    'color',yellow,...
    'linewidth',1,...
    'erasemode','none');

  cx = cos(angle);
  cy = 0.5*sin(angle);
  rotate = [.707 .707; -.707 .707];
  ctot = rotate*[cx; cy];
  cx = ctot(1,:);
  cy = ctot(2,:);
  mouth = plot(x-2+4*cx,y-9+4*cy,...
    'color',yellow,...
    'linewidth',1,...
    'erasemode','none');

  nose = nnline(x+[-1 0 1   0 -2 -4  0  2  3], ...
                y+[9  6 4.5 3 -1 -3 -3 -4 -6],1,yellow,'none');

  icon_h = [face; eye1; eye2; mouth; nose];

% CHAPTER 20: STABILITY

elseif c == 20

  angle = [0:10:180] * pi/180;
  hillx = cos(angle);
  hilly = sin(angle);
  hill = plot(x+hillx*15,y+hilly*25-15,...
    'color',yellow,...
    'linewidth',3,...
    'erasemode','none');
  angle = [0:20:360] * pi/180;
  circx = cos(angle);
  circy = sin(angle);
  ball = patch(x+3*circx,y+14+3*circy,yellow,...
    'erasemode','none',...
    'edgecolor','none');
  icon_h = [hill; ball];

% CHAPTER 21: HOPFIELD

elseif c == 21

  xx = [0 0 -12 0 0 0 12 0];
  yy = [15 10 10 -10 -15 -10 10 10];
  triangle = plot(x+xx,y+yy,...
    'color',yellow,...
    'linewidth',2,...
    'erasemode','none');
  angle = [0:20:360] * pi/180;
  xx = cos(angle);
  yy = sin(angle);
  circle = plot(x-5+xx*3,y-6+yy*3,...
    'color',yellow,...
    'linewidth',2,...
    'erasemode','none');
  xx = [-5 -5];
  yy = [-9 -15];
  line = plot(x+xx,y+yy,...
    'color',yellow,...
    'linewidth',2,...
    'erasemode','none');

  icon_h = [triangle; circle; line];

% ICON 100: SUMMATION
elseif c == 100
  line_h1 = nnline(x+[10 -10 4 -10 10],y+[14 14 0 -14 -14],3,yellow,'none');

  icon_h = [line_h1];

% ICON 101: F
elseif c == 101
  line_h1 = nnline(x+[10 -10 -10 10],y+[14 14 0 0],4,yellow,'none');
  line_h2 = nnline(x+[-10 -10],y+[0 -14],4,yellow,'none');
  icon_h = [line_h1; line_h2];

end

% BOOK STUFF
if book
  axis('off')
  axis('equal')
  set(gcf,'color',[1 1 1])
  set(gcf,'inverthardcopy','off')
end

% RESTORE FIGURE STATE
set(gca,'nextplot',NPA);
set(fig,'nextplot',NPF);

% RETURN ICON
if nargout, h = [shadow_h; frame_h1; frame_h2; icon_h]; end

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩免费不卡视频一区二区三区| 91丨porny丨国产入口| 亚洲色图欧美激情| 精品国产一区二区三区四区四 | 丁香婷婷综合激情五月色| 亚洲人精品一区| 久久综合色综合88| 欧美福利一区二区| 91福利在线观看| 福利一区福利二区| 久久精品国产秦先生| 亚洲国产毛片aaaaa无费看 | 91在线免费看| 国产一区二区不卡在线| 日韩av一区二| 午夜视频在线观看一区二区| 中文字幕在线一区免费| 欧美xxxx老人做受| 欧美男生操女生| 日本韩国欧美一区二区三区| 成人激情动漫在线观看| 国产乱人伦精品一区二区在线观看 | 欧美xxxxx牲另类人与| 色网站国产精品| av一区二区三区黑人| 国产a精品视频| 国产一区二区三区香蕉| 精品一二三四在线| 久久国产欧美日韩精品| 免费欧美在线视频| 青青青伊人色综合久久| 日韩国产欧美三级| 日韩在线卡一卡二| 蜜桃视频第一区免费观看| 日韩电影免费一区| 蜜臀av性久久久久蜜臀aⅴ流畅| 午夜激情一区二区| 日韩一区精品字幕| 美女视频黄 久久| 久久99九九99精品| 国产精品456| 成人av在线一区二区三区| av在线不卡免费看| 色94色欧美sute亚洲13| 欧美在线制服丝袜| 在线观看91av| 欧美草草影院在线视频| 久久久亚洲精华液精华液精华液| 国产欧美精品一区二区色综合朱莉| 国产欧美视频一区二区| 国产精品久久久久久久久快鸭| 亚洲视频一二三| 亚洲影院免费观看| 日韩电影免费一区| 国产主播一区二区三区| 成人app在线| 欧美亚洲综合另类| 日韩一级完整毛片| 国产欧美日韩一区二区三区在线观看| 国产精品久久久久影院色老大| 亚洲欧洲国产日韩| 五月天亚洲精品| 国产精品18久久久久久久久| 99免费精品在线观看| 欧美性猛交一区二区三区精品| 91精品国产综合久久久久久漫画 | 欧美岛国在线观看| 国产精品素人一区二区| 一区二区三区欧美| 久久精品国产免费| 色综合天天狠狠| 日韩欧美一级在线播放| 国产精品欧美精品| 日韩电影网1区2区| www.日韩在线| 欧美群妇大交群的观看方式| 久久精品视频网| 亚洲无线码一区二区三区| 国产麻豆欧美日韩一区| 色婷婷久久99综合精品jk白丝| 日韩三级中文字幕| 综合av第一页| 激情综合网天天干| 色婷婷久久久久swag精品| 欧美电视剧免费全集观看| 日韩毛片高清在线播放| 久久99精品久久久久久| 欧洲另类一二三四区| 久久综合九色欧美综合狠狠 | 日韩激情一区二区| 成人三级在线视频| 91.com在线观看| 欧美激情一区不卡| 另类欧美日韩国产在线| 成人毛片在线观看| 精品久久一区二区三区| 一区二区三区在线观看网站| 狠狠色2019综合网| 欧美色图在线观看| 亚洲欧洲另类国产综合| 国产一区激情在线| 在线播放欧美女士性生活| 国产精品成人免费在线| 久久国内精品自在自线400部| 欧美午夜精品免费| 自拍偷自拍亚洲精品播放| 国产精品99久久久久久似苏梦涵| 欧美卡1卡2卡| 亚洲专区一二三| 91视频国产观看| 黄色小说综合网站| 正在播放一区二区| 亚洲一二三专区| 91国在线观看| 中文字幕在线不卡一区| 高清在线成人网| 久久精品一区二区| 国产自产高清不卡| 欧美一区二区三区免费在线看| 亚洲综合色区另类av| 91老师国产黑色丝袜在线| 日本一区二区成人| 成人av网站在线| 欧美国产精品劲爆| 丁香网亚洲国际| 国产精品视频第一区| 高清在线观看日韩| 中文字幕欧美日韩一区| 成人中文字幕合集| 国产肉丝袜一区二区| 国产成人免费网站| 欧美韩日一区二区三区| 福利91精品一区二区三区| 久久久不卡网国产精品一区| 韩国一区二区在线观看| 精品免费国产二区三区| 韩国午夜理伦三级不卡影院| 精品国产sm最大网站| 国产精品自在欧美一区| 国产日本亚洲高清| 成人美女视频在线观看| 中文字幕在线观看不卡| 色综合久久精品| 亚洲成av人片在线观看无码| 欧美顶级少妇做爰| 久久99久久99小草精品免视看| 精品精品国产高清a毛片牛牛| 国产在线不卡一卡二卡三卡四卡| 久久夜色精品国产欧美乱极品| 国产精品系列在线播放| 亚洲欧美在线视频观看| 在线免费观看日本欧美| 午夜精品一区二区三区免费视频| 欧美日韩在线播| 日韩和欧美的一区| 精品电影一区二区三区| 国产91丝袜在线18| 亚洲一线二线三线视频| 日韩午夜激情电影| 国产成人在线观看免费网站| 亚洲三级视频在线观看| 欧美男女性生活在线直播观看| 精品影视av免费| 国产精品国模大尺度视频| 色老汉av一区二区三区| 玖玖九九国产精品| 国产精品久久二区二区| 欧美日本一区二区| 国产+成+人+亚洲欧洲自线| 一区二区三区日韩在线观看| 欧美大片拔萝卜| av不卡一区二区三区| 日本在线不卡视频| 国产精品久久夜| 欧美狂野另类xxxxoooo| 成人午夜伦理影院| 日韩精品福利网| 国产精品免费久久久久| 欧美疯狂做受xxxx富婆| 成人免费视频一区二区| 青娱乐精品视频| 亚洲日穴在线视频| 精品美女被调教视频大全网站| 9久草视频在线视频精品| 免费观看一级特黄欧美大片| 国产精品久久久久久久久搜平片| 欧美群妇大交群中文字幕| 国产成人免费视| 日本不卡不码高清免费观看| 国产精品久久久久久久久果冻传媒| 欧美日韩国产精品自在自线| 国产大陆a不卡| 蜜桃视频一区二区| 一区二区高清免费观看影视大全| 2020国产精品自拍| 欧美顶级少妇做爰| 色综合中文综合网| 国产精品美女www爽爽爽| 在线成人午夜影院| 色婷婷av久久久久久久|