MainApplication.mainSkip = "1";
finish();
}
}
if (MainApplication.type.equals("PushInvite")) {
if (MainApplication.isLogin()) {
Intent intent4 = new Intent(getApplication(), MyWebViewActivity.class);
intent4.putExtra("url", "https://evcharge.cc/cdz/yqm.html?code=" + UserCenterActivity.getShareNo(Integer.parseInt(MainApplication.userId)) + "&phone=" + MainApplication.userPhone);
// intent4.putExtra("tag", "2");
startActivity(intent4);
MainApplication.h5_url = "";
MainApplication.type = "";
MainApplication.mainSkip = "1";
finish();
}
}
if (MainApplication.type.equals("first") || MainApplication.type.equals("second") || MainApplication.type.equals("three")) {
if (MainApplication.isLogin()) {
long appTime4 = System.currentTimeMillis() / 1000;
long updatetime4 = appTime4 - MainMapActivity.cha - 1;
String token4 = String.valueOf(updatetime4);
Intent intent4 = new Intent(getApplication(), MyWebViewActivity.class);
String web1 = null;
try {
web1 = MainApplication.url + "/zhannew/basic/web/index.php/discount/redlist?userid=" + MainApplication.userId + "&token=" + URLEncoder.encode(DES3.encode(token4));
} catch (Exception e) {
e.printStackTrace();
}
intent4.putExtra("url", web1);
// intent4.putExtra("tag", "4");
startActivity(intent4);
MainApplication.h5_url = "";
MainApplication.type = "";
MainApplication.mainSkip = "1";
finish();
}
}
if (MainApplication.type.equals("PushCommodity")) {
long appTime11 = System.currentTimeMillis() / 1000;
// Log.e("sfv_url===", getIntent().getStringExtra("shareUrl"));
// Log.i("appTime(long)---", appTime11 + "");
long updatetime1 = appTime11 - MainMapActivity.cha - 5;
// Log.i("updatetime(long)---", updatetime1 + "");
// Log.i("cha---", MainMapActivity.cha + "");
String token1 = String.valueOf(updatetime1);
String encode_token = null;
try {
encode_token = DES3.encode(token1);
} catch (Exception e) {
e.printStackTrace();
}
String replace = URLEncoder.encode(encode_token);
// startActivity(new Intent(getApplication(), ShopActivity.class));
Intent intent11 = new Intent();
intent11.setClass(getApplicationContext(), CreditActivity.class);
intent11.putExtra("navColor", "#fcfcfc"); //配置导航条的背景颜色,请用#ffffff长格式。
intent11.putExtra("titleColor", "#222222"); //配置导航条标题的颜色,请用#ffffff长格式。
MainApplication.goods_type = "details";
// MainApplication.current_url = getIntent().getStringExtra("shareUrl");
// MainApplication.current_url = "http://www.duiba.com.cn/mobile/appItemDetail?appItemId=453087";
if (!MainApplication.isLogin()) {
intent11.putExtra("url", "http://cdz.evcharge.cc/zhannew/basic/web/index.php/duiba/active?token=" + replace + "&url=" + MainApplication.h5_url); //配置自动登陆地址,每次需服务端动态生成。
} else {
intent11.putExtra("url", "http://cdz.evcharge.cc/zhannew/basic/web/index.php/duiba/active?user_id=" + MainApplication.userId + "&token=" + replace + "&url=" + MainApplication.h5_url); //配置自动登陆地址,每次需服务端动态生成。
}
startActivity(intent11);
MainApplication.ad_link = "";
overridePendingTransition(0, 0);
CreditActivity.creditsListener = new CreditActivity.CreditsListener() {
/**
* 当点击分享按钮被点击
* @param shareUrl 分享的地址
* @param shareThumbnail 分享的缩略图
* @param shareTitle 分享的标题
* @param shareSubtitle 分享的副标题
*/
public void onShareClick(WebView webView, String shareUrl, String shareThumbnail, String shareTitle, String shareSubtitle) {
//当分享按钮被点击时,会调用此处代码。在这里处理分享的业务逻辑。
// new AlertDialog.Builder(webView.getContext())
// .setTitle("分享信息")
// .setItems(new String[] {"标题:"+shareTitle,"副标题:"+shareSubtitle,"缩略图地址:"+shareThumbnail,"链接:"+shareUrl}, null)
// .setNegativeButton("确定", null)
// .show();
ChargingShareBean chargingShareBean = new ChargingShareBean();
chargingShareBean.setIcon(shareThumbnail);
chargingShareBean.setTitle(shareTitle);
chargingShareBean.setUrl(shareUrl);
chargingShareBean.setText("");
showSimpleBottomSheetGrid(chargingShareBean);
}
/**
* 当点击“请先登录”按钮唤起登录时,会调用此处代码。
* 用户登录后,需要将CreditsActivity.IS_WAKEUP_LOGIN变量设置为true。
* @param webView 用于登录成功后返回到当前的webview刷新登录状态。
* @param currentUrl 当前页面的url
*/
public void onLoginClick(WebView webView, final String currentUrl) {
//当未登录的用户点击去登录时,会调用此处代码。
//用户登录后,需要将CreditsActivity.IS_WAKEUP_LOGIN变量设置为true。
//为了用户登录后能回到未登录前的页面(currentUrl)。
//当用户登录成功后,需要重新请求一次服务端,带上currentUrl。
//用该方法中的webview变量加载请求链接。
//服务端收到请求后在生成免登录url时,将currentUrl放入redirect参数,通知客户端302跳转到新生成的免登录URL。
new android.app.AlertDialog.Builder(webView.getContext())
.setTitle("跳转登录")
.setMessage("跳转到登录页面?")
.setPositiveButton("是", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// MainApplication.current_url = currentUrl;
MainApplication.h5_url = currentUrl;
context.startActivity(new Intent(getApplicationContext(), LoginActivity.class));
}
})
.setNegativeButton("否", null)
.show();
}
/**
* 当点击“复制”按钮时,触发该方法,回调获取到券码code
* @param webView webview对象。
* @param code 复制的券码
*/
public void onCopyCode(WebView webView, String code) {
//当未登录的用户点击去登录时,会调用此处代码。
new android.app.AlertDialog.Builder(webView.getContext())
.setTitle("复制券码")
.setMessage("已复制,券码为:" + code)
.setPositiveButton("是", null)
.setNegativeButton("否", null)
.show();
}
/**
* 积分商城返回首页刷新积分时,触发该方法。
*/
public void onLocalRefresh(WebView mWebView, String credits) {
//String credits为积分商城返回的最新积分,不保证准确。
//触发更新本地积分,这里建议用ajax向自己服务器请求积分值,比较准确。
// Toast.makeText(getApplicationContext(), "触发本地刷新积分:" + credits, Toast.LENGTH_SHORT).show();
}
};
}
if (MainApplication.ad_link.equals("1")) {
againPoint = "1";
@ -1287,52 +1098,6 @@ public class MainMapActivity extends Activity implements LocationSource, AMapLoc
}
});
// add by hyg 点击跳转到聊聊 隐藏该功能
// windowChat.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View view) {
// if (socket != null) {
// try {
// socket.close();
// } catch (IOException e) {
// e.printStackTrace();
// }
// }
// MobclickAgent.onEvent(getApplicationContext(), "1121");
// Intent i = new Intent(getApplication(), ChatActivity.class);//聊聊页面
// i.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
// startActivity(i);
// overridePendingTransition(0, 0);
// if (count == 1) {
//
// count = 2;
// }
// MobclickAgent.onEvent(getApplicationContext(), "0999");
// windowLayout.setVisibility(View.GONE);
//
//
// rl_control.setVisibility(View.VISIBLE);
// if (nMarker != null) {
// nMarker.hideInfoWindow();
// MarkerOptions markerOptionss = new MarkerOptions();
// if (current_chargePoint.getOwn_pay().equals("1")) {
// nMarker.setIcon(BitmapDescriptorFactory.fromResource(R.drawable.icon_newmarker1));
// } else {
// if (current_chargePoint.getSuit_car().equals("特斯拉")) {
// nMarker.setIcon(BitmapDescriptorFactory.fromResource(R.drawable.icon_newmarker3));
// } else {
// if (WelcomeActivity.canCost.contains(current_chargePoint.getSupplier())) {
// nMarker.setIcon(BitmapDescriptorFactory.fromResource(R.drawable.icon_newmarker2));
// } else {
// nMarker.setIcon(BitmapDescriptorFactory.fromResource(R.drawable.icon_newmarker3));
// }
// }
// }
// }
//
// }
// });
tv_sortDistance = (TextView) findViewById(R.id.tv_sortDistance);
tv_sortDistance.setOnClickListener(this);
@ -1773,7 +1538,7 @@ public class MainMapActivity extends Activity implements LocationSource, AMapLoc
String url = "{\"fun\":\"dingwei\",\"poi_jing\":" + "\"" + String.format("%.6f", bd_lon) +
"\"" + ",\"poi_wei\":" + "\"" + String.format("%.6f", bd_lat) + "\"" + ",\"imei\":"
+ "\"" + "android_" + Util.getUdid() + "\"" + ",\"timer\":" + "\"" + Token
+ "\"" + ",\"registration_id\":" + "\"" + MainApplication.push_id + "\""
+ "\"" + ",\"registration_id\":" + "\"" + MainApplication.getInstance().getPushID() + "\""
+ ",\"userid\":" + "\"" + uid + "\"" + "}";
eteLocation(url);
}
|
||
| 727 | 727 |
|
| 728 | 728 |
|
| 729 | 729 |
|
| 730 |
|
|
| 730 |
|
|
| 731 | 731 |
|
| 732 |
|
|
| 733 |
|
|
| 732 |
|
|
| 733 |
|
|
| 734 | 734 |
|
| 735 | 735 |
|
| 736 | 736 |
|
|
||
| 741 | 741 |
|
| 742 | 742 |
|
| 743 | 743 |
|
| 744 |
|
|
| 745 | 744 |
|
| 746 | 745 |
|
| 747 | 746 |
|
|
||
| 21 | 21 |
|
| 22 | 22 |
|
| 23 | 23 |
|
| 24 |
|
|
| 24 | 25 |
|
| 25 | 26 |
|
| 26 | 27 |
|
| 28 |
|
|
| 29 |
|
|
| 27 | 30 |
|
| 28 | 31 |
|
| 29 | 32 |
|
|
||
| 444 | 444 |
|
| 445 | 445 |
|
| 446 | 446 |
|
| 447 |
|
|
| 448 |
|
|
| 449 |
|
|
| 450 |
|
|
| 451 |
|
|
| 452 |
|
|
| 453 |
|
|
| 454 |
|
|
| 455 |
|
|
| 456 |
|
|
| 457 |
|
|
| 458 |
|
|
| 459 |
|
|
| 460 |
|
|
| 461 |
|
|
| 462 | 447 |
|
| 463 | 448 |
|
| 464 | 449 |
|
|
||
| 467 | 452 |
|
| 468 | 453 |
|
| 469 | 454 |
|
| 470 |
|
|
| 455 |
|
|
| 471 | 456 |
|
| 472 | 457 |
|
| 473 | 458 |
|
|
||
| 607 | 592 |
|
| 608 | 593 |
|
| 609 | 594 |
|
| 610 |
|
|
| 595 |
|
|
| 611 | 596 |
|
| 612 |
|
|
| 613 |
|
|
| 597 |
|
|
| 598 |
|
|
| 614 | 599 |
|
| 615 | 600 |
|
| 616 | 601 |
|
|
||
| 88 | 88 |
|
| 89 | 89 |
|
| 90 | 90 |
|
| 91 |
|
|
| 91 | 92 |
|
| 92 | 93 |
|
| 93 | 94 |
|
|
||
| 448 | 448 |
|
| 449 | 449 |
|
| 450 | 450 |
|
| 451 |
|
|
| 451 |
|
|
| 452 | 452 |
|
| 453 |
|
|
| 454 |
|
|
| 453 |
|
|
| 454 |
|
|
| 455 | 455 |
|
| 456 | 456 |
|
| 457 | 457 |
|
|
||
| 9 | 9 |
|
| 10 | 10 |
|
| 11 | 11 |
|
| 12 |
|
|
| 12 | 13 |
|
| 13 | 14 |
|
| 15 |
|
|
| 14 | 16 |
|
| 15 | 17 |
|
| 16 | 18 |
|
|
||
| 21 | 23 |
|
| 22 | 24 |
|
| 23 | 25 |
|
| 26 |
|
|
| 24 | 27 |
|
| 25 | 28 |
|
| 26 | 29 |
|
|
||
| 79 | 82 |
|
| 80 | 83 |
|
| 81 | 84 |
|
| 82 |
|
|
| 85 |
|
|
| 83 | 86 |
|
| 84 | 87 |
|
| 85 | 88 |
|
|
||
| 94 | 97 |
|
| 95 | 98 |
|
| 96 | 99 |
|
| 97 |
|
|
| 100 |
|
|
| 98 | 101 |
|
| 99 | 102 |
|
| 100 | 103 |
|
|
||
| 156 | 159 |
|
| 157 | 160 |
|
| 158 | 161 |
|
| 159 |
|
|
| 160 |
|
|
| 161 |
|
|
| 162 |
|
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 | 162 |
|
| 176 | 163 |
|
| 177 | 164 |
|
|
||
| 181 | 168 |
|
| 182 | 169 |
|
| 183 | 170 |
|
| 184 |
|
|
| 185 | 171 |
|
| 186 | 172 |
|
| 187 | 173 |
|
|
||
| 201 | 187 |
|
| 202 | 188 |
|
| 203 | 189 |
|
| 204 |
|
|
| 205 | 190 |
|
| 206 | 191 |
|
| 207 | 192 |
|
|
||
| 234 | 219 |
|
| 235 | 220 |
|
| 236 | 221 |
|
| 237 |
|
|
| 238 |
|
|
| 239 |
|
|
| 240 |
|
|
| 241 |
|
|
| 242 |
|
|
| 243 |
|
|
| 244 |
|
|
| 245 |
|
|
| 246 |
|
|
| 247 | 222 |
|
| 248 | 223 |
|
| 249 | 224 |
|
| 250 | 225 |
|
| 251 |
|
|
| 252 | 226 |
|
| 253 |
|
|
| 254 | 227 |
|
| 255 | 228 |
|
| 256 | 229 |
|
|
||
| 296 | 269 |
|
| 297 | 270 |
|
| 298 | 271 |
|
| 272 |
|
|
| 273 |
|
|
| 274 |
|
|
| 275 |
|
|
| 276 |
|
|
| 277 |
|
|
| 278 |
|
|
| 279 |
|
|
| 280 |
|
|
| 281 |
|
|
| 282 |
|
|
| 283 |
|
|
| 299 | 284 |
|
| 300 | 285 |
|
| 301 | 286 |
|
|
||
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 108 |
|
|
| 109 |
|
|
| 110 |
|
|
| 111 |
|
|
| 112 |
|
|
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 116 |
|
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
|
| 120 |
|
|
| 121 |
|
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 136 |
|
|
| 137 |
|
|
| 138 |
|
|
| 139 |
|
|
| 140 |
|
|
| 141 |
|
|
| 142 |
|
|
| 143 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
|
| 147 |
|
|
| 148 |
|
|
| 149 |
|
|
| 150 |
|
|
| 151 |
|
|
| 152 |
|
|
| 153 |
|
|
| 154 |
|
|
| 155 |
|
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 159 |
|
|
| 160 |
|
|
| 161 |
|
|
| 162 |
|
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 |
|
|
| 176 |
|
|
| 177 |
|
|
| 178 |
|
|
| 179 |
|
|
| 180 |
|
|
| 181 |
|
|
| 182 |
|
|
| 183 |
|
|
| 184 |
|
|
| 185 |
|
|
| 186 |
|
|
| 187 |
|
|
| 188 |
|
|
| 189 |
|
|
| 190 |
|
|
| 191 |
|
|
| 192 |
|
|
| 193 |
|
|
| 194 |
|
|
| 195 |
|
|
| 196 |
|
|
| 197 |
|
|
| 198 |
|
|
| 199 |
|
|
| 200 |
|
|
| 201 |
|
|
| 202 |
|
|
| 203 |
|
|
| 204 |
|
|
| 205 |
|
|
| 206 |
|
|
|
||
| 69 | 69 |
|
| 70 | 70 |
|
| 71 | 71 |
|
| 72 |
|
|
| 72 | 73 |
|
| 73 | 74 |
|
| 74 | 75 |
|
|
||
| 643 | 644 |
|
| 644 | 645 |
|
| 645 | 646 |
|
| 647 |
|
|
| 648 |
|
|
| 649 |
|
|
| 650 |
|
|
| 651 |
|
|
| 652 |
|
|
| 653 |
|
|
| 654 |
|
|
| 646 | 655 |
|
|
||
| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
|
| 23 |
|
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
|
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
| 68 |
|
|
| 69 |
|
|
| 70 |
|
|
| 71 |
|
|
| 72 |
|
|
| 73 |
|
|
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
|
|
| 95 |
|
|
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
| 100 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 108 |
|
|
| 109 |
|
|
| 110 |
|
|
| 111 |
|
|
| 112 |
|
|
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 116 |
|
|
| 117 |
|
|
| 118 |
|
|
| 119 |
|
|
| 120 |
|
|
| 121 |
|
|
| 122 |
|
|
| 123 |
|
|
| 124 |
|
|
| 125 |
|
|
| 126 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 136 |
|
|
| 137 |
|
|
| 138 |
|
|
| 139 |
|
|
| 140 |
|
|
| 141 |
|
|
| 142 |
|
|
| 143 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
|
| 147 |
|
|
| 148 |
|
|
| 149 |
|
|
| 150 |
|
|
| 151 |
|
|
| 152 |
|
|
| 153 |
|
|
| 154 |
|
|
| 155 |
|
|
| 156 |
|
|
| 157 |
|
|
| 158 |
|
|
| 159 |
|
|
| 160 |
|
|
| 161 |
|
|
| 162 |
|
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
| 166 |
|
|
| 167 |
|
|
| 168 |
|
|
| 169 |
|
|
| 170 |
|
|
| 171 |
|
|
| 172 |
|
|
| 173 |
|
|
| 174 |
|
|
| 175 |
|
|
| 176 |
|
|
| 177 |
|
|
| 178 |
|
|
| 179 |
|
|
| 180 |
|
|
| 181 |
|
|
|
||
| 354 | 354 |
|
| 355 | 355 |
|
| 356 | 356 |
|
| 357 |
|
|
| 357 |
|
|
| 358 | 358 |
|
| 359 | 359 |
|
| 360 | 360 |
|