blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
6ee312837e7ce272de9410a6386cf68aa9e1c04c
7d4af3205dba5b923922c5dbff758a8b9144fa31
/src/network/Packet.h
72d2d58d73d15fd4507e6421df3e918af1dd6b56
[]
no_license
kacprzak/marian
0680b41918bdf2dd929612f6c5b79521e5eb14df
be510e341b56db892487d63b1d0c43e4059ee487
refs/heads/master
2021-06-23T16:26:09.445737
2021-01-31T09:02:46
2021-01-31T09:02:46
7,320,502
1
0
null
null
null
null
UTF-8
C++
false
false
1,432
h
Packet.h
#ifndef PACKET_H #define PACKET_H #include "config.h" #if PLATFORM == PLATFORM_WINDOWS #include <winsock2.h> // ntohl #include <ws2tcpip.h> typedef unsigned __int32 uint32; #else #include <arpa/inet.h> // ntohl typedef u_int32_t uint32; #endif #include <cassert> #include <cstring> // memcpy namespace net { class Packet final { public: Packet(const char* const data, uint32 size); ~Packet(); Packet(const Packet& other) = delete; Packet& operator=(const Packet& other) = delete; const char* getData() const { return m_data; } uint32 getSize() const; protected: char* m_data; private: }; //------------------------------------------------------------------------------ inline Packet::Packet(const char* const data, uint32 size) { // Allocate memory for size value and data m_data = new char[sizeof(size) + size]; assert(m_data); // Copy size value into first 4 bytes *(uint32*)m_data = htonl(sizeof(size) + size); // Copy rest of the data memcpy(m_data + sizeof(size), data, size); } //------------------------------------------------------------------------------ inline Packet::~Packet() { delete[] m_data; } //------------------------------------------------------------------------------ inline uint32 Packet::getSize() const { // Size is in first 4 bytes of data return ntohl(*(uint32*)m_data); } } // namespace network #endif // PACKET_H
2789a49590a5e642c96ea44235257ef0bd3734f1
c6d1bb07e6b419493aa992eee4af5bfb9f324730
/SelectServ_Clnt/SelectServ/SelectServ.cpp
0a89cb08c16a6a19ddc4f10d48774e00675747c8
[]
no_license
ytcandy/TCPIPPMod_Win
5a4b746d4d81e5a5adc61a7efaa89d48c9c5d9a3
07aef7da2d303cc42e399986c9cc17d81692ac1e
refs/heads/master
2021-04-12T10:37:08.634830
2017-01-11T14:51:55
2017-01-11T14:51:55
126,272,737
1
1
null
2018-03-22T03:12:01
2018-03-22T03:12:01
null
GB18030
C++
false
false
2,905
cpp
SelectServ.cpp
// SelectServ.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "stdio.h" #include "winsock2.h" #pragma comment(lib,"ws2_32.lib") #define BUF_SIZE 30 #define SOCK_SIZE 20 void ErrorHandler(const char* message); int _tmain(int argc, _TCHAR* argv[]) { SOCKET servSock,clntSock; SOCKADDR_IN servAddr,clntAddr; int clntAddrSz; int strLen; char buf[BUF_SIZE]; fd_set fds,copyRead; SOCKET socks[SOCK_SIZE]; TIMEVAL tm; int sockNum = 0; unsigned long ul=1; WSADATA wsaData; if(WSAStartup(MAKEWORD(2,2),&wsaData)==SOCKET_ERROR) { ErrorHandler("WSAStartUp Error"); } servSock=socket(AF_INET,SOCK_STREAM,0); if(servSock==INVALID_SOCKET) ErrorHandler("socket error"); //将socket设置成非阻塞模式 //ioctlsocket(servSock,FIONBIO,&ul); memset(&servAddr,0,sizeof(servAddr)); servAddr.sin_family=AF_INET; servAddr.sin_addr.s_addr=htonl(INADDR_ANY); servAddr.sin_port=htons(atoi("8888")); if(bind(servSock,(const sockaddr*)&servAddr,sizeof(servAddr))==SOCKET_ERROR) { ErrorHandler("bind error"); } if(listen(servSock,SOCK_SIZE)==SOCKET_ERROR) { ErrorHandler("listen error"); } //遍历socks,将所有的元素置于无效的socket for(int i=0;i<SOCK_SIZE;i++) socks[i] = INVALID_SOCKET; sockNum += 1; socks[0]=servSock; FD_ZERO(&fds); FD_SET(servSock,&fds); tm.tv_sec=100000; tm.tv_usec=0; while(1) { copyRead=fds; int selResult = select(sockNum,&copyRead,0,0,&tm); printf("select return...\n"); if(selResult==-1) puts("select error"); else if(selResult==0) puts("timeout!"); else { //先判断是否是有新的客户端连接 if(FD_ISSET(socks[0],&copyRead)) { clntAddrSz = sizeof(clntAddr); clntSock = accept(servSock,(SOCKADDR*)&clntAddr,&clntAddrSz); //将socket设置成非阻塞模式 ioctlsocket(clntSock,FIONBIO,&ul); for(int i=0;i<SOCK_SIZE;i++) { //遍历socks,在元素为无效的socket处插入客户端的socket if(socks[i] == INVALID_SOCKET) { FD_SET(clntSock,&fds); socks[i]=clntSock; sockNum++; break; } } } //遍历所有的客户端socket,0的位置为服务端的socket,所以从1开始 for (int i=1;i<SOCK_SIZE;i++) { //如果是无效的socket 不必处理 if(socks[i]==INVALID_SOCKET) continue; if(FD_ISSET(socks[i],&copyRead)) { strLen=recv(socks[i],buf,BUF_SIZE,0); if(strLen <= 0)//客户端断开了连接 { closesocket(socks[i]); //从fds删除客户端socket FD_CLR(socks[i],&fds); //将对应的位置再次置为无效socket socks[i] == INVALID_SOCKET; sockNum--; } else if(strLen > 0) { send(socks[i],buf,strLen,0); } } } } } closesocket(servSock); return 0; } void ErrorHandler(const char* message) { fputs(message,stderr); fputc('\n',stderr); exit(1); }
92b53adc225fd91e40ef45f4ac960a97fc73da3d
08b8cf38e1936e8cec27f84af0d3727321cec9c4
/data/crawl/wget/old_hunk_3143.cpp
597a224fa70865c4cbd3b25dbf5059e6d1540adc
[]
no_license
ccdxc/logSurvey
eaf28e9c2d6307140b17986d5c05106d1fd8e943
6b80226e1667c1e0760ab39160893ee19b0e9fb1
refs/heads/master
2022-01-07T21:31:55.446839
2018-04-21T14:12:43
2018-04-21T14:12:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
222
cpp
old_hunk_3143.cpp
int frontcmp PARAMS ((const char *, const char *)); void fork_to_background PARAMS ((void)); void touch PARAMS ((const char *, time_t)); int remove_link PARAMS ((const char *)); int file_exists_p PARAMS ((const char *));
13260dcc59485abb8d6cceb0e11b8feb70613756
c2dbd667abeb1b37423f8eaee73bd395af290045
/Lab9/Lab9-C.cpp
0dbc156711a783bd440be24a37a6a001036ca92f
[]
no_license
BugMaker-Boyan/CS203-Sustech-DSAA
c925413cd5088f638bce051e5bb4d3e7f47e76e9
da258d960baed7e4d1b77bc3958fe58b76cedde1
refs/heads/master
2023-02-24T17:41:29.249361
2021-01-27T06:43:50
2021-01-27T06:43:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,393
cpp
Lab9-C.cpp
//// //// Created by Boyan on 2020/12/8. //// // //#include <iostream> //#include <queue> //using namespace std; //#define fio ios::sync_with_stdio(false);istream::sync_with_stdio(false);ostream::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr); // //struct node{ // int val; // int inDegree; // vector<int> toNodes; // node(){ // inDegree = 0; // } // bool operator< (const node& other)const{ // return this->val > other.val; // } //}; // // // //int main(){ // fio // priority_queue<node> q; // int n,m,a,b; // cin>>n>>m; // node nodes[n+1]; // for (int i = 1; i <= n ; ++i) { // nodes[i].val = i; // } // for (int i = 0; i < m; ++i) { // cin>>a>>b; // nodes[a].toNodes.push_back(b); // nodes[b].inDegree++; // } // for (int i = 1; i <=n ; ++i) { // if (nodes[i].inDegree == 0){ // q.push(nodes[i]); // } // } // vector<int> result; // while (!q.empty()){ // node nd = q.top();q.pop(); // result.push_back(nd.val); // vector<int>& v = nd.toNodes; // for (int x:v) { // nodes[x].inDegree--; // if (nodes[x].inDegree == 0){ // q.push(nodes[x]); // } // } // } // for (int i = 0; i<result.size(); i++) { // cout<<result[i]<<" "; // } // // // return 0; //}
5f41ea2bfe1d1fe3c2ebf02740fe1b3d40c3117d
3d568f455599a9b0dbe6f30c6ab73428c457166c
/src/doccap/spool_thread.h
94f4f5082946160d9e25fa5161860f18225957e4
[ "Apache-2.0" ]
permissive
live0717/doccap
0b30e7cd6dab4beb9124b26197f861d325665591
7aaf94b6d7c924fed4569a7c7d72b106c72f46d1
refs/heads/master
2021-01-22T02:25:44.824261
2014-01-02T03:17:02
2014-01-02T03:17:02
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
1,213
h
spool_thread.h
// Copyright (C) 2009, www.wyu2008.com. All rights reserved // // Distributable under the terms of either the Apache License (Version 2.0) or // the GNU Lesser General Public License, as specified in the COPYING file. // // Author: wubenqi<wubenqi@gmail.com>, 2010-08-12 // #ifndef DOCCAP_SPOOL_THREAD_H_ #define DOCCAP_SPOOL_THREAD_H_ #pragma once #include <string> #include <vector> #include "doccap/thread.h" #define MAX_PRINTERJOB 100 #define WM_MSGDOCCAPDATA WM_USER+9999 //´òÓ¡¼à¿ØÏß³Ì class SpoolThread : public CThread { public: SpoolThread(const char* printer_name, const char* spl_dir, const char* temp_dir, HWND window); virtual ~SpoolThread(); BOOL Start(); virtual BOOL Run(); protected: BOOL InitInstance(); int ExitInstance(); private: BOOL SelectPrinter(); BOOL HandlePrinterJob(int spooling_flag = 0); BOOL GetSplFileName(int job_id, std::string* out_spl_name); //DataMember std::vector<std::string> emfs_; HANDLE printer_handle_; /* the printer to watch */ std::string printer_name_; HWND parent_window_; std::string spl_dir_; std::string temp_dir_; int spooling_flags_[MAX_PRINTERJOB]; }; #endif // DOCCAP_SPL_THREAD_H_
1a7cad3905f4cd32d2aaeb02142af2d3a6157ff5
844cda91c7e49ee87416c65b7824359735a60abd
/offer_autumn/yuanfudao2/2.cpp
bed085f1a40cfc0db89e5ed92de8e5bf0054941b
[]
no_license
wangxinghust/study-notes
f87571d69ab0b834f14a08a5567079e594b9673d
d2b3012e199bc20c96df5e1cce10a8e72cd2803a
refs/heads/master
2021-09-22T04:07:01.192749
2021-08-11T15:14:40
2021-08-11T15:14:40
218,684,073
0
0
null
null
null
null
UTF-8
C++
false
false
458
cpp
2.cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n, s; cin >> n >> s; vector<int> data(n); for (int i = 0; i < n; i++) { cin >> data[i]; } int left = 0, right = 0, len = 0, sum = 0; while (left < n) { while (right < n) { sum += data[right++]; if (sum <= s) { len = max(len, right - left); } else { break; } } sum -= data[left++]; } cout << len << endl; return 0; } //ac
4dd170a32750c93987479bc2a2d298aeddc5417a
1121785445c29515a68f2e31022ff33315518d68
/OJ/HDU_CODE/1106.cpp
40435410b5c610f6a9474d39bde7239fe7a30d8b
[]
no_license
cpsa3/backup
5406c4c14772c1789353c2cfe2a73e86677c392a
64ca598b5c15352c623b290d5e93fa815df3489f
refs/heads/master
2016-08-11T14:58:35.300203
2016-03-02T11:39:35
2016-03-02T11:39:35
45,887,997
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
1,031
cpp
1106.cpp
////////////////////System Comment//////////////////// ////Welcome to Hangzhou Dianzi University Online Judge ////http://acm.hdu.edu.cn ////////////////////////////////////////////////////// ////Username: 096040179JY ////Nickname: ___¼òÑÔ ////Run ID: ////Submit time: 2010-09-10 22:38:34 ////Compiler: GUN C++ ////////////////////////////////////////////////////// ////Problem ID: 1106 ////Problem Title: ////Run result: Accept ////Run time:0MS ////Run memory:264KB //////////////////System Comment End////////////////// #include <iostream> #include <string.h> #include<stdlib.h> using namespace std; char a[1010]; int b[1000]; int cmp(const void *a,const void *b) { return *((int *)a)-*((int *)b); } main () { int m,i,t,j; while(gets(a)) { m=strlen(a); j=0; for(i=0,t=0;i<m;i++) { if(a[i]!='5') t=t*10+a[i]-'0'; if(a[i]!='5'&&(i==m-1||a[i+1]=='5')) { b[++j]=t; t=0; } } qsort(b+1,j,sizeof(int),cmp); for(i=1;i<j;i++) printf("%d ",b[i]); printf("%d\n",b[i]); } return 0; }
cda55d36585570911b807ddd837f465ce5c93241
b9488958d91e2574037c71139ecd96109b204e35
/1DV433.S2.L16_WineChilling/Test.1DV433.S2.L16_WineChilling/WineChillingTest.cpp
49443d04534b22c91b4368ddf4eb6fdcf1e396ea
[ "MIT" ]
permissive
chriskarlsson/1DV433
191381c2cae4aae5c02c681745bbe902935ad93c
c4290a90a0e7b2fa6140ac7f4dd2479573ac7e8f
refs/heads/master
2021-09-04T00:35:12.945547
2018-01-13T11:21:34
2018-01-13T11:21:34
109,869,265
0
0
MIT
2018-01-13T11:21:35
2017-11-07T17:35:24
C++
UTF-8
C++
false
false
714
cpp
WineChillingTest.cpp
#include <vector> #include <numeric> #include "WineChilling.h" #define CATCH_CONFIG_MAIN #include "catch.hpp" using namespace std; TEST_CASE("Test case 1", "[calculateNeededTime]") { // Arrange auto wineTemp = 25; auto desiredWineTemp = 16; auto coolerTemp = -18; // Act auto neededTime = calculateNeededTime(wineTemp, desiredWineTemp, coolerTemp); // Assert REQUIRE(neededTime == 12); } TEST_CASE("Test case 2", "[calculateNeededTime]") { // Arrange auto wineTemp = 30; auto desiredWineTemp = 4; auto coolerTemp = -18; // Act auto neededTime = calculateNeededTime(wineTemp, desiredWineTemp, coolerTemp); // Assert REQUIRE(neededTime == 39); }
e21744fe890ae0375b063734c46858eeb6568d75
58ddb2389bac7195dfb1916157521e0d960abac6
/ch9/main.cpp
0cb7cd96c7ee90dad104c1a14b71c3e498564a7d
[]
no_license
richnakasato/acpp
a24888d8c6e5f8c626a14d72b381a6c16536a8ca
473d1517ea9ae52a2ae701769040cda4f4ca9a37
refs/heads/master
2020-04-15T08:41:05.396535
2019-04-06T03:16:12
2019-04-06T03:16:12
164,525,147
0
0
null
null
null
null
UTF-8
C++
false
false
1,020
cpp
main.cpp
#include <algorithm> #include <iomanip> #include <ios> #include <iostream> #include <stdexcept> #include "Student_info.h" int main() { std::vector<Student_info> students; Student_info temp; std::string::size_type maxlen = 0; while (temp.read(std::cin)) { maxlen = std::max(maxlen, temp.name().size()); students.push_back(temp); } std::sort(students.begin(), students.end(), compare); for (std::vector<Student_info>::iterator it = students.begin(); it != students.end(); ++it) { std::cout << it->name(); std::cout << std::string(maxlen + 1 - it->name().size(), ' '); try { double final_grade = it->grade(); std::streamsize prec = std::cout.precision(); std::cout << std::setprecision(3) << final_grade << std::setprecision(prec) << std::endl; } catch (std::domain_error e) { std::cout << e.what() << std::endl; } } return 0; }
e6b806175c987104c2486bd3da0797dcd1b2cc28
45e0fbd9a9dbcdd4fbe6aaa2fdb2aed296f81e33
/FindSecret/Classes/Native/System_Xml_System_Xml_XmlParserContext2544895291.h
d9ae445eb9ecba541269ad73923ae1ce65f0cc1d
[ "MIT" ]
permissive
GodIsWord/NewFindSecret
d4a5d2d810ee1f9d6b3bc91168895cc808bac817
4f98f316d29936380f9665d6a6d89962d9ee5478
refs/heads/master
2020-03-24T09:54:50.239014
2018-10-27T05:22:11
2018-10-27T05:22:11
142,641,511
0
0
null
null
null
null
UTF-8
C++
false
false
7,867
h
System_Xml_System_Xml_XmlParserContext2544895291.h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Object3080106164.h" #include "System_Xml_System_Xml_XmlSpace3324193251.h" // System.String struct String_t; // System.Text.Encoding struct Encoding_t1523322056; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t418790500; // System.Xml.XmlNameTable struct XmlNameTable_t71772148; // System.Collections.ArrayList struct ArrayList_t2718874744; // Mono.Xml.DTDObjectModel struct DTDObjectModel_t1729680289; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlParserContext struct XmlParserContext_t2544895291 : public Il2CppObject { public: // System.String System.Xml.XmlParserContext::baseURI String_t* ___baseURI_0; // System.String System.Xml.XmlParserContext::docTypeName String_t* ___docTypeName_1; // System.Text.Encoding System.Xml.XmlParserContext::encoding Encoding_t1523322056 * ___encoding_2; // System.String System.Xml.XmlParserContext::internalSubset String_t* ___internalSubset_3; // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::namespaceManager XmlNamespaceManager_t418790500 * ___namespaceManager_4; // System.Xml.XmlNameTable System.Xml.XmlParserContext::nameTable XmlNameTable_t71772148 * ___nameTable_5; // System.String System.Xml.XmlParserContext::publicID String_t* ___publicID_6; // System.String System.Xml.XmlParserContext::systemID String_t* ___systemID_7; // System.String System.Xml.XmlParserContext::xmlLang String_t* ___xmlLang_8; // System.Xml.XmlSpace System.Xml.XmlParserContext::xmlSpace int32_t ___xmlSpace_9; // System.Collections.ArrayList System.Xml.XmlParserContext::contextItems ArrayList_t2718874744 * ___contextItems_10; // System.Int32 System.Xml.XmlParserContext::contextItemCount int32_t ___contextItemCount_11; // Mono.Xml.DTDObjectModel System.Xml.XmlParserContext::dtd DTDObjectModel_t1729680289 * ___dtd_12; public: inline static int32_t get_offset_of_baseURI_0() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___baseURI_0)); } inline String_t* get_baseURI_0() const { return ___baseURI_0; } inline String_t** get_address_of_baseURI_0() { return &___baseURI_0; } inline void set_baseURI_0(String_t* value) { ___baseURI_0 = value; Il2CppCodeGenWriteBarrier(&___baseURI_0, value); } inline static int32_t get_offset_of_docTypeName_1() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___docTypeName_1)); } inline String_t* get_docTypeName_1() const { return ___docTypeName_1; } inline String_t** get_address_of_docTypeName_1() { return &___docTypeName_1; } inline void set_docTypeName_1(String_t* value) { ___docTypeName_1 = value; Il2CppCodeGenWriteBarrier(&___docTypeName_1, value); } inline static int32_t get_offset_of_encoding_2() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___encoding_2)); } inline Encoding_t1523322056 * get_encoding_2() const { return ___encoding_2; } inline Encoding_t1523322056 ** get_address_of_encoding_2() { return &___encoding_2; } inline void set_encoding_2(Encoding_t1523322056 * value) { ___encoding_2 = value; Il2CppCodeGenWriteBarrier(&___encoding_2, value); } inline static int32_t get_offset_of_internalSubset_3() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___internalSubset_3)); } inline String_t* get_internalSubset_3() const { return ___internalSubset_3; } inline String_t** get_address_of_internalSubset_3() { return &___internalSubset_3; } inline void set_internalSubset_3(String_t* value) { ___internalSubset_3 = value; Il2CppCodeGenWriteBarrier(&___internalSubset_3, value); } inline static int32_t get_offset_of_namespaceManager_4() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___namespaceManager_4)); } inline XmlNamespaceManager_t418790500 * get_namespaceManager_4() const { return ___namespaceManager_4; } inline XmlNamespaceManager_t418790500 ** get_address_of_namespaceManager_4() { return &___namespaceManager_4; } inline void set_namespaceManager_4(XmlNamespaceManager_t418790500 * value) { ___namespaceManager_4 = value; Il2CppCodeGenWriteBarrier(&___namespaceManager_4, value); } inline static int32_t get_offset_of_nameTable_5() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___nameTable_5)); } inline XmlNameTable_t71772148 * get_nameTable_5() const { return ___nameTable_5; } inline XmlNameTable_t71772148 ** get_address_of_nameTable_5() { return &___nameTable_5; } inline void set_nameTable_5(XmlNameTable_t71772148 * value) { ___nameTable_5 = value; Il2CppCodeGenWriteBarrier(&___nameTable_5, value); } inline static int32_t get_offset_of_publicID_6() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___publicID_6)); } inline String_t* get_publicID_6() const { return ___publicID_6; } inline String_t** get_address_of_publicID_6() { return &___publicID_6; } inline void set_publicID_6(String_t* value) { ___publicID_6 = value; Il2CppCodeGenWriteBarrier(&___publicID_6, value); } inline static int32_t get_offset_of_systemID_7() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___systemID_7)); } inline String_t* get_systemID_7() const { return ___systemID_7; } inline String_t** get_address_of_systemID_7() { return &___systemID_7; } inline void set_systemID_7(String_t* value) { ___systemID_7 = value; Il2CppCodeGenWriteBarrier(&___systemID_7, value); } inline static int32_t get_offset_of_xmlLang_8() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___xmlLang_8)); } inline String_t* get_xmlLang_8() const { return ___xmlLang_8; } inline String_t** get_address_of_xmlLang_8() { return &___xmlLang_8; } inline void set_xmlLang_8(String_t* value) { ___xmlLang_8 = value; Il2CppCodeGenWriteBarrier(&___xmlLang_8, value); } inline static int32_t get_offset_of_xmlSpace_9() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___xmlSpace_9)); } inline int32_t get_xmlSpace_9() const { return ___xmlSpace_9; } inline int32_t* get_address_of_xmlSpace_9() { return &___xmlSpace_9; } inline void set_xmlSpace_9(int32_t value) { ___xmlSpace_9 = value; } inline static int32_t get_offset_of_contextItems_10() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___contextItems_10)); } inline ArrayList_t2718874744 * get_contextItems_10() const { return ___contextItems_10; } inline ArrayList_t2718874744 ** get_address_of_contextItems_10() { return &___contextItems_10; } inline void set_contextItems_10(ArrayList_t2718874744 * value) { ___contextItems_10 = value; Il2CppCodeGenWriteBarrier(&___contextItems_10, value); } inline static int32_t get_offset_of_contextItemCount_11() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___contextItemCount_11)); } inline int32_t get_contextItemCount_11() const { return ___contextItemCount_11; } inline int32_t* get_address_of_contextItemCount_11() { return &___contextItemCount_11; } inline void set_contextItemCount_11(int32_t value) { ___contextItemCount_11 = value; } inline static int32_t get_offset_of_dtd_12() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___dtd_12)); } inline DTDObjectModel_t1729680289 * get_dtd_12() const { return ___dtd_12; } inline DTDObjectModel_t1729680289 ** get_address_of_dtd_12() { return &___dtd_12; } inline void set_dtd_12(DTDObjectModel_t1729680289 * value) { ___dtd_12 = value; Il2CppCodeGenWriteBarrier(&___dtd_12, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
3364c28fa0206f8ae5d15f8bf53943def4cab35e
33fb5c834556b41512ae7ac3162c56022f981484
/Arrays/Two Sum/Two Sum.cpp
620e1de5c8981bf649a8d33448e7b687cf70ce9b
[]
no_license
tips367/Data-Structures
73a6915956213fbffbf075ed67469b1f9484eaec
a133511437228659b8646ffbed05f3fbffc9a0e6
refs/heads/master
2022-08-14T18:59:41.866085
2022-07-09T14:29:01
2022-07-09T14:29:01
232,938,786
1
0
null
2021-07-02T21:24:23
2020-01-10T01:20:27
C++
UTF-8
C++
false
false
2,714
cpp
Two Sum.cpp
/* Write a program that, given an array A[] of n numbers and another number x, determines whether or not there exist two elements in A[] whose sum is exactly x. Examples: Input: arr[] = {0, -1, 2, -3, 1} sum = -2 Output: -3, 1 If we calculate the sum of the output, 1 + (-3) = -2 Input: arr[] = {1, -2, 1, 0, 5} sum = 0 Output: -1 No valid pair exists */ #include <iostream> #include <vector> #include <algorithm> #include <unordered_map> // 1. Brute Force...Time complexity : O(n^2) /* std::vector<int> twoSum(std::vector<int>& nums, int target) { for (int i = 0; i < nums.size() - 1; i++) { for (int j = i + 1; j < nums.size(); j++) { if ((nums[i] + nums[j]) == target) return std::vector<int>{i, j}; } } return std::vector<int>{-1}; } */ // 2. Sorting and two-pointers technique...Time complexity : O(nlogn) /* std::vector<int> twoSum(std::vector<int>& nums, int target) { std::sort(nums.begin(), nums.end()); int left = 0, right = nums.size() - 1; while (left < right) { if (nums[left] + nums[right] == target) return std::vector<int>{left, right}; else if (nums[left] + nums[right] < target) left++; else right--; } return {-1}; } */ // 3. Using two-pass hash table...Time complexity: O(n) /* std::vector<int> twoSum(std::vector<int>& nums, int target) { //Key is the number and value is its index in the vector. std::unordered_map<int, int> hash; for (int i = 0; i < nums.size(); i++) { hash[nums[i]] = i; } for (int i = 0; i < nums.size(); i++) { int numberToFind = target - nums[i]; if (hash.find(numberToFind) != hash.end() && hash[numberToFind] != i) { return { hash[numberToFind], i }; } } return {-1}; } */ // 4. Using one-pass hash table...Time complexity: O(n) std::vector<int> twoSum(std::vector<int>& nums, int target) { //Key is the number and value is its index in the vector. std::unordered_map<int, int> hash; for (int i = 0; i < nums.size(); i++) { int numberToFind = target - nums[i]; if (hash.find(numberToFind) != hash.end()) { return { hash[numberToFind], i }; } // Number is not found so put it in the map hash[nums[i]] = i; } return { -1 }; } int main() { std::vector<int> nums = { 1, 4, 45, 6, 10, -8 }; int target = 16; std::vector<int> result = twoSum(nums, target); for (int a : result) if (a != -1) std::cout << nums[a] << " "; else std::cout << a; return 0; }
98992443bd353e02e5cfad8f6cfc51a03a65fd2c
68d288249615ca9c1397451a02b2f6490b3b2be0
/src/util/halstring.cpp
c302cad790f08d07dad6e5a926d913b8d70b7328
[]
no_license
janwilts/hal-9001
ed72bf64659a31cb56f03f22c2fc2c0d771bd085
6205466fb64e15a3bf10517c1fcbf4d0391688bc
refs/heads/master
2021-09-10T22:58:14.140635
2018-04-03T18:17:58
2018-04-03T18:17:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,621
cpp
halstring.cpp
#include "halstring.h" unsigned long hal::String::size() const { return string.size(); } void hal::String::reverse() { std::string new_string; for(long i = string.size() - 1; i >= 0; --i) new_string.push_back(string[i]); string = new_string; } void hal::String::trim() { std::string front_string; std::string back_string; bool front_found = false; bool back_found = false; for(char c : string) { if((c == ' ' || c == '\t' || c == '\n') && !front_found) continue; else front_found = true; front_string.push_back(c); } for(long i = front_string.size() - 1; i >= 0; --i) { if((front_string[i] == ' ' || front_string[i] == '\t' || front_string[i] == '\n') && !back_found) continue; else back_found = true; back_string.push_back(front_string[i]); } String new_string(back_string); new_string.reverse(); string = new_string.string; } std::vector<hal::String> hal::String::split(const char& delimiter) const { std::vector<String> elements; std::stringstream ss(string); std::string item; while (std::getline(ss, item, delimiter)) { elements.emplace_back(item); } return elements; } std::string hal::String::get() const { return string; } bool hal::String::operator==(const hal::String& other) const { return string == other.string; } bool hal::String::operator==(const std::string& other) const { return string == other; } bool hal::String::operator==(const char* other) const { return string == other; } bool hal::String::operator!=(const hal::String& other) const { return !(*this == other); } bool hal::String::operator!=(const std::string& other) const { return !((*this) == other); } bool hal::String::operator!=(const char* other) const { return !((*this) == other); } bool hal::String::operator<(const hal::String& other) const { return string < other.string; } bool hal::String::operator>(const hal::String& other) const { return string > other.string; } hal::String hal::String::operator+(const hal::String& other) const { return String(string + other.string); } hal::String hal::String::operator+(const std::string& other) const { return String(string + other); } hal::String hal::String::operator+(const char* other) const { return String(string + other); } char hal::String::operator[](const int& index) const { return string[index]; } std::ostream& operator<<(std::ostream& os, const hal::String& hs) { os << hs.get(); return os; }
411f561704124f8d527f2db24ce2c8107fbb6fad
c08f2e11303724242c95b43d0edb33959090dbd3
/src/PosRanking.cpp
232e911959f1d2e46cf9c2f12dab0107b2848d40
[ "MIT" ]
permissive
lucasltarga/battleship
2d7da82074c08633554e7efdf0671a96aa66148c
4c4a64ca177f94c115c81bab97a986cf3fb35be4
refs/heads/main
2023-05-08T06:33:38.465348
2021-05-24T01:55:53
2021-05-24T01:55:53
359,605,476
0
0
null
null
null
null
UTF-8
C++
false
false
506
cpp
PosRanking.cpp
#include "../include/PosRanking.hpp" PosRanking::PosRanking(){ this->name = nullptr; this->points = 0; } PosRanking::PosRanking(std::string name, int points){ this->name = name; this->points = points; } PosRanking::~PosRanking(){ } std::string PosRanking::getName(){ return this->name; } int PosRanking::getPoints(){ return this->points; } void PosRanking::setName(std::string name){ this->name = name; } void PosRanking::setPoints(int points){ this->points = points; }
d87e798ea29868345fddfd9055d5055829b16298
b172d1c80f42156b372fe058e560d1c6f79dbd04
/SW-expert-academy/CPP/1767.cpp
3c3ba049bf3cf06b76e4a86227068e012cb2508c
[]
no_license
wlsl4239/Algorithm-study
49d6e443415101496775b77760f047c4f7931ab4
f42663041965de61b036280c0ff93491e384db2e
refs/heads/master
2020-04-13T09:46:08.097881
2019-10-02T06:26:20
2019-10-02T06:26:20
163,120,269
1
0
null
null
null
null
UTF-8
C++
false
false
2,222
cpp
1767.cpp
#include <iostream> #include <cstdio> #include <algorithm> #include <queue> #include <vector> #include <stack> #include <sstream> #include <list> #include <cmath> #include <tuple> #include <cstring> #include <string.h> #include <limits> using namespace std; int n; int arr[13][13]; // 0:empty 1:core 2:line int t; vector<pair<int,int>> v; int pnum, res; bool isDraw(int x, int y, int dir) { if (dir == 0) { for (int i = y + 1;i < n;i++) if (arr[x][i] != 0) return false; } else if (dir == 1) { for (int i = x + 1;i < n;i++) if (arr[i][y] != 0) return false; } else if (dir == 2) { for (int i = 0;i < y;i++) if (arr[x][i] != 0) return false; } else if (dir == 3) { for (int i = 0;i < x;i++) if (arr[i][y] != 0) return false; } return true; } int drawLine(int x, int y, int dir, int flag) { int ans = 0; if (dir == 0) { for (int i = y + 1; i < n; i++) { arr[x][i] = (flag == 0) ? 2 : 0; ans++; } } else if (dir == 1) { for (int i = x + 1; i < n; i++) { arr[i][y] = (flag == 0) ? 2 : 0; ans++; } } else if (dir == 2) { for (int i = 0; i < y; i++) { arr[x][i] = (flag == 0) ? 2 : 0; ans++; } } else { for (int i = 0; i < x; i++) { arr[i][y] = (flag == 0) ? 2 : 0; ans++; } } return ans; } void dfs(int idx, int num, int line) { if (idx == v.size()) { if (pnum < num) { res = line; pnum = num; } else if (pnum == num) { if (res > line) res = line; } } else { for (int i = 0; i < 4; i++) { if (isDraw(v[idx].first, v[idx].second, i)) { dfs(idx + 1, num + 1, line + drawLine(v[idx].first, v[idx].second, i, 0)); drawLine(v[idx].first, v[idx].second, i, 1); } } dfs(idx + 1, num, line); } } int main() { cin >> t; for (int test = 1;test <= t;test++) { cin >> n; for (int i = 0;i < n;i++) for (int j = 0;j < n;j++) { cin >> arr[i][j]; if (i == 0 || j == 0 || i == n - 1 || j == n - 1) continue; if (arr[i][j] == 1) { v.push_back({ i, j }); } } res = numeric_limits<int>::max(); pnum = 0; dfs(0, 0, 0); cout << "#" << test << " " << res << "\n"; v.clear(); for (int i = 0;i < n;i++) for (int j = 0;j < n;j++) arr[i][j] = 0; } }
0b44a644be88a44351fac862d0503e3409aa492c
c2d871cba94b0d683586451d11b2d9070c85eed4
/BST/BST_search.h
00180be2a7b4f18fe88539a75fa1b2c4f4d11a56
[]
no_license
YGBM/demo5c
4aa83a7d978ab4c401795be1dd046690429ddc8b
0bb885e0e9e8d88b6e41eb2bd1f5a43acb1d8870
refs/heads/master
2023-05-14T02:13:53.098785
2021-05-22T15:23:24
2021-05-22T15:23:24
366,353,810
0
0
null
null
null
null
UTF-8
C++
false
false
290
h
BST_search.h
#pragma once template <typename T> BinNodePosi(T) & BST<T>::search(const T &e) { if(!_root || e == _root->data) {_hot = NULL;return _root;} for(_hot = _root;;){ BinNodePosi(T)& c = (e<_hot->data)? _hot->lc:_hot->rc; if(!c || e == c->data) return c;_hot = c; } }
2491b939fece966c52b08e81bcf1f07edba554d8
794c094903b8b6693b50e2164952ed1ddbb55fa3
/modules/snow/functions/CfgFunctions.hpp
d61d726906c68de7f4ecfd92236975319eb0294e
[ "MIT" ]
permissive
PiZZAD0X/Olsen-Framework-Arma-3
a8acefedbf934a2fbb097c3690589a9b355aba47
b5467ef6a6f9dd99fcee1b4d046219c524058e35
refs/heads/master
2022-09-22T01:19:33.280212
2022-08-25T19:50:29
2022-08-25T19:50:29
132,228,519
2
1
MIT
2020-04-11T01:28:46
2018-05-05T08:20:12
SQF
UTF-8
C++
false
false
181
hpp
CfgFunctions.hpp
class COMPONENT { tag = COMPONENT; class SNOW { file = "modules\snow\functions\snow"; class breathEffect {}; class posCheck {}; class shiver {}; class snowFX {}; }; };
0739e4246817169897149cc4c481562528e66197
0532d8f6ced3041686d029a7c325bb5cc93832ca
/ACC/trunk/src/test/RepositoryVisitor.cpp
90efaabe21447d1068daf456ec721324737b2b2e
[]
no_license
moonbirdzhp/Project
cc54b7ef879111643050a7b0af758ec563be8ec3
5718d8b5a943268cdf3346bac2f9432491a2821f
refs/heads/master
2020-05-18T11:22:11.898606
2013-10-31T09:02:13
2013-10-31T09:02:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
229
cpp
RepositoryVisitor.cpp
#include "RepositoryVisitor.h" int RepositoryVisitor::svc() { ACE_DEBUG((LM_DEBUG,ACE_TEXT("[%T](%P|%t) Visitor Thread Running...\n"))); for(int i=0; i<NUM_USERS; i++) this->_rep.updateDevice(i); return 0; }
f335bf161fe8151b61e5b0519d70128c1d83c033
8ddebade514e7c8cdf73c4422fa0a40d0ca345ef
/C++ 고급기능/STL 컨테이너/STL 컨테이너.cpp
b1e7d3b3390121438cc0040ab363c6238d612851
[]
no_license
ttotti/Zero-Kara-Hajimeru-C-PlusPlus-Seikatsu
7f420d754030dc490febc072202b60c472108dc6
1cb631c7e165ed5d40132ed0db36d8994189cbab
refs/heads/master
2021-09-24T02:10:20.265279
2018-10-01T14:40:23
2018-10-01T14:40:23
150,974,945
0
0
null
null
null
null
UHC
C++
false
false
4,771
cpp
STL 컨테이너.cpp
#include <list> // list 클래스를 사용하기 위해서는 list 헤더 파일을 포함해야 한다 #include <iostream> // STL 컨테이너 // 컨테이너(Containers)란 다수의 정보를 담는 역할을 하는 클래스를 말한다 // 보통 링크드 리스트나 동적인 배열 그리고 큐(Queue) 나 맵(Map) 등의 클래스들을 컨테이너 라고 부른다 int main() { // int 타입을 담을 링크드 리스트 생성 std::list<int> intList; // 0~9까지 링크드 리스트에 넣는다 for (int i = 0; i < 10; ++i) // list 클래스의 push_back() 멤버 함수를 사용해서 노드를 추가한다 // 이름에서 알 수 있는 것처럼 리스트의 뒤쪽에 노드를 추가하는 역할을 한다 intList.push_back(i); // 5를 찾아서 제겋나다 intList.remove(5); // 링크드 리스트의 내용을 출력한다 // iterator 클래스의 객체인 it를 생성하고 있다 // std::list<int>:: 처럼 써준 것은 iterator 클래스를 정의한 위치를 알려주기 위한 용도일 뿐이다 // 중요한 것은 iterator 클래스의 객체를 생성하고 있다는 점인데 // 바로 이 iterator 클래스가 노드의 위치를 가리키는 역할을 한다 // 즉 iterator 객체 it 를 사용해서 첫번째 노드부터 마지막 노드까지 반복적으로 가리키려는 것이다 std::list<int>::iterator it; // intList.begin()과 intList.end()함수를 호출하고 있는데 각각 리스트의 첫번째 노드와 마지막 노드의 위치를 반환하는 멤버 함수다 // 또한 ++it에 의해서 it는 다음 노드를 가리키게 되는데 // 마치 배열의 원소를 가리키는 포인터에 ++p처럼 해주면 다음 원소를 가리키게 되는 것과 같다 // iterator 클래스를 만든 사람들이 일부러 포인터를 흉내내기 위해서 ++ 연산자를 오버로드 한것이다 // 이해가 안되거나 자세한것은 인터넷과 책864p를 참고한다 for (it = intList.begin(); it != intList.end(); ++it) // 마지막으로 *it처럼 노드에 보관된 값을 읽어오게 만든다 // 이 역시 포인터에 *p처럼 해주면 포인터가 가리키는 곳에 보관한 값을 읽어오게 만드는것과 같다 // 마찬가지로 iterator 클래스를 만든 사람들이 일부러 포인터를 흉내내기 위해 * 연산자를 오버로딩한 것이다 std::cout << *it << "\n"; return 0; } // 우리가 만들었던 링크드 리스트보다 좋은 점 // 방금 본 list 클래스가 우리가 만들었던 링크드 리스트보다 눈에 띄게 좋은 점이 하나 있다 // 우리가 만들었던 링크드 리스트 클래스는 모든 타입을 담기 위해 void* 타입을 사용했기 때문에 노드에 보관된 정보를 제거하는데 문제가 있었다 // 그리고 그 문제를 해결하기 위해 함수 포인터를 쓰는 등 복잡한 구조가 될 수 밖에 없었고 링크드 리스트 클래스의 사용법 역시 복잡해졌다 (프로젝트 성적표 ver3.x) // 하지만 템플릿 클래스인 list 클래스의 경우에는 그런 문제가 없다 // 예를 들어 list<Student> 라고 해주면 Student 객체를 담을 수 있는 새로운 list 클래스가 생겨나는 것이기 때문이다 // 즉 우리가 직접 Student 객체 전용의 링크드 리스트를 구현한 것과 동일한 효과를 갖는 것이다 // STL에서는 다양한 STL 컨테이너를 제공한다 자세한건 인터넷, 책865p를 참고한다 // 중요한 것은 이런 컨테이너 클래스들이 모두 유사한 인터페이스를 가진다는 점이다 // 예를 들어 list 클래스가 아닌 vector 클래스를 사용하는 코드로 만들고 싶다면 간단하게 list라고 적힌 부분을 vector 라고만 바꿔주면 된다 // 어파피 사용법은 동일하기 때문이다 // 바로 이것이 STL의 철학이며 최소한의 소스 수정으로 컨테이너를 다른 것으로 교체할 수 있는 것이다 // 예를 들어 노드(혹은 원소) 에 빨리 접근하는 것이 중요한 프로그램이 있다면 vector 클래스를 사용하는 것이 좋다 // 배열이 링크드 리스트 보다 노드에 대한 접근 속도가 빠르기 때문이다 // 그런데 나중에 프로그램의 성격이 변해서 노드의 추가나 삭제가 빈번하게 일어난다면 list 클래스를 바꿀 필요가 있다 // 링크드 리스트는 노드를 추가하고 제거하는 속도가 배열보다 훨씬 빠르기 때문이다 // STL을 사용하면 이렇게 컨테이너 클래스를 바꿔야 하는 경우에도 단지 몇 줄의 코드만 수정하면 된다 // 이런 특징은 프로그램의 개발이나 유지보수 시간을 단축하는 데 큰 도움이 된다
74a598efdbf1ff511d8c3c8358b6857aae905584
b1aed5e3c9249c4c4eee3ddc548681f95d7c6754
/a42/main.h
7ec515afb01581db2423badb42e9d12bd523b4ec
[]
no_license
franksnightmare/c-2week6
46e54d232e3af06e3379e1d3973b0a340cbbb98a
b72dd0d7ce16e649dbd1132f918766c87dac0fb0
refs/heads/master
2021-01-11T10:32:57.223297
2016-12-21T21:14:14
2016-12-21T21:14:14
76,350,443
0
0
null
null
null
null
UTF-8
C++
false
false
190
h
main.h
#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <errno.h> #include <sys/wait.h> #include <iostream> using namespace std; void usechildoutput(int count, char buffer[]);
d74811ec9b34b49aefd5a5a27adc47dae159bec3
447be6d71898f33ebbf3b71db8c4fdaaf670bc0b
/source/application/parameters/ParametersItemField.h
4cf6dc7e31ec02e635cfd8f682ba467aa8c1be98
[]
no_license
CST-Modelling-Tools/TonatiuhPP
35bc1b6f4067364875471a5be99053df01df5883
664250e8ef38e7d6dab3ed35d6fab7f732edec19
refs/heads/master
2023-04-13T03:12:14.843634
2022-08-26T12:09:02
2022-08-26T12:09:02
380,948,961
3
2
null
null
null
null
UTF-8
C++
false
false
549
h
ParametersItemField.h
#pragma once #include <QStandardItem> class SoField; class SoSensor; class SoFieldSensor; class ParametersItemField: public QStandardItem { public: ParametersItemField(SoField* field); ~ParametersItemField(); QVariant data(int role = Qt::UserRole + 1) const; void setData(const QVariant& value, int role = Qt::UserRole + 1); SoField* field() const {return m_field;} void updateData(); private: static void updateItem(void* data, SoSensor*); private: SoField* m_field; SoFieldSensor* m_sensor; };
59db48a71b866630eef8ce8f292f5224113ac1b2
901b564d1746c2df1d0e6bba221814a86add1c2c
/cpu_busy.cc
d3c5cb8c32cfad6a63875e3c898b1103963283d2
[]
no_license
EddiePi/memory-test
6551a713bb039e1926d6c025bc7d1174f5f25a2c
0563f45c98a36b9daad2a96e49d9bbbf05df8640
refs/heads/master
2020-05-31T20:43:36.062472
2019-09-16T19:37:00
2019-09-16T19:37:00
190,481,328
0
0
null
null
null
null
UTF-8
C++
false
false
1,106
cc
cpu_busy.cc
#include<iostream> #include<thread> #include<vector> #include<ctime> #include<stdlib.h> #include<sys/time.h> #include<unistd.h> #include<sys/syscall.h> #include<sys/types.h> #include<stdio.h> //size of memory in terms of GB //#define S 1*600 //size of 1MB //#define M 1024*1024 //default is 8 //number of threads //#define N 16 using namespace std; void allocate(int tid) { cout << tid << " start cpu busy" << endl; while(1) { //int a; //a = 1; } } void _cpu_(int index) { //sieze of 1K pointer allocate(index); return; } int main(int argc, char *argv[]) { int N = 16; if (argc < 2) { printf("using default thread: %d\n", N); } else { N = atoi(argv[1]); } int pid = getpid(); std::cout << "pid: " << pid << endl; //timespec ts, te; //clock_gettime(CLOCK_REALTIME, &ts); //std::cout<<"start"<<std::endl; std::vector<thread> threads; for(int i = 1; i <= N; i++) { threads.push_back(thread(&_cpu_,i)); } for(auto& th : threads){ th.join(); } //clock_gettime(CLOCK_REALTIME, &te); //std::cout << "finish " << double(te.tv_sec-ts.tv_sec) << std::endl; return 0; }
b5236a2ac9ea0e5dd006d395eaa5ac26c43edbc5
4375f4681abe4329db11c91d37bb87a556be6019
/src/ccolor.cc
66cf69e6799bdf446f0e58d61d92b90a3af49eee
[]
no_license
drewnoakes/camshaft
4e0f7931f541b56042985c554fbeeca12274ff00
714bddabdc028d2f5fc14e3b06b67abbd6f4018b
refs/heads/master
2023-08-14T11:47:51.544164
2015-02-06T16:58:08
2015-02-06T16:58:08
30,421,335
1
0
null
null
null
null
UTF-8
C++
false
false
2,754
cc
ccolor.cc
#include "camshaft/ccolor.hh" #include <stdio.h> #define CC_FORECOLOR(C) "\033[" #C "m" #define CC_BACKCOLOR(C) "\033[" #C "m" #define CC_ATTR(A) "\033[" #A "m" enum Color { Black = 0, Red = 1, Green = 2, Yellow = 3, Blue = 4, Magenta = 5, Cyan = 6, White = 7, Default = 9 }; enum Attributes { Reset = 0, Bright = 1, Dim = 2, Underline = 3, Blink = 4, Reverse = 5, Hidden = 6 }; char* ccolor::color(int attr, int fg, int bg) { static char command[13]; // Command is the control command to the terminal sprintf(command, "%c[%d;%d;%dm", 0x1B, attr, fg + 30, bg + 40); return command; } const char* ccolor::error = CC_FORECOLOR(91); const char* ccolor::warning = CC_FORECOLOR(95); const char* ccolor::info = CC_FORECOLOR(92); const char* ccolor::reset = CC_ATTR(0); const char* ccolor::bold = CC_ATTR(1); const char* ccolor::underline = CC_ATTR(4); const char* ccolor::fore::black = CC_FORECOLOR(30); const char* ccolor::fore::blue = CC_FORECOLOR(34); const char* ccolor::fore::red = CC_FORECOLOR(31); const char* ccolor::fore::magenta = CC_FORECOLOR(35); const char* ccolor::fore::green = CC_FORECOLOR(92); const char* ccolor::fore::cyan = CC_FORECOLOR(36); const char* ccolor::fore::yellow = CC_FORECOLOR(33); const char* ccolor::fore::white = CC_FORECOLOR(37); const char* ccolor::fore::console = CC_FORECOLOR(39); const char* ccolor::fore::lightblack = CC_FORECOLOR(90); const char* ccolor::fore::lightblue = CC_FORECOLOR(94); const char* ccolor::fore::lightred = CC_FORECOLOR(91); const char* ccolor::fore::lightmagenta = CC_FORECOLOR(95); const char* ccolor::fore::lightgreen = CC_FORECOLOR(92); const char* ccolor::fore::lightcyan = CC_FORECOLOR(96); const char* ccolor::fore::lightyellow = CC_FORECOLOR(93); const char* ccolor::fore::lightwhite = CC_FORECOLOR(97); const char* ccolor::back::black = CC_BACKCOLOR(40); const char* ccolor::back::blue = CC_BACKCOLOR(44); const char* ccolor::back::red = CC_BACKCOLOR(41); const char* ccolor::back::magenta = CC_BACKCOLOR(45); const char* ccolor::back::green = CC_BACKCOLOR(42); const char* ccolor::back::cyan = CC_BACKCOLOR(46); const char* ccolor::back::yellow = CC_BACKCOLOR(43); const char* ccolor::back::white = CC_BACKCOLOR(47); const char* ccolor::back::console = CC_BACKCOLOR(49); const char* ccolor::back::lightblack = CC_BACKCOLOR(100); const char* ccolor::back::lightblue = CC_BACKCOLOR(104); const char* ccolor::back::lightred = CC_BACKCOLOR(101); const char* ccolor::back::lightmagenta = CC_BACKCOLOR(105); const char* ccolor::back::lightgreen = CC_BACKCOLOR(102); const char* ccolor::back::lightcyan = CC_BACKCOLOR(106); const char* ccolor::back::lightyellow = CC_BACKCOLOR(103); const char* ccolor::back::lightwhite = CC_BACKCOLOR(107);
0a79a7546753d6f8acb573793c03d48a23f4406d
ddbe65f965986fa300b63799168c2b93842b1c4d
/src/entity/bomb/Bomb.hpp
3bdd7031737d93b6b6e9419101dafd37d6b41d88
[]
no_license
Victor-Frocrain/OOP_indie_studio_2019
04d4fd33bc288449981ed52422b2c423cf5044f3
91ec51ff0f74d241833e583cfc6b35545fa38809
refs/heads/master
2023-01-14T09:47:38.438626
2020-11-19T17:10:46
2020-11-19T17:10:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,156
hpp
Bomb.hpp
/* ** EPITECH PROJECT, 2020 ** Indie Studio ** File description: ** Bomb.hpp */ #ifndef BOMB_HPP_ #define BOMB_HPP_ #include "../AEntity.hpp" #include "../power_up/PowerUp.hpp" #include <vector> class Bomb : public AEntity { public: Bomb(const int &range, entityMap &map, const irr::core::vector3df &pos, size_t &nbBomb); ~Bomb(void); virtual bool update(const double &deltaTime) noexcept final; std::vector<irr::core::vector3df> getExplosingPos(void) const noexcept; int getRange(void) const; void destroyEntity(void) const noexcept; /* Private method */ private: int isExplosionStopped(const irr::core::vector3df &crossPos) const noexcept; bool isCollision(const IEntity *entity, const IEntity::EntityType &entityType, const irr::core::vector3df &explosionPos) const noexcept; irr::core::vector3df getCrossPosition(const std::pair<int, int> & cross, const int &range) const noexcept; private: static const double _timeBeforeExplosion; const int _range; double _lifeTime; size_t &_nbBomb; }; #endif /* BOMB_HPP_ */
94bcaea4a05ffac9b9a998d290c9fb2e2a667576
7d145717e63812d3ba83e74f485aaec9d9830d27
/Deque/two.cpp
0cdd779012330c06f9bc97b339bcca85512590e0
[]
no_license
0APOCALYPSE0/cpp-concepts-Part-2
4009849d84ca023e2c1fcc72ba6e2c6904e31562
fc88baf3507f88cdf49005f47638577ab394566c
refs/heads/master
2023-03-30T09:21:09.919638
2021-04-01T07:00:36
2021-04-01T07:00:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
934
cpp
two.cpp
/* (2) Problem Statement: Find the length of longest substring with non-repeating characters. It is a sliding window problem. */ #include<bits/stdc++.h> using namespace std; int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif char a[] = "babbb"; int n = strlen(a); int current_len = 1; int max_len = 1; //to keep track of the visited characters int visited[256]; for (int i = 0; i < 256; i++) { visited[i] = -1; } //present at 0th index visited[a[0]] = 0; for (int i = 0; i < n; i++) { int last_occ = visited[a[i]]; //expansion if there's no last occurence or it occured outside the window if (last_occ == -1 || i - current_len > last_occ) { current_len += 1; } //contraction + expansion else { current_len = i - last_occ; } if (current_len > max_len) { max_len = current_len; } visited[a[i]] = i; } cout << max_len; }
13131d6b14e8d57744ea85210eef487cc628e0ce
4b4adfac7af5f27827667aaada0dc9969b91bf76
/Source/Horror/Guns/SpreadShotGun.h
2adcaf0d82923da0703de2fca0395387f10cab01
[]
no_license
sdejhgfu/Horror-Game
102628d3518083b2333bf15baf53c862e04b59a8
a1878f5de65572d97a8c4335b34ac7e959093ccc
refs/heads/master
2021-05-19T16:59:34.626576
2020-06-04T19:50:04
2020-06-04T19:50:04
252,038,702
0
0
null
null
null
null
UTF-8
C++
false
false
289
h
SpreadShotGun.h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Guns/GunBaseClass.h" #include "SpreadShotGun.generated.h" /** * */ UCLASS() class HORROR_API ASpreadShotGun : public AGunBaseClass { GENERATED_BODY() };
2cea31dd866de21b0a3dc1c46d62e72488309cbb
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/CMake/CMake-gumtree/Kitware_CMake_repos_basic_block_block_12307.cpp
17012ce1ef4cb7cc0a266553c36416c271125537
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
231
cpp
Kitware_CMake_repos_basic_block_block_12307.cpp
{ /* stat(2) st_dev field, e.g. the device ID where the * inode resides */ int r; dev_t dev; r = parse_device(&dev, &a->archive, val); if (r == ARCHIVE_OK) archive_entry_set_dev(entry, dev); return r; }
7c48311b60131b365ac190748ece39ecfbc91314
310c510f20db78880f5362354c12e8839db90558
/CodeForAli/MERGE_NEW_ESG_CODE/PROD_CCG_V2.1_27032013/PRICER_GMXB_DLL/Utility classes/.svn/text-base/Fund.h.svn-base
e91fd6e4c5de1fb049ae7ef2fb55cc0e50d28d80
[]
no_license
sdzouiten01/sz-project
da8a057726eb07b9b833d75a0d94822b0b264b05
f7b0057dad14b8c1eed0c8d25ef82749cf52ccda
refs/heads/master
2021-01-21T04:19:29.495647
2016-08-13T17:59:40
2016-08-13T17:59:40
37,811,086
0
0
null
null
null
null
UTF-8
C++
false
false
3,632
Fund.h.svn-base
#pragma once #include "../stdafx.h" #include <vector> using namespace std; /* * This class gather all the information related to a fund * string alh_fund_id: The name of the fund * double percent_fee_amount: The percentage of fees for this fund * double fund_value : The fund value * double current_beta[MAXIMUM_NUMBER_OF_INDEXES]: Array containing the values of the beta for t = 1 * double target_beta[MAXIMUM_NUMBER_OF_INDEXES]: Array containing the values of the targets beta * int nb_indexes: The total number of indexes for this fund * int position_in_beta_array[MAXIMUM_NUMBER_OF_INDEXES]: Array containing the id of the non null indexes (for optimization purpose only) * int fund_id : The id of the fund (The list is fund_list sheet) */ class Fund { public : string alh_fund_id; double percent_fee_amount; double fund_value; double current_beta[MAXIMUM_NUMBER_OF_INDEXES]; double target_beta[MAXIMUM_NUMBER_OF_INDEXES]; int nb_indexes; int position_in_beta_array[MAXIMUM_NUMBER_OF_INDEXES]; int fund_id; vector<int> list_of_shortsell_group_ids; ~Fund() { } Fund() { this->nb_indexes = 0; memset(this->current_beta, 0, sizeof(this->current_beta)); memset(this->target_beta, 0, sizeof(this->target_beta)); memset(this->position_in_beta_array, 0, sizeof(this->position_in_beta_array)); } Fund(const string& alh_f_id, double perc_fee_amt, const string& list_of_current_betas, const string& list_of_target_betas) { this->alh_fund_id = alh_f_id; this->percent_fee_amount = perc_fee_amt; this->fill_betas(list_of_target_betas, true); this->fill_betas(list_of_current_betas, false); memset(this->current_beta, 0, sizeof(this->current_beta)); memset(this->target_beta, 0, sizeof(this->target_beta)); memset(this->position_in_beta_array, 0, sizeof(this->position_in_beta_array)); this->nb_indexes = 0; } void fill_betas(const string& betas, bool is_target_split) { int l = betas.length(); char *retPtr = new char[l + 1]; strcpy(retPtr, betas.c_str()); retPtr[betas.length()] = '\0'; double split = atof(strtok(retPtr, ",")); if (is_target_split) { if (split != 0) this->nb_indexes++; this->target_beta[0] = split; } else this->current_beta[0] = split; for (int i = 1 ; i < MAXIMUM_NUMBER_OF_INDEXES; i++) { split = atof(strtok(NULL, ",")); if (is_target_split) { if (split != 0) this->nb_indexes++; this->target_beta[i] = split; } else this->current_beta[i] = split; } delete retPtr; } void optimize_array() { int pos = 0; for (int i = 0 ; i < MAXIMUM_NUMBER_OF_INDEXES; i++) { if (this->target_beta[i] != 0.) { position_in_beta_array[pos] = i; pos++; } } } void set_alh_fund_id(const string& fund_name) { this->alh_fund_id = fund_name; } void set_percentage_fee_amount(double fee) { this->percent_fee_amount = fee; } double get_percentage_fee_amount() { return this->percent_fee_amount; } void set_fund_value(double valo) { this->fund_value = valo; } double get_fund_value() { return this->fund_value; } double get_fund_id() { return this->fund_id; } void set_fund_id(int id) { this->fund_id = id; } void add_shortsell_goup_id(int shortsell_group_id) { this->list_of_shortsell_group_ids.push_back(shortsell_group_id); } bool check_group_shortsell_id(int group_id) { for (int i=0; i < (int)this->list_of_shortsell_group_ids.size(); i++) { if (this->list_of_shortsell_group_ids[i] == group_id) return true; } return false; } string get_alh_fund_id() { return this->alh_fund_id; } };
ef4659cb18295b31b882545718f364aa52c9d294
61d3c8b902d75bd723231dad257b324c1ed9e41b
/src/I2CDevice.cpp
2902427fad9d549bc795cd4106155499c10c4961
[]
no_license
Meumeu/librpiplusplus
6cfac8ee75da5c30a0bccba6634f37126f07806a
d8e4229ab1f4648a57b34c4c516271958ede67f0
refs/heads/master
2021-08-27T22:07:04.959219
2017-11-22T20:47:14
2017-11-22T20:47:14
113,751,434
0
0
null
null
null
null
UTF-8
C++
false
false
2,757
cpp
I2CDevice.cpp
/* * <one line to give the program's name and a brief idea of what it does.> * Copyright (C) 2017 Guillaume Meunier <guillaume.meunier@centraliens.net> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "I2CDevice.h" #include <linux/i2c.h> #include <linux/i2c-dev.h> #include <unistd.h> // close #include <fcntl.h> // open #include <stropts.h> // ioctl #include <exception> #include <stdexcept> #include <boost/lexical_cast.hpp> I2CDevice::I2CDevice(const std::string& path, std::uint8_t address) { fd = open(path.c_str(), O_RDWR); if (fd < 0) throw std::runtime_error("Cannot open " + path); if (ioctl(fd, I2C_SLAVE, address) < 0) { close(fd); throw std::runtime_error("Cannot open address " + boost::lexical_cast<std::string>(address)); } } I2CDevice::I2CDevice::I2CDevice(I2CDevice && other) : fd(other.fd) { other.fd = -1; } I2CDevice::~I2CDevice() { if (fd >= 0) close(fd); } std::uint8_t I2CDevice::read8(int reg) { i2c_smbus_data data; i2c_smbus_ioctl_data args; args.read_write = I2C_SMBUS_READ; args.command = reg; args.size = I2C_SMBUS_BYTE_DATA; args.data = &data; if (ioctl(fd, I2C_SMBUS, &args)) throw I2CException(); return data.byte; } std::uint16_t I2CDevice::read16(int reg) { i2c_smbus_data data; i2c_smbus_ioctl_data args; args.read_write = I2C_SMBUS_READ; args.command = reg; args.size = I2C_SMBUS_WORD_DATA; args.data = &data; if (ioctl(fd, I2C_SMBUS, &args)) throw I2CException(); return data.word; } void I2CDevice::write8(int reg, std::uint8_t value) { i2c_smbus_data data; i2c_smbus_ioctl_data args; args.read_write = I2C_SMBUS_WRITE; args.command = reg; args.size = I2C_SMBUS_BYTE_DATA; args.data = &data; data.byte = value; if (ioctl(fd, I2C_SMBUS, &args)) throw I2CException(); } void I2CDevice::write16(int reg, std::uint16_t value) { i2c_smbus_data data; i2c_smbus_ioctl_data args; args.read_write = I2C_SMBUS_WRITE; args.command = reg; args.size = I2C_SMBUS_WORD_DATA; args.data = &data; data.word = value; if (ioctl(fd, I2C_SMBUS, &args)) throw I2CException(); } I2CException::I2CException(): std::runtime_error("I2C exception") { }
54a9d0cd72ad093148bb17191b084553e6a9bd6a
51d1c249a03abf8b4abe2fdbfb064dba945c0edd
/mul.cpp
4931b810940ad53d4d2d2689824649feed95f878
[]
no_license
MasriNaser/elect
64fe83432fcf2630a48239c808995337bc0fb543
61e61328c1a0eebe0f3fde690f3a79269832b677
refs/heads/master
2022-11-24T00:47:42.751534
2020-07-31T16:12:13
2020-07-31T16:12:13
272,265,857
0
0
null
null
null
null
UTF-8
C++
false
false
168
cpp
mul.cpp
#include <iostream> using namespace std; int main() { int x, y; // cin >> x >> y; x = 2; y = 4; // cout << x; int z; z = x * y; cout << z; return 0; }
181cd388ff40aa6a7a999fba62e6656a79f1e937
2ea6ed40d30daee156043ae760cae473a1a9d007
/Vehicle.h
5dc317b1649a4ec0df2b4d8dc7052f541d5a0a38
[]
no_license
JETate7/CS240ScratchWork
209949ae33ced552a07186691354f62aa3eb5496
1b4f2b4c2971a7419e7ff133dab193785a29d183
refs/heads/master
2020-04-12T00:44:26.292852
2018-12-18T22:23:05
2018-12-18T22:23:05
162,210,370
0
0
null
null
null
null
UTF-8
C++
false
false
310
h
Vehicle.h
#ifndef __VEHICLE_H__ #define __VEHICLE_H__ #include "VehicleBase.h" class Vehicle : public VehicleBase { public: bool makeTheYellow; int vehicleLength; Vehicle(int vID, VehicleType type, Direction originalDirection); Vehicle(const Vehicle& other); ~Vehicle(); int getVehicleLength(); }; #endif
b7c06d5bc35a87b2f5b94028fbe7ab96f5bdc7fe
7b9f448ddb79f09c701490b11bacf62e2f837c76
/Lab 5/Heap.cpp
b21ad730c84936090d436237410ef8da12e17a56
[]
no_license
hbach24/CS014-Projects
87d88e803f9db46becbd591846bce4c00bf52d0d
c6c753704166c451517e9aef858268f88ba0c632
refs/heads/master
2022-12-22T08:15:12.885785
2020-09-28T01:32:31
2020-09-28T01:32:31
290,604,628
0
0
null
null
null
null
UTF-8
C++
false
false
3,340
cpp
Heap.cpp
#include "Heap.h" #include <iostream> #include <cmath> //Collabed with Jeffrey Wang and Skyler Saltos using namespace std; /*Initializes an empty heap.*/ Heap::Heap() : arr(), numItems(0) {} /*Inserts a PrintJob to the heap without violating max-heap properties.*/ //slide 43, lecture 10 void Heap::enqueue(PrintJob* item) { if (numItems != MAX_HEAP_SIZE) { if (numItems == 0) { arr[numItems] = item; numItems++; } else { numItems++; arr[numItems - 1] = item; trickleUp(numItems - 1); } } } void Heap::trickleUp(int position) { int parent = (position - 1) / 2; int curr = position; while (curr > 0 && (arr[parent]->getPriority() < arr[curr]->getPriority())) {//position>0?? swap(parent, curr); curr = parent; parent = (curr - 1) / 2; } } void Heap::trickleDown(int position) { int child = 2 * position + 1; PrintJob* num = arr[position]; while (child < numItems) { int max = num->getPriority(); int maxIndex = -1; for (int i = 0; i < 2 && i + child < numItems; i++) { PrintJob* currChild = arr[i + child]; if (currChild->getPriority() > max) { maxIndex = i + child; max = arr[i + child]->getPriority(); } } if (max == num->getPriority()) { return; } else { swap(position, maxIndex); position = maxIndex; child = 2 * position + 1; } } } /*Removes the node with highest priority from the heap. Follow the algorithm on priority-queue slides. */ void Heap::dequeue() { /* if (numItems == 0) { return; } int root = 0; arr[root] = arr[numItems - 1]; numItems--; trickleDown(root);*/ if (numItems == 0) { return; } int root = 0; arr[root] = arr[numItems - 1]; numItems--; trickleDown(root); } void Heap::swap(int par, int pos) { PrintJob* temp = arr[par]; arr[par] = arr[pos]; arr[pos] = temp; } /*Prints the PrintJob with highest priority in the following format: Priority: priority, Job Number: jobNum, Number of Pages: numPages (Add a new line at the end.)*/ void Heap::print() { int priority = arr[0]->getPriority(); int jobNum = arr[0]->getJobNumber(); int numPages = arr[0]->getPages(); cout << "Priority: " << priority << ", Job Number: " << jobNum << ", Number of Pages: " << numPages << endl; } /*Returns the node with highest priority.*/ PrintJob* Heap::highest() { return arr[0]; } /* old trickledown function if (leftChild < numItems && arr[leftChild]->getPriority() > arr[parent]->getPriority()) { //smaller = parent; swap(parent, leftChild); trickleDown(leftChild); //trickleDown(smaller) } else if (rightChild < numItems && arr[rightChild]->getPriority() > arr[parent]->getPriority()) { //smaller = parent; swap(parent, rightChild); trickleDown(rightChild); // //trickleDown(smaller) } if (leftChild >= numItems || rightChild >= numItems) { return; }*/
1dbbed46ed9ade17dca5138e2332bc4780607b0b
c362f0c434342cff61587b02d1528e6b22ab0891
/Advantech/AdvTools/AdvJSON/src/AdvCollection.cpp
a0670431c8d9ed410f68577ad21cd7a6256bd58a
[ "MIT" ]
permissive
ADVANTECH-Corp/azure-iot-sdk-c-EVM
2a7d6f7d2a0ac53ef8a1a0c4e8a575cf9cdbc1a7
94c2684d45ec6f7ed620a189232875109b5c2765
refs/heads/master
2021-04-04T02:23:29.044255
2020-03-19T05:33:45
2020-03-19T05:33:45
248,417,376
0
0
null
null
null
null
UTF-8
C++
false
false
1,491
cpp
AdvCollection.cpp
#include <stdio.h> #include <string.h> #include <ctype.h> #include <stdlib.h> #include <unistd.h> #include <math.h> #include <float.h> #include <limits.h> #ifdef __cplusplus extern "C" { #endif #include "jsontool.h" #include "jsoncollection.h" #ifdef __cplusplus } #endif #include "AdvCollection.h" class GlobalCollection { public: GlobalCollection() { GC_Init(); } ~GlobalCollection() { GC_Release(); } JSONode *Allocate() { return GC_NewItem(); } void Destory(JSONode *node) { GC_DestroyItem(node); } JSONode *AllocateNumber(double number) { JSONode *node = Allocate(); node->type = JSON_TYPE_NUMBER; if (fabs(((double)(int)number)-number)<=DBL_EPSILON && number<=INT_MAX && number>=INT_MIN) { node->s = jmalloc(node->s, &node->alloc, 21); if (node->s) sprintf(node->s,"%d",(int)number); } else { node->s = jmalloc(node->s, &node->alloc, 64); if (node->s) { if (fabs(floor(number)-number)<=DBL_EPSILON && fabs(number)<1.0e60) sprintf(node->s,"%.0f",number); else if (fabs(number)<1.0e-6 || fabs(number)>1.0e9) sprintf(node->s,"%e",number); else sprintf(node->s,"%f",number); } } node->len = strlen(node->s); node->alloc = node->len+1; return node; } }; static GlobalCollection gCollect; JSONode *Allocate_GC() { return gCollect.Allocate(); } void Destory_GC(JSONode *node) { gCollect.Destory(node); } JSONode *AllocateNumber_GC(double number) { return gCollect.AllocateNumber(number); }
deb839f85476d7289c39a4d218a2a811468fc0f6
13897ec1e719a3915a2e50d2fedfd9b6e26e2088
/C++/C++/sortTest.cpp
1e025fbf769a17509f1257323a7af2c70e5c9f8f
[]
no_license
hanjjm/Algorithm
467b7bcad5ad87ccd83e2d01d5bf673ddfe8423a
1619be3679dc980aac7d34f52c3f59aa253a6d20
refs/heads/master
2021-07-09T07:12:08.987088
2020-10-20T10:33:59
2020-10-20T10:33:59
205,190,853
0
0
null
null
null
null
UTF-8
C++
false
false
2,229
cpp
sortTest.cpp
// // sortTest.cpp // C++ // // Created by KimHanJu on 2020/10/20. // Copyright © 2020 KimHanJu. All rights reserved. // #include <iostream> using namespace std; int arr[10] = {5, 87, 13, 25, 7, 55, 64, 100, 4, 6}; void printArr() { for(int i = 0; i < 10; i++) cout << arr[i] << " "; cout << endl; } void bubbleSort() { int temp; for(int i = 0; i < 10; i++) { for(int j = i + 1; j < 10; j++) { if(arr[i] > arr[j]) { temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } } } printArr(); } void selectionSort() { int index, temp; for(int i = 0; i < 10; i++) { index = i; for(int j = i + 1; j < 10; j++) { if(arr[index] > arr[j]) index = j; } temp = arr[index]; arr[index] = arr[i]; arr[i] = temp; } printArr(); } void insertionSort() { int temp; for(int i = 1; i < 10; i++) { temp = arr[i]; int prev = i - 1; while(prev >= 0 && arr[prev] > temp) { // 뽑은거 이전을 비교. 제 위치를 찾아준다. arr[prev + 1] = arr[prev]; prev--; } arr[prev + 1] = temp; } printArr(); } int partition(int arr[10], int left, int right) { int mid = (left + right) / 2; int temp = arr[left]; arr[left] = arr[mid]; arr[mid] = temp; int pivot = arr[left]; int i = left, j = right; while(i < j) { while(pivot < arr[j]) j--; while(i < j && pivot >= arr[i]) i++; temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } arr[left] = arr[i]; arr[i] = pivot; return i; } void quickSort(int arr[10], int left, int right) { if(left >= right) return; int pi = partition(arr, left, right); quickSort(arr, left, pi - 1); quickSort(arr, pi + 1, right); } int main() { bubbleSort(); selectionSort(); insertionSort(); int quickArr[10] = {5, 87, 13, 25, 7, 55, 64, 100, 4, 6}; quickSort(quickArr, 0, 9); for(int i = 0; i < 10; i++) cout << quickArr[i] << " " ; cout << endl; return 0; }
1bc35189d70c0b50b20336e6d5ac7b3db9cbc142
cf2e98b4e19fb1ce56d2b773125b78c4e11bdfc5
/资料全2019/C++/MFC练习题/Family/Family/IncomeAddDlg.cpp
c699e40b604f63171febf0f1250e1934b0fa47d5
[]
no_license
qiao1025566574/Programming-Exam
42e5279bbfe6f1d4d0ecf49a3d970f50ed055a05
8ce4251efa442169f3b0a074d61fc25e8a974b28
refs/heads/master
2020-04-16T23:55:13.140370
2019-01-16T01:57:56
2019-01-16T01:57:56
null
0
0
null
null
null
null
GB18030
C++
false
false
2,142
cpp
IncomeAddDlg.cpp
// IncomeAddDlg.cpp : 实现文件 // #include "stdafx.h" #include "Family.h" #include "IncomeAddDlg.h" #include "afxdialogex.h" // IncomeAddDlg 对话框 IMPLEMENT_DYNAMIC(IncomeAddDlg, CDialogEx) IncomeAddDlg::IncomeAddDlg(CWnd* pParent /*=NULL*/) : CDialogEx(IncomeAddDlg::IDD, pParent) , in_add_name(_T("")) , in_add_come(_T("")) , in_add_money(0) , in_add_year(_T("")) , in_add_month(_T("")) , in_add_day(_T("")) { } IncomeAddDlg::~IncomeAddDlg() { } void IncomeAddDlg::DoDataExchange(CDataExchange* pDX) { CDialogEx::DoDataExchange(pDX); DDX_Text(pDX, IDC_IN_ADD_NAME, in_add_name); DDX_Text(pDX, IDC_IN_ADD_COME, in_add_come); DDX_Text(pDX, IDC_IN_ADD_MONEY, in_add_money); DDX_Control(pDX, IDC_IN_ADD_YEAR, in_add_year_ctl); DDX_Control(pDX, IDC_IN_ADD_MONTH, in_add_month_ctl); DDX_Control(pDX, IDC_IN_ADD_DAY, in_add_day_ctl); DDX_CBString(pDX, IDC_IN_ADD_YEAR, in_add_year); DDX_CBString(pDX, IDC_IN_ADD_MONTH, in_add_month); DDX_CBString(pDX, IDC_IN_ADD_DAY, in_add_day); } BEGIN_MESSAGE_MAP(IncomeAddDlg, CDialogEx) END_MESSAGE_MAP() // IncomeAddDlg 消息处理程序 BOOL IncomeAddDlg::OnInitDialog() { CDialogEx::OnInitDialog(); // TODO: 在此添加额外的初始化 CString year; for(int i = 2009 ; i <= 2013 ; i++){ year.Format("%d",i); in_add_year_ctl.AddString(year); } CString month; for(int i = 1 ; i <= 12 ; i++){ month.Format("%d",i); in_add_month_ctl.AddString(month); } CString day; for(int i = 1 ; i <= 31 ; i++){ day.Format("%d",i); in_add_day_ctl.AddString(day); } return TRUE; // return TRUE unless you set the focus to a control // 异常: OCX 属性页应返回 FALSE } void IncomeAddDlg::inputData(vector<income> in,int index){ this->in_add_name.Format("%s",in[index-1].name.c_str()); this->in_add_come.Format("%s",in[index-1].come.c_str()); this->in_add_year.Format("%s",in[index-1].year.c_str()); this->in_add_month.Format("%s",in[index-1].month.c_str()); this->in_add_day.Format("%s",in[index-1].day.c_str()); this->in_add_money = in[index-1].money; }
8167efa81ff2dfb4345a11e1885b48064f690e6b
87d69ded7629a54220ceefcdf21449acf6a0d5a0
/lib/src/Time.cpp
a67ebf666f4cbdd65a334bc70f9ce845303220c3
[ "Apache-2.0" ]
permissive
F4r3n/FarenMediaLibrary
955e63f3c94bae9a0245cbfa2a2e0ff49c5d915d
a138ea5ec687e7252b63d5cb1bdbc06be02961aa
refs/heads/main
2023-08-08T20:25:27.094533
2023-08-07T12:56:55
2023-08-07T12:56:55
65,391,951
8
1
Apache-2.0
2023-08-15T15:37:24
2016-08-10T15:02:46
C
UTF-8
C++
false
false
137
cpp
Time.cpp
#include "TimeDef.h" float fm::Time::dt = 0; float fm::Time::timeStamp = 0; float fm::Time::fixedTime = 0; float fm::Time::scale = 1.0f;
1e1a03af908308090b739b5b46b43606d0d9c293
9a25df726dd4401657a4ef9270bf27774e726544
/src/g_vector_estimation_walls.cpp
14b3fd722da655059fa45979e0697b6d52106f69
[]
no_license
ozakiryota/pose_estimation_walls
1d97b671d4c59162fdc8b10d929c5e5b7dbfff55
3dd9f67c0559047442975a7e5ba9d2f30a7d6043
refs/heads/master
2020-04-02T13:37:33.437854
2019-05-09T02:54:28
2019-05-09T02:54:28
154,489,129
0
1
null
null
null
null
UTF-8
C++
false
false
17,501
cpp
g_vector_estimation_walls.cpp
#include <ros/ros.h> #include <sensor_msgs/PointCloud2.h> #include <nav_msgs/Odometry.h> #include <geometry_msgs/PoseStamped.h> #include <std_msgs/Float64MultiArray.h> #include <pcl_conversions/pcl_conversions.h> #include <pcl/point_cloud.h> #include <pcl/point_types.h> #include <pcl/kdtree/kdtree_flann.h> #include <pcl/features/normal_3d.h> #include <pcl/segmentation/extract_clusters.h> #include <pcl/filters/extract_indices.h> #include <pcl/common/transforms.h> #include <pcl/visualization/cloud_viewer.h> #include <tf/tf.h> #include <thread> #include <omp.h> class PoseEstimationGaussianSphere{ private: /*node handle*/ ros::NodeHandle nh; /*subscribe*/ ros::Subscriber sub_pc; /*publish*/ ros::Publisher pub_pose; ros::Publisher pub_rpy; /*pcl*/ pcl::visualization::PCLVisualizer viewer{"Gaussian Spheres"}; pcl::KdTreeFLANN<pcl::PointXYZ> kdtree; pcl::PointNormal g_vector_last; pcl::PointNormal g_vector_new; pcl::PointCloud<pcl::PointXYZ>::Ptr cloud {new pcl::PointCloud<pcl::PointXYZ>}; pcl::PointCloud<pcl::PointNormal>::Ptr normals {new pcl::PointCloud<pcl::PointNormal>}; pcl::PointCloud<pcl::PointNormal>::Ptr normals_extracted {new pcl::PointCloud<pcl::PointNormal>}; pcl::PointCloud<pcl::PointXYZ>::Ptr gaussian_sphere {new pcl::PointCloud<pcl::PointXYZ>}; pcl::PointCloud<pcl::PointXYZ>::Ptr gaussian_sphere_clustered {new pcl::PointCloud<pcl::PointXYZ>}; pcl::PointCloud<pcl::PointNormal>::Ptr gaussian_sphere_clustered_n {new pcl::PointCloud<pcl::PointNormal>}; pcl::PointCloud<pcl::PointXYZ>::Ptr gaussian_sphere_clustered_weighted {new pcl::PointCloud<pcl::PointXYZ>}; /*objects*/ tf::Quaternion q_pose = {0.0, 0.0, 0.0, 1.0}; geometry_msgs::PoseStamped pose_pub; std_msgs::Float64MultiArray rpy_pub; ros::Time time_pub; public: PoseEstimationGaussianSphere(); void CallbackPC(const sensor_msgs::PointCloud2ConstPtr &msg); void ClearPoints(void); void FittingWalls(void); std::vector<int> KdtreeSearch(pcl::PointXYZ searchpoint, double search_radius); double AngleBetweenVectors(pcl::PointNormal v1, pcl::PointNormal v2); double ComputeSquareError(Eigen::Vector4f plane_parameters, std::vector<int> indices); void ClusterGauss(void); bool GVectorEstimation(void); void PartialRotation(void); tf::Quaternion GetRelativeRotationNormals(pcl::PointNormal origin, pcl::PointNormal target); void FinalEstimation(void); void Visualization(void); void Publication(void); protected: class FittingWalls_{ private: pcl::PointCloud<pcl::PointNormal>::Ptr normals_ {new pcl::PointCloud<pcl::PointNormal>}; pcl::PointCloud<pcl::PointNormal>::Ptr normals_extracted_ {new pcl::PointCloud<pcl::PointNormal>}; pcl::PointCloud<pcl::PointXYZ>::Ptr gaussian_sphere_ {new pcl::PointCloud<pcl::PointXYZ>}; public: void Compute(PoseEstimationGaussianSphere &mainclass, size_t i_start, size_t i_end); void Merge(PoseEstimationGaussianSphere &mainclass); }; }; PoseEstimationGaussianSphere::PoseEstimationGaussianSphere() { sub_pc = nh.subscribe("/velodyne_points", 1, &PoseEstimationGaussianSphere::CallbackPC, this); pub_rpy = nh.advertise<std_msgs::Float64MultiArray>("/rpy_walls", 1); pub_pose = nh.advertise<geometry_msgs::PoseStamped>("/pose_dgauss", 1); viewer.setBackgroundColor(1, 1, 1); viewer.addCoordinateSystem(0.8, "axis"); // viewer.setCameraPosition(-6.0, -6.0, 6.0, 0.0, 0.0, 1.0); // viewer.setCameraPosition(0.0, 0.0, 40.0, 0.0, 0.0, 0.0); viewer.setCameraPosition(35.0, -15.0, 25.0, 0.0, 0.0, 1.0); g_vector_last.x = 0.0; g_vector_last.y = 0.0; g_vector_last.z = 0.0; g_vector_last.normal_x = 0.0; g_vector_last.normal_y = 0.0; g_vector_last.normal_z = -1.0; g_vector_new = g_vector_last; rpy_pub.data.resize(3); } void PoseEstimationGaussianSphere::CallbackPC(const sensor_msgs::PointCloud2ConstPtr &msg) { // std::cout << "CALLBACK PC" << std::endl; pcl::fromROSMsg(*msg, *cloud); time_pub = msg->header.stamp; ClearPoints(); kdtree.setInputCloud(cloud); const int num_threads = std::thread::hardware_concurrency(); std::cout << "std::thread::hardware_concurrency() = " << std::thread::hardware_concurrency() << std::endl; std::cout << "cloud->points.size() = " << cloud->points.size() << std::endl; std::vector<std::thread> threads_fittingwalls; std::vector<FittingWalls_> objects; for(int i=0;i<num_threads;i++){ FittingWalls_ tmp_object; objects.push_back(tmp_object); } for(int i=0;i<num_threads;i++){ threads_fittingwalls.push_back( std::thread([i, num_threads, &objects, this]{ objects[i].Compute(*this, i*cloud->points.size()/num_threads, (i+1)*cloud->points.size()/num_threads); }) ); } for(std::thread &th : threads_fittingwalls) th.join(); for(int i=0;i<num_threads;i++) objects[i].Merge(*this); ClusterGauss(); bool succeeded_rp = GVectorEstimation(); if(succeeded_rp){ FinalEstimation(); Publication(); } Visualization(); g_vector_last = g_vector_new; } void PoseEstimationGaussianSphere::ClearPoints(void) { // std::cout << "CLEAR POINTS" << std::endl; normals->points.clear(); normals_extracted->points.clear(); gaussian_sphere->points.clear(); gaussian_sphere_clustered->points.clear(); gaussian_sphere_clustered_n->points.clear(); gaussian_sphere_clustered_weighted->points.clear(); } void PoseEstimationGaussianSphere::FittingWalls_::Compute(PoseEstimationGaussianSphere &mainclass, size_t i_start, size_t i_end) { // std::cout << "NORMAL ESTIMATION" << std::endl; const size_t skip_step = 3; for(size_t i=i_start;i<i_end;i+=skip_step){ bool input_to_gauss = true; /*search neighbor points*/ std::vector<int> indices; double laser_distance = sqrt(mainclass.cloud->points[i].x*mainclass.cloud->points[i].x + mainclass.cloud->points[i].y*mainclass.cloud->points[i].y + mainclass.cloud->points[i].z*mainclass.cloud->points[i].z); const double search_radius_min = 0.3; const double ratio = 0.09; double search_radius = ratio*laser_distance; if(search_radius<search_radius_min) search_radius = search_radius_min; indices = mainclass.KdtreeSearch(mainclass.cloud->points[i], search_radius); /*judge*/ const size_t threshold_num_neighborpoints_gauss = 20; if(indices.size()<threshold_num_neighborpoints_gauss) continue; /*compute normal*/ float curvature; Eigen::Vector4f plane_parameters; pcl::computePointNormal(*mainclass.cloud, indices, plane_parameters, curvature); /*create tmp object*/ pcl::PointNormal tmp_normal; tmp_normal.x = mainclass.cloud->points[i].x; tmp_normal.y = mainclass.cloud->points[i].y; tmp_normal.z = mainclass.cloud->points[i].z; tmp_normal.normal_x = plane_parameters[0]; tmp_normal.normal_y = plane_parameters[1]; tmp_normal.normal_z = plane_parameters[2]; tmp_normal.curvature = curvature; flipNormalTowardsViewpoint(tmp_normal, 0.0, 0.0, 0.0, tmp_normal.normal_x, tmp_normal.normal_y, tmp_normal.normal_z); normals_->points.push_back(tmp_normal); /*delete nan*/ if(std::isnan(plane_parameters[0]) || std::isnan(plane_parameters[1]) || std::isnan(plane_parameters[2])) continue; /*judge*/ const double threshold_angle = 40.0; //[deg] if(fabs(fabs(mainclass.AngleBetweenVectors(tmp_normal, mainclass.g_vector_last))-M_PI/2.0)>threshold_angle/180.0*M_PI) continue; /*judge*/ const double threshold_fitting_error = 0.01; //[m] if(mainclass.ComputeSquareError(plane_parameters, indices)>threshold_fitting_error) continue; /*input*/ normals_extracted_->points.push_back(tmp_normal); /*unit gaussian sphere*/ pcl::PointXYZ tmp_point; tmp_point.x = plane_parameters[0]; tmp_point.y = plane_parameters[1]; tmp_point.z = plane_parameters[2]; gaussian_sphere_->points.push_back(tmp_point); } } void PoseEstimationGaussianSphere::FittingWalls_::Merge(PoseEstimationGaussianSphere &mainclass) { *mainclass.normals += *normals_; *mainclass.normals_extracted += *normals_extracted_; *mainclass.gaussian_sphere += *gaussian_sphere_; } std::vector<int> PoseEstimationGaussianSphere::KdtreeSearch(pcl::PointXYZ searchpoint, double search_radius) { std::vector<int> pointIdxRadiusSearch; std::vector<float> pointRadiusSquaredDistance; if(kdtree.radiusSearch(searchpoint, search_radius, pointIdxRadiusSearch, pointRadiusSquaredDistance)<=0) std::cout << "kdtree error" << std::endl; return pointIdxRadiusSearch; } double PoseEstimationGaussianSphere::AngleBetweenVectors(pcl::PointNormal v1, pcl::PointNormal v2) { double dot_product = v1.normal_x*v2.normal_x + v1.normal_y*v2.normal_y + v1.normal_z*v2.normal_z; double v1_norm = sqrt(v1.normal_x*v1.normal_x + v1.normal_y*v1.normal_y + v1.normal_z*v1.normal_z); double v2_norm = sqrt(v2.normal_x*v2.normal_x + v2.normal_y*v2.normal_y + v2.normal_z*v2.normal_z); double angle = acos(dot_product/(v1_norm*v2_norm)); return angle; } double PoseEstimationGaussianSphere::ComputeSquareError(Eigen::Vector4f plane_parameters, std::vector<int> indices) { double sum_square_error = 0.0; for(size_t i=0;i<indices.size();i++){ sum_square_error += fabs(plane_parameters[0]*cloud->points[indices[i]].x +plane_parameters[1]*cloud->points[indices[i]].y +plane_parameters[2]*cloud->points[indices[i]].z +plane_parameters[3]) /sqrt(plane_parameters[0]*plane_parameters[0] +plane_parameters[1]*plane_parameters[1] +plane_parameters[2]*plane_parameters[2]) /(double)indices.size(); } return sum_square_error; } void PoseEstimationGaussianSphere::ClusterGauss(void) { // std::cout << "POINT CLUSTER" << std::endl; const double cluster_distance = 0.1; const int min_num_cluster_belongings = 70; pcl::search::KdTree<pcl::PointXYZ>::Ptr tree (new pcl::search::KdTree<pcl::PointXYZ>); tree->setInputCloud(gaussian_sphere); std::vector<pcl::PointIndices> cluster_indices; pcl::EuclideanClusterExtraction<pcl::PointXYZ> ece; ece.setClusterTolerance(cluster_distance); ece.setMinClusterSize(min_num_cluster_belongings); ece.setMaxClusterSize(gaussian_sphere->points.size()); ece.setSearchMethod(tree); ece.setInputCloud(gaussian_sphere); ece.extract(cluster_indices); // std::cout << "cluster_indices.size() = " << cluster_indices.size() << std::endl; for(size_t i=0;i<cluster_indices.size();i++){ /*extract*/ pcl::PointCloud<pcl::PointXYZ>::Ptr tmp_clustered_points (new pcl::PointCloud<pcl::PointXYZ>); pcl::PointIndices::Ptr tmp_clustered_indices (new pcl::PointIndices); *tmp_clustered_indices = cluster_indices[i]; pcl::ExtractIndices<pcl::PointXYZ> ei; ei.setInputCloud(gaussian_sphere); ei.setIndices(tmp_clustered_indices); ei.setNegative(false); ei.filter(*tmp_clustered_points); /*compute centroid*/ Eigen::Vector4f xyz_centroid; pcl::compute3DCentroid(*tmp_clustered_points, xyz_centroid); /*input*/ pcl::PointXYZ tmp_centroid; tmp_centroid.x = xyz_centroid[0]; tmp_centroid.y = xyz_centroid[1]; tmp_centroid.z = xyz_centroid[2]; gaussian_sphere_clustered->points.push_back(tmp_centroid); tmp_centroid.x = cluster_indices[i].indices.size()*xyz_centroid[0]; tmp_centroid.y = cluster_indices[i].indices.size()*xyz_centroid[1]; tmp_centroid.z = cluster_indices[i].indices.size()*xyz_centroid[2]; gaussian_sphere_clustered_weighted->points.push_back(tmp_centroid); /*for the Visualization*/ pcl::PointNormal tmp_centroid_n; tmp_centroid_n.x = 0.0; tmp_centroid_n.y = 0.0; tmp_centroid_n.z = 0.0; tmp_centroid_n.normal_x = xyz_centroid[0]; tmp_centroid_n.normal_y = xyz_centroid[1]; tmp_centroid_n.normal_z = xyz_centroid[2]; gaussian_sphere_clustered_n->points.push_back(tmp_centroid_n); } } bool PoseEstimationGaussianSphere::GVectorEstimation(void) { // std::cout << "G VECTOR ESTIMATION" << std::endl; if(gaussian_sphere_clustered->points.size()==0){ // std::cout << ">> 0 normal" << std::endl; return false; } else if(gaussian_sphere_clustered->points.size()==1){ // std::cout << ">> 1 normal" << std::endl; PartialRotation(); } else if(gaussian_sphere_clustered->points.size()==2){ // std::cout << ">> 2 normals" << std::endl; /*cross product*/ g_vector_new.normal_x = gaussian_sphere_clustered->points[0].y*gaussian_sphere_clustered->points[1].z - gaussian_sphere_clustered->points[0].z*gaussian_sphere_clustered->points[1].y; g_vector_new.normal_y = gaussian_sphere_clustered->points[0].z*gaussian_sphere_clustered->points[1].x - gaussian_sphere_clustered->points[0].x*gaussian_sphere_clustered->points[1].z; g_vector_new.normal_z = gaussian_sphere_clustered->points[0].x*gaussian_sphere_clustered->points[1].y - gaussian_sphere_clustered->points[0].y*gaussian_sphere_clustered->points[1].x; } else if(gaussian_sphere_clustered->points.size()>2){ // std::cout << ">> more than 3 normals" << std::endl; Eigen::Vector4f plane_parameters; float curvature; pcl::computePointNormal(*gaussian_sphere_clustered_weighted, plane_parameters, curvature); g_vector_new.normal_x = plane_parameters[0]; g_vector_new.normal_y = plane_parameters[1]; g_vector_new.normal_z = plane_parameters[2]; } /*flip*/ flipNormalTowardsViewpoint(g_vector_new, 0.0, 0.0, -100.0, g_vector_new.normal_x, g_vector_new.normal_y, g_vector_new.normal_z); /*if angle variation is too large, estimation would be wrong*/ const double threshold_angle_variation = 30.0; //[deg] if(fabs(AngleBetweenVectors(g_vector_new, g_vector_last))>threshold_angle_variation/180.0*M_PI){ std::cout << ">> angle variation of g in 1 step is too large and would be wrong " << std::endl; return false; } return true; } void PoseEstimationGaussianSphere::PartialRotation(void) { /*projection*/ double dot_product = g_vector_last.normal_x*gaussian_sphere_clustered->points[0].x + g_vector_last.normal_y*gaussian_sphere_clustered->points[0].y + g_vector_last.normal_z*gaussian_sphere_clustered->points[0].z; g_vector_new.normal_x = g_vector_last.normal_x - dot_product*gaussian_sphere_clustered->points[0].x; g_vector_new.normal_y = g_vector_last.normal_y - dot_product*gaussian_sphere_clustered->points[0].y; g_vector_new.normal_z = g_vector_last.normal_z - dot_product*gaussian_sphere_clustered->points[0].z; } tf::Quaternion PoseEstimationGaussianSphere::GetRelativeRotationNormals(pcl::PointNormal origin, pcl::PointNormal target) { Eigen::Vector3d Origin(origin.normal_x, origin.normal_y, origin.normal_z); Eigen::Vector3d Target(target.normal_x, target.normal_y, target.normal_z); double theta = acos(Origin.dot(Target)/Origin.norm()/Target.norm()); Eigen::Vector3d Axis = Origin.cross(Target); Axis.normalize(); tf::Quaternion relative_rotation(sin(theta/2.0)*Axis(0), sin(theta/2.0)*Axis(1), sin(theta/2.0)*Axis(2), cos(theta/2.0)); relative_rotation.normalize(); return relative_rotation; } void PoseEstimationGaussianSphere::FinalEstimation(void) { tf::Quaternion q_rp_correction = GetRelativeRotationNormals(g_vector_last, g_vector_new).inverse(); q_pose = q_pose*q_rp_correction; tf::Matrix3x3(q_pose).getRPY(rpy_pub.data[0], rpy_pub.data[1], rpy_pub.data[2]); } void PoseEstimationGaussianSphere::Visualization(void) { viewer.removeAllPointClouds(); viewer.addPointCloud(cloud, "cloud"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, 0.0, 0.0, 0.0, "cloud"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 3, "cloud"); viewer.addPointCloudNormals<pcl::PointNormal>(normals, 1, 0.5, "normals"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, 0.0, 0.0, 1.0, "normals"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_LINE_WIDTH, 1, "normals"); viewer.addPointCloudNormals<pcl::PointNormal>(normals_extracted, 1, 0.5, "normals_extracted"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, 0.0, 1.0, 1.0, "normals_extracted"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_LINE_WIDTH, 3, "normals_extracted"); viewer.addPointCloud(gaussian_sphere, "gaussian_sphere"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, 1.0, 0.0, 0.0, "gaussian_sphere"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 3, "gaussian_sphere"); viewer.addPointCloudNormals<pcl::PointNormal>(gaussian_sphere_clustered_n, 1, 1.0, "gaussian_sphere_clustered_n"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, 1.0, 0.5, 0.0, "gaussian_sphere_clustered_n"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_LINE_WIDTH, 5, "gaussian_sphere_clustered_n"); pcl::PointCloud<pcl::PointNormal>::Ptr tmp_g_vector_walls (new pcl::PointCloud<pcl::PointNormal>); tmp_g_vector_walls->points.push_back(g_vector_new); viewer.addPointCloudNormals<pcl::PointNormal>(tmp_g_vector_walls, 1, 1.0, "g_vector_new"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_COLOR, 0.8, 0.8, 0.0, "g_vector_new"); viewer.setPointCloudRenderingProperties (pcl::visualization::PCL_VISUALIZER_LINE_WIDTH, 3, "g_vector_new"); viewer.spinOnce(); } void PoseEstimationGaussianSphere::Publication(void) { pub_rpy.publish(rpy_pub); pose_pub.header.frame_id = "/odom"; pose_pub.header.stamp = time_pub; pub_pose.publish(pose_pub); } int main(int argc, char** argv) { ros::init(argc, argv, "pose_estimation_gaussian_sphere"); PoseEstimationGaussianSphere pose_estimation_gaussian_sphere; ros::spin(); }
08fe108e33a22dc47321f7e4c02c8eb61f110d3c
226b8f01fe88e4abfbc548e4aeee50926d06a4e5
/configmodel.h
fa5e333274c3566d8c6728ccda16f9f960f7b857
[]
no_license
MaciekMr/SofarInverter
962b5d5f364303d8422262dd6e878e92263d781c
870c404ac765287df8638be86b6720081428e21d
refs/heads/master
2020-07-22T09:06:34.486758
2019-10-24T22:20:09
2019-10-24T22:20:09
207,143,565
0
0
null
null
null
null
UTF-8
C++
false
false
2,683
h
configmodel.h
#ifndef CONFIGMODEL_H #define CONFIGMODEL_H #include <stdlib.h> #include <stdio.h> #include <iostream> #include <boost/archive/binary_oarchive.hpp> #include <boost/archive/binary_iarchive.hpp> #include <boost/archive/text_iarchive.hpp> #include <boost/archive/text_oarchive.hpp> #include <boost/serialization/map.hpp> #include <boost/serialization/string.hpp> #include <boost/serialization/list.hpp> #include <boost/filesystem/fstream.hpp> #include <boost/property_tree/ptree.hpp> #include <boost/property_tree/xml_parser.hpp> #include <boost/property_tree/exceptions.hpp> #include <boost/filesystem.hpp> #include <boost/foreach.hpp> #include "definitions.h" #include "xml_parser.h" #include <map> #include <list> using std::pair; using std::string; using std::map; using std::list; using std::cout; using boost::filesystem::path; using boost::archive::text_oarchive; using boost::archive::text_iarchive; using boost::filesystem::ifstream; using boost::filesystem::ofstream; using boost::property_tree::ptree; using boost::property_tree::ptree_error; using boost::property_tree::xml_parser::write_xml; //parameter name, value //template <typename T> //typedef pair<string, T*> parameter<T>; template <class T> class _pair:pair<string,T*>{ private: public: }; //typedef pair<string, string> parameter; //configuration name, list of paramteres typedef pair<int,string> header; typedef list<header> header_list; class ConfigModel: private xmlparser { private: friend class boost::serialization::access; protected: static ConfigModel *pointer; configurations *config; std::string istring; ptree proptree; public: ConfigModel(); //find a paramtere from given config template<class T> T findparameter(string, string); //add paramter to given config template<class T> void addparameter(string, string, T); void test(); void save(std::ofstream &ar); void load(ifstream &ifs); void load(); template <typename Archive> void serialize(Archive &ar, const unsigned int version){ //ar & config; /* for(auto const &ent1 : *config) { // ent1.first is the first key ar & ent1.first; for(auto const &ent2 : *ent1.second) { // ent2.first is the second key // ent2.second is the data ar & ent2.first; ar & ent2.second; } } */ } bool addparameter(string part, string parameter, string value); int getelementcount(); static ConfigModel * getConfig(); const header_list * getheaders(); }; #endif // CONFIGMODEL_H
0324d726bd7a74dd937657628b18780bb02b1809
050c8a810d34fe125aecae582f9adfd0625356c6
/candles/main.cpp
9ca08df6af4289125e6b047880638e990642931e
[]
no_license
georgerapeanu/c-sources
adff7a268121ae8c314e846726267109ba1c62e6
af95d3ce726325dcd18b3d94fe99969006b8e138
refs/heads/master
2022-12-24T22:57:39.526205
2022-12-21T16:05:01
2022-12-21T16:05:01
144,864,608
11
0
null
null
null
null
UTF-8
C++
false
false
2,566
cpp
main.cpp
#include <iostream> #include <cstring> #include <algorithm> using namespace std; int N,M; int A[100005]; int B[100005]; int tmp[100005]; pair<int,int> AINT[400005]; int lazy[400005]; void propag(int nod,int st,int dr) { if(nod>4*N||!lazy[nod])return ; AINT[nod].first-=lazy[nod]; AINT[nod].second-=lazy[nod]; if(st!=dr) { lazy[2*nod]+=lazy[nod]; lazy[2*nod+1]+=lazy[nod]; } lazy[nod]=0; } void build(int nod,int st,int dr) { if(st==dr) { AINT[nod].first=AINT[nod].second=A[st]; return ; } build(nod*2,st,(st+dr)/2); build(nod*2+1,(st+dr)/2+1,dr); AINT[nod].first=min(AINT[2*nod].first,AINT[2*nod+1].first); AINT[nod].second=max(AINT[2*nod].second,AINT[2*nod+1].second); } void u(int nod,int st,int dr,int S,int D) { if(S<=st&&dr<=D){lazy[nod]++;return ;} if(dr<S||st>D)return; propag(nod,st,dr); u(nod*2,st,(st+dr)/2,S,D); u(nod*2+1,(st+dr)/2+1,dr,S,D); propag(nod*2,st,(st+dr)/2); propag(nod*2+1,(st+dr)/2+1,dr); AINT[nod].first=min(AINT[2*nod].first,AINT[2*nod+1].first); AINT[nod].second=max(AINT[2*nod].second,AINT[2*nod+1].second); } int elem(int nod,int st,int dr,int poz) { if(poz>dr||poz<st)return 0; propag(nod,st,dr); if(st==dr)return AINT[nod].first; if(poz<=(st+dr)/2)return elem(nod*2,st,(st+dr)/2,poz); else return elem(nod*2+1,(st+dr)/2+1,dr,poz); } int fip(int nod,int st,int dr,int val) { if(st==dr)return st; propag(nod,st,dr); propag(nod*2,st,(st+dr)/2); propag(nod*2+1,(st+dr)/2+1,dr); if(AINT[2*nod].first<=val&&val<=AINT[2*nod].second)return fip(nod*2,st,(st+dr)/2,val); else return fip(nod*2+1,(st+dr)/2+1,dr,val); } int fiu(int nod,int st,int dr,int val) { if(st==dr)return st; propag(nod,st,dr); propag(nod*2,st,(st+dr)/2); propag(nod*2+1,(st+dr)/2+1,dr); if(AINT[2*nod+1].first<=val&&val<=AINT[2*nod+1].second)return fiu(nod*2+1,(st+dr)/2+1,dr,val); else return fiu(nod*2,st,(st+dr)/2,val); } int main() { cin>>N>>M; for(int i=1;i<=N;i++)cin>>A[i];sort(A+1,A+1+N);reverse(A+1,A+1+N); for(int i=1;i<=M;i++)cin>>B[i]; build(1,1,N); for(int i=1;i<=M;i++) { int tmp=elem(1,1,N,B[i]); if(!tmp){cout<<i-1;return 0;} int st,dr; st=fip(1,1,N,tmp); dr=fiu(1,1,N,tmp); if(st!=1)u(1,1,N,1,st-1); u(1,1,N,dr-max(0,B[i]-(st-1))+1,dr); } cout<<M; return 0; }
639e79325e7febce7e29f24ed7927a5687b5690e
3f7913b77571e3316b0a549b461535a39df5d4b1
/Algorithm/LeetCode/100+/113-hasPathSumll/113-hasPathSumll.cpp
5178dfc433b97489f7155ba8d0d30538a02495ab
[ "MIT" ]
permissive
nchkdxlq/Algorithm
c8f668238ad69b42b62e6194bc147effac6c882f
a89aec4859a1e2a1367113bf17345ef4a5c40a91
refs/heads/master
2021-11-21T15:05:12.764799
2021-10-10T02:29:15
2021-10-10T02:29:15
97,487,816
1
0
null
null
null
null
UTF-8
C++
false
false
4,550
cpp
113-hasPathSumll.cpp
// // 113-hasPathSumll.cpp // LeetCode // // Created by Knox on 2019/7/20. // Copyright © 2019 nchkdxlq. All rights reserved. // #include "113-hasPathSumll.hpp" #include "TreeHelper.hpp" #include "STLHelper.hpp" /** 给定一个二叉树和一个目标和,找到所有从根节点到叶子节点路径总和等于给定目标和的路径。 说明: 叶子节点是指没有子节点的节点。 https://leetcode-cn.com/problems/path-sum-ii/ */ namespace hasPathSum_113 { class Solution { public: vector<vector<int>> hasPath(TreeNode *root, int sum) { return v1_hasPath(root, sum); // return v2_hasPath(root, sum); // return v3_hasPath(root, sum); } private: /** ## 思路 遍历整个树,如果当前结点是叶子结点,并且结点的值等于sum,返回数组,如果不是叶子结点,递归调用函数 v1_hasPath,寻找在左右子树是否存在满足条件, 其中sum为减去当前结点的值。 ## 复杂度分析 - 时间复杂度:O(n) - 空间复杂度:保存结果数组的空间不考虑,指考虑调用栈的复杂度。 最好情况当是一个完成二叉树时,递归的深度为`log(n)`,所以空间复杂度为`O(log(n))`; 最坏情况,当二叉树每个结点最多只有一个结点,退化成链表时,递归的深度为`n`,空间复杂度为`O(n)`. */ vector<vector<int>> v1_hasPath(TreeNode *root, int sum) { if (root == nullptr) return {}; if (root->left == nullptr && root->right == nullptr && root->val == sum) { return {{root->val}}; } vector<vector<int>> left = v1_hasPath(root->left, sum - root->val); vector<vector<int>> right = v1_hasPath(root->right, sum - root->val); left.insert(left.end(), right.begin(), right.end()); for (auto &item : left) { item.insert(item.begin(), root->val); } return left; } vector<vector<int>> v2_hasPath(TreeNode *root, int sum) { vector<vector<int>> ret; vector<vector<int>> paths = allPath(root); for (auto &item : paths) { int tmp = 0; for (auto i : item) { tmp += i; } if (tmp == sum) ret.push_back(item); } return ret; } vector<vector<int>> allPath(TreeNode *root) { if (root == nullptr) return {}; vector<vector<int>> left = allPath(root->left); vector<vector<int>> right = allPath(root->right); left.insert(left.end(), right.begin(), right.end()); if (left.empty()) { return {{root->val}}; } for (auto &item : left) { item.insert(item.begin(), root->val); } return left; } vector<vector<int>> v3_hasPath(TreeNode *root, int sum) { vector<vector<int>> ret; vector<int> subPath; helper(root, sum, subPath, ret); return ret; } void helper(TreeNode *root, int sum, vector<int> &subPath, vector<vector<int>> &path) { if (root == nullptr) return; subPath.push_back(root->val); if (root->left == nullptr && root->right == nullptr && root->val == sum) { vector<int> tmpPath = subPath; path.push_back(tmpPath); } helper(root->left, sum - root->val, subPath, path); helper(root->right, sum - root->val, subPath, path); subPath.pop_back(); } }; } void __113_entry() { vector<int> nums = {5,4,8,11,INT_MAX,13,4,7,2,INT_MAX,INT_MAX,5,1}; int sum = 22; TreeNode *root = create_binaryTree(nums); vector<vector<int>> ret = hasPathSum_113::Solution().hasPath(root, sum); cout << "==== 113-hasPath ==== " << endl; for (auto &item : ret) { cout << "[ "; for (auto i : item) { cout << i << " "; } cout << "]" << endl; } }
3040baa41a2b87cce73f227f409dfe3c15c4c716
52346de88a47f70ed63335b21ff12748bbbb5cba
/modules/planning/traffic_rules/traffic_decider.h
b5df0bcdc0620b4206ebdf57c119f291673103ed
[ "Apache-2.0" ]
permissive
lgsvl/apollo-5.0
064537e31c5d229c0712bfcd4109af71dbf1d09d
105f7fd19220dc4c04be1e075b1a5d932eaa2f3f
refs/heads/simulator
2022-03-08T09:18:02.378176
2021-10-01T22:07:57
2021-10-01T22:07:57
203,249,539
86
115
Apache-2.0
2022-02-11T02:55:46
2019-08-19T21:00:15
C++
UTF-8
C++
false
false
2,086
h
traffic_decider.h
/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file **/ #pragma once #include "modules/common/proto/pnc_point.pb.h" #include "modules/planning/proto/traffic_rule_config.pb.h" #include "modules/common/status/status.h" #include "modules/common/util/factory.h" #include "modules/planning/reference_line/reference_line.h" #include "modules/planning/traffic_rules/traffic_rule.h" namespace apollo { namespace planning { /** * @class TrafficDecider * @brief Create traffic related decision in this class. * The created obstacles is added to obstacles_, and the decision is added to * obstacles_ * Traffic obstacle examples include: * * Traffic Light * * End of routing * * Select the drivable reference line. */ class TrafficDecider { public: TrafficDecider() = default; bool Init(const TrafficRuleConfigs &config); virtual ~TrafficDecider() = default; apollo::common::Status Execute(Frame *frame, ReferenceLineInfo *reference_line_info); private: static apollo::common::util::Factory< TrafficRuleConfig::RuleId, TrafficRule, TrafficRule *(*)(const TrafficRuleConfig &config)> s_rule_factory; void RegisterRules(); void BuildPlanningTarget(ReferenceLineInfo *reference_line_info); TrafficRuleConfigs rule_configs_; }; } // namespace planning } // namespace apollo
4bca370b2a1056631a07bca3fda99cb269c46d80
4d827ed761ca8bbd903d77a248db932629c8d6de
/main.cpp
d9502c8e445b116494df1bfadcc2098e62dc0fe5
[ "Apache-2.0" ]
permissive
ChrSacher/MyEngine
e0e9067678ad4cbffc9d7ca8e500104e28223dfe
8fe71fd9e84b9536148e0d4ebb4e53751ab49ce8
refs/heads/master
2021-10-22T07:09:25.782032
2019-03-09T01:25:28
2019-03-09T01:25:28
38,216,634
0
0
null
null
null
null
UTF-8
C++
false
false
199
cpp
main.cpp
#include <stdio.h> #include <string> #include "Maingame.h" int main( int argc, char* args[] ) { Maingame *mygame = new Maingame(); //Starten mygame->run(); delete(mygame); return 0; }
a523fd89898ac0a358cf084f667d7769365157c7
70186afcc374a21189b737124fc4251e88fe896a
/src/Handler.h
ea4bdcef7be08583ec1b7c977e9f2855ae95e6f4
[]
no_license
jpalczewski/simple-p2p
d9c6ce52e11f0d96f43875ed6b20fabec5b92d2b
e722863700eb95db31f6be333e9dee8a0e3bb4b5
refs/heads/master
2021-01-20T06:17:48.815930
2017-06-06T18:39:36
2017-06-06T18:39:36
89,862,823
1
1
null
2017-06-06T18:35:18
2017-04-30T16:30:40
C++
UTF-8
C++
false
false
569
h
Handler.h
// // Created by kamil on 05/05/17. // #ifndef SIMPLE_P2P_HANDLER_H #define SIMPLE_P2P_HANDLER_H #include "Network/Socket.h" #include "Messages/ResourceRequestMessage.h" class Handler { public: void handle(Socket connection); private: void processResourceRequest(std::vector<unsigned char> vector, Socket &connection); std::vector<unsigned char> readBytes(Socket &socket, std::vector<unsigned char> buffer, const int size); void processResourceRequestMessage(ResourceRequestMessage message, Socket& connection); }; #endif //SIMPLE_P2P_HANDLER_H
ac9ec054bad74478e8cc1375c379b53e89023a0f
e6319166540ad2cb061f1348e72a1cbd858249da
/interpret/includes/trigger.h
58bb21dd02ff5596e327582472d7e197752a4f17
[]
no_license
ptrIslam123/DBS
2ae2f70b614184b3991023456131d2317f16dc72
0192a0705a108bda2485c9c4e6f49c383fb6d7fc
refs/heads/master
2023-04-19T03:18:00.997300
2021-05-03T16:07:12
2021-05-03T16:07:12
351,420,221
0
0
null
null
null
null
UTF-8
C++
false
false
137
h
trigger.h
#ifndef _TRIGGER_H_ #define _TRIGGER_H_ #include "trigger_node.h" struct trigger { public: private: }; #endif // !_TRIGGER_H_
36c0782fae5b44cacb9543135f9b4ba258ad53f9
3de2a746243ad1cb000994a06a0f9699db9a901f
/pakencamp_2019_day3_e.cpp
066605c3b5c8479ef5a5caa2af841348de173f03
[]
no_license
takumi152/atcoder
71d726ffdf2542d8abac0d9817afaff911db7c6c
ebac94f1227974aa2e6bf372e18605518de46441
refs/heads/master
2022-10-30T12:14:41.742596
2022-09-29T19:49:32
2022-09-29T19:49:32
181,502,518
1
0
null
null
null
null
UTF-8
C++
false
false
1,996
cpp
pakencamp_2019_day3_e.cpp
#include <iostream> #include <vector> #include <algorithm> #include <utility> #include <string> #include <queue> #include <stack> #include <unordered_map> using namespace std; typedef long long int ll; typedef pair<int, int> Pii; const ll mod = 1000000007; struct unionfind { vector<int> group; unionfind(int n) { group = vector<int>(n); for (int i = 0; i < n; i++) group[i] = i; } int root(int x) { if (group[x] == x) return x; return group[x] = root(group[x]); } void unite(int x, int y) { int rx = root(x); int ry = root(y); if (rx == ry) return; group[rx] = ry; } bool same(int x, int y) { int rx = root(x); int ry = root(y); return rx == ry; } }; int main() { cin.tie(0); ios::sync_with_stdio(false); int h, w; cin >> h >> w; vector<string> s(h); for (auto &x: s) cin >> x; int q; cin >> q; vector<vector<int> > xyl(q, vector<int>(3)); for (auto &x: xyl) { cin >> x[0] >> x[1] >> x[2]; x[0]--; x[1]--; } unionfind uf(h * w); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (s[i][j] == '#') continue; if (i > 0) { if (s[i-1][j] == '.') uf.unite(i*w + j, (i-1)*w + j); } if (j > 0) { if (s[i][j-1] == '.') uf.unite(i*w + j, i*w + (j-1)); } if (i < h-1) { if (s[i+1][j] == '.') uf.unite(i*w + j, (i+1)*w + j); } if (j < w-1) { if (s[i][j+1] == '.') uf.unite(i*w + j, i*w + (j+1)); } } } unordered_map<int, int> count; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (s[i][j] == '#') continue; else count[uf.root(i*w + j)]++; } } vector<int> ans(q); for (int i = 0; i < q; i++) { if (xyl[i][2] == 1) { ans[i] = count[uf.root(xyl[i][0]*w + xyl[i][1])]; } } for (auto &x: ans) cout << x << endl; return 0; }
8f989673537b2f449b7b235c140b6d31fac71c62
04b2f0dc0bb268dc08960e68b496608a433c84d3
/project1/machine_simulator/src/loader/fileparser.h
407953215761310f84701a51a312546a154bf94b
[ "MIT" ]
permissive
nyanzebra/Computer-Architecture
b445f399d6338004d9950dd830c9e760998d4fa2
bc64fa5530facb6d0921b9be67b6fd4e4f1756bf
refs/heads/master
2021-01-25T12:13:12.841978
2014-12-04T21:28:06
2014-12-04T21:28:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,582
h
fileparser.h
#pragma once #include <string> #include <vector> #include <unordered_map> // dir: /home/robert/Desktop/CA_PROJECT1/assembly_code class FileParser { public: //constructors FileParser() {} ~FileParser() {} //file handlers void setDirectory(const std::string& dir) { m_directory = dir; } void readFile(const std::string& filename); void printContents() const; //has data const bool& isEmpty() { return (m_contents.size() > 0) ? false : true; } //accessors const std::string& getFilename() { return m_filename; } private: //determine extension std::string getFileExtension(const std::string& filename) { if (filename.find_last_of(".") != std::string::npos) { return filename.substr(filename.find_last_of(".") + 1); } return ""; } //determine contents void findData(); void findInstructions(); const std::vector<std::string> findInstructionAndOperand(const std::string& s) const; //memory modifiers void moveToMemory(); //per segment, by file parser void storeData(const std::vector<std::string>& values); //namely used by fileparser void storeInstruction(const std::vector<std::string>& values); //namely used by fileparser std::string m_filename; // current file std::string m_directory; //current dir std::unordered_map<std::string, int> m_umap_address; std::vector<std::string> m_contents; // will be entire file each [] is a line of the file std::vector<std::string> m_data; // will be [variable][type][datum] std::vector<std::string> m_instructions; // will be [instruction]<optional>[ma_"memory address"] ex: [push][ma_X] };
8e853520a31309ad1ec06dbf22b84c71051993b1
65a47a08027add72f91e6aa7189f065652d0a47c
/OOP.cpp
5e28814257e7af7ea13f3590059abfa89f9994c0
[]
no_license
VaeterchenFrost/Sieve-of-Eratosthenes
a4ac3ff3208801b9eb9bbf35f7050a7a919b6054
742e814f85dbab3688adba6535ed994e81353278
refs/heads/master
2020-05-29T08:53:06.058782
2016-09-29T16:55:34
2016-09-29T16:55:34
69,584,502
0
0
null
null
null
null
ISO-8859-1
C++
false
false
1,748
cpp
OOP.cpp
/*> run this program using the console pauser or add your own getch, system("pause") or input loop */ /*> Autor: Martin Röbke, 29.09.2016 Berechnung von Primzahlen beginnend mit 5. Es wird mit der Methode des Siebes des Eratosthenes gearbeitet, kombiniert mit 6k+-1 Methode, die alle Primzahlen außer 2, 3 erfasst. Dabei ist der RAM-Verbrauch: 1 Byte =(erfasst)= 24 fortlaufende Zahlen 4 KB = Buffer-Größe während des Ausschreibens. Z.B. 15 GB ~= Zahlenbereich bis 386.547.056.640 1 GB ~= Zahlenbereich bis 25.769.803.776 Ausgeschrieben wird in .pri Dateien innerhalb des Programmordners. Dabei wird im Dateinamen die gezählten Primzahlen vermerkt. Letzte Datei: 'Index= 983040 Min= 15077097176 SiebErgebnis' ________________________________________________________________ ///////////////////V2: 15-30GB Bisher letzte Zahl: 386.547.056.640 = 360* 2^30 = 15*3*8* 2^30 1. Erstellung Buffer char[] - enthält benötigte Primzahlen in altem bit Format- kein Wurzelabbruch nötig 2. Verschiebung Startwert 3. Verschiebung Limit Wurzel 30GB : 879257,70 /// v 2.0.3:: Einlesen : Zusammensetzung in char[] *buffer -> Dabei jeweils Zeiger auf erste FREIE Position setzen Größe: Hält Sqrt als bits und drittel -> /8/3 LAUFZEIT: <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/ #include <windows.h> //FindFile #include <math.h> //WURZEL #include <vector> //VECTOR #include <basetsd.h>//64 bit INT #include <iostream> //stream für cout, cin #include <time.h> //Laufzeitmessung #include <fstream> //Dateistreams #include <string.h> //Stringbearbeitung #include <boost/lexical_cast.hpp> //Typumwandlung using namespace std;
68e07b8bf1b4167cf38ea0378a587b7fda99b2f9
917160730f635aa67e533775a59a12bc3586a4e6
/mjolnir/core/constants.hpp
7e39470157ec458c7e849e3ffdac89c106395aa1
[ "MIT" ]
permissive
0h-n0/Mjolnir
746ba7955d2da338642b1cb4de12babeb1a0fe6a
df27c7a3b1d2a651c69d7fcd83f43d3e327de66c
refs/heads/master
2020-03-17T16:41:30.414971
2018-05-14T09:06:21
2018-05-14T09:06:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,113
hpp
constants.hpp
#ifndef MJOLNIR_CONSTANTS #define MJOLNIR_CONSTANTS namespace mjolnir { template<typename realT> struct constants { typedef realT real_type; constexpr static real_type tolerance = 1e-8; constexpr static real_type pi = 3.14159265358979323846264338; }; template<typename realT> constexpr typename constants<realT>::real_type constants<realT>::tolerance; template<typename realT> constexpr typename constants<realT>::real_type constants<realT>::pi; template<typename realT> struct physics { typedef realT real_type; static real_type kB; static real_type NA; static real_type e; static real_type vacuum_permittivity; }; template<typename realT> typename physics<realT>::real_type physics<realT>::kB = 1.986231313e-3; template<typename realT> typename physics<realT>::real_type physics<realT>::NA = 6.0221417930e23; template<typename realT> typename physics<realT>::real_type physics<realT>::e = 1.60217648740e-19; template<typename realT> typename physics<realT>::real_type physics<realT>::vacuum_permittivity = 8.854187817e-12; }//mjolnir #endif /* MJOLNIR_CONSTANTS */
9f8d8b1f058cff23c6f622194d9fc16da4c339e5
8ae7a23f05805fd71d4be13686cf35d8994762ed
/mame150/src/mess/machine/nes_hosenkan.h
95735ff52de0648cb606c3f9c1d28aea5b407ebc
[]
no_license
cyberkni/276in1JAMMA
fb06ccc6656fb4346808a24beed8977996da91b2
d1a68172d4f3490cf7f6e7db25d5dfd4cde3bb22
refs/heads/master
2021-01-18T09:38:36.974037
2013-10-07T18:30:02
2013-10-07T18:30:02
13,152,960
1
0
null
null
null
null
UTF-8
C++
false
false
739
h
nes_hosenkan.h
#ifndef __NES_HOSENKAN_H #define __NES_HOSENKAN_H #include "machine/nes_nxrom.h" // ======================> nes_hosenkan_device class nes_hosenkan_device : public nes_nrom_device { public: // construction/destruction nes_hosenkan_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // device-level overrides virtual void device_start(); virtual DECLARE_WRITE8_MEMBER(write_h); virtual void hblank_irq(int scanline, int vblank, int blanked); virtual void pcb_reset(); private: UINT16 m_irq_count, m_irq_count_latch; UINT8 m_irq_clear; int m_irq_enable; UINT8 m_latch; }; // device type definition extern const device_type NES_HOSENKAN; #endif
39212dc32c50692b6864a53e3ef67185bac7ae70
821f3e18c07ca32e4b1bca7e2e9e739af0661fd5
/src/PlayScene.cpp
3ca4aab5f6928088026c0e712719ec6a47b729a7
[]
no_license
shataojin/lab7
49579318ff7f546232c0cba4efe5532514d92fcc
86c29f15c68e0b642394298f34dbd21b1bd4e82b
refs/heads/master
2023-06-16T13:28:13.300284
2021-07-12T14:05:23
2021-07-12T14:05:23
385,268,620
0
0
null
null
null
null
UTF-8
C++
false
false
4,247
cpp
PlayScene.cpp
#include "PlayScene.h" #include "Game.h" #include "EventManager.h" // required for IMGUI #include "imgui.h" #include "imgui_sdl.h" #include "Renderer.h" #include "Util.h" PlayScene::PlayScene() { PlayScene::start(); } PlayScene::~PlayScene() = default; void PlayScene::draw() { drawDisplayList(); SDL_SetRenderDrawColor(Renderer::Instance().getRenderer(), 255, 255, 255, 255); } //void PlayScene::moveStarShip() const //{ // if(m_bToggleGrid) // { // m_pStarShip->setDesiredVelocity(m_pTarget->getTransform()->position); // m_pStarShip->getRigidBody()->velocity = m_pStarShip->getDesiredVelocity(); // m_pStarShip->getTransform()->position += m_pStarShip->getRigidBody()->velocity; // } //} void PlayScene::update() { updateDisplayList(); m_CheckShipLOS(m_pTarget); } void PlayScene::clean() { removeAllChildren(); } void PlayScene::handleEvents() { EventManager::Instance().update(); if (EventManager::Instance().isKeyDown(SDL_SCANCODE_ESCAPE)) { TheGame::Instance().quit(); } } void PlayScene::start() { // Set GUI Title m_guiTitle = "Play Scene"; // add the ship to the scene as a start point m_pship = new Ship(); m_pship->getTransform() -> position = glm::vec2(200.f, 300.f); addChild(m_pship, 3); // add the Obstacle to the scene as a start point m_obstacle1 = new Obstacle(); m_obstacle1->getTransform()->position = glm::vec2(400.f, 300.f); addChild(m_obstacle1); // add the Obstacle to the scene as a start point m_obstacle2 = new Obstacle(); m_obstacle2->getTransform()->position = glm::vec2(400.f, 100.f); addChild(m_obstacle2); // add the Obstacle to the scene as a start point m_obstacle3 = new Obstacle(); m_obstacle3->getTransform()->position = glm::vec2(400.f,500.f); addChild(m_obstacle3); // added the target to the scene a goal m_pTarget = new Target(); m_pTarget->getTransform()->position = glm::vec2(600.f, 300.f); addChild(m_pTarget); ImGuiWindowFrame::Instance().setGUIFunction(std::bind(&PlayScene::GUI_Function, this)); } void PlayScene::GUI_Function() { // TODO: // Toggle Visibility for the StarShip and the Target auto offset = glm::vec2(Config::TILE_SIZE * 0.5f, Config::TILE_SIZE * 0.5f); // Always open with a NewFrame ImGui::NewFrame(); // See examples by uncommenting the following - also look at imgui_demo.cpp in the IMGUI filter //ImGui::ShowDemoWindow(); ImGui::Begin("GAME3001 - M2021 - Lab 7", nullptr, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_MenuBar); // allow ship rotation static int angle; if (ImGui::SliderInt("Ship Direction", &angle, -360, 360)) { m_pship->setCurrentHeading(angle); } ImGui::Separator(); static int shipPosition[] = { m_pship->getTransform()->position.x, m_pship->getTransform()->position.y }; if (ImGui::SliderInt2("Ship Position", shipPosition, 0, 800)) { m_pship->getTransform()->position.x = shipPosition[0]; m_pship->getTransform()->position.y = shipPosition[1]; } static int targetPosition[] = { m_pTarget->getTransform()->position.x, m_pTarget->getTransform()->position.y }; if (ImGui::SliderInt2("Target Position", targetPosition, 0, 800)) { m_pTarget->getTransform()->position.x = targetPosition[0]; m_pTarget->getTransform()->position.y = targetPosition[1]; } ImGui::Separator(); ImGui::End(); } void PlayScene::m_CheckShipLOS(DisplayObject* target_object) { m_pship->setHasLOS(false); auto ShipToTargetDistance = Util::distance(m_pship->getTransform()->position, target_object->getTransform()->position); if(ShipToTargetDistance<=m_pship->getLOSDistance()) { std::vector < DisplayObject* > contactList; for(auto object: getDisplayList()) { auto ShipToObjectDistance = Util::distance(m_pship->getTransform()->position, object->getTransform()->position); if(ShipToObjectDistance <= ShipToTargetDistance) { if ((object->getType() != m_pship->getType()) && ( object->getType() != target_object->getType())) contactList.push_back(object); } } contactList.push_back(target_object); auto hasLOS = CollisionManager::LOSCheck(m_pship->getTransform()->position, m_pship->getTransform()->position + m_pship->getCurrentDirection() * m_pship->getLOSDistance(), contactList, target_object); m_pship->setHasLOS(hasLOS); } }
6848a8c78167929a6a0052cb0b3c192b942578f6
19791ab4f85c12ef2fc63b99cf39ffbdf65f1ff4
/src/utils/unit_tests/include/utils/mock_socket.h
79ff04a4586ebd82d304388b8de18b256e33d09f
[ "MIT" ]
permissive
Kozoriz/c-plus-utils
1bcd524d344d3c21284de9d8dbc61fd20ce8b0f7
b64b283aa37be9526edb229b1e01d5107f4c7c78
refs/heads/master
2020-03-27T09:23:20.875950
2019-02-03T23:20:48
2019-02-03T23:20:48
146,336,522
0
0
null
null
null
null
UTF-8
C++
false
false
297
h
mock_socket.h
#pragma once #include "gmock/gmock.h" #include "utils/network/socket.h" namespace utils { class MockSocket : public SocketClient { public: MOCK_METHOD1(Send, void(const ByteArray& message)); MOCK_METHOD0(Receive, utils::ByteArray()); MOCK_METHOD0(Init, void()); }; } // namespace utils
bae9fae51460e1741a28215c2232bb7b364ce888
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/printscan/ui/wiaacmgr/postplug/stdstring.h
2d855e1934c923904da861a744680f3c64050858
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,507
h
stdstring.h
#ifndef __STDSTRING_H_INCLUDED #define __STDSTRING_H_INCLUDED #include <string> class CStdString: public std::string { public: typedef std::string _Base; explicit CStdString(allocator_type _Al) : _Base(_Al) {} CStdString(const _Myt& _X) : _Base(_X) {} CStdString(const _Myt& _X, size_type _P, size_type _M, allocator_type _Al = allocator_type()) : _Base(_X, _P, _M, _Al) {} CStdString(const traits_type::char_type *_S, size_type _N, allocator_type _Al = allocator_type()) : _Base(_S, _N, _Al) {} CStdString(const traits_type::char_type *_S, allocator_type _Al = allocator_type()) : _Base(_S, _Al) {} CStdString(size_type _N, traits_type::char_type _C, allocator_type _Al = allocator_type()) : _Base(_N, _C, _Al) {} CStdString(_It _F, _It _L, allocator_type _Al = allocator_type()) : _Base(_F, _L, _Al) {} CStdString() {} explicit CStdString(UINT uID) { LoadString(uID); } int LoadString(UINT uID); operator const traits_type::char_type*() const { return c_str(); } /* _Myt& operator=(const _Myt& _X) {return (assign(_X)); } _Myt& operator=(const _E *_S) {return (assign(_S)); } _Myt& operator=(_E _C) {return (assign(1, _C)); } _Myt& operator+=(const _Myt& _X) {return (append(_X)); } _Myt& operator+=(const _E *_S) {return (append(_S)); } _Myt& operator+=(_E _C) */ }; #endif // __STDSTRING_H_INCLUDED
0e607739303643deed5bb3640e39dc6efe9be618
5dda7de8c39c987dd6e3a4f3a213f132818e7e44
/luogu 2656/luogu 2656/main.cpp
d0df1a854ff4a33d20b56cd2d9be65ccb8f81b06
[]
no_license
danieltyx/USACO_practice
89a34d9c2702b0db911b1e83284d781e4e8f385e
8fc439e0dbc78f9fe72f1c66adb414e6c5769c16
refs/heads/main
2023-02-06T03:48:49.629228
2020-12-31T01:43:36
2020-12-31T01:43:36
325,686,422
1
0
null
null
null
null
UTF-8
C++
false
false
2,654
cpp
main.cpp
#include"bits/stdc++.h" #define int long long using namespace std; const int MAXN = 2000100; struct edge { int next,to,v,from,v2; float co; };edge e[MAXN]; int T[MAXN]; int ei =0; int h[MAXN]; int n, low[MAXN], dfn[MAXN]; int sCnt, tCnt =0; int m; int s; int dis[MAXN]; int u[MAXN]; int v[MAXN]; stack<int> st; void add(int x,int y, int v, int v2) { ei++; e[ei].from = x; e[ei].to = y; e[ei].next = h[x]; e[ei].v = v; e[ei].v2 = v2; h[x] = ei; } void tarjan(int f) { sCnt ++; low[f]= dfn[f] = sCnt; st.push(f); for(int i = h[f]; i; i=e[i].next) { int to = e[i].to; if(!dfn[to]) { tarjan(to); low[f] = min(low[f],low[to]); } else { if(!T[to]) { low[f] = min(low[f],dfn[to]); } } } if(low[f]==dfn[f]) { tCnt++; while(1) { int tp = st.top(); T[tp] = tCnt; st.pop(); if(tp==f) { break; } } } } void do_tarjan() { for(int i=1;i<=n;i++) { if(!dfn[i]) { tarjan(i); } } } void delete_point() { int x = ei; ei = 0; memset(h,0,sizeof(h)); for(int i=1;i<=x;i++) { if(T[e[i].from] == T[e[i].to]) { v[T[e[i].from]] += e[i].v2; continue; } add(T[e[i].from], T[e[i].to],e[i].v,0); } } void spfa(int f) { queue<int> qu; memset(dis,0,sizeof(dis)); dis[f] = v[f]; qu.push(f); u[f] = 1; while(!qu.empty()) { int f1 = qu.front(); qu.pop(); u[f1] = 0; for(int i = h[f1];i;i=e[i].next) { int to = e[i].to; if(dis[to]==0 || dis[to] < dis[f1] + e[i].v + v[to]) { dis[to] = dis[f1] + e[i].v + v[to] ; if(u[to]==0) { u[to] = 1; qu.push(to); } } } } } int vfull(int v, double co) { int v2 = v; for(int i=1;v!=0;i++) { v = co * v; v2 += v; } return v2; } signed main() { cin>>n>>m; for(int i=1;i<=m;i++) { int x,y,v; double co; scanf("%lld%lld%lld%lf",&x,&y,&v,&co); add(x,y,v,vfull(v,co)); } cin>>s; do_tarjan(); delete_point(); s = T[s]; spfa(s); int spfamax = -1; for(int i=1;i<=tCnt;i++) { spfamax= max(spfamax,dis[i]); } cout<<spfamax<<endl; return 0; }
f6d539fbc3249250011fdf0d9ac55bf7e561ce31
694bd065edcc54f113026cbbb78f9644dedb1689
/test/src/base/basic_option.cpp
0f0254427d64f9d67c0b09ea9287e14f53f48eaf
[ "MIT" ]
permissive
overtalk/libsocket
593202eab7d9d1975bce369b40827f582f5b2a80
17345e500cca5085641b5392ce8ef7dc65369d69
refs/heads/master
2022-04-09T14:55:17.351927
2020-02-28T09:21:44
2020-02-28T09:21:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,948
cpp
basic_option.cpp
/** * Created by Jian Chen * @since 2016.11.29 * @author Jian Chen <admin@chensoft.com> * @link http://chensoft.com */ #include "socket/base/basic_socket.hpp" #include "gtest/gtest.h" using chen::basic_socket; using chen::basic_option; using chen::basic_address; TEST(BasicOptionTest, TCP) { basic_socket s(AF_INET, SOCK_STREAM); // error EXPECT_TRUE(!basic_option::error(s.native())); // type EXPECT_EQ(s.type(), basic_option::type(s.native())); // debug EXPECT_FALSE(basic_option::debug(s.native())); EXPECT_NO_THROW(basic_option::debug(s.native(), true)); // system may not allowed EXPECT_NO_THROW(basic_option::debug(s.native())); // reuseaddr EXPECT_FALSE(basic_option::reuseaddr(s.native())); EXPECT_TRUE(basic_option::reuseaddr(s.native(), true)); EXPECT_TRUE(basic_option::reuseaddr(s.native())); // reuseport #ifndef _WIN32 EXPECT_FALSE(basic_option::reuseport(s.native())); EXPECT_TRUE(basic_option::reuseport(s.native(), true)); EXPECT_TRUE(basic_option::reuseport(s.native())); #endif // keepalive EXPECT_FALSE(basic_option::keepalive(s.native())); EXPECT_TRUE(basic_option::keepalive(s.native(), true)); EXPECT_TRUE(basic_option::keepalive(s.native())); // dontroute EXPECT_FALSE(basic_option::dontroute(s.native())); EXPECT_TRUE(basic_option::dontroute(s.native(), true)); EXPECT_TRUE(basic_option::dontroute(s.native())); // linger EXPECT_TRUE(basic_option::linger(s.native(), 1, 100)); EXPECT_NO_THROW(basic_option::linger(s.native())); // may not allowed // oobinline EXPECT_FALSE(basic_option::oobinline(s.native())); EXPECT_TRUE(basic_option::oobinline(s.native(), true)); EXPECT_TRUE(basic_option::oobinline(s.native())); // sndbuf EXPECT_GT(basic_option::sndbuf(s.native()), 0); EXPECT_TRUE(basic_option::sndbuf(s.native(), 1024)); // just a hint // rcvbuf EXPECT_GT(basic_option::rcvbuf(s.native()), 0); EXPECT_TRUE(basic_option::rcvbuf(s.native(), 1024)); // just a hint // sndlowat EXPECT_GE(basic_option::sndlowat(s.native()), 0); EXPECT_NO_THROW(basic_option::sndlowat(s.native(), 1024)); // may not allowed // rcvlowat EXPECT_GE(basic_option::rcvlowat(s.native()), 0); EXPECT_NO_THROW(basic_option::rcvlowat(s.native(), 1024)); // may not allowed // sndtimeo EXPECT_TRUE(basic_option::sndtimeo(s.native(), 100, 4000)); // just a hint EXPECT_NO_THROW(basic_option::sndtimeo(s.native())); // rcvtimeo EXPECT_TRUE(basic_option::rcvtimeo(s.native(), 100, 4000)); // just a hint EXPECT_NO_THROW(basic_option::rcvtimeo(s.native())); } TEST(BasicOptionTest, UDP) { basic_socket s(AF_INET, SOCK_DGRAM); // broadcast EXPECT_FALSE(basic_option::broadcast(s.native())); EXPECT_TRUE(basic_option::broadcast(s.native(), true)); EXPECT_TRUE(basic_option::broadcast(s.native())); }
65b61f71ff3b5c884fa6d61b0cb3f8b8efe5c9d3
207c723e1299051c5313a36081fe3a0135aab870
/LABS/Lab1/Lab1/lista.cpp
3738c71425a611c8a59ea3030474de75f02a5b33
[]
no_license
andreigabor21/Logical-and-Functional-Programming
07c5074c8bb672fb0d4c457b9c7d3c1c337ee5bc
8b023aacb9157554b87d8b2ac8b401c1007aa03c
refs/heads/master
2023-06-11T20:17:39.053211
2021-06-28T19:35:30
2021-06-28T19:35:30
321,690,517
0
1
null
null
null
null
UTF-8
C++
false
false
1,332
cpp
lista.cpp
#include "lista.h" #include <iostream> using namespace std; PNod creare_rec() { TElem x; cout << "x="; cin >> x; if (x == 0) return NULL; else { PNod p = new Nod(); p->e = x; p->urm = creare_rec(); return p; } } Lista creare() { Lista l; l._prim = creare_rec(); return l; } void tipar_rec(PNod p) { if (p != NULL) { cout << p->e << " "; tipar_rec(p->urm); } } void tipar(Lista l) { tipar_rec(l._prim); } void distrug_rec(PNod p) { if (p != NULL) { distrug_rec(p->urm); delete p; } } void distruge(Lista l) { //se elibereaza memoria alocata nodurilor listei distrug_rec(l._prim); } //Determine if a list has even number of elements, without computing the length of the list bool evenList(PNod p1) { if (p1 == NULL) return true; else if (p1->urm == NULL) return false; else return evenList(p1->urm->urm); } bool checkEvenList(Lista l) { return evenList(l._prim); } //Delete all occurrences of an element e from a list PNod delete_all(PNod p1, TElem e) { if (!p1) { return NULL; } PNod right = delete_all(p1->urm, e); if (p1->e != e) { p1->urm = right; return p1; } delete p1; return right; }
c725fedd0add58c15fdd12a5228933ab456be382
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/com/ole32/oleprx32/proxy/remunkps.hxx
4b53982391a77c80e8d81eec6f21cc9036a5d368
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,928
hxx
remunkps.hxx
//+------------------------------------------------------------------- // // File: remunkps.hxx // // Contents: IRemoteUnnknown custom proxy/stub // // Classes: CRemUnknownFactory // CRemUnknownSyncP // CRemUnknownAsyncP // // History: 15-Dec-97 MattSmit Created // //-------------------------------------------------------------------- #include <remunk.h> #include <odeth.h> HRESULT RemUnkPSGetClassObject(REFIID riid, LPVOID * ppv); //+------------------------------------------------------------------- // // Class: CRemUnknownFactory // // Synopsis: Custom factory for the proxy/stub for IRemUnknown. // //-------------------------------------------------------------------- class CRemUnknownFactory : public IPSFactoryBuffer { public: CRemUnknownFactory() : _cRefs(0) {} // IUnknown STDMETHOD(QueryInterface)(REFIID riid, PVOID *pv); STDMETHOD_(ULONG, AddRef)(); STDMETHOD_(ULONG, Release)(); // IPSFactoryBuffer STDMETHOD(CreateProxy)(IUnknown *pUnkOuter, REFIID riid, IRpcProxyBuffer **ppProxy, void **ppv); STDMETHOD(CreateStub)(REFIID riid, IUnknown *pUnkServer, IRpcStubBuffer **ppStub); private: ULONG _cRefs; // ref count }; //+------------------------------------------------------------------- // // Class: CRemUnknownSyncP // // Synopsis: Synchronous proxy for IRemUknown // //-------------------------------------------------------------------- class CRemUnknownSyncP : public ICallFactory { public: class CRpcProxyBuffer : public IRpcProxyBuffer { public: //+------------------------------------------------------------------- // // Class: CRemUnknownSyncP::CRpcProxyBuffer // // Synopsis: Internal Unknown and IRpcProxyBuffer implementation // for CRemUnknownSyncP // //-------------------------------------------------------------------- CRpcProxyBuffer(): _cRefs(1) {} // IUnknown STDMETHOD(QueryInterface)(REFIID riid, PVOID *pv); STDMETHOD_(ULONG, AddRef)(); STDMETHOD_(ULONG, Release)(); // IRpcProxyBuffer STDMETHOD(Connect)(IRpcChannelBuffer *pRpcChannelBuffer); STDMETHOD_(void,Disconnect)(void); private: ULONG _cRefs; }; CRemUnknownSyncP() : _pCtrlUnk(NULL), _pPrx(NULL) {} ~CRemUnknownSyncP() ; HRESULT Init(IUnknown *pUnkOuter, REFIID riid, IRpcProxyBuffer **ppProxy, void **ppv); // IUnknown STDMETHOD(QueryInterface)(REFIID riid, PVOID *pv); STDMETHOD_(ULONG, AddRef)(); STDMETHOD_(ULONG, Release)(); // ICallFactory STDMETHOD(CreateCall)(REFIID riid, IUnknown *pCtrlUnk, REFIID riid2, IUnknown **ppv ); CRpcProxyBuffer _IntUnk; // inner unknown IUnknown *_pCtrlUnk; // controlling unknown IRpcProxyBuffer *_pPrx; // MIDL proxy for delegation }; //+------------------------------------------------------------------- // // Class: CRemUnknownAsyncCallP // // Synopsis: Asynchronous proxy call objectfor IRemUknown // //-------------------------------------------------------------------- class CRemUnknownAsyncCallP : public AsyncIRemUnknown2 { public: class CRpcProxyBuffer : public IRpcProxyBuffer { public: CRpcProxyBuffer() : _cRefs(1) { } // IUnknown STDMETHOD(QueryInterface)(REFIID riid, PVOID *pv); STDMETHOD_(ULONG, AddRef)(); STDMETHOD_(ULONG, Release)(); // IRpcProxyBuffer STDMETHOD(Connect)(IRpcChannelBuffer *pRpcChannelBuffer); STDMETHOD_(void,Disconnect)(void); private: ULONG _cRefs; }; CRemUnknownAsyncCallP(IUnknown *pUnkOuter): _pCtrlUnk(pUnkOuter), _pChnl(NULL), _hr(S_OK), _cIids(0) { Win4Assert(_pCtrlUnk); } // IUnknown STDMETHOD(QueryInterface)(REFIID riid, PVOID *pv); STDMETHOD_(ULONG, AddRef)(); STDMETHOD_(ULONG, Release)(); // AsyncIRemUnknown2 STDMETHOD(Begin_RemQueryInterface) ( REFIPID ripid, unsigned long cRefs, unsigned short cIids, IID *iids ); STDMETHOD(Finish_RemQueryInterface) ( REMQIRESULT **ppQIResults ); STDMETHOD(Begin_RemAddRef) ( unsigned short cInterfaceRefs, REMINTERFACEREF InterfaceRefs[] ); STDMETHOD(Finish_RemAddRef) ( HRESULT *pResults ); STDMETHOD(Begin_RemRelease) ( unsigned short cInterfaceRefs, REMINTERFACEREF InterfaceRefs[] ); STDMETHOD(Finish_RemRelease)(); STDMETHOD(Begin_RemQueryInterface2) ( REFIPID ripid, unsigned short cIids, IID *iids ); STDMETHOD(Finish_RemQueryInterface2) ( HRESULT *phr, MInterfacePointer **ppMIF ); CRpcProxyBuffer _IntUnk; // inner unknown IUnknown *_pCtrlUnk; // conrtrolling unknown IAsyncRpcChannelBuffer *_pChnl; // channel RPCOLEMESSAGE _msg; // current message DWORD _hr; // hr saved for Finish unsigned short _cIids; // IID count cloned for Finish };
8dca92da1269571f72543f2c13678ab73855ad72
e7fe7b23ce6e520330f8ec32c5456cfd0c3b5ce0
/EspCoreArchitecture/Common/CommonInterface.h
03e14d8d771ca9dac29e5788ea8e4bd6de5a3c7a
[]
no_license
jonathand131/EspLibs
62e942e39c9b485996c90a7febb6b3c1d28cc607
d7b31ce9febeb1f6d674dfc3bd2789ba3266d000
refs/heads/master
2021-01-01T16:02:05.473228
2019-03-15T13:26:24
2019-03-15T13:26:24
97,759,082
0
1
null
2017-07-20T19:14:55
2017-07-19T20:38:24
C++
UTF-8
C++
false
false
302
h
CommonInterface.h
#ifndef __COMMON_INTERFACE_H__ #define __COMMON_INTERFACE_H__ #include <string> class CommonInterface { public: virtual void run() = 0; virtual void prepareForOta() = 0; virtual const std::string& getName() = 0; virtual void handleEvent(uint8_t event); }; #endif // __COMMON_INTERFACE_H__
42fd00412d01dc7375d7e21ea0d396b608cdbad0
b58f48f5751690a88cdb850c3603440073ae8c0e
/pqalgo/gtests/sort_gtest.cpp
0f1091ed6a1784fb8702ce5397f61b0fe0ff070f
[]
no_license
paoqi1997/pqalgo
c4dfeb9424e704d3f1302f1d745a5d20d3a5e523
ae295d7ed2e8040b3159eeeb1ab52169ecbb642b
refs/heads/master
2023-07-14T08:25:50.601433
2021-09-07T08:24:50
2021-09-07T08:24:50
111,135,161
0
0
null
null
null
null
UTF-8
C++
false
false
1,330
cpp
sort_gtest.cpp
#include <algorithm> #include <pqalgo/qsort.h> #include <pqalgo/sort.h> #include "gtest/gtest.h" #define UNITTEST(m, len, sortfunc) \ do { \ std::size_t n = len; \ std::for_each(m, m + len, [&n](int& x){ x = int(--n); }); \ \ sortfunc(m, len); \ EXPECT_TRUE(std::is_sorted(m, m + len)); \ } while (0) class CSortTest : public ::testing::Test { protected: CSortTest() {} ~CSortTest() override {} void SetUp() override {} void TearDown() override {} }; TEST_F(CSortTest, TestSorted) { int m[10]; std::size_t len = sizeof(m) / sizeof(int); UNITTEST(m, len, pqalgo::insertsort); UNITTEST(m, len, pqalgo::shellsort); UNITTEST(m, len, pqalgo::selectsort); UNITTEST(m, len, pqalgo::heapsort); UNITTEST(m, len, pqalgo::bubblesort); UNITTEST(m, len, pqalgo::quicksort); UNITTEST(m, len, pqalgo::quicksort_nr); UNITTEST(m, len, pqalgo::quicksort_v2); UNITTEST(m, len, pqalgo::quicksort_v3); UNITTEST(m, len, pqalgo::mergesort); UNITTEST(m, len, pqalgo::mergesort_r); UNITTEST(m, len, pqalgo::radixsort); }
eb1d866439e240837060bdfa03d424dcacb170c4
7d1c4f3ebefe3f7a03ee7d166b052d2bbc036f0f
/course.cpp
53336ed6181439ec4e41fc9b5c9d89d38ad27d36
[]
no_license
thedirtyham/Class-with-students-using-a-class-C-
56d3dad2f7ae4aa53ecf1a23221af8c239795d0f
6bd1415aeed9cb8103ca6254a575e324f78673dd
refs/heads/master
2016-08-09T02:31:26.240222
2015-10-13T16:24:41
2015-10-13T16:24:41
44,133,648
0
0
null
null
null
null
UTF-8
C++
false
false
3,058
cpp
course.cpp
// // course.cpp // Project 1_3 // // Created by Stephan on 10/14/14. // Copyright (c) 2014 cst 238. All rights reserved. // #include "course.h" #include <iostream> #include <string> using namespace std; void course::setInstructor(string name) { courseInstructor = name; } bool course::addStudent(string name, int n) { for (int i = 0; i < numStudents; i ++) { if (n == students[i].id ) { return false; } } students[numStudents].name = name; students[numStudents].id = n; numStudents++; return true; } bool course::dropStudent(int studentID) { for (int i = 0; i < numStudents; i ++) { if (studentID == students[i].id) { for (int j = i; j < (numStudents - 1); j ++) { students[j] = students[j+1]; } numStudents--; droppedStudents++; return true; } } return false; } void course::putScores(int studentID, double mid1, double mid2) { for (int i = 0; i < numStudents; i ++) { if (studentID == students[i].id) { students[i].score1 = mid1; students[i].score2 = mid2; } students[i].avg = (students[i].score1 + students[i].score2) / 2; } } void course::getGrade () { for (int i = 0; i < numStudents; i ++) { if (students[i].avg >= 90){ students[i].grade = 'A'; a++; } else if (students[i].avg >= 80){ students[i].grade = 'B'; b++; } else if (students[i].avg >= 70){ students[i].grade = 'C'; c++; } else if (students[i].avg >= 60){ students[i].grade = 'D'; d++; } else if (students[i].avg >= 50){ students[i].grade = 'F'; f++; } } } void course::getAvg() { for (int i = 0; i < numStudents; i ++) { classAvg += (students[i].avg) / numStudents; } } void course::report() { cout << "---------------------------------" << endl; cout << courseName << " (" << courseNumber << ") Course Report " << endl; cout << "---------------------------------" << endl; cout << "Course Instroctor " << courseInstructor << endl; cout << numStudents << " students are enrolled in the course." << endl; cout << droppedStudents << " student dropped the course during the semester. " << endl; cout << "---------------------------------" << endl; cout << "Average of all students: " << classAvg << endl; cout << " 'A' --> " << a << endl; cout << " 'B' --> " << b << endl; cout << " 'C' --> " << c << endl; cout << " 'D' --> " << d << endl; cout << " 'F' --> " << f << endl; cout << "---------------------------------" << endl; cout << "Individual Record " << endl; for (int i = 0; i < numStudents; i++) { cout << students[i].id << ": " << students[i].name << " - " << students[i].avg << " (" << students[i].grade << ") " << endl; } }
5439ce73e45838867c7990136997813c13e77d3d
ce0f18dec797599f2cabed0b2576a9d86bf5ed03
/pid.h
ae4d3aecec1b42f9ae04d6fa6c3dec2fd4c33e1c
[]
no_license
dshipmon/a32nx-fbw
4ba6d21962f510dceb19dc8d044b9da57ad17ab4
8667ab4f31be7365914717bbb94ad4708354129d
refs/heads/master
2022-12-18T22:40:51.040621
2020-09-28T18:17:59
2020-09-28T18:17:59
299,430,033
2
0
null
2020-09-28T20:57:31
2020-09-28T20:57:31
null
UTF-8
C++
false
false
1,693
h
pid.h
#pragma once #include "common.h" class PIDController { public: PIDController(const double output_min, const double output_max, const double Kp, const double Ki, const double Kd) : output_min(output_min), output_max(output_max), Kp(Kp), Kd(Kd), Ki(Ki), integral(0), last_error(0), last_output(0) {}; double Update(const double error, const double dt) { // Proportional term auto P = Kp * error; // Integral term integral += error * dt; auto I = Ki * integral; // Derivative term auto D = Kd * ((error - last_error) / dt); auto output = P + I + D; output = clamp(output, output_min, output_max); // Save terms last_output = output; last_error = error; return output; } double Query(const double error, const double dt) { const auto saved_last_error = last_error; const auto saved_last_output = last_output; const auto saved_integral = integral; const auto update = Update(error, dt); last_error = saved_last_error; last_output = saved_last_output; integral = saved_integral; return update; } protected: double output_min, output_max; double Kp, Kd, Ki; double integral; double last_error, last_output; }; class AntiWindupPIDController : public PIDController { public: AntiWindupPIDController(const double output_min, const double output_max, const double Kp, const double Ki, const double Kd) : PIDController(output_min, output_max, Kp, Ki, Kd) {}; double Update(const double error, const double dt) { // Guard against integrator windup if ((last_output >= output_min && last_output <= output_max) || sign(error) != sign(last_output)) { integral -= error * dt; } return PIDController::Update(error, dt); } };
d38b12fd8d443d1e4851c2b409a1441be23b8da7
4fbe6f1e53152c851608994358fa4ddd92d1f883
/mlert/common/src/foundation/MleScheduler.cxx
518d8cf1c7993ac6358c78e8b55fa0ef7dc5aa49
[ "MIT" ]
permissive
magic-lantern-studio/mle-core-mlert
f362fd5d64e21893156301db772456c246420af2
e874535a3871e8d791e41b7836a9d11665035966
refs/heads/master
2022-12-21T11:21:11.137220
2022-12-11T23:44:33
2022-12-11T23:44:33
128,475,217
0
0
null
null
null
null
UTF-8
C++
false
false
32,657
cxx
MleScheduler.cxx
/** @defgroup MleFoundation Magic Lantern Runtime Engine Foundation Library API */ /** * @file MleScheduler.h * @ingroup MleFoundation */ // COPYRIGHT_BEGIN // // The MIT License (MIT) // // Copyright (c) 2015-2022 Wizzer Works // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // // For information concerning this source code, contact Mark S. Millard, // of Wizzer Works at msm@wizzerworks.com. // // More information concerning Wizzer Works may be found at // // http://www.wizzerworks.com // // COPYRIGHT_END // Include system header files. #if defined(MLE_DEBUG) #ifdef WIN32 #include <string.h> #else #include <strings.h> #endif /* WIN32 */ #endif /* MLE_DEBUG */ // Include Magic Lantern header files. #include "mle/mlMacros.h" #include "mle/mlMalloc.h" #include "mle/mlAssert.h" // Include Runtime Engine header files. #include "mle/MleDirector.h" #include "mle/MleScheduler.h" #ifdef MLE_REHEARSAL #include <stdio.h> #include "mle/MleMonitor.h" #endif /** * MleSchedulerItem holds all info on scheduled routines. * * XXX - This should really be a class so that it would be easier * to subclass to add in a pause flag and override the go() method. */ struct MleSchedulerItem { MleSchedulerItem* m_next; MleSchedulerItem** m_prev; void (*m_func)(void*); void* m_data; void* m_tag; unsigned int m_count; unsigned int m_interval; #if defined(MLE_DEBUG) char *m_name; #endif }; /** * MleSchedulerPhase holds the information for a single phase of routines. */ struct MleSchedulerPhase { MleSchedulerItem* m_first; }; ///////////////////////////////////////////////////////////////////////////// // // MleScheduler data member definition MleScheduler::MleScheduler(unsigned int phases, unsigned int items) { unsigned int index; // Create phase array MLE_ASSERT(phases > 0); m_phaseArray = new MleSchedulerPhase* [phases]; m_maxPhases = phases; // Start all the phases empty m_inUsePhases = 0; for(index = 0; index<phases; index++) { m_phaseArray[index] = NULL; } // set initSize to specified size. m_initSize = items; m_memLink = NULL; makeItemMemory(); // NULL iterator indicates not within a call to go() m_iterator = NULL; m_deleteItem = NULL; } MleScheduler::~MleScheduler() { // Delete the contents of the phase array first, then the // array itself // Iterate through the phases MleSchedulerIterator iter(this); for (MleSchedulerPhase* phase = iter.firstPhase(); phase != NULL; phase = iter.nextPhase()) { removePhase(phase); delete phase; } delete[] m_phaseArray; while (m_memLink) { MleSchedulerItem *next = m_memLink->m_next; delete m_memLink; m_memLink = next; } } // // Set up the four standard MLE phases. // // This is provided as a convenience function in the scheduler because // the four global phase symbols MUST be assigned in order for any // MLE actors, roles, sets, and/or stages to work. These parts // use the global phase symbols to schedule their functions and rely // on their having legal phase values. If you are writing your own // code and not using any of the four types of MLE parts, you can // omit use of this method. // // We could also insert them in reverse order so as to never // traverse the whole list. Though this would be only marginally // faster, it\'s worth pointing out since it illustrates how to // insert before another phase. // { // mleTheStagePhase = insertPhase(NULL); // mleTheSetPhase = insertPhase(NULL, mleTheStagePhase); // mleTheRolePhase = insertPhase(NULL, mleTheSetPhase); // mleTheActorPhase = insertPhase(NULL, mleTheRolePhase); // } void MleScheduler::init(void) { g_theActorPhase = insertPhase(); g_thePostActorPhase = insertPhase(); g_thePreRolePhase = insertPhase(); g_theRolePhase = insertPhase(); g_theSetPhase = insertPhase(); g_theStagePhase = insertPhase(); } void * MleScheduler::operator new(size_t tSize) { void *p = mlMalloc(tSize); return p; } void MleScheduler::operator delete(void *p) { mlFree(p); } // // Insert an existing phase into the scheduler. Return a pointer // to the inserted phase, or NULL if we failed to allocate more memory. // // Implementation note: we don\'t think that many phases will be inserted // or deleted, so we are content to use brute force insertion into an // array. If you will insist on numerous insertions/deletions, then // this will not be as efficient as using a doubly linked list. MleSchedulerPhase* MleScheduler::insertPhase(MleSchedulerPhase* phase, MleSchedulerPhase* beforePhase) { // As a convenience, allocate a phase if the user does // not provide one. if (NULL == phase) { phase = new MleSchedulerPhase; if (NULL == phase) { return NULL; } phase->m_first = NULL; } // Find index of the location at which to insert this phase. unsigned int insertPoint; if (NULL == beforePhase) { insertPoint = m_inUsePhases; } else { for (insertPoint=0; insertPoint<m_inUsePhases; insertPoint++) { if (m_phaseArray[insertPoint] == beforePhase) { break; } } // If we fell through the loop, then we must insert // at [inUsePhases] which is one past the end. } // Reallocate if necessary if (m_inUsePhases >= m_maxPhases) { m_maxPhases = MAX(m_inUsePhases, 2*m_maxPhases); m_phaseArray = (MleSchedulerPhase**) mlRealloc(m_phaseArray, m_maxPhases*sizeof(MleSchedulerPhase*)); if (NULL == m_phaseArray) { return NULL; } } // move the phases at and above the insertion point for (unsigned int i=m_inUsePhases; i>insertPoint; i--) { m_phaseArray[i] = m_phaseArray[i-1]; } m_inUsePhases++; m_phaseArray[insertPoint] = phase; return m_phaseArray[insertPoint]; } // // Remove a phase from the scheduler. Note that we never reallocate // the scheduler\'s phase array to be smaller. // void MleScheduler::removePhase(MleSchedulerPhase* phase) { unsigned int removePoint; // Find index of the location at which to remove this phase. for (removePoint=0; removePoint<m_inUsePhases; removePoint++) { if (m_phaseArray[removePoint] == phase) { break; } } // If we fell through the loop, then there is nothing to remove. if (removePoint == m_inUsePhases) { return; } // move the phases at and above the remove point for (unsigned int i=removePoint; i<m_inUsePhases-1; i++) { m_phaseArray[i] = m_phaseArray[i+1]; } m_inUsePhases--; } void MleScheduler::makeItemMemory(void) { m_freeItem = new MleSchedulerItem [m_initSize+1]; // link to the old memory block m_freeItem[0].m_next = m_memLink; m_memLink = m_freeItem; // freeItem starts from the 1st item in the block m_freeItem = &m_memLink[1]; for (int index=0; index<m_initSize-1; index++) { m_freeItem[index].m_next = &(m_freeItem[index+1]); } m_freeItem[m_initSize-1].m_next = NULL; } // Execute functions for a single phase void MleScheduler::go(MleSchedulerPhase *phase) { // Assert that we actually have a phase to execute. MLE_ASSERT(NULL != phase); // Assert that go() is not being called recursively MLE_ASSERT(m_iterator == NULL); #ifdef MLE_DEBUG // This conditional code checks that the // phase being run is actually owned by the scheduler. So the phase // that you pass to go() must be owned by this scheduler. // If it\'s not, then you could be mixing free lists and REALLY get // in trouble on deleting a phase. So at least we prevent it during // the debug compilation. { MlBoolean phaseFound = FALSE; MleSchedulerIterator iter(this); for ( MleSchedulerPhase *p = iter.firstPhase(); NULL != p; p = iter.nextPhase() ) { if (p == phase) { phaseFound = TRUE; break; } } MLE_ASSERT(TRUE == phaseFound); // MleScheduler::go(phase) must use a phase held by the scheduler. } #endif /* MLE_DEBUG */ // Loop over whole phase m_iterator = phase->m_first; while(m_iterator != NULL) { // Check if current item needs to be called if (--m_iterator->m_count == 0) { m_iterator->m_func(m_iterator->m_data); m_iterator->m_count = m_iterator->m_interval; } // Move on (before possible delete) m_iterator = m_iterator->m_next; // Check if that item needs to be deleted. if (m_deleteItem != NULL) { // Splice out of table *(m_deleteItem->m_prev) = m_deleteItem->m_next; if (m_deleteItem->m_next != NULL) { m_deleteItem->m_next->m_prev = m_deleteItem->m_prev; } m_deleteItem->m_next = m_freeItem; m_freeItem = m_deleteItem; m_deleteItem = NULL; } } } // Execute functions for all phases in iterator order void MleScheduler::goAll(void) { MleSchedulerPhase* phase; MleSchedulerIterator iter(this); for (phase = iter.firstPhase(); phase != NULL; phase = iter.nextPhase()) { go(phase); } } // Insert function into phase table. MleSchedulerItem* MleScheduler::insertFunc(MleSchedulerPhase *phase, void (*func)(void*), void* data, void* tag, unsigned int interval, unsigned int firstInterval #if defined(MLE_DEBUG) , char *name #endif ) { MLE_ASSERT(NULL != phase); // if run out of allocated memory for items if (m_freeItem == NULL) { makeItemMemory(); } // Get a new MleSchedulerItem MLE_ASSERT(m_freeItem != NULL); MleSchedulerItem* ctrlBlk = m_freeItem; m_freeItem = m_freeItem->m_next; // Setup control block for this insert ctrlBlk -> m_next = NULL; ctrlBlk -> m_func = func; ctrlBlk -> m_data = data; ctrlBlk -> m_tag = tag; ctrlBlk -> m_interval = interval; ctrlBlk -> m_count = firstInterval; #if defined(MLE_DEBUG) if ( name != NULL ) { ctrlBlk->m_name = _strdup(name); } else { ctrlBlk->m_name = NULL; } #endif // Get to end of phase list to perform FIFO inserts // NOTE - if this gets to be a time sink could store the insertPt for each list. MleSchedulerItem** insertPoint = &phase->m_first; while(*insertPoint != NULL) { insertPoint = &((*insertPoint)->m_next); } *insertPoint = ctrlBlk; ctrlBlk->m_prev = insertPoint; #ifdef MLE_REHEARSAL // Register with the deletion monitor. MleMonitor::g_deleteNotifier.addCallback(tag,(MleNotifierFunc)notify,this); #endif /* MLE_REHEARSAL */ return ctrlBlk; } // Internal function to perform queue remove void MleScheduler::remove(MleSchedulerItem* ctrlBlk) { // Determine if are deleting out from under the go() member function if (ctrlBlk != m_iterator) { // Splice out of table *(ctrlBlk->m_prev) = ctrlBlk->m_next; if (ctrlBlk->m_next != NULL) { ctrlBlk->m_next->m_prev = ctrlBlk->m_prev; } ctrlBlk->m_next = m_freeItem; m_freeItem = ctrlBlk; #if defined(MLE_DEBUG) if ( ctrlBlk->m_name != NULL ) { mlFree(ctrlBlk->m_name); } #endif } else { // Tell the go() function to delete it later. m_deleteItem = ctrlBlk; } } // Remove all items matching tag. For the momment do no optimization for // finding tagged items. void MleScheduler::remove(void* tag) { // Iterate through the phases MleSchedulerIterator iter(this); for ( MleSchedulerPhase *phase = iter.firstPhase(); NULL != phase; phase = iter.nextPhase() ) { // Iterate through the routines in this phase MleSchedulerItem* item = phase->m_first; while(item != NULL) { // Delete matching tags if (item->m_tag == tag) { MleSchedulerItem* deadItem=item; item = item->m_next; remove(deadItem); } else { item = item->m_next; } } } } #if defined(MLE_DEBUG) // // This function can be called from cvd to dump the data structures // void MleScheduler::dump() { printf("SCHEDULER STRUCTURES\n"); // Iterate through the phases MleSchedulerIterator iter(this); for ( MleSchedulerPhase *phase = iter.firstPhase(); NULL != phase; phase = iter.nextPhase() ) { printf(" PHASE 0x%p\n", phase); printf(" IDX FUNCPTR USERDATA TAG CNT IVL NAME\n"); int j = 0; for ( MleSchedulerItem *s=phase->m_first ; s!=NULL ; s=s->m_next ) { printf(" %3d 0x%p 0x%p 0x%p %3d %3d %s\n", j, s->m_func, s->m_data, s->m_tag, s->m_count, s->m_interval, s->m_name? s->m_name : "NULL"); j++; } } } #endif #ifdef MLE_REHEARSAL // // This function is called from the monitor whenever a monitored object // (like actors) is called. // void MleScheduler::notify(void *key,MleScheduler *sched) { // Remove any entries in the scheduler associated with the tag // sched->remove(key); // Really all we need to do is call the remove function. // But duplicating the code here gives us a chance to print // a warning when something is deleted. This is a rehearsal // service, so failures to remove scheduled functions that // are caught here will not be intercepted after mastering. // Iterate through the phases MleSchedulerIterator iter(sched); for ( MleSchedulerPhase *phase = iter.firstPhase(); NULL != phase; phase = iter.nextPhase() ) { // Iterate through the routines in this phase. MleSchedulerItem* item = phase->m_first; while (item != NULL) { // Delete matching tags. if (item->m_tag == key) { MleSchedulerItem* deadItem = item; item = item->m_next; if ( deadItem != sched->m_iterator ) printf("MleScheduler warning: a deleted object did not unschedule a function.\n"); sched->remove(deadItem); } else { item = item->m_next; } } } } #endif /* MLE_REHEARSAL */ ///////////////////////////////////////////////////////////////////////////// MleSchedulerIterator::MleSchedulerIterator(MleScheduler *sched) { scheduler = sched; // set the current phase index beyond the range of existing // phases so the user must call firstPhase() to get started. currentPhaseIndex = scheduler->m_inUsePhases; } MleSchedulerIterator::~MleSchedulerIterator(void) { scheduler = NULL; } // // Get a pointer to the first phase in the scheduler. // MleSchedulerPhase* MleSchedulerIterator::firstPhase(void) { MLE_ASSERT(NULL != scheduler); // Must have a scheduler to iterate on currentPhaseIndex = 0; if (currentPhaseIndex < scheduler->m_inUsePhases) { return scheduler->m_phaseArray[currentPhaseIndex]; } else { return NULL; } } // // Get a pointer to the next phase in the scheduler. // MleSchedulerPhase* MleSchedulerIterator::nextPhase(void) { if (++currentPhaseIndex < scheduler->m_inUsePhases) { return scheduler->m_phaseArray[currentPhaseIndex]; } else { return NULL; } } ///////////////////////////////////////////////////////////////////////////// // // Testing #ifdef UNITTEST_1 #if defined(MLE_DEBUG) #include <stdio.h> void testFn(void* parm); void testFn(void* parm) { printf("%s", parm); } static MleSchedulerItem* deleteArg = NULL; void deleteFn(void* parm); void deleteFn(void* parm) { printf("Test String D MleScheduler.\n"); if (deleteArg != NULL) { ((MleScheduler*)parm)->remove(deleteArg); } } void* deleteTagArg = NULL; void deleteTagFn(void* parm); void deleteTagFn(void* parm) { printf("Test String T MleScheduler.\n"); if (deleteTagArg != NULL) { ((MleScheduler*)parm)->remove(deleteTagArg); } } main() { char* theString1 = "Test String 1 MleScheduler.\n"; char* theString2 = "Test String 2 MleScheduler.\n"; char* theString3 = "Test String 3 MleScheduler.\n"; char* theString4 = "Test String 4 MleScheduler.\n"; char* theString5 = "Test String 5 MleScheduler.\n"; char* theStringNL = "\n"; MleSchedulerItem* blocks[9]; printf("Initialization.\n"); MleScheduler* theMleScheduler = new MleScheduler(6, 16); MleSchedulerPhase *p0 = theMleScheduler->insertPhase(); MleSchedulerPhase *p1 = theMleScheduler->insertPhase(); theMleScheduler->insertFunc(p0, testFn, theStringNL, theStringNL); printf("Initialization complete.\n\n"); printf("First test.\n"); printf("Should have strings printed in order 13 3 123\n"); blocks[0] = theMleScheduler->insertFunc(p1, testFn, theString1, theString1, 2); blocks[1] = theMleScheduler->insertFunc(p1, testFn, theString2, theString2, 1, 3); blocks[2] = theMleScheduler->insertFunc(p1, testFn, theString3, theString3); theMleScheduler->go(p1); theMleScheduler->go(p0); theMleScheduler->go(p1); theMleScheduler->go(p0); theMleScheduler->go(p1); theMleScheduler->go(p0); printf("First test complete.\n\n"); printf("Second test.\n"); printf("Should have strings printed in order 3D 3D D D. \n"); theMleScheduler->remove(blocks[0]); theMleScheduler->remove(blocks[1]); blocks[3] = theMleScheduler->insertFunc(p1, deleteFn, theMleScheduler, theMleScheduler); theMleScheduler->go(p1); theMleScheduler->go(p0); deleteArg = blocks[2]; theMleScheduler->go(p1); theMleScheduler->go(p0); deleteArg = NULL; theMleScheduler->go(p1); theMleScheduler->go(p0); deleteArg = blocks[3]; theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); printf("Second test complete.\n\n"); printf("Third test.\n"); printf("Should have strings printed in order 544T5 5T5 5T5 5T. \n"); theMleScheduler->insertFunc(p1, testFn, theString5, theString5); theMleScheduler->insertFunc(p1, testFn, theString4, theString4); theMleScheduler->insertFunc(p1, testFn, theString4, theString4); theMleScheduler->insertFunc(p1, deleteTagFn, theMleScheduler, theString5); theMleScheduler->insertFunc(p1, testFn, theString5, theString5); theMleScheduler->go(p1); theMleScheduler->go(p0); theMleScheduler->remove(theString4); theMleScheduler->go(p1); theMleScheduler->go(p0); theMleScheduler->go(p1); theMleScheduler->go(p0); deleteTagArg = theString5; theMleScheduler->go(p1); theMleScheduler->go(p0); deleteTagArg = NULL; theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); printf("Third test complete.\n\n"); return 0; } #else /* MLE_DEBUG */ main () { return 0; } #endif /* MLE_DEBUG */ #endif /* UNITTEST_1 */ ///////////////////////////////////////////////////////////////////////////// #ifdef UNITTEST_2 #include <mle/ptrarray.h> //#include <iostream> using namespace std; class SchedObj { public: SchedObj(char *s="") { str = strdup(s); }; ~SchedObj() { if (str) { delete str; } }; static void update(SchedObj *data); char* getStr() { return str; }; MleSchedulerItem* getItem() { return item; }; void setItem(MleSchedulerItem *i) { item = i; }; //friend ostream& operator <<(ostream&, SchedObj *obj); static int outLen; // The array of objects we\'re scheduling. static MlePtrArray *objArray; static int objArrayLen; protected: char *str; MleSchedulerItem *item; }; #define MARGIN_COL 72 // // Globals // // The only phase MleSchedulerPhase* theMleSchedulerPhase = NULL; // The length written so far this line. int SchedObj::outLen = 0; // The array of objects we\'re scheduling. MlePtrArray* SchedObj::objArray = NULL; int SchedObj::objArrayLen = 0; void SchedObj::update( SchedObj *data ) { delete new char[8]; fprintf(ML_DEBUG_OUTPUT_FILE, "%s", data->getStr()); //cout << data; if ((SchedObj::outLen += strlen(data->getStr())) > MARGIN_COL) { //cout << "\n" << flush; fprintf(ML_DEBUG_OUTPUT_FILE, "\n"); fflush(ML_DEBUG_OUTPUT_FILE); SchedObj::outLen = 0; } } //ostream& //operator << (ostream& os, SchedObj *obj) //{ // os << obj->getStr(); // return os; //} void scheduleObj( MleScheduler *sched, unsigned int i ) { // Make a tagged object to schedule char id[16]; sprintf(id, "%.3d", i); SchedObj *obj = new SchedObj( id ); // Put into the scheduler MLE_ASSERT( NULL != theMleSchedulerPhase); MleSchedulerItem *item = sched->insertFunc (theMleSchedulerPhase, (MleSchedulerFunc)SchedObj::update, obj, id); obj->setItem( item ); // log to stdout fprintf(ML_DEBUG_OUTPUT_FILE, "Add [%d] = %s\n", i; obj->getStr()); fflush(ML_DEBUG_OUTPUT_FILE); //cout << "Add [" << i << "] = " << obj << "\n" << flush; // Save for future deletion (*obj->objArray)[obj->objArrayLen++] = (void*) obj; } SchedObj* unscheduleObj( MleScheduler *sched, unsigned int i ) { MLE_ASSERT(i < SchedObj::objArrayLen); MLE_ASSERT(SchedObj::objArrayLen >= 1); // Find in the array and replace with NULL SchedObj *obj = (SchedObj *) (*SchedObj::objArray)[i]; if (NULL == obj) { return NULL; } // log to stdout fprintf(ML_DEBUG_OUTPUT_FILE, "Del [%d] = %s\n", i; obj->getStr()); fflush(ML_DEBUG_OUTPUT_FILE); //cout << "Del [" << i << "] " << obj << "\n" << flush; (*SchedObj::objArray)[i] = NULL; // Now unschedule the update function and delete the object MleSchedulerItem *item = obj->getItem(); sched->remove(item); return obj; } int main(int argc, char *argv[]) { if (argc != 3) { printf("Usage: %s <insert> <insert/remove>\n\ where <insert> = number of initial schedule insertions\n\ <insert/removes> = number of scheduler operations\n", argv[0]); exit(1); } printf("Exercising scheduler insertion/deletion.\n"); fflush(stdout); int inserts = atoi(argv[1]); int updates = atoi(argv[2]); if (inserts < 0) { return 0; } if (updates < 0) { return 0; } // Idea is to insert a set of funcs, then to make a number // of updates (insert/delete) to the scheduler. // To avoid leaking memory, we must keep track of the objects // whose update() function we\'re scheduling, so that we can // delete the object when we unschedule it. SchedObj::objArray = new MlePtrArray(inserts + updates); MleScheduler* theMleScheduler = new MleScheduler(6, inserts + updates); theMleSchedulerPhase = theMleScheduler->insertPhase(); unsigned int i; for (i=0; i<inserts; i++) { scheduleObj( theMleScheduler, i ); } // init seed for random number generation // any old integral number will do in place of 1. srand( 1 ); // We know that rand() returns numbers in [0..2^15-1) #define DRAND(j) (double)((j) / 32768.0) for (i=0; i<updates; i++) { int j = rand(); double d = DRAND(j); if (d >= 0.5) { // insert a new one scheduleObj( theMleScheduler, i ); } else { // delete an old one // We know that DRAND < 1/2, so multiply // by 2 to get in the range [0..1) and then // scale to size of objArray. unsigned int origIndex; unsigned int index; origIndex = index = SchedObj::objArrayLen * 2 * d; SchedObj *obj; while (NULL == (obj = unscheduleObj( theMleScheduler, index ))) { index = ++index % SchedObj::objArrayLen; // prevent infinite loop if (index == origIndex) { printf("Ran out of items to unschedule. Increase number of in/dels.\n"); fflush(stdout); return 1; } } delete obj; } } // Final cleanup unsigned int n = SchedObj::objArrayLen; for (i=0; i<n; i++) { SchedObj *obj = unscheduleObj( theMleScheduler, i ); if (NULL != obj) { delete obj; } } delete SchedObj::objArray; SchedObj::objArray = NULL; delete theMleScheduler; // printf("Test passed.\n"); fflush(stdout); return 0; } #endif /* UNITTEST_2 */ ///////////////////////////////////////////////////////////////////////////// #ifdef UNITTEST_3 #include <stdio.h> // Try to break the scheduler by removing a scheduled function from // within a scheduled function -- is the removed function ever called? // If so, the data ptr is probably invalid and we should get a core dump. // Global pointer to the only phase we create MleSchedulerPhase* THE_MLE_PHASE = NULL; static char *theString = NULL; static MleSchedulerItem *theItemA = NULL; static MleSchedulerItem *theItemB = NULL; static MleSchedulerItem *theItemC = NULL; static MleScheduler *theMleScheduler = NULL; void funcPrint(void *data) { MLE_ASSERT( NULL != data ); char *str = (char*) data; printf("%s\n", str); fflush(stdout); } void funcDelete(void *) { static MleSchedulerItem *item = NULL; if (NULL != theString) { printf("%s\n", theString); delete theString; theString = NULL; printf("Removing A\n"); theMleScheduler->remove(theItemA); printf("Removing C\n"); theMleScheduler->remove(theItemC); printf("Inserting B2\n"); item = theMleScheduler->insertFunc (THE_MLE_PHASE, (MleSchedulerFunc)funcDelete, theString, theString ); } else { // remove both copies of myself the second time around printf("Removing B and B2\n"); theMleScheduler->remove(theString); } } int main(int argc, char *argv[]) { if (argc != 1) { printf("Usage: %s\n"); fflush(stdout); exit(1); } printf("Attempting to force scheduler to execute removed func.\n"); fflush(stdout); // set up the global string theString = strdup("This string to be deleted."); // set up the scheduler int nPhases = 1; int nItems = 128; theMleScheduler = new MleScheduler(nPhases, nItems); THE_MLE_PHASE = theMleScheduler->insertPhase(); // schedule the three items theItemA = theMleScheduler->insertFunc (THE_MLE_PHASE, (MleSchedulerFunc)funcPrint, "Item A", "Item A" ); theItemB = theMleScheduler->insertFunc (THE_MLE_PHASE, (MleSchedulerFunc)funcDelete, theString, theString ); theItemC = theMleScheduler->insertFunc (THE_MLE_PHASE, (MleSchedulerFunc)funcPrint, "Item C", "Item C" ); // Should fail on third callback. printf("Executing 1 with {A, B, C}.\n"); fflush(stdout); theMleScheduler->go(THE_MLE_PHASE); theMleScheduler->go(THE_MLE_PHASE); delete theMleScheduler; theMleScheduler = new MleScheduler(nPhases, nItems); THE_MLE_PHASE = theMleScheduler->insertPhase(); printf("Executing 2 with {B, B}.\n"); fflush(stdout); theItemB = theMleScheduler->insertFunc (THE_MLE_PHASE, (MleSchedulerFunc)funcDelete, theString, theString ); theMleScheduler->go(THE_MLE_PHASE); delete theMleScheduler; // Should succeed with no functions executed if we get this far. theMleScheduler = new MleScheduler(nPhases, nItems); THE_MLE_PHASE = theMleScheduler->insertPhase(); printf("Executing 3 with {}.\n"); fflush(stdout); theMleScheduler->go(THE_MLE_PHASE); delete theMleScheduler; // Cleanup theMleScheduler->removePhase(THE_MLE_PHASE); delete THE_MLE_PHASE; if (theString) delete theString; delete theItemA; delete theItemB; delete theItemC; delete theMleScheduler; printf("Test passed.\n"); fflush(stdout); return 0; } #endif /* UNITTEST_3 */ ///////////////////////////////////////////////////////////////////////////// // // Testing #ifdef UNITTEST_4 #if defined(MLE_DEBUG) #include <stdio.h> void testFn(void* parm); void testFn(void* parm) { printf("%s", parm); } static MleSchedulerItem* deleteArg = NULL; void deleteFn(void* parm); void deleteFn(void* parm) { printf("Test String D MleScheduler.\n"); if (deleteArg != NULL) { ((MleScheduler*)parm)->remove(deleteArg); } } void* deleteTagArg = NULL; void deleteTagFn(void* parm); void deleteTagFn(void* parm) { printf("Test String T MleScheduler.\n"); if (deleteTagArg != NULL) { ((MleScheduler*)parm)->remove(deleteTagArg); } } main() { char* theString1 = "Test String 1 MleScheduler.\n"; char* theString2 = "Test String 2 MleScheduler.\n"; char* theString3 = "Test String 3 MleScheduler.\n"; char* theString4 = "Test String 4 MleScheduler.\n"; char* theString5 = "Test String 5 MleScheduler.\n"; char* theStringNL = "\n"; MleSchedulerItem* blocks[9]; printf("Initialization.\n"); MleScheduler* theMleScheduler = new MleScheduler(2, 16); // Do the first 4 phases, which overflows our requested 2. theMleScheduler->mleInit(); // Now do 2 more. MleSchedulerPhase *p0 = theMleScheduler->insertPhase(); MleSchedulerPhase *p1 = theMleScheduler->insertPhase(NULL, p0); theMleScheduler->insertFunc(p0, testFn, theStringNL, theStringNL); printf("Initialization complete.\n\n"); printf("First test.\n"); printf("Should have strings printed in order 13 3 123\n"); blocks[0] = theMleScheduler->insertFunc(p1, testFn, theString1, theString1, 2); blocks[1] = theMleScheduler->insertFunc(p1, testFn, theString2, theString2, 1, 3); blocks[2] = theMleScheduler->insertFunc(p1, testFn, theString3, theString3); theMleScheduler->go(p1); theMleScheduler->go(p0); theMleScheduler->go(p1); theMleScheduler->go(p0); theMleScheduler->go(p1); theMleScheduler->go(p0); printf("First test complete.\n\n"); printf("Second test.\n"); printf("Should have strings printed in order 3D 3D D D. \n"); theMleScheduler->remove(blocks[0]); theMleScheduler->remove(blocks[1]); blocks[3] = theMleScheduler->insertFunc(p1, deleteFn, theMleScheduler, theMleScheduler); theMleScheduler->go(p1); theMleScheduler->go(p0); deleteArg = blocks[2]; theMleScheduler->go(p1); theMleScheduler->go(p0); deleteArg = NULL; theMleScheduler->go(p1); theMleScheduler->go(p0); deleteArg = blocks[3]; theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); printf("Second test complete.\n\n"); printf("Third test.\n"); printf("Should have strings printed in order 544T5 5T5 5T5 5T. \n"); theMleScheduler->insertFunc(mleTheActorPhase, testFn, theString5, theString5); theMleScheduler->insertFunc(mleTheDelegatePhase, testFn, theString4, theString4); theMleScheduler->insertFunc(mleTheForumPhase, testFn, theString4, theString4); theMleScheduler->insertFunc(mleTheStagePhase, deleteTagFn, theMleScheduler, theString5); theMleScheduler->insertFunc(p1, testFn, theString5, theString5); theMleScheduler->goAll(); theMleScheduler->remove(theString4); for (int run=0; run<2; run++) { theMleScheduler->goAll(); } deleteTagArg = theString5; theMleScheduler->goAll(); deleteTagArg = NULL; theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); theMleScheduler->go(p1); printf("Third test complete.\n\n"); printf("Fourth test -- phases before and after removal.\n"); MleSchedulerIterator iter(theMleScheduler); MleSchedulerPhase *p; for (p = iter.firstPhase(); NULL != p; p = iter.nextPhase()) { printf(" Phase 0x%x\n", p); } printf(" Removing delegate and stage phases:\n\t0x%x\n\t0x%x\n\n", PHASE_DELEGATE, PHASE_STAGE ); theMleScheduler->removePhase(PHASE_DELEGATE); theMleScheduler->removePhase(PHASE_STAGE); for (p = iter.firstPhase(); NULL != p; p = iter.nextPhase()) { printf(" Phase 0x%x\n", p); } theMleScheduler->removePhase(p0); theMleScheduler->removePhase(PHASE_FORUM); theMleScheduler->removePhase(p1); theMleScheduler->removePhase(PHASE_ACTOR); printf("Fourth test complete.\n\n"); delete theMleScheduler; return 0; } #else /* MLE_DEBUG */ main () { return 0; } #endif /* MLE_DEBUG */ #endif /* UNITTEST_4 */
cd4180a0e294f42c90d00bfe334e44e33ea30602
e51d009c6c6a1633c2c11ea4e89f289ea294ec7e
/xr2-dsgn/sources/xray/render/engine/sources/stage_sun_materials.cpp
901e488fd55995ac1586f0bb19d0b4f7b31f1544
[]
no_license
avmal0-Cor/xr2-dsgn
a0c726a4d54a2ac8147a36549bc79620fead0090
14e9203ee26be7a3cb5ca5da7056ecb53c558c72
refs/heads/master
2023-07-03T02:05:00.566892
2021-08-06T03:10:53
2021-08-06T03:10:53
389,939,196
3
2
null
null
null
null
UTF-8
C++
false
false
19,601
cpp
stage_sun_materials.cpp
//////////////////////////////////////////////////////////////////////////// // Created : 10.02.2010 // Author : Armen Abroyan // Copyright ( C) GSC Game World - 2010 //////////////////////////////////////////////////////////////////////////// #include "pch.h" #include <xray/render/core/custom_config.h> #include "stage_sun_materials.h" #include <xray/render/core/effect_manager.h> #include "effect_light_mask.h" #include "effect_light_direct.h" #include <xray/render/core/backend.h> #include "convex_volume.h" #include "renderer_context.h" #include <xray/render/core/pix_event_wrapper.h> #include "renderer_context_targets.h" #include "light.h" #include "scene.h" #include "lights_db.h" #include "vertex_formats.h" #include "shared_names.h" #include <xray/render/core/res_geometry.h> #include <xray/render/core/effect_options_descriptor.h> #include <xray/render/core/res_effect.h> #include <xray/render/core/res_texture.h> #include <xray/render/core/custom_config.h> #include "material.h" // #pragma warning( push ) // #pragma warning( disable : 4995 ) // #pragma message( XRAY_TODO("Remove D3D math usage") ) // #include <d3dx9math.h> // #pragma warning( pop ) // // #pragma comment( lib, "d3dx9.lib" ) namespace xray { namespace render { namespace { float ps_r2_sun_tsm_projection = 0.18f; // 0.18f float ps_r2_sun_tsm_bias = -0.05f; // float ps_r2_sun_near = 200.f; // 12.0f float ps_r2_sun_near_border = 0.75f; // 1.0f float ps_r2_sun_depth_far_scale = 1.00000f; // 1.00001f float ps_r2_sun_depth_far_bias = 0.00000f; // -0.0000f float ps_r2_sun_depth_near_scale = 1.00001f; // 1.00001f float ps_r2_sun_depth_near_bias = -0.00004f; // -0.00005f float ps_r2_sun_lumscale = 1.0f; // 1.0f float ps_r2_sun_lumscale_hemi = 1.0f; // 1.0f float ps_r2_sun_lumscale_amb = 1.0f; const float tweak_COP_initial_offs = 1200.f ; const float tweak_ortho_xform_initial_offs = 1000.f ; //. ? const float tweak_guaranteed_range = 20.f ; //. ? ////////////////////////////////////////////////////////////////////////// // tables to calculate view-frustum bounds in world space // note: D3D uses [0..1] range for Z static float3 corners [8] = { float3( -1, -1, 0), float3( -1, -1, +1), float3( -1, +1, +1), float3( -1, +1, 0), float3( +1, +1, +1), float3( +1, +1, 0), float3( +1, -1, +1), float3( +1, -1, 0) }; static int facetable[6][4] = { { 0, 3, 5, 7 }, { 1, 2, 3, 0 }, { 6, 7, 5, 4 }, { 4, 2, 1, 6 }, { 3, 2, 4, 5 }, { 1, 0, 7, 6 }, }; float3 calc_hp( float h, float p)//What does it mean???????????????????? { float ch= cos( h), cp=cos( p), sh=sin( h), sp=sin( p); float x = -cp*sh; float y = sp; float z = cp*ch; return float3( x, y, z); } } class dumb_convex_volume { public: struct _poly { vector<int> points; float3 planeN; float planeD; float classify ( float3& p) { return planeN.dot_product( p)+planeD; } }; struct _edge { int p0,p1; int counter; _edge ( int _p0, int _p1, int m) : p0( _p0), p1( _p1), counter( m){ if ( p0>p1) std::swap( p0,p1); } bool equal ( _edge& E) { return p0==E.p0 && p1==E.p1; } }; public: vector<float3> points; vector<_poly> polys; vector<_edge> edges; public: void compute_planes () { for ( int it=0; it<int( polys.size()); it++) { _poly& P = polys[it]; float3 t1,t2; t1 = points[P.points[0]] - points[P.points[1]]; t2 = points[P.points[0]] - points[P.points[2]]; P.planeN = math::cross_product( t1,t2); P.planeN.normalize(); P.planeD = -P.planeN.dot_product( points[P.points[0]]); // ASSERT //if ( _debug) //{ // Fvector& p0 = points[P.points[0]]; // Fvector& p1 = points[P.points[1]]; // Fvector& p2 = points[P.points[2]]; // Fvector& p3 = points[P.points[3]]; // Fplane p012; p012.build( p0,p1,p2); // Fplane p123; p123.build( p1,p2,p3); // Fplane p230; p230.build( p2,p3,p0); // Fplane p301; p301.build( p3,p0,p1); // ASSERT ( p012.n.similar( p123.n) && p012.n.similar( p230.n) && p012.n.similar( p301.n)); //} } } void compute_caster_model( vector<math::plane>& dest, float3 direction) { //CRenderTarget& T = *RImplementation.Target; // COG float3 cog( 0,0,0); for( int it=0; it<int( points.size()); it++) cog += points[it]; cog /= float( points.size()); // planes compute_planes (); for ( int it=0; it<int( polys.size()); it++) { _poly& base = polys [it]; if ( base.classify( cog)>0) std::reverse( base.points.begin(),base.points.end()); } // remove faceforward polys, build list of edges -> find open ones compute_planes (); for ( int it=0; it<int( polys.size()); it++) { _poly& base = polys [it]; ASSERT ( base.classify( cog)<0); // debug int marker = ( base.planeN.dot_product( direction)<=0)?-1:1; // register edges vector<int>& plist = polys[it].points; for ( int p=0; p<int( plist.size()); p++) { _edge E ( plist[p],plist[ ( p+1)%plist.size() ], marker); bool found = false; for ( int e=0; e<int( edges.size()); e++) if ( edges[e].equal( E)) { edges[e].counter += marker; found=true; break; } if ( !found) { edges.push_back ( E); //if ( _debug) T.dbg_addline( points[E.p0],points[E.p1],color_rgba( 255,0,0,255)); } } // remove if unused if ( marker<0) { polys.erase ( polys.begin()+it); it--; } } // Extend model to infinity, the volume is not capped, so this is indeed up to infinity for ( int e=0; e<int( edges.size()); e++) { if ( edges[e].counter != 0) continue; _edge& E = edges[e]; //if ( _debug) T.dbg_addline( points[E.p0],points[E.p1],color_rgba( 255,255,255,255)); //float3 point; points.push_back ( /*point.sub*/( points[E.p0]-direction)); points.push_back ( /*point.sub*/( points[E.p1]-direction)); polys.push_back ( _poly()); _poly& P = polys.back(); int pend = int( points.size()); P.points.push_back ( E.p0); P.points.push_back ( E.p1); P.points.push_back ( pend-1); //p1 mod P.points.push_back ( pend-2); //p0 mod //if ( _debug) T.dbg_addline( points[E.p0],point.mad( points[E.p0],direction,-1000),color_rgba( 0,255,0,255)); //if ( _debug) T.dbg_addline( points[E.p1],point.mad( points[E.p1],direction,-1000),color_rgba( 0,255,0,255)); } // Reorient planes ( try to write more inefficient code :) compute_planes (); for ( int it=0; it<int( polys.size()); it++) { _poly& base = polys [it]; if ( base.classify( cog)>0) std::reverse( base.points.begin(),base.points.end()); } // Export compute_planes (); for ( int it=0; it<int( polys.size()); it++) { _poly& P = polys[it]; math::plane pp(P.planeN,P.planeD); dest.push_back ( pp); } } }; stage_sun_materials::stage_sun_materials( renderer_context* context): stage( context) { m_sh_accum_mask = effect_manager::ref().create_effect<effect_light_mask>(); m_sh_accum_direct[0] = effect_manager::ref().create_effect<effect_light_direct<0> >();//, "r2\\accum_direct"); m_sh_accum_direct[1] = effect_manager::ref().create_effect<effect_light_direct<1> >();//, "r2\\accum_direct"); m_sh_accum_direct[2] = effect_manager::ref().create_effect<effect_light_direct<2> >();//, "r2\\accum_direct"); m_sh_accum_direct[3] = effect_manager::ref().create_effect<effect_light_direct<3> >();//, "r2\\accum_direct"); m_c_light_direction = backend::ref().register_constant_host( "light_direction", rc_float ); m_c_light_color = backend::ref().register_constant_host( "light_color", rc_float ); m_sunmask = backend::ref().register_constant_host( "sunmask", rc_float ); m_out_filter = backend::ref().register_constant_host( "out_filter", rc_float ); m_c_light_attenuation_power = backend::ref().register_constant_host( "light_attenuation", rc_float ); } stage_sun_materials::~stage_sun_materials() { } #if 0 float4x4 stage_sun_materials::calc_sun_matrix( const float4x4& frustum, const float3& dir) { float4x4 inv_frustum; D3DXMatrixInverse( ( D3DXMATRIX*)&inv_frustum, 0, ( D3DXMATRIX*)&frustum); // Compute volume( s) - something like a frustum for infinite directional light // Also compute virtual light position and sector it is inside convex_volume cull_volume; vector<math::plane> cull_planes; float3 cull_COP; float4x4 cull_xform; // Lets begin from base frustum dumb_convex_volume hull; hull.points.reserve ( 9); for ( int p=0; p<8; p++) { float3 xf = utils::wform ( inv_frustum,corners[p]); hull.points.push_back ( xf); } for ( int plane=0; plane<6; plane++) { hull.polys.push_back( dumb_convex_volume::_poly()); for ( int pt=0; pt<4; pt++) hull.polys.back().points.push_back( facetable[plane][pt]); } hull.compute_caster_model( cull_planes, dir); // COP - 100 km away cull_COP = m_context->get_view_pos() - tweak_COP_initial_offs*dir; // Create frustum for query //cull_volume/*.clear()*/ = math::cuboid( &cull_planes[0], cull_planes.size()); cull_volume.create_from_planes( &cull_planes[0], cull_planes.size()); //for ( u32 p=0; p<cull_planes.size(); ++p) // cull_volume.add( cull_planes[p]); // Create approximate ortho-xform // view: auto find 'up' and 'right' vectors float4x4 mdir_View, mdir_Project; float3 L_dir,L_up,L_right,L_pos; L_pos = dir; L_dir = normalize( dir); L_right.set( 1,0,0); if ( abs( L_right.dot_product( L_dir))>.99f) L_right.set( 0,0,1); L_up = normalize( cross_product( L_dir,L_right)); L_right = normalize( cross_product( L_up,L_dir)); mdir_View = create_camera_direction( L_pos,L_dir,L_up); // Simple math::aabb bb; bb.invalidate(); for ( int it=0; it<8; it++) { float3 xf = utils::wform ( mdir_View,hull.points[it]); bb.modify ( xf); } //bb.grow( math::epsilon_5); bb.min -= math::epsilon_5; bb.max += math::epsilon_5; D3DXMatrixOrthoOffCenterLH( ( D3DXMATRIX*)&mdir_Project, bb.min.x, bb.max.x, bb.min.y,bb.max.y, bb.min.z-tweak_ortho_xform_initial_offs, bb.max.z); return mdir_Project; } #endif // #if 0 void stage_sun_materials::execute( sun_cascade cascade) { PIX_EVENT( stage_sun_materials); if (!is_enabled()) { execute_disabled(); return; } backend::ref().set_render_targets ( &*m_context->m_targets->m_rt_accumulator_diffuse, &*m_context->m_targets->m_rt_accumulator_specular, 0, 0); backend::ref().reset_depth_stencil_target(); //// Choose normal code-path or filtered //phase_accumulator (); //if ( RImplementation.o.sunfilter) { // accum_direct_f ( sub_phase); // return ; //} // *** assume accumulator setted up *** light* sun = m_context->scene()->lights().get_sun().c_ptr();//( light*)RImplementation.Lights.sun_adapted._get() ; if ( !sun) return; // Common calc for quad-rendering u32 offset; u32 color = math::color_rgba( 255u, 255, 255, 255); float w = float( backend::ref().target_width()); float h = float( backend::ref().target_height()); float z; // Adjust tc so that center of texel and pixel were aligned float2 p0( 0.0f/w, 0.0f/h); float2 p1( 1 + 0.0f/w, 1 + 0.0f/h); // Common constants ( light-related) //float3 sun_dir( m_context->m_mat_view.transform_direction( /*( float3( 0.47652841f, -0.80543172f, -0.35242066f))*/sun->direction)); float3 sun_dir( m_context->get_v().transform_direction( /*( float3( 0.47652841f, -0.80543172f, -0.35242066f))*/sun->direction)); float3 sun_clr = sun->color; float sun_spec = utils::u_diffuse2s( sun_clr); sun_dir.normalize(); //Is this necessary???? for( u32 material_marker = 1; material_marker <= 1; material_marker+=2) { if ( cascade_near==cascade) { render_sun_mask( sun_dir, material_marker); } float3 center_pt; center_pt = m_context->get_view_pos() + ps_r2_sun_near*m_context->get_view_dir();//mad( Device.vCameraPosition,Device.vCameraDirection,ps_r2_sun_near); float3 tr = m_context->/*m_full_xform*/get_vp().transform( center_pt); //float3 t2 = m_context->m_mat_proj.transform( float3( 0, 0, ps_r2_sun_near)); float3 t2 = m_context->get_p().transform( float3( 0, 0, ps_r2_sun_near)); //ASSERT( math::is_similar( tr.z, t2.z)); z = t2.z; // z = center_pt.z; // nv-stencil recompression //if ( RImplementation.o.nvstencil && ( technique_near_cascade==technique_id)) u_stencil_optimize(); //. driver bug? //phase_accumulator(); // texture adjustment matrix //float tc_adj = 0.5f/float( device::ref().o.smap_size); //float range = ( cascade_near==cascade) ? ps_r2_sun_depth_near_scale : ps_r2_sun_depth_far_scale; //float bias = ( cascade_near==cascade) ? -ps_r2_sun_depth_near_bias : ps_r2_sun_depth_far_bias; //float4x4 smap_texel_adjust = //{ // float4( 0.5f, 0.0f, 0.0f, 0.0f), // float4( 0.0f, -0.5f, 0.0f, 0.0f), // float4( 0.0f, 0.0f, range, 0.0f), // float4( 0.5f + tc_adj, 0.5f + tc_adj, bias, 1.0f) //}; // compute xforms //FPU::m64r (); // shadow xform // float4x4 m_shadow; // float4x4 xf_project; // // xf_project = mul4x4( sun->X.D.combine, smap_texel_adjust); // //m_shadow = mul4x4( m_context->m_mat_view_inv, xf_project); // m_shadow = mul4x4( m_context->get_v_inverted(), xf_project); // tsm-bias //if ( ( technique_near_cascade==technique_id) && ( device::ref().o.hw_smap)) //{ // float3 bias; bias.mul( sun_dir,ps_r2_sun_tsm_bias); // float4x4 bias_t; bias_t.translate( bias); // m_shadow.mulB_44 ( bias_t); //} //FPU::m24r (); // clouds xform float4x4 m_clouds_shadow; { static float w_shift = 0; float4x4 m_xform; float3 direction = sun->direction; float w_dir = 0;//g_pGamePersistent->Environment().CurrentEnv->wind_direction ; //float w_speed = g_pGamePersistent->Environment().CurrentEnv->wind_velocity ; float3 normal; normal = calc_hp( w_dir,0); //w_shift += 0.003f*Device.fTimeDelta; float3 position( 0,0,0); m_xform = math::create_camera_direction( position, direction, normal) ; float3 localnormal; localnormal = m_xform.transform_direction( normal); localnormal.normalize(); //m_clouds_shadow = mul4x4( m_context->m_mat_view_inv, m_xform); m_clouds_shadow = mul4x4( m_context->get_v_inverted(), m_xform); m_xform = math::create_scale( float3( 0.002f, 0.002f, 1.f)); m_clouds_shadow = mul4x4( m_clouds_shadow, m_xform); m_xform = math::create_translation( localnormal*w_shift); m_clouds_shadow = mul4x4( m_clouds_shadow, m_xform); } // Make jitter texture float scale_X = w/float( tex_jitter); //float scale_Y = h/float( tex_jitter); float tc_offset = 0.5f/float( tex_jitter); // Adjust tex coords float2 j0( tc_offset, tc_offset); float2 j1( scale_X+tc_offset,scale_X+tc_offset); // Fill vertex buffer vertex_formats::TL2uv* pv = ( vertex_formats::TL2uv*)backend::ref().vertex.lock( 4, sizeof(vertex_formats::TL2uv) /*m_context->m_g_quad_2uv->get_stride()*/, offset); pv->set( 0, h, z, 1.0, color, p0.x, p1.y, j0.x, j1.y); pv++; pv->set( 0, 0, z, 1.0, color, p0.x, p0.y, j0.x, j0.y); pv++; pv->set( w, h, z, 1.0, color, p1.x, p1.y, j1.x, j1.y); pv++; pv->set( w, 0, z, 1.0, color, p1.x, p0.y, j1.x, j0.y); pv++; backend::ref().vertex.unlock(); m_context->m_g_quad_2uv->apply(); m_sh_accum_direct[ sun->lighting_model ]->apply( cascade); backend::ref().set_ps_constant( m_c_light_direction, float4(sun_dir.x, sun_dir.y, sun_dir.z, 0)); backend::ref().set_ps_constant( m_c_light_color, float4(sun_clr.x, sun_clr.y, sun_clr.z, sun_spec)); // backend::ref().set_constant( "m_shadow", transpose( m_shadow ) ); backend::ref().set_ps_constant( m_sunmask, transpose( m_clouds_shadow ) ); // nv-DBT //float zMin,zMax; //if ( technique_near_cascade==technique_id) //{ // zMin = 0; // zMax = ps_r2_sun_near; //} //else //{ // extern float OLES_SUN_LIMIT_27_01_07; // zMin = ps_r2_sun_near; // zMax = OLES_SUN_LIMIT_27_01_07; //} //center_pt.mad( Device.vCameraPosition,Device.vCameraDirection,zMin); Device.mFullTransform.transform ( center_pt); //zMin = center_pt.z ; //center_pt.mad( Device.vCameraPosition,Device.vCameraDirection,zMax); Device.mFullTransform.transform ( center_pt); //zMax = center_pt.z ; //if ( u_DBT_enable( zMin,zMax)) { // // z-test always // HW.pDevice->SetRenderState( D3DRS_ZFUNC, D3D_COMPARISON_ALWAYS); // HW.pDevice->SetRenderState( D3DRS_ZWRITEENABLE, FALSE); //} //Move fetch4 to effect???? // Fetch4 : enable // if ( RImplementation.o.HW_smap_FETCH4) { // //. we hacked the shader to force smap on S0 //# define FOURCC_GET4 MAKEFOURCC( 'G','E','T','4') // HW.pDevice->SetSamplerState ( 0, D3DSAMP_MIPMAPLODBIAS, FOURCC_GET4); // } // setup stencil // material 0 { backend::ref().set_ps_constant( m_out_filter, float4( 1,0,0,1)); backend::ref().set_stencil_ref( m_context->m_light_marker_id | material_marker); backend::ref().render_indexed( D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST, 2*3, 0, offset); } // // material 1 // { // backend::ref().set_constant( "out_filter", float4( 0,1,0,1)); // backend::ref().set_stencil( TRUE, D3D_COMPARISON_LESS_EQUAL, m_context->m_light_marker_id | 5, m_context->m_light_marker_id | 5, 0x00); // backend::ref().render( D3DPT_TRIANGLELIST, offset, 0, 4, 0, 2); // } // Fetch4 : disable // if ( RImplementation.o.HW_smap_FETCH4) { // //. we hacked the shader to force smap on S0 //# define FOURCC_GET1 MAKEFOURCC( 'G','E','T','1') // HW.pDevice->SetSamplerState ( 0, D3DSAMP_MIPMAPLODBIAS, FOURCC_GET1); // } // disable depth bounds //u_DBT_disable (); // Igor: draw volumetric here //if ( ps_r2_ls_flags.test( R2FLAG_SUN_SHAFTS)) //if ( RImplementation.o.advancedpp&&( ps_r_sun_shafts>0)) // accum_direct_volumetric ( sub_phase, Offset, m_shadow); } } void stage_sun_materials::render_sun_mask( const float3& light_dir, u32 material_marker) { PIX_EVENT( render_sun_mask); float w = float( backend::ref().target_width()); float h = float( backend::ref().target_height()); u32 color = math::color_rgba( 255u, 255, 255, 255); // Adjust texture coord that center of pixel matches center of texel float2 p0( 0.5f/w, 0.5f/h); float2 p1( ( w+0.5f)/w, ( h+0.5f)/h); // Fill vertex buffer u32 offset; //FIX ME: May be we can fill this vb's once???? vertex_formats::TL* pv = ( vertex_formats::TL*)backend::ref().vertex.lock( 4, sizeof(vertex_formats::TL)/*m_context->m_g_quad_uv->get_stride()*/, offset); //pv->set( math::epsilon_5, h+math::epsilon_5, z, w, color, p0.x, p1.y); pv++; //pv->set( math::epsilon_5, math::epsilon_5, z, w, color, p0.x, p0.y); pv++; //pv->set( w+math::epsilon_5, h+math::epsilon_5, z, w, color, p1.x, p1.y); pv++; //pv->set( w+math::epsilon_5, math::epsilon_5, z, w, color, p1.x, p0.y); pv++; pv->set( 0, h, 0, 1.0, color, p0.x, p1.y); pv++; pv->set( 0, 0, 0, 1.0, color, p0.x, p0.y); pv++; pv->set( w, h, 0, 1.0, color, p1.x, p1.y); pv++; pv->set( w, 0, 0, 1.0, color, p1.x, p0.y); pv++; backend::ref().vertex.unlock(); // Setup rendering states and objects m_context->m_g_quad_uv->apply(); m_sh_accum_mask->apply( effect_light_mask::tech_mask_direct/*SE_MASK_DIRECT*/); backend::ref().set_ps_constant ( m_c_light_direction, float4( light_dir.x, light_dir.y, light_dir.z, 0)); backend::ref().set_stencil_ref ( m_context->m_light_marker_id|material_marker); backend::ref().render_indexed ( D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST, 2*3, 0, offset); } } // namespace render } // namespace xray
8eee1885ac45c71241f5692b65598ddb5cfca882
789cd2590336c10efd03943e2753bbe0912cc976
/Searching Algorithms/binarySearch.cpp
f9306831b750960fead3d2bc053ae9886ae70347
[]
no_license
baluselva-ts/Algorithms
86c6fded05a48e6566e7370ff03cc71a6d03c938
23b4b7bb9a0f91c5b74a72e709f0cdf1fe411d4e
refs/heads/master
2022-11-28T14:17:05.921887
2020-08-07T14:54:58
2020-08-07T14:54:58
275,053,640
1
0
null
null
null
null
UTF-8
C++
false
false
2,997
cpp
binarySearch.cpp
#include <iostream> #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b)) #define ll long long using namespace std; void mergeSort(int *inputArray, int start, int end); void merge(int *inputArray, int start, int mid, int end); int binarySearchIterative(int *inputArray, int elementToSearch, int start, int end); int binarySearchRecursive(int *inputArray, int elementToSearch, int start, int end); int main() { int numberOfElements = 0; int elementToSearch = 0; cout << "Enter the array size: "; cin >> numberOfElements; int inputArray[numberOfElements]; cout << "Feed in the input values to search in: " << endl; for (int i = 0; i < numberOfElements; i++) { cin >> inputArray[i]; } cout << "Element to search: "; cin >> elementToSearch; mergeSort(inputArray, 0, numberOfElements - 1); cout << endl << "Sorted Array:\t"; for (int i = 0; i < numberOfElements; i++) { cout << inputArray[i] << "\t"; } cout << endl; int index = binarySearchRecursive(inputArray, elementToSearch, 0, numberOfElements - 1); cout << "Index: " << index << endl; (index != -1) ? cout << elementToSearch << " is at " << index + 1 << " position" << endl : cout << elementToSearch << " not found" << endl; return 0; } void mergeSort(int *inputArray, int start, int end) { if(start < end) { int mid = start + (end - start) / 2; mergeSort(inputArray, start, mid); mergeSort(inputArray, mid + 1, end); merge(inputArray, start, mid, end); } } void merge(int *inputArray, int start, int mid, int end) { int leftArraySize = (mid - start) + 2; int rightArraySize = (end - mid) + 1; int leftArray[leftArraySize]; int rightArray[rightArraySize]; int i, j, leftArrayIndex, rightArrayIndex; for (j = 0, i = start; i <= mid; i++, j++) { leftArray[j] = inputArray[i]; } leftArray[j] = INT_MAX; for(j = 0, i = mid + 1; i <= end; i++, j++ ) { rightArray[j] = inputArray[i]; } rightArray[j] = INT_MAX; for (i = start, leftArrayIndex = 0, rightArrayIndex = 0; i <= end; i++) { if (rightArray[rightArrayIndex] < leftArray[leftArrayIndex]) { inputArray[i] = rightArray[rightArrayIndex++]; } else { inputArray[i] = leftArray[leftArrayIndex++]; } } } int binarySearchIterative(int *inputArray, int elementToSearch, int start, int end) { while (start <= end) { int mid = (start + end) / 2; if(inputArray[mid] == elementToSearch) { return mid; } else if (inputArray[mid] < elementToSearch) { start = mid + 1; } else { end = mid - 1; } } return -1; } int binarySearchRecursive(int *inputArray, int elementToSearch, int start, int end) { int mid = (start + end) / 2; cout << "Mid Value: " << inputArray[mid] << endl; if(inputArray[mid] == elementToSearch) { return mid; } if(start <= end) { if (inputArray[mid] < elementToSearch) { binarySearchRecursive(inputArray, elementToSearch, mid + 1, end); } else { binarySearchRecursive(inputArray, elementToSearch, start, mid - 1); } } return -1; }
bef4a2c7a28eae61ad4f877995eb8a4682788aee
f36344c9efe629758d4681a6eafb34d974c96aa4
/export/windows/cpp/obj/include/flixel/system/layer/frames/FrameType.h
abde35baf9b38d704f518b5b967e2ca27260c4d3
[]
no_license
evo0705/SideScrollShooter
af90882ad6c235699cbeb0c9b08f0b4e26c15dc3
593542b4c29df9ba64ab2af6c922d982c8ca2981
refs/heads/master
2021-01-17T23:08:19.423353
2017-03-07T15:31:19
2017-03-07T15:31:19
84,210,679
2
0
null
null
null
null
UTF-8
C++
false
false
1,204
h
FrameType.h
#ifndef INCLUDED_flixel_system_layer_frames_FrameType #define INCLUDED_flixel_system_layer_frames_FrameType #ifndef HXCPP_H #include <hxcpp.h> #endif HX_DECLARE_CLASS4(flixel,_system,layer,frames,FrameType) namespace flixel{ namespace _system{ namespace layer{ namespace frames{ class FrameType_obj : public hx::EnumBase_obj { typedef hx::EnumBase_obj super; typedef FrameType_obj OBJ_; public: FrameType_obj() {}; HX_DO_ENUM_RTTI; static void __boot(); static void __register(); ::String GetEnumName( ) const { return HX_HCSTRING("flixel.system.layer.frames.FrameType","\xe9","\x11","\xda","\x93"); } ::String __ToString() const { return HX_HCSTRING("FrameType.","\xe7","\xa8","\xa2","\xf4") + tag; } static ::flixel::_system::layer::frames::FrameType REGULAR; static inline ::flixel::_system::layer::frames::FrameType REGULAR_dyn() { return REGULAR; } static ::flixel::_system::layer::frames::FrameType ROTATED; static inline ::flixel::_system::layer::frames::FrameType ROTATED_dyn() { return ROTATED; } }; } // end namespace flixel } // end namespace system } // end namespace layer } // end namespace frames #endif /* INCLUDED_flixel_system_layer_frames_FrameType */
f66d0453d6e4bbfecac084ed04f7f7f3bae1c350
ca52120d371240339ccda63450343690cf9c2475
/Lý thuyết/BTLT11/cau_2/Source.cpp
f1bd7a1b9b3e43af4310af86a3037fd690c7239f
[]
no_license
dvphuonguyen/IT002.K26
3c7c8aad8b0bd25e6e47823be84f78f2b501132a
46fbecbd845e6bad1225ab7f4063b750eada974d
refs/heads/main
2023-08-15T10:16:27.956021
2021-10-15T03:06:50
2021-10-15T03:06:50
417,336,771
0
0
null
null
null
null
UTF-8
C++
false
false
1,635
cpp
Source.cpp
#include <iostream> using namespace std; int checkYear(int y) { if (y % 4 == 0 && y % 100 != 0 || y % 400 == 0) { return 1; } return 0; } void checkDate(int &d, int &m, int &y) { switch (m) { case 1: case 3: case 5: case 7: case 8: case 10: if (d > 31) { d = 1; m += 1; } break; case 4:case 6:case 9:case 11: if (d > 30) { d = 1; m += 1; } break; case 2: if (checkYear(y) == 1) { if (d > 29) { d = 1; m += 1; } } else { if (d > 28) { d = 1; m += 1; } } case 12: if (d > 31) { m = 1; d = 1; y += 1; } } } class cDate { private: int iDay, iMonth, iYear; public: cDate() { this->iDay = this->iMonth = this->iYear = 0; } friend istream& operator>> (istream& is, cDate& a) { cout << "Nhap ngay: "; is >> a.iDay; cout << "Nhap thang: "; is >> a.iMonth; cout << "Nhap nam: "; is >> a.iYear; return is; } void Sum_one_day() { this->iDay += 1; } cDate& operator++() { this->Sum_one_day(); checkDate(this->iDay, this->iMonth, this->iYear); return *this; } cDate operator++(int) { cDate a; a = *this; this->Sum_one_day(); checkDate(this->iDay, this->iMonth, this->iYear); return a; } friend ostream& operator<<(ostream& os, cDate a) { os << a.iDay << " / " << a.iMonth << " / " << a.iYear << "\n"; return os; } ~cDate() { } }; int main() { cDate a; cin >> a; cout << a; cout << "++a = " << ++a; cout << "a++ = " << a++; cout << "Ngay hien tai la:" << a; cout << "a++ = " << a++; cout << "++a = " << ++a; return 0; }
f06fa8af0b308742b49b02607246b68aaeac95ea
3f4566478f075e97fa19751b530f54f8e7434088
/SpaceBattle/include/SpaceBattle/SpaceMap.h
870524005307a461a538ca3093d049dfdba719a6
[]
no_license
vocasle/SpaceBattle
e59d98fde8be996384208acdd17451fa8e8a9986
30c9cc38cb8847e7ae12f00dd70355da88f135ff
refs/heads/master
2022-05-23T21:45:41.693769
2020-04-11T19:56:33
2020-04-11T19:56:33
254,939,279
0
0
null
null
null
null
UTF-8
C++
false
false
743
h
SpaceMap.h
#ifndef SPACE_MAP_H #define SPACE_MAP_H #include <vector> #include "Point.h" enum class Projection { front, top }; class SpaceMap { public: SpaceMap(); const std::vector<std::vector<char>>& get_front_projection() const; const std::vector<std::vector<char>>& get_top_projection() const; void update_projections(const std::vector<Point>& points); void update_top_projection(const std::vector<std::vector<char>>& proj); static uint32_t size(); private: static const uint32_t grid_size = 10; std::vector<std::vector<char>> m_front_proj; std::vector<std::vector<char>> m_top_proj; }; void plot_point(const Point& point, std::vector<std::vector<char>>& front_proj, std::vector<std::vector<char>>& top_proj); #endif // !SPACE_MAP_H
3ed402c0972ff131a975389cdc2d88a260974749
d387c3750d6ee7481df3b30a621a1f1f67a097f2
/codeforces/1352/E.cpp
e5807bac81c64ae5d75259530bd4f58b2dfee92b
[]
no_license
sahilkhan03/CF-Solutions
54b7c4858d0c810ea47768f975f4503bd83fff8b
67e9e9581d547229b44bee271b4844423fff3a29
refs/heads/master
2023-04-22T01:37:43.022110
2021-04-19T13:34:00
2021-05-10T05:00:23
333,403,802
1
0
null
null
null
null
UTF-8
C++
false
false
2,402
cpp
E.cpp
/* ___ |\ /| ____ ____ ____ ____ | | /\ / \ | | | \ / | /\ | \ | \ | | \ |_____| /__\ \____ |_____| | \/ | /__\ |____/ |____/ |__ |____/ | | / \ \ | | | | / \ | | | | \ | | / \ \____/ | | | | / \ | | |____ | \ */ #include<bits/stdc++.h> using namespace std; #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; #define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update> #define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); #define lb lower_bound #define ub upper_bound #define pf push_front #define pb push_back #define ll long long #define pi pair<int,int> #define pl pair<long long,long long> #define pld pair<long double,long double> #define endl '\n' #define loop(i,n) for(ll i=0;i<n;i++) #define rep(i, begin, end) for (__typeof(begin) i = (begin) - ((begin) > (end)); i != (end) - ((begin) > (end)); i += 1 - 2 * ((begin) > (end))) #define mod ((ll)(1e9+7)) #define in(x) scanf("%lld",&x) #define in2(x,y) scanf("%lld %lld",&x,&y) #define in3(x,y,z) scanf("%lld %lld %lld",&x,&y,&z) #define inv(v) for(auto&i:v) in(i) #define all(x) x.begin(), x.end() #define vl vector<ll> #define ml unordered_map<ll,ll> #define vpl vector<pair<ll,ll>> #define INF 0x3f3f3f3f template<typename T, typename TT> ostream& operator<<(ostream &os, const pair<T, TT> &t) { return os<<t.first<<" "<<t.second; } template<typename T> ostream& operator<<(ostream& os, const vector<T> &t) { for(auto& i: t) os<<i<<" "; return os; } int main() { fast; int t; scanf("%d",&t); unordered_map<int,int> m; while(t--) { m.clear(); int n; scanf("%d",&n); vector<int> v(n+1); v[0]=0; loop(i,n) { int tmp; scanf("%d",&tmp); m[tmp]++; v[i+1] = tmp+v[i]; } int ans=0; for(int i=1;i<=n;i++) { for(int j=i+1;j<=n;j++) { int x = v[j]-v[i-1]; if(x>n) continue; ans+=m[x]; m[x]=0; } } cout<<ans<<endl; } #ifdef LOCAL cerr << "Time elapsed: " << 1.0 * clock() / CLOCKS_PER_SEC << " s.\n"; #endif return 0; }
82bc832e9dcb02fb172fbaa2a86192b184368435
d18db5b41c8999f0f7f94db74cf7435a20d4f72e
/Project21/StartingForm.h
38f873b640f0aa501507a530a015e88f1014e164
[]
no_license
samirimtiaz1996/visual_c_application
7f62ab559c4874c3b3af4e290049fbc7b05ef2d4
5404902d32f5b36ae4c8fa81fb98c97d32f1ec3a
refs/heads/master
2020-03-22T11:35:19.453680
2018-07-17T09:15:05
2018-07-17T09:15:05
139,981,281
0
0
null
null
null
null
UTF-8
C++
false
false
6,135
h
StartingForm.h
#pragma once //#include "stdafx.h" #include "Form1.h" #include "TeacherLogin.h" #include "StudentLogin.h" namespace Project21 { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; /// <summary> /// Summary for StartingForm /// </summary> public ref class StartingForm : public System::Windows::Forms::Form { public: StartingForm(void) { InitializeComponent(); // //TODO: Add the constructor code here // } protected: /// <summary> /// Clean up any resources being used. /// </summary> ~StartingForm() { if (components) { delete components; } } private: System::Windows::Forms::Button^ button1; protected: private: System::Windows::Forms::Button^ button2; private: System::Windows::Forms::Button^ button3; private: System::Windows::Forms::Label^ label1; private: System::Windows::Forms::Button^ button4; private: /// <summary> /// Required designer variable. /// </summary> System::ComponentModel::Container ^components; #pragma region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> void InitializeComponent(void) { this->button1 = (gcnew System::Windows::Forms::Button()); this->button2 = (gcnew System::Windows::Forms::Button()); this->button3 = (gcnew System::Windows::Forms::Button()); this->label1 = (gcnew System::Windows::Forms::Label()); this->button4 = (gcnew System::Windows::Forms::Button()); this->SuspendLayout(); // // button1 // this->button1->BackColor = System::Drawing::Color::Black; this->button1->ForeColor = System::Drawing::Color::Cornsilk; this->button1->Location = System::Drawing::Point(427, 76); this->button1->Name = L"button1"; this->button1->Size = System::Drawing::Size(286, 72); this->button1->TabIndex = 0; this->button1->Text = L"ADMIN LOGIN"; this->button1->UseVisualStyleBackColor = false; this->button1->Click += gcnew System::EventHandler(this, &StartingForm::button1_Click); // // button2 // this->button2->BackColor = System::Drawing::Color::Black; this->button2->ForeColor = System::Drawing::Color::Cornsilk; this->button2->Location = System::Drawing::Point(427, 154); this->button2->Name = L"button2"; this->button2->Size = System::Drawing::Size(286, 72); this->button2->TabIndex = 1; this->button2->Text = L"TEACHER LOGIN"; this->button2->UseVisualStyleBackColor = false; this->button2->Click += gcnew System::EventHandler(this, &StartingForm::button2_Click); // // button3 // this->button3->BackColor = System::Drawing::Color::Black; this->button3->ForeColor = System::Drawing::Color::Cornsilk; this->button3->Location = System::Drawing::Point(427, 235); this->button3->Name = L"button3"; this->button3->Size = System::Drawing::Size(286, 72); this->button3->TabIndex = 2; this->button3->Text = L"STUDENT LOGIN"; this->button3->UseVisualStyleBackColor = false; this->button3->Click += gcnew System::EventHandler(this, &StartingForm::button3_Click); // // label1 // this->label1->BackColor = System::Drawing::Color::Transparent; this->label1->Font = (gcnew System::Drawing::Font(L"Ravie", 20.25F, static_cast<System::Drawing::FontStyle>((System::Drawing::FontStyle::Underline | System::Drawing::FontStyle::Strikeout)), System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->label1->ForeColor = System::Drawing::Color::DarkCyan; this->label1->Location = System::Drawing::Point(0, 62); this->label1->Name = L"label1"; this->label1->Size = System::Drawing::Size(319, 164); this->label1->TabIndex = 3; this->label1->Click += gcnew System::EventHandler(this, &StartingForm::label1_Click); // // button4 // this->button4->BackColor = System::Drawing::SystemColors::ActiveCaptionText; this->button4->ForeColor = System::Drawing::SystemColors::ButtonHighlight; this->button4->Location = System::Drawing::Point(542, 349); this->button4->Name = L"button4"; this->button4->Size = System::Drawing::Size(75, 23); this->button4->TabIndex = 4; this->button4->Text = L"Exit"; this->button4->UseVisualStyleBackColor = false; this->button4->Click += gcnew System::EventHandler(this, &StartingForm::button4_Click); // // StartingForm // this->AutoScaleDimensions = System::Drawing::SizeF(6, 13); this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; this->BackColor = System::Drawing::SystemColors::ActiveCaptionText; this->BackgroundImageLayout = System::Windows::Forms::ImageLayout::Stretch; this->ClientSize = System::Drawing::Size(1354, 733); this->Controls->Add(this->button4); this->Controls->Add(this->label1); this->Controls->Add(this->button3); this->Controls->Add(this->button2); this->Controls->Add(this->button1); this->HelpButton = true; this->Name = L"StartingForm"; this->Text = L"StartingForm"; this->Load += gcnew System::EventHandler(this, &StartingForm::StartingForm_Load); this->ResumeLayout(false); } #pragma endregion private: System::Void StartingForm_Load(System::Object^ sender, System::EventArgs^ e) { } private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { Form1^ F1 = gcnew Form1(); F1->ShowDialog(); this->Show(); } private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) { TeacherLogin^ TL = gcnew TeacherLogin(); TL->ShowDialog(); this->Show(); } private: System::Void button3_Click(System::Object^ sender, System::EventArgs^ e) { StudentLogin^SL1 = gcnew StudentLogin(); SL1->ShowDialog(); this->Show(); } private: System::Void button4_Click(System::Object^ sender, System::EventArgs^ e) { Application::Exit(); } private: System::Void label1_Click(System::Object^ sender, System::EventArgs^ e) { } }; }
d598e3d8499374291beb4e3143de438e4a22ca9f
a5b1720760dbf5d71cc0ce0faa35bf60bd429fec
/Map.cpp
5b811522ef4ace209fbd5772318ea3e7018dbdef
[]
no_license
tungleu/RiskGame
1cfccfae1c5d009f557c57b407034ccd1ae74cfa
196480df9dd7cc77bea039ddccae15a2b3c294cd
refs/heads/master
2022-03-15T08:11:31.433166
2019-11-02T19:19:12
2019-11-02T19:19:12
209,652,380
0
1
null
null
null
null
UTF-8
C++
false
false
4,420
cpp
Map.cpp
// // Created by tungleu on 9/26/19. // #include "Map.h" #include <iostream> #include <vector> #include <queue> using namespace std; Country::Country(string countryName ,Continent* continentName) { this->name = new string(countryName); this->numberOfArmies = new int(0); this->continent = continentName; } string Country::getName() { return *name; } void Country::setName(string countryName) { this->name = &countryName; } Continent Country::getContinent() { return *continent; } Country::~Country() { } void Country::addArmy(int changeArmy) { *numberOfArmies += changeArmy; } int Country::getArmies() { return *numberOfArmies; } void Country::addNeighbor(Country* country) { this->neighbors.push_back(country); } vector<Country*> Country::getNeigbors() { return this->neighbors; } Country::Country() { } Continent::Continent(string continentName) { this->name = new string(continentName); } Continent::~Continent() { } string Continent::getName() { return *name; } void Continent::setName(string continentName) { this->name = &continentName; } void Continent::addCountry(Country* country) { this->countries.push_back(country); } // Using BFS to check if the continent is connected bool Continent::isConnected() { Country* country = this->getCountrybyIndex(0); bool *visited = new bool[this->countries.size()]; for(int i = 0; i< this->countries.size();i++) visited[i] = 0; queue<Country*> queue; int visitedCount = 1; visited[getIndexOfCountry(country)]= true; queue.push(country); while(!queue.empty()) { country = queue.front(); queue.pop(); vector<Country *> neighbors = country->getNeigbors(); for (auto &neighbor : neighbors) { if (!visited[getIndexOfCountry(neighbor)]) { visited[getIndexOfCountry(neighbor)] = true; visitedCount++; queue.push(neighbor); } } } return visitedCount == this->countries.size(); } Country *Continent::getCountrybyIndex(int index) { return this->countries[index]; } int Continent::getIndexOfCountry(Country *country) { for(int i =0; i<this->countries.size();i++){ if (countries[i] == country) { return i; } } } Map::Map() { } Map::~Map() { } void Map::showMap() { } void Map::addContinent(Continent* continent) { this->continents.push_back(continent); } Continent* Map::getContinentbyIndex(int index) { return this->continents[index]; } void Map::addCountry(Country* country) { this->countries.push_back(country); } Country* Map::getCountrybyIndex(int index) { return this->countries[index]; } // Using BFS algorithm to show the map is connected or not bool Map::isConnected() { Country *country = this->getCountrybyIndex(0); bool *visited = new bool[this->countries.size()]; for(int i = 0; i< this->countries.size();i++) visited[i] = 0; queue<Country*> queue; int visitedCount = 1; visited[getIndexOfCountry(country)]= true; queue.push(country); while(!queue.empty()){ country = queue.front(); queue.pop(); vector<Country*> neighbors = country->getNeigbors(); for(auto & neighbor : neighbors){ if(!visited[getIndexOfCountry(neighbor)]){ visited[getIndexOfCountry(neighbor)]= true; visitedCount++; queue.push(neighbor); } } } return visitedCount == this->countries.size(); } int Map::getIndexOfCountry(Country *country) { for(int i = 0; i< this->countries.size();i++){ if (countries[i] == country) { return i; } } } void Map::print() { cout<< "LIST OF COUNTRIES : "<<endl; Country* country; for (int i = 0; i< this->countries.size();i++){ country = countries[i]; cout<<country->getName()<<endl; cout<<"Neighbors: "; vector<Country*> neighbors = countries[i]->getNeigbors(); for(int j = 0; j<neighbors.size();j++){ cout<<neighbors[j]->getName()<<", "; } cout<<" "<<endl; } cout<< "LIST OF CONTINENTS: "<< endl; for (int i = 0; i< this->continents.size();i++){ cout<<continents[i]->getName()<<endl; } } vector<Continent *> Map::getContinents() { return this->continents; }
5e5ed3000bb1ebbda57d49c7e2a5529c4dfab6fb
9f47d8b592ed04784f6c037adb88ae6275b26948
/SPOJBR/BRACELMG.cpp
f6574e3cfb3890f53337b17584c52634cd84242b
[]
no_license
AlisonOSouza/Online-Judges
52d0560fcd7231cd1b8e99de9d66a636afb2995c
7519eadf162a95d8d879f640673833736a3428b2
refs/heads/master
2018-11-25T02:08:07.055051
2018-09-04T22:54:15
2018-09-04T22:54:15
96,807,526
2
0
null
null
null
null
UTF-8
C++
false
false
1,763
cpp
BRACELMG.cpp
/*******************************************************************\ NOME: Alison de Oliveira Souza MATRÍCULA: 2012049316 ROTEIRO: Roteiro 2 PROBLEMA: #2 BRACELMG - Braceletes Mágicos SOLUÇÃO PROPOSTA: Leio o número de casos de testes e leio a sequência proibida (padrão) e o bracelete. Concateno o bracelete duas vezes em uma só string, para poder pegar os casos onde o padrão está nas pontas do bracelete. Após isso, em outra string inverto o padrão original, para pegar os casos onde o padrão está ao contrário no bracelete. Fazendo isso, basta procurar no bracelete (duplo) o padrão e o padrão invertido. Caso ache um dos dois, marco uma flag e uso a flag para decidir se imprime N ou S em cada caso. \*******************************************************************/ #include <iostream> #include <string> #include <algorithm> using namespace std; int main(void) { string padrao, bracelete, bracelete2; int i, j, n, flag, size; std::size_t aux; std::cin >> n; while(n > 0) { flag = 0; std::cin >> padrao; std::cin >> bracelete; // Concatenando dois braceletes bracelete2.clear(); bracelete2 += bracelete; bracelete2 += bracelete; // Inverte o padrão std::string padrao_r(padrao); std::reverse(padrao_r.begin(), padrao_r.end()); // Procuro o padrão e o padrão inverso no bracelete aux = string::npos; aux = bracelete2.find(padrao); if(aux != std::string::npos) flag = 1; aux = bracelete2.find(padrao_r); if(aux != std::string::npos) flag = 1; if(flag == 1) std::cout << "S"; else std::cout << "N"; n--; if(n > 0) std::cout << endl; } return 0; }
ff698460e687101f0330c4e28deff9ecc22cc7c6
914bec6f81f8d48e1f1fd836a4448ae1e36f3cfe
/StuFind.h
e6ca11c703df3a850c3388688c4ee803ea14de37
[]
no_license
kaikai-sk/StudentManage
caf0997a506fad1c4eb651bb09e321c5a360a267
7bec371f14ba234fcba1d3e33fd2d9d02b33c48d
refs/heads/master
2021-01-20T04:58:36.901013
2017-08-25T13:07:12
2017-08-25T13:07:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,185
h
StuFind.h
#if !defined(AFX_STUFIND_H__0B2215E7_5197_4248_A6AB_CBA25C1805EC__INCLUDED_) #define AFX_STUFIND_H__0B2215E7_5197_4248_A6AB_CBA25C1805EC__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // StuFind.h : header file // ///////////////////////////////////////////////////////////////////////////// // CStuFind dialog class CStuFind : public CDialog { // Construction public: CStuFind(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(CStuFind) enum { IDD = IDD_DIALOG_Find }; CString m_sID; double m_nMath; CString m_sName; double m_nPhy; double m_nEng; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CStuFind) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation public: // Generated message map functions //{{AFX_MSG(CStuFind) afx_msg void OnBUTTONfind(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_STUFIND_H__0B2215E7_5197_4248_A6AB_CBA25C1805EC__INCLUDED_)
b5546a24e039fa313c283e9ddc1f30d370287257
d3d1f2d171c93f5c16653f713ea85dd650f6d997
/courses/prog_base_3/update 2/vector3.cpp
c30c62f2db6453b221ab06a27bd738e1b4bc8040
[]
no_license
Silchenko-Nikita/Silchenko-Nikita-s
485d36415305d16b7568cc18c8c5277b0339c323
0d7be7845484111daf006729b84b4b646900c950
refs/heads/master
2020-04-12T08:48:25.443905
2017-02-24T09:38:56
2017-02-24T09:38:56
41,999,788
3
1
null
null
null
null
UTF-8
C++
false
false
2,764
cpp
vector3.cpp
#include "stdafx.h" #include "vector3.h" #include <math.h> Vector3d operator*(const Vector3d& v, const double k) { Vector3d res; res.x = v.x*k; res.y = v.y*k; res.z = v.z*k; return res; } Vector3d operator+(const Vector3d& v1, const Vector3d& v2) { Vector3d res = v1; res.add(v2); return res; } Vector3d operator-(const Vector3d& v1, const Vector3d& v2) { Vector3d res = v1; res.x -= v2.x; res.y -= v2.y; res.z -= v2.z; return res; } Vector3d operator+=(Vector3d& v1, const Vector3d& v2) { v1.add(v2); return v1; } Vector3d::Vector3d() { x = y = z = 0.0; } Vector3d::Vector3d(double x, double y, double z) { this->x = x; this->y = y; this->z = z; } void Vector3d::set(double x, double y, double z) { this->x = x; this->y = y; this->z = z; } void Vector3d::nullify() { x = y = z = 0.0; } double Vector3d::length() { return sqrt(x*x + y*y + z*z); } Vector3d Vector3d::normalized() { double len = length(); return Vector3d(x / len, y / len, z / len); } void Vector3d::add(const Vector3d & v) { x += v.x; y += v.y; z += v.z; } double Vector3d::dot(Vector3d v) { return x * v.x + y * v.y + z * v.z; } Vector3d Vector3d::cross(Vector3d v) { return Vector3d(x * v.x - v.y * z, z * v.x - v.z * x, x * v.y - v.x * y); } Vector3d Vector3d::crossed(Vector3d v1, Vector3d v2) { return Vector3d(v1.y * v2.z - v2.y * v1.z, v1.z * v2.x - v2.z * v1.x, v1.x * v2.y - v2.x * v1.y); } // Vector3f operator*(const Vector3f& v, const float k) { Vector3f res; res.x = v.x*k; res.y = v.y*k; res.z = v.z*k; return res; } Vector3f operator+(const Vector3f& v1, const Vector3f& v2) { Vector3f res = v1; res.add(v2); return res; } Vector3f operator-(const Vector3f& v1, const Vector3f& v2) { Vector3f res = v1; res.x -= v2.x; res.y -= v2.y; res.z -= v2.z; return res; } Vector3f operator+=(Vector3f& v1, const Vector3f& v2) { v1.add(v2); return v1; } Vector3f::Vector3f() { x = y = z = 0.0f; } Vector3f::Vector3f(float x, float y, float z) { this->x = x; this->y = y; this->z = z; } void Vector3f::set(float x, float y, float z) { this->x = x; this->y = y; this->z = z; } void Vector3f::nullify() { x = y = z = 0.0f; } float Vector3f::length() { return sqrtf(x*x + y*y + z*z); } Vector3f Vector3f::normalized() { float len = length(); return Vector3f(x / len, y / len, z / len); } void Vector3f::add(const Vector3f & v) { x += v.x; y += v.y; z += v.z; } float Vector3f::dot(Vector3f v) { return x * v.x + y * v.y + z * v.z; } Vector3f Vector3f::cross(Vector3f v) { return Vector3f(x * v.x - v.y * z, z * v.x - v.z * x, x * v.y - v.x * y); } Vector3f Vector3f::crossed(Vector3f v1, Vector3f v2) { return Vector3f(v1.y * v2.z - v2.y * v1.z, v1.z * v2.x - v2.z * v1.x, v1.x * v2.y - v2.x * v1.y); }
01d6219e61d8d3558523efbdff82d121556732a7
40dacbf1874f5fc16b5cffb67794c56370fb46b4
/thermalprobe.cpp
82ffb200e53b71029e57f140b6a1410b88ee4a57
[]
no_license
jayhopeter/PiRinter3D
5b9dbb1144f146586a76f84886539efa65ef18cb
26447978cfe1b2cd410a300b305dfe80c28649e1
refs/heads/master
2021-01-12T03:38:40.631298
2017-03-31T14:13:34
2017-03-31T14:13:34
78,245,058
0
0
null
2017-12-27T21:08:06
2017-01-06T22:55:47
C
UTF-8
C++
false
false
4,444
cpp
thermalprobe.cpp
/* * =================BEGIN GPL LICENSE BLOCK========================================= * Author: Thomas George * PiRinter3D Copyright (C) 2016 * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 3 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * =================END GPL LICENSE BLOCK========================================= */ #include "thermalprobe.h" #include "adccontroller.h" #include <pigpio.h> #include <math.h> #include <stdio.h> ThermalProbe::ThermalProbe(const double &RefV, const unsigned int &R1Ohm, const int &Beta, const unsigned int &ProbeOhm, const unsigned int &DefaultTemp, const unsigned int &TriggerPin, const int &ADCCh, ADCController *ADC) { _ADCReader = ADC; _Channel = ADCCh; _TriggerPin = TriggerPin; _TargetTemp = 0; _CurrentTemp = 0; _FaultCount = 0; _FaultTempBuffer = 5; _FaultTolerance = 20; //Values that can be overridden by get/set. _RefVoltage = RefV; _R1 = R1Ohm; _DefaultThermistorOHM = ProbeOhm; _DefaultThermistorTempK = DefaultTemp; _ThermistorBeta = Beta; //================================== gpioSetMode(_TriggerPin, PI_OUTPUT); //Write pins low to start gpioWrite(_TriggerPin, PI_LOW); } ThermalProbe::~ThermalProbe() { gpioWrite(_TriggerPin, PI_LOW); } int ThermalProbe::MeasureTemp() { int ADCValue = 0, PreviousTemp; float VOut = 0, ThermOhms = 0; ADCValue = _ADCReader->GetChannelValue(_Channel); //this gives us the ADC value between 1024 (10bit) if(ADCValue <= 0 || _RefVoltage <= 0) //Don't want to divide by 0... return _CurrentTemp; //couldn't read this time... TODO set a boolean field so we can figure out if we need to try again right away. VOut = _RefVoltage * ((float)ADCValue / 1024); //this calculates the voltage differential over the thermistor (with respect to ground) if(VOut == _RefVoltage) //need to make sure we don't divide by zero again. return _CurrentTemp; PreviousTemp = _CurrentTemp; ThermOhms = (VOut * _R1) / (_RefVoltage - VOut); //this finds the current resistance of the thermistor //now that we have the resistance we can figure out how hot the thing is... by using the smart guys formula _CurrentTemp = ((_DefaultThermistorTempK * _ThermistorBeta) / log(_DefaultThermistorOHM / ThermOhms) / (_ThermistorBeta / log(_DefaultThermistorOHM / ThermOhms) - _DefaultThermistorTempK) -273.15); //Faulting algorithm... if(_CurrentTemp > 0)//Should never really read below zero. { if(_CurrentTemp > 315) _FaultCount ++; else if((_CurrentTemp > (PreviousTemp + _FaultTempBuffer) && ElementCurrentState == ThermalProbe::OFF)//We are climbing and we shouldn't be. || (_CurrentTemp < (PreviousTemp - _FaultTempBuffer) && ElementCurrentState == ThermalProbe::ON))//We are falling and we shouldn't be. _FaultCount ++; else _FaultCount = 0; } //================= if(_FaultCount < _FaultTolerance) { if(_CurrentTemp > _TargetTemp) { if(ElementCurrentState == ThermalProbe::ON) TriggerElement(ThermalProbe::OFF); } else if(_CurrentTemp < _TargetTemp) { if(ElementCurrentState == ThermalProbe::OFF) TriggerElement(ThermalProbe::ON); } } else TriggerElement(ThermalProbe::OFF); return _CurrentTemp; } void ThermalProbe::TriggerElement(ElementState Value) { if(Value == ThermalProbe::OFF) gpioWrite(_TriggerPin, PI_LOW); else if(!IsFaulted()) gpioWrite(_TriggerPin, PI_HIGH); ElementCurrentState = Value; } void ThermalProbe::SetTargetTemp(const int &CelsiusValue ) { _TargetTemp = CelsiusValue; MeasureTemp(); }
a7db64db498671aaebd9cf2875b157855069ace4
306a44de3a664e893d8bb5320c122518b435b0d2
/bubblesort.cpp
861c76981aa24297d41bf659bf8fab0b9d418d8f
[]
no_license
kalapathar/algorithms
d4e55d4571d349354df661a10afe858a37f9808d
1ac69f68fe5498f21aa0ef1bcf03b66f1dcb4d21
refs/heads/master
2021-08-08T06:56:16.227157
2017-11-09T20:15:52
2017-11-09T20:15:52
110,160,848
0
1
null
null
null
null
UTF-8
C++
false
false
550
cpp
bubblesort.cpp
#include <iostream> #include "elapsed_time.h" using namespace std; void sort(int arr[], int length) { int tmp; for (int i=0; i < length-1; ++i) { for (int j=i+1; j < length; ++j) if (arr[i] > arr[j]) { tmp = arr[i]; arr[i] = arr[j]; arr[j] = tmp; } } for (int i=0; i < length; ++i) { cout << arr[i] << " "; } } int main() { start_timer(); int arr[] = {1,0,5,6,3,2}; int len = 6; sort(arr,len); cout << endl; double cycles = elapsed_time(); cout << "Total cycles: " << cycles << endl; }
911e27058a8c1eb35c5cf46f4d38d36ac3e88f15
d613e6a8270b796928c093edc7ecdb405231e8d7
/Project2_code/UndefinedAutomaton.cpp
2f2b2b46253c86d5bd84a5651ee3aa08d58bfcb0
[]
no_license
jaydooroo/Project2
be7026ee3bf3c867a057c07f7d9b06161fc97b89
5fb98417843a5ad62ac75f2034c86d4f19f2c81d
refs/heads/master
2023-08-04T09:45:28.751682
2021-09-28T06:16:03
2021-09-28T06:16:03
411,134,159
0
0
null
null
null
null
UTF-8
C++
false
false
579
cpp
UndefinedAutomaton.cpp
// // Created by ejh61 on 2021-09-15. // #include "UndefinedAutomaton.h" void UndefinedAutomaton::S0(const std::string& input) { if(input[index] == '\'') { while((unsigned) index < input.size()){ if(input[index] == '\n') newLines++; inputRead++; index++; } } else if(input[index] == '#' && input[index + 1] == '|'){ while((unsigned) index < input.size()){ if(input[index] == '\n') newLines++; inputRead++; index++; } } }
dfe099b95e113182ab9dbb3456bd424700e70b19
0a891aa88985ebd0a4c5bad409dc826d8c116c1e
/0223_2.cpp
2115d226db1b7755394dfcaaa8918fdd90fbc6b4
[]
no_license
geun25/C_elementary
5017ee14e56563b4241e5fcd345b1fe76ad57bc4
04b582f60b2749378c9d887b7191481f0f4292ce
refs/heads/main
2023-07-13T13:12:14.544448
2021-08-18T08:36:40
2021-08-18T08:36:40
397,523,953
0
0
null
null
null
null
UHC
C++
false
false
1,045
cpp
0223_2.cpp
#include <stdio.h> void main() { // [무한루프] // "종료조건" -> 반복문을 탈출, 종료, 중단시키는 제어문(break) /* while (1) { int n; printf("정수입력: "); scanf("%d", &n); if (n == 0) { // "종료조건" break; } printf("=> %d\n", n); // 종료조건과의 순서 고려. } */ /* int sum = 0; while (1) { int a; printf("정수입력: "); scanf("%d", &a); if (a <= 0) { // 종료조건을 가장먼저 구현!!! break; } sum += a; } printf("총합은 %d이다.\n", sum); */ int n; int even = 0; int odd = 0; int sum = 0; while (1) { printf("정수입력: "); scanf("%d", &n); if (n <= 0) { break; // while문 즉시종료 } sum += n; // 0보다 작은값을 입력받은 시점까지 입력받은 정수들의 합 if (n % 2) { odd++; } // 입력받은 정수가 홀수일때 else { even++; } } double avg = sum * 1.0 / (odd + even); printf("평균은 %.2lf이며, 짝수는 %d번, 홀수는 %d번\n", avg, even, odd); }
9c91e0fb3f4e08234baabccaab0c4e1abbd790fd
19a77042fbe137a836170e18c7ca22d329ef8637
/graphlab/timer/timer.hpp
48e52acb1bc73324686607a5e0cf89ff2e30cacf
[ "BSD-3-Clause" ]
permissive
turi-code/GraphLab-Create-SDK
b047db3147c014a85fc69d522d81824427620561
fd608eeb4e4f7c8edf6212229f21e5a18fff1da5
refs/heads/master
2021-01-24T23:24:48.143189
2017-12-19T18:38:03
2017-12-19T18:38:03
27,092,547
82
59
BSD-3-Clause
2017-12-19T18:38:05
2014-11-24T19:57:26
C++
UTF-8
C++
false
false
6,970
hpp
timer.hpp
/** * Copyright (C) 2016 Turi * All rights reserved. * * This software may be modified and distributed under the terms * of the BSD license. See the LICENSE file for details. */ /** * Copyright (c) 2009 Carnegie Mellon University. * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an "AS * IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language * governing permissions and limitations under the License. * * For more about this software visit: * * http://www.graphlab.ml.cmu.edu * */ #ifndef GRAPHLAB_TIMER_HPP #define GRAPHLAB_TIMER_HPP #ifndef _MSC_VER #include <sys/time.h> #endif #include <stdio.h> #include <iostream> namespace graphlab { /** * \ingroup util * * \brief A simple class that can be used for benchmarking/timing up * to microsecond resolution. * * Standard Usage * ================= * * The timer is used by calling \ref graphlab::timer::start and then * by getting the current time since start by calling * \ref graphlab::timer::current_time. * * For example: * * \code * #include <graphlab.hpp> * * * graphlab::timer timer; * timer.start(); * // do something * std::cout << "Elapsed time: " << timer.current_time() << std::endl; * \endcode * * Fast approximate time * ==================== * * Calling current item in a tight loop can be costly and so we * provide a faster less accurate timing primitive which reads a * local time variable that is updated roughly every 100 millisecond. * These are the \ref graphlab::timer::approx_time_seconds and * \ref graphlab::timer::approx_time_millis. */ class timer { private: /** * \brief The internal start time for this timer object */ timeval start_time_; public: /** * \brief The timer starts on construction but can be restarted by * calling \ref graphlab::timer::start. */ inline timer() { start(); } /** * \brief Reset the timer. */ inline void start() { gettimeofday(&start_time_, NULL); } /** * \brief Returns the elapsed time in seconds since * \ref graphlab::timer::start was last called. * * @return time in seconds since \ref graphlab::timer::start was called. */ inline double current_time() const { timeval current_time; gettimeofday(&current_time, NULL); double answer = // (current_time.tv_sec + ((double)current_time.tv_usec)/1.0E6) - // (start_time_.tv_sec + ((double)start_time_.tv_usec)/1.0E6); (double)(current_time.tv_sec - start_time_.tv_sec) + ((double)(current_time.tv_usec - start_time_.tv_usec))/1.0E6; return answer; } // end of current_time /** * \brief Returns the elapsed time in milliseconds since * \ref graphlab::timer::start was last called. * * @return time in milliseconds since \ref graphlab::timer::start was called. */ inline double current_time_millis() const { return current_time() * 1000; } /** * \brief Get the number of seconds (as a floating point value) * since the Unix Epoch. */ static double sec_of_day() { timeval current_time; gettimeofday(&current_time, NULL); double answer = (double)current_time.tv_sec + ((double)current_time.tv_usec)/1.0E6; return answer; } // end of sec_of_day /** * \brief Returns only the micro-second component of the * time since the Unix Epoch. */ static size_t usec_of_day() { timeval current_time; gettimeofday(&current_time, NULL); size_t answer = (size_t)current_time.tv_sec * 1000000 + (size_t)current_time.tv_usec; return answer; } // end of usec_of_day /** * \brief Returns the time since program start. * * This value is only updated once every 100ms and is therefore * approximate (but fast). */ static float approx_time_seconds(); /** * \brief Returns the time since program start. * * This value is only updated once every 100ms and is therefore * approximate (but fast). */ static size_t approx_time_millis(); /** * \brief Stops the approximate timer. * * This stops the approximate timer thread. Once stoped, the approximate * time will never be advanced again. This function should not generally * be used, but it seems like on certain platforms (windows for instance) * it does not like terminating threads inside DLLs at program terminiation. * This can be used to force thread termination. * * \see approx_time_seconds approx_time_millis */ static void stop_approx_timer(); /** * Sleeps for sleeplen seconds */ static void sleep(size_t sleeplen); /** * Sleeps for sleeplen milliseconds. */ static void sleep_ms(size_t sleeplen); }; // end of Timer typedef unsigned long long rdtsc_type; rdtsc_type estimate_ticks_per_second(); #if defined(__i386__) inline rdtsc_type rdtsc(void) { unsigned long long int x; __asm__ volatile (".byte 0x0f, 0x31" : "=A" (x)); return x; } #elif defined(__x86_64__) inline rdtsc_type rdtsc(void) { unsigned hi, lo; __asm__ __volatile__ ("rdtsc" : "=a"(lo), "=d"(hi)); return ( (unsigned long long)lo) | ( ((unsigned long long)hi)<<32 ); } #else inline rdtsc_type rdtsc(void) { return 0; } #endif /** * Very rudimentary timer class which allows tracking of fine grained * time with extremely low overhead using the RDTSC instruction. * Basic usage: * \code * rdtsc_time time; * ... // do stuff * time.ms(); // returns the number of milliseconds passed. * \endcode */ struct rdtsc_time { rdtsc_type begin; /** * Constructs an rdtsc_time object and begin tracking the time. */ rdtsc_time():begin(rdtsc()) { } /** * Returns the number of milliseconds passed since the rdtsc_time * object was constructed. */ double ms() const { rdtsc_type end = rdtsc(); double dtime = end - begin; dtime = dtime * 1000 / estimate_ticks_per_second(); return dtime; } }; } // end of graphlab namespace /** * Convenience function. Allows you to call "cout << ti" where ti is * a timer object and it will print the number of seconds elapsed * since ti.start() was called. */ std::ostream& operator<<(std::ostream& out, const graphlab::timer& t); #endif
05e521a8256877542a1eb5289bc7f6e3206e8028
c254b84340be475b5513dbf5aa15dab7c316b886
/sort-list/sort_list.cpp
645948ba092dee0a5f73095ba424f7f880e69e8c
[]
no_license
guoyu07/oj-leetcode
8cd794738a2d95862e8b2b3b2927f60ab3dd8506
3e80c210e71e2e3e52144b5c6839207effb6683c
refs/heads/master
2021-06-05T01:57:18.220446
2016-09-23T05:39:26
2016-09-23T05:39:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,431
cpp
sort_list.cpp
#include <iostream> using namespace std; /** * Definition for singly-linked list. */ struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution { public: ListNode* sortList(ListNode* head) { if(!head || !head->next) return head; ListNode *slow = head; ListNode *fast = head->next; while(fast && fast->next) { slow = slow->next; fast = fast->next->next; } ListNode *mid = slow->next; slow->next = nullptr; return merge(sortList(head), sortList(mid)); } // TODO: use iterative one or improve it in other ways ListNode * merge(ListNode *l1, ListNode *l2) { ListNode l(0); // dummp node l.next = l1; // Tip: linked list with header simplify processing!! l1 = &l; ListNode *tmp = nullptr; while( l1->next && l2 ) { if( l1->next->val > l2->val ) { tmp = l2->next; l2->next = l1->next; l1->next = l2; l2 = tmp; } else { l1 = l1->next; } } if( !l1->next ) l1->next = l2; return l.next; } }; void inspect(const ListNode * l) { while(l) { cout<<l->val<<' '; l = l->next; } cout<<endl; } int main() { ListNode * l = new ListNode(3); l->next = new ListNode(1); l->next->next = new ListNode(4); Solution s; inspect(s.sortList(l)); return 0; }
392fbc8283de436e17acbdd0a22c10eff0663005
fb6251837c15a0ee0b28b15d214599165e11de83
/Codeforces/Ladders/1300-1399/38-Lucky Division.cpp
c908d4fcf1b09f2732085e4aad1eb32afc03de90
[]
no_license
CDPS/Competitive-Programming
de72288b8dc02ca2a45ed40491ce1839e983b765
24c046cbde7fea04a6c0f22518a688faf7521e2e
refs/heads/master
2023-08-09T09:57:15.368959
2023-08-05T00:44:41
2023-08-05T00:44:41
104,966,014
0
0
null
null
null
null
UTF-8
C++
false
false
300
cpp
38-Lucky Division.cpp
#include <bits/stdc++.h> using namespace std; int lucky[14]={4,7,44,47,74,77,444,447,474,477,744,747,774,777}; int main(){ int n; scanf("%d",&n); bool f=false; for(int i=0;i<14;i++) if(n==lucky[i]||n%lucky[i]==0)f=true; printf("%s\n",(f)?"YES":"NO"); return 0; }
08b2600a2bd28d3ae393f3528e31db5286a05488
1468b015f5ce882dbd39dc75c9a6560179a936fb
/card/M40432.h
70aff58fcdb5826812b73b6b6271db03755ad245
[]
no_license
Escobaj/HearthstoneResolver
cbfc682993435c01f8b75d4409c99fb4870b9bb3
c93b693ef318fc9f43d35e81931371f626147083
refs/heads/master
2021-04-30T22:31:01.247134
2017-01-31T00:05:32
2017-01-31T00:05:32
74,474,216
8
0
null
null
null
null
UTF-8
C++
false
false
249
h
M40432.h
#ifndef HEARTHSTONERESOLVER_M40432_H #define HEARTHSTONERESOLVER_M40432_H #include "../Core/Entities/Minion.h" class M40432 : public Minion { public: M40432(const EventHandler &e); void init(); }; #endif //HEARTHSTONERESOLVER_M40432_H
cd4e8a235a30018d83bb7ae2571afb67b2d71f42
d6d38b84a054edadbf4c55e1d38caa919b56967f
/build/ui_overviewpage.h
27fc316b79746685000b2d97268e6233cccd7bf9
[ "MIT" ]
permissive
polcoinpl/polcoin
31cf91468cb9235e86a3750f94a7a53588f88c25
2e83eefa3e3323ee61e48f623b1c3ae388844c72
refs/heads/master
2021-01-21T11:08:13.938795
2014-02-18T16:27:16
2014-02-18T16:27:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,533
h
ui_overviewpage.h
/******************************************************************************** ** Form generated from reading UI file 'overviewpage.ui' ** ** Created by: Qt User Interface Compiler version 4.8.5 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_OVERVIEWPAGE_H #define UI_OVERVIEWPAGE_H #include <QtCore/QVariant> #include <QtGui/QAction> #include <QtGui/QApplication> #include <QtGui/QButtonGroup> #include <QtGui/QFormLayout> #include <QtGui/QFrame> #include <QtGui/QGridLayout> #include <QtGui/QHBoxLayout> #include <QtGui/QHeaderView> #include <QtGui/QLabel> #include <QtGui/QListView> #include <QtGui/QProgressBar> #include <QtGui/QPushButton> #include <QtGui/QSpacerItem> #include <QtGui/QVBoxLayout> #include <QtGui/QWidget> QT_BEGIN_NAMESPACE class Ui_OverviewPage { public: QVBoxLayout *topLayout; QLabel *labelAlerts; QHBoxLayout *horizontalLayout; QVBoxLayout *verticalLayout_2; QFrame *frame; QVBoxLayout *verticalLayout_4; QHBoxLayout *horizontalLayout_4; QLabel *label_5; QLabel *labelWalletStatus; QSpacerItem *horizontalSpacer_2; QFormLayout *formLayout_2; QLabel *label; QLabel *labelBalance; QLabel *label_3; QLabel *labelUnconfirmed; QLabel *labelImmatureText; QLabel *labelImmature; QSpacerItem *verticalSpacer_4; QHBoxLayout *horizontalLayout_5; QLabel *label_7; QLabel *lblHashes; QLabel *labelDigStatus; QSpacerItem *horizontalSpacer_4; QHBoxLayout *horizontalLayout_6; QGridLayout *gridLayout; QProgressBar *progressBar; QHBoxLayout *horizontalLayout_3; QSpacerItem *horizontalSpacer_6; QPushButton *btnDig; QSpacerItem *horizontalSpacer_5; QSpacerItem *horizontalSpacer_7; QSpacerItem *verticalSpacer_3; QVBoxLayout *verticalLayout_3; QFrame *frame_2; QVBoxLayout *verticalLayout; QHBoxLayout *horizontalLayout_2; QLabel *label_4; QLabel *labelTransactionsStatus; QSpacerItem *horizontalSpacer; QListView *listTransactions; QSpacerItem *verticalSpacer_2; void setupUi(QWidget *OverviewPage) { if (OverviewPage->objectName().isEmpty()) OverviewPage->setObjectName(QString::fromUtf8("OverviewPage")); OverviewPage->resize(573, 342); topLayout = new QVBoxLayout(OverviewPage); topLayout->setObjectName(QString::fromUtf8("topLayout")); labelAlerts = new QLabel(OverviewPage); labelAlerts->setObjectName(QString::fromUtf8("labelAlerts")); labelAlerts->setVisible(false); labelAlerts->setStyleSheet(QString::fromUtf8("background-color: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 0, stop:0 #F0D0A0, stop:1 #F8D488); color:#000000;")); labelAlerts->setWordWrap(true); labelAlerts->setMargin(3); topLayout->addWidget(labelAlerts); horizontalLayout = new QHBoxLayout(); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); verticalLayout_2 = new QVBoxLayout(); verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2")); frame = new QFrame(OverviewPage); frame->setObjectName(QString::fromUtf8("frame")); frame->setFrameShape(QFrame::NoFrame); frame->setFrameShadow(QFrame::Raised); verticalLayout_4 = new QVBoxLayout(frame); verticalLayout_4->setObjectName(QString::fromUtf8("verticalLayout_4")); horizontalLayout_4 = new QHBoxLayout(); horizontalLayout_4->setObjectName(QString::fromUtf8("horizontalLayout_4")); label_5 = new QLabel(frame); label_5->setObjectName(QString::fromUtf8("label_5")); QFont font; font.setBold(true); font.setWeight(75); label_5->setFont(font); horizontalLayout_4->addWidget(label_5); labelWalletStatus = new QLabel(frame); labelWalletStatus->setObjectName(QString::fromUtf8("labelWalletStatus")); labelWalletStatus->setStyleSheet(QString::fromUtf8("QLabel { color: red; }")); labelWalletStatus->setText(QString::fromUtf8("(out of sync)")); labelWalletStatus->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter); horizontalLayout_4->addWidget(labelWalletStatus); horizontalSpacer_2 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_4->addItem(horizontalSpacer_2); verticalLayout_4->addLayout(horizontalLayout_4); formLayout_2 = new QFormLayout(); formLayout_2->setObjectName(QString::fromUtf8("formLayout_2")); formLayout_2->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow); formLayout_2->setHorizontalSpacing(12); formLayout_2->setVerticalSpacing(12); label = new QLabel(frame); label->setObjectName(QString::fromUtf8("label")); formLayout_2->setWidget(0, QFormLayout::LabelRole, label); labelBalance = new QLabel(frame); labelBalance->setObjectName(QString::fromUtf8("labelBalance")); labelBalance->setFont(font); labelBalance->setCursor(QCursor(Qt::IBeamCursor)); labelBalance->setText(QString::fromUtf8("0 PLC")); labelBalance->setTextInteractionFlags(Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse); formLayout_2->setWidget(0, QFormLayout::FieldRole, labelBalance); label_3 = new QLabel(frame); label_3->setObjectName(QString::fromUtf8("label_3")); formLayout_2->setWidget(1, QFormLayout::LabelRole, label_3); labelUnconfirmed = new QLabel(frame); labelUnconfirmed->setObjectName(QString::fromUtf8("labelUnconfirmed")); labelUnconfirmed->setFont(font); labelUnconfirmed->setCursor(QCursor(Qt::IBeamCursor)); labelUnconfirmed->setText(QString::fromUtf8("0 PLC")); labelUnconfirmed->setTextInteractionFlags(Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse); formLayout_2->setWidget(1, QFormLayout::FieldRole, labelUnconfirmed); labelImmatureText = new QLabel(frame); labelImmatureText->setObjectName(QString::fromUtf8("labelImmatureText")); formLayout_2->setWidget(2, QFormLayout::LabelRole, labelImmatureText); labelImmature = new QLabel(frame); labelImmature->setObjectName(QString::fromUtf8("labelImmature")); labelImmature->setFont(font); labelImmature->setText(QString::fromUtf8("0 PLC")); labelImmature->setTextInteractionFlags(Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse); formLayout_2->setWidget(2, QFormLayout::FieldRole, labelImmature); verticalLayout_4->addLayout(formLayout_2); verticalSpacer_4 = new QSpacerItem(20, 52, QSizePolicy::Minimum, QSizePolicy::Expanding); verticalLayout_4->addItem(verticalSpacer_4); horizontalLayout_5 = new QHBoxLayout(); horizontalLayout_5->setObjectName(QString::fromUtf8("horizontalLayout_5")); label_7 = new QLabel(frame); label_7->setObjectName(QString::fromUtf8("label_7")); horizontalLayout_5->addWidget(label_7); lblHashes = new QLabel(frame); lblHashes->setObjectName(QString::fromUtf8("lblHashes")); lblHashes->setFont(font); horizontalLayout_5->addWidget(lblHashes); labelDigStatus = new QLabel(frame); labelDigStatus->setObjectName(QString::fromUtf8("labelDigStatus")); labelDigStatus->setStyleSheet(QString::fromUtf8("QLabel { color: red; }")); labelDigStatus->setText(QString::fromUtf8("(out of sync)")); labelDigStatus->setAlignment(Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter); horizontalLayout_5->addWidget(labelDigStatus); horizontalSpacer_4 = new QSpacerItem(18, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_5->addItem(horizontalSpacer_4); verticalLayout_4->addLayout(horizontalLayout_5); horizontalLayout_6 = new QHBoxLayout(); horizontalLayout_6->setObjectName(QString::fromUtf8("horizontalLayout_6")); gridLayout = new QGridLayout(); gridLayout->setObjectName(QString::fromUtf8("gridLayout")); progressBar = new QProgressBar(frame); progressBar->setObjectName(QString::fromUtf8("progressBar")); progressBar->setEnabled(true); progressBar->setMaximum(1000); progressBar->setValue(0); progressBar->setTextVisible(false); progressBar->setFormat(QString::fromUtf8("")); gridLayout->addWidget(progressBar, 0, 0, 1, 1); horizontalLayout_3 = new QHBoxLayout(); horizontalLayout_3->setObjectName(QString::fromUtf8("horizontalLayout_3")); horizontalSpacer_6 = new QSpacerItem(48, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_3->addItem(horizontalSpacer_6); btnDig = new QPushButton(frame); btnDig->setObjectName(QString::fromUtf8("btnDig")); horizontalLayout_3->addWidget(btnDig); horizontalSpacer_5 = new QSpacerItem(48, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_3->addItem(horizontalSpacer_5); gridLayout->addLayout(horizontalLayout_3, 1, 0, 1, 1); horizontalLayout_6->addLayout(gridLayout); horizontalSpacer_7 = new QSpacerItem(18, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_6->addItem(horizontalSpacer_7); verticalLayout_4->addLayout(horizontalLayout_6); verticalSpacer_3 = new QSpacerItem(20, 51, QSizePolicy::Minimum, QSizePolicy::Expanding); verticalLayout_4->addItem(verticalSpacer_3); verticalLayout_2->addWidget(frame); horizontalLayout->addLayout(verticalLayout_2); verticalLayout_3 = new QVBoxLayout(); verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3")); frame_2 = new QFrame(OverviewPage); frame_2->setObjectName(QString::fromUtf8("frame_2")); frame_2->setFrameShape(QFrame::NoFrame); frame_2->setFrameShadow(QFrame::Raised); verticalLayout = new QVBoxLayout(frame_2); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); horizontalLayout_2 = new QHBoxLayout(); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); label_4 = new QLabel(frame_2); label_4->setObjectName(QString::fromUtf8("label_4")); horizontalLayout_2->addWidget(label_4); labelTransactionsStatus = new QLabel(frame_2); labelTransactionsStatus->setObjectName(QString::fromUtf8("labelTransactionsStatus")); labelTransactionsStatus->setStyleSheet(QString::fromUtf8("QLabel { color: red; }")); labelTransactionsStatus->setText(QString::fromUtf8("(out of sync)")); labelTransactionsStatus->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); horizontalLayout_2->addWidget(labelTransactionsStatus); horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); horizontalLayout_2->addItem(horizontalSpacer); verticalLayout->addLayout(horizontalLayout_2); listTransactions = new QListView(frame_2); listTransactions->setObjectName(QString::fromUtf8("listTransactions")); listTransactions->setStyleSheet(QString::fromUtf8("QListView { background: transparent; }")); listTransactions->setFrameShape(QFrame::NoFrame); listTransactions->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); listTransactions->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); listTransactions->setSelectionMode(QAbstractItemView::NoSelection); verticalLayout->addWidget(listTransactions); verticalLayout_3->addWidget(frame_2); verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); verticalLayout_3->addItem(verticalSpacer_2); horizontalLayout->addLayout(verticalLayout_3); horizontalLayout->setStretch(0, 1); horizontalLayout->setStretch(1, 1); topLayout->addLayout(horizontalLayout); retranslateUi(OverviewPage); QMetaObject::connectSlotsByName(OverviewPage); } // setupUi void retranslateUi(QWidget *OverviewPage) { OverviewPage->setWindowTitle(QApplication::translate("OverviewPage", "Form", 0, QApplication::UnicodeUTF8)); label_5->setText(QApplication::translate("OverviewPage", "Wallet", 0, QApplication::UnicodeUTF8)); #ifndef QT_NO_TOOLTIP labelWalletStatus->setToolTip(QApplication::translate("OverviewPage", "The displayed information may be out of date. Your wallet automatically synchronizes with the PolCoin network after a connection is established, but this process has not completed yet.", 0, QApplication::UnicodeUTF8)); #endif // QT_NO_TOOLTIP label->setText(QApplication::translate("OverviewPage", "Balance:", 0, QApplication::UnicodeUTF8)); #ifndef QT_NO_TOOLTIP labelBalance->setToolTip(QApplication::translate("OverviewPage", "Your current balance", 0, QApplication::UnicodeUTF8)); #endif // QT_NO_TOOLTIP label_3->setText(QApplication::translate("OverviewPage", "Unconfirmed:", 0, QApplication::UnicodeUTF8)); #ifndef QT_NO_TOOLTIP labelUnconfirmed->setToolTip(QApplication::translate("OverviewPage", "Total of transactions that have yet to be confirmed, and do not yet count toward the current balance", 0, QApplication::UnicodeUTF8)); #endif // QT_NO_TOOLTIP labelImmatureText->setText(QApplication::translate("OverviewPage", "Immature:", 0, QApplication::UnicodeUTF8)); #ifndef QT_NO_TOOLTIP labelImmature->setToolTip(QApplication::translate("OverviewPage", "Mined balance that has not yet matured", 0, QApplication::UnicodeUTF8)); #endif // QT_NO_TOOLTIP label_7->setText(QApplication::translate("OverviewPage", "Hashes per sec:", 0, QApplication::UnicodeUTF8)); lblHashes->setText(QApplication::translate("OverviewPage", "0", 0, QApplication::UnicodeUTF8)); #ifndef QT_NO_TOOLTIP labelDigStatus->setToolTip(QApplication::translate("OverviewPage", "The displayed information may be out of date. Your wallet automatically synchronizes with the PolCoin network after a connection is established, but this process has not completed yet.", 0, QApplication::UnicodeUTF8)); #endif // QT_NO_TOOLTIP #ifndef QT_NO_STATUSTIP progressBar->setStatusTip(QApplication::translate("OverviewPage", "Maximum: 0", 0, QApplication::UnicodeUTF8)); #endif // QT_NO_STATUSTIP btnDig->setText(QApplication::translate("OverviewPage", "Start digging", 0, QApplication::UnicodeUTF8)); label_4->setText(QApplication::translate("OverviewPage", "<b>Recent transactions</b>", 0, QApplication::UnicodeUTF8)); #ifndef QT_NO_TOOLTIP labelTransactionsStatus->setToolTip(QApplication::translate("OverviewPage", "The displayed information may be out of date. Your wallet automatically synchronizes with the PolCoin network after a connection is established, but this process has not completed yet.", 0, QApplication::UnicodeUTF8)); #endif // QT_NO_TOOLTIP } // retranslateUi }; namespace Ui { class OverviewPage: public Ui_OverviewPage {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_OVERVIEWPAGE_H
9f8808222230cdd50cc98e841dd4a64343da8572
bad16eb9b35971135f8fc055b40d87006621d2de
/vjudge/2020七月暑假集训/Nowcoder 多校 2020/Day 6/B.cc
f62088ba1fc71c52a3b757e9b797f90a12f51774
[]
no_license
ymd45921/HUST-ACM-training
1e1c47e40d419987731e047f493d614f0220346b
1976e8351c0ba445ad8bfe0124dd88215d768cc8
refs/heads/master
2023-06-12T13:52:31.974586
2021-07-14T14:30:49
2021-07-14T14:30:49
317,748,883
0
0
null
null
null
null
UTF-8
C++
false
false
1,681
cc
B.cc
/** * * OEIS,永远的神! * 和张旭一人优化了一个 log,变成线性时间了 */ #include <iostream> #include <cstdio> #include <cctype> #include <algorithm> #include <cstring> using namespace std; using ulongs = unsigned long long; using uint = unsigned; inline int nextInt() { int x = 0, f = 1, ch = getchar(); while (!isdigit(ch)) if (ch == '-') f = -1, ch = getchar(); while (isdigit(ch)) x = x * 10 + ch - 48, ch = getchar(); return x * f; } constexpr int N = 2e7 + 5; constexpr ulongs mod = 1e9 + 7; ulongs pow2[N], inv[N]; ulongs x_sum[N]; ulongs fastPow(ulongs a, ulongs b) { ulongs ans = 1; while(b) { if (b & 1u) ans = (ans * a) % mod; a = (a * a) % mod; b >>= 1u; } return ans % mod; } ulongs inverse(ulongs a, ulongs p) { if (a > p || a <= 0) return -1; else if (a == 1 && p) return 1; else return fastPow(a, p - 2) % p; } void process() { auto pro = pow2[0] = inv[0] = 1; x_sum[0] = 0; inv[1] = inverse(2, mod); auto sum_1 = inverse(1, mod); const int lim = 2e7; for (int i = 1; i <= lim; ++ i) { pow2[i] = (pow2[i - 1] * 2) % mod; inv[i] = inv[i - 1] * inv[1] % mod; auto p_1 = (pow2[i] + mod - 1) % mod; pro = pro * p_1 % mod; auto ans = pro * sum_1 % mod * inv[i] % mod; sum_1 = sum_1 * inv[i] % mod; x_sum[i] = x_sum[i - 1] ^ ans; } } int main() { ios::sync_with_stdio(false); std::cin.tie(nullptr); std::cout.tie(nullptr); process(); int t, n; cin >> t; while (t --) { cin >> n; cout << x_sum[n] << endl; } return 0; }
85051883c93151fec16de0bb7f07730158de7131
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/shell/lib/generic/tokeninformation.h
a09f7e631379ec5f00ed86cb97db807069d26463
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
2,571
h
tokeninformation.h
// -------------------------------------------------------------------------- // Module Name: TokenInformation.h // // Copyright (c) 1999-2000, Microsoft Corporation // // Class to get information about either the current thread/process token or // a specified token. // // History: 1999-10-05 vtan created // 2000-02-01 vtan moved from Neptune to Whistler // -------------------------------------------------------------------------- #ifndef _TokenInformation_ #define _TokenInformation_ // -------------------------------------------------------------------------- // CTokenInformation // // Purpose: This class either uses the given access token or if none is // given then the thread impersonation token or if that doesn't // exist then the process token. It duplicates the token so the // original must be released by the caller. It returns // information about the access token. // // History: 1999-10-05 vtan created // 2000-02-01 vtan moved from Neptune to Whistler // -------------------------------------------------------------------------- class CTokenInformation { public: CTokenInformation (HANDLE hToken = NULL); ~CTokenInformation (void); PSID GetLogonSID (void); PSID GetUserSID (void); bool IsUserTheSystem (void); bool IsUserAnAdministrator (void); bool UserHasPrivilege (DWORD dwPrivilege); const WCHAR* GetUserName (void); const WCHAR* GetUserDisplayName (void); static DWORD LogonUser (const WCHAR *pszUsername, const WCHAR *pszDomain, const WCHAR *pszPassword, HANDLE *phToken); static bool IsSameUser (HANDLE hToken1, HANDLE hToken2); private: void GetTokenGroups (void); void GetTokenPrivileges (void); private: HANDLE _hToken, _hTokenToRelease; void *_pvGroupBuffer, *_pvPrivilegeBuffer, *_pvUserBuffer; WCHAR *_pszUserLogonName, *_pszUserDisplayName; }; #endif /* _TokenInformation_ */
33ef083380a9a20782a9cedf6a8c11d76791f588
5b7693f876315cc4f2b815425f2f32997c3b8217
/Source/GUI/GameTitle.cpp
1c878c1e98c3e93179f1545cfe7c9e594106e59d
[]
no_license
sysfce2/SFML_Pong.Hopson97
1617c8827ade1526011ea34a3a78f0c607731050
b8c5957c9844f16aade06a3a3db1550765658158
refs/heads/master
2023-03-20T15:51:08.169303
2017-08-15T00:42:56
2017-08-15T00:42:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,102
cpp
GameTitle.cpp
#include "gametitle.h" // GAME TITLE OBJECT // GameTitle::GameTitle(const std::string& title, sf::Vector2f position) { m_position = position; for (unsigned i = 0; i < title.length(); i++) { int x = position.x + (i*(LETTER_FONT+LETTER_OFFSET)); int y = position.y; // "I" doesn't want to cooperate, smh if (title[i] == 'i') x += LETTER_FONT/4; TitleLetter t_letter = TitleLetter(title[i], x, y, i); m_letters.push_back(std::move(t_letter)); } } void GameTitle::update(float dt) { for (auto& t_letter : m_letters) t_letter.update(dt); } void GameTitle::draw(sf::RenderWindow& window) { for (auto& t_letter : m_letters) t_letter.draw(window); } sf::Vector2f GameTitle::getSize () const { return {0, 200}; } sf::Vector2f GameTitle::getPosition() const { return this->m_position; } // TITLE LETTER OBJECT // TitleLetter::TitleLetter(char letter, int x_pos, int y_pos, int offset) { m_letter = letter; tick += offset * 0.5; m_letter_sprite.setFont(ResourceHolder::getFont("imagine_font")); m_letter_sprite.setString(m_letter); m_letter_sprite.setCharacterSize(LETTER_FONT); m_letter_sprite.setPosition(m_position.x, m_position.y); m_position = sf::Vector2i(x_pos, y_pos); } void TitleLetter::update(float dt) { //old_y = m_letter_sprite.getPosition().y; tick += dt; old_y = WAVE_HEIGHT/2 + WAVE_HEIGHT*sin((tick-0.2)*WAVE_SPEED); new_y = WAVE_HEIGHT/2 + WAVE_HEIGHT*sin(tick*WAVE_SPEED); //m_letter_sprite.setPosition(m_position.x, // m_position.y - WAVE_HEIGHT/2 + WAVE_HEIGHT*sin(tick*WAVE_SPEED)); } void TitleLetter::draw(sf::RenderWindow& window) { m_letter_sprite.setColor(sf::Color(255, 255, 255, 255)); m_letter_sprite.setPosition(m_position.x, m_position.y + new_y); window.draw(m_letter_sprite); // draw trail m_letter_sprite.setColor(sf::Color(255, 255, 255, 128)); m_letter_sprite.setPosition(m_position.x, m_position.y + old_y); window.draw(m_letter_sprite); }
f2bf783992d61c7f549831859c32aeae28dda226
85f391659fc21632b6f5599c2ae32372bb22f115
/LyricDlg.h
69aa69699194c867638fd9f01cc5e709bc65aaa4
[]
no_license
lennylxx/manatee-player
f61ad05c05e4f05265c89c7bef694b8213a98cc6
dddcbc09e7d8647033a2aa6d72ef15ed7f555725
refs/heads/master
2016-08-05T04:37:04.341382
2015-02-05T10:29:30
2015-02-05T10:29:30
30,348,560
1
0
null
null
null
null
UTF-8
C++
false
false
1,767
h
LyricDlg.h
#if !defined(AFX_LYRICDLG_H__2F2D8F05_3E74_479A_B328_460EB839FAC0__INCLUDED_) #define AFX_LYRICDLG_H__2F2D8F05_3E74_479A_B328_460EB839FAC0__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // LyricDlg.h : header file // #include "Lrc.h" ///////////////////////////////////////////////////////////////////////////// // CLyricDlg dialog class CManateeDlg; class CLrc; class CLyricDlg : public CDialog { // Construction public: CLyricDlg(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(CLyricDlg) enum { IDD = IDD_LYRIC }; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CLyricDlg) public: virtual BOOL PreTranslateMessage(MSG* pMsg); protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support virtual void PostNcDestroy(); //}}AFX_VIRTUAL public: enum {NONE=0, LEFT, TOP, RIGHT, BOTTOM} m_Attached; CLrc m_Lrc; CFont m_Font; int m_nPaintPos; public: void AttachWindow(); void InvalidateCtrl(); BOOL LoadLyric(); void CountPos(); // Implementation protected: CManateeDlg* m_pManateeDlg; // Generated message map functions //{{AFX_MSG(CLyricDlg) virtual BOOL OnInitDialog(); virtual void OnCancel(); afx_msg void OnDestroy(); afx_msg void OnSysCommand(UINT nID, LPARAM lParam); afx_msg void OnMove(int x, int y); afx_msg void OnPaint(); afx_msg void OnTimer(UINT nIDEvent); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_LYRICDLG_H__2F2D8F05_3E74_479A_B328_460EB839FAC0__INCLUDED_)
30fd27461c320a3e6728236e069948eac9dfcc9a
cb82ac5b89726ed3ac0841dac7be9419208bb748
/src/Entity/Bullet.cpp
c322d07edd794e36f9df4659b7efd98cb5fc8c65
[ "BSD-2-Clause" ]
permissive
evanbowman/FLIGHT
9d009f4a43f8011c9c33ad35fda6c994e47d6f12
cdb06059498efd63d9a94b27e8b9501e90bde86c
refs/heads/master
2021-10-16T15:14:47.595974
2019-02-11T21:11:00
2019-02-11T21:11:00
80,398,092
18
4
null
null
null
null
UTF-8
C++
false
false
619
cpp
Bullet.cpp
#include <FLIGHT/Entity/Bullet.hpp> namespace FLIGHT { void Bullet::SetModel(std::shared_ptr<Model> model) { m_model = model; } void Bullet::Update(const Time dt) {} void Bullet::Display(DisplayImpl & renderer) { if (auto modelSp = m_model.lock()) { renderer.Dispatch(*this); // auto binding = modelSp->Bind(shader); // glm::mat4 model; // model = glm::translate(model, {0, 30, 0}); // shader.SetUniformMat4("model", model); // shader.SetUniformVec4("color", {0.949f, 0.765f, 0.027f, 1.f}); // glDrawArrays(GL_TRIANGLES, 0, binding.numVertices); } } }
84f26e4b874b16578170344b0a89244769880704
075aa90517c0f30e318c2c7e40a23579d028d4be
/cetlib/LibraryManager.h
718f5ef85209b9f352735fc171b3001c6c0b115f
[]
no_license
brettviren/fnal-cetlib
525c25ee09e69ba5c06398d6f911252fbb89dc6d
08d909648d0a4c7fe88e8758bd9396a0cd43d0dd
refs/heads/master
2021-05-29T23:40:48.453526
2015-05-06T17:38:38
2015-05-06T17:38:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,950
h
LibraryManager.h
#ifndef art_Utilities_LibraryManager_h #define art_Utilities_LibraryManager_h #include "cetlib/hard_cast.h" #include "cetlib/shlib_utils.h" #include <cstring> #include <map> #include <set> #include <string> #include <vector> namespace cet { class LibraryManager; } class cet::LibraryManager { public: // Create a LibraryManager that searches through LD_LIBRARY_PATH // for dynamically loadable libraries having the given lib_type. // If LD_LIBRARY_PATH is not defined, then no libraries are found. // Library names are expected to be of the form: // libaa_bb_cc_xyz_<lib_type>.<ext> // and where <ext> is provided automatically as appropriate for // the platform. explicit LibraryManager(std::string const & lib_type, std::string pattern = "([-A-Za-z0-9]*_)*[A-Za-z0-9]+_"); // The d'tor does NOT unload libraries, because that is dangerous // to do in C++. Use the compiler-generated destructor. // ~LibraryManager(); // Find and return a symbol named 'sym_name' in the library // identified by 'libspec'. The library is dynamically loaded if // necessary. If more than one library matching libspec if found, an // exception is thrown. If the correct library cannot be found or // loaded, an exception is thrown. If the symbol specified cannot be // loaded, an exception is thrown unless the final argument to the // function call is LibraryManager::nothrow, in which case the // desired function pointer will be NULL. template <typename T> T getSymbolByLibspec(std::string const & libspec, std::string const & sym_name) const; template <typename T> void getSymbolByLibspec(std::string const & libspec, std::string const & sym_name, T & sym) const; template <typename T> T getSymbolByPath(std::string const & lib_loc, std::string const & sym_name) const; template <typename T> void getSymbolByPath(std::string const & lib_loc, std::string const & sym_name, T & sym) const; // Versions which won't throw if they can't find the symbol. static struct nothrow_t { } nothrow; template <typename T> T getSymbolByLibspec(std::string const & libspec, std::string const & sym_name, nothrow_t) const; template <typename T> void getSymbolByLibspec(std::string const & libspec, std::string const & sym_name, T & sym, nothrow_t) const; template <typename T> T getSymbolByPath(std::string const & lib_loc, std::string const & sym_name, nothrow_t) const; template <typename T> void getSymbolByPath(std::string const & lib_loc, std::string const & sym_name, T & sym, nothrow_t) const; // Get a list of loadable libraries (full paths). Returns the // number of entries. size_t getLoadableLibraries(std::vector<std::string> &list) const; template <class OutIter> size_t getLoadableLibraries(OutIter dest) const; // Get a list of already-loaded libraries (full paths). Returns // the number of entries. size_t getLoadedLibraries(std::vector<std::string> &list) const; template <class OutIter> size_t getLoadedLibraries(OutIter dest) const; // Get list of valid libspecs. Returns the number of entries. size_t getValidLibspecs(std::vector<std::string> &list) const; template <class OutIter> size_t getValidLibspecs(OutIter dest) const; // Get pair of short and full libspecs corresponding to library // full path. std::pair<std::string,std::string> getSpecsByPath(std::string const & lib_loc) const; // Load all libraries at once. void loadAllLibraries() const; // Check whether libraries are loaded. bool libraryIsLoaded(std::string const & path) const; // Check whether library is loadable. Note this is *not* efficient // and is only intended for diagnostic purposes. If it needs to be // efficient the implementation will need to be improved. bool libraryIsLoadable(std::string const & path) const; // This manager's library type std::string libType() const { return lib_type_; } private: // Internally-useful typedefs. typedef std::map<std::string, std::string> lib_loc_map_t; typedef std::map<std::string, std::set<std::string> > spec_trans_map_t; typedef std::map<std::string, void *> lib_ptr_map_t; typedef std::map<std::string, std::string> good_spec_trans_map_t; // Private helper functions. static std::string dllExtPattern(); void lib_loc_map_inserter(std::string const & path); void spec_trans_map_inserter(lib_loc_map_t::value_type const & entry, std::string const & lib_type); void good_spec_trans_map_inserter(spec_trans_map_t::value_type const & entry); void * get_lib_ptr(std::string const & lib_loc) const; void * getSymbolByLibspec_(std::string const & libspec, std::string const & sym_name, bool should_throw_on_dlsym = true) const; void * getSymbolByPath_(std::string const & lib_loc, std::string const & sym_name, bool should_throw_on_dlsym = true) const; std::string lib_type_; // eg _plugin. // Map of library filename -> full path. lib_loc_map_t lib_loc_map_; // Map of spec -> full path. spec_trans_map_t spec_trans_map_; // Map of only good translations. good_spec_trans_map_t good_spec_trans_map_; // Cache of already-loaded libraries. mutable lib_ptr_map_t lib_ptr_map_; }; inline std::string cet::LibraryManager:: dllExtPattern() { static std::string const dllExtPatt = std::string("\\") + shlib_suffix(); return dllExtPatt; } template <typename T> inline T cet::LibraryManager:: getSymbolByLibspec(std::string const & libspec, std::string const & sym_name) const { return hard_cast<T>(getSymbolByLibspec_(libspec, sym_name)); } template <typename T> inline void cet::LibraryManager:: getSymbolByLibspec(std::string const & libspec, std::string const & sym_name, T & sym) const { hard_cast<T>(getSymbolByLibspec_(libspec, sym_name), sym); } template <typename T> inline T cet::LibraryManager:: getSymbolByPath(std::string const & lib_loc, std::string const & sym_name) const { return hard_cast<T>(getSymbolByPath_(lib_loc, sym_name)); } template <typename T> inline void cet::LibraryManager:: getSymbolByPath(std::string const & lib_loc, std::string const & sym_name, T & sym) const { hard_cast<T>(getSymbolByPath_(lib_loc, sym_name), sym); } template <class OutIter> size_t cet::LibraryManager::getLoadableLibraries(OutIter dest) const { size_t count = 0; lib_loc_map_t::const_iterator i = lib_loc_map_.begin(), end_iter = lib_loc_map_.end(); for (; i != end_iter; ++i, ++count) { *dest++ = i->second; } return count; } // Versions which won't throw on failure to obtain symbol. template <typename T> inline T cet::LibraryManager:: getSymbolByLibspec(std::string const & libspec, std::string const & sym_name, nothrow_t) const { return hard_cast<T>(getSymbolByLibspec_(libspec, sym_name, false)); } template <typename T> inline void cet::LibraryManager:: getSymbolByLibspec(std::string const & libspec, std::string const & sym_name, T & sym, nothrow_t) const { hard_cast<T>(getSymbolByLibspec_(libspec, sym_name, false), sym); } template <typename T> inline T cet::LibraryManager:: getSymbolByPath(std::string const & lib_loc, std::string const & sym_name, nothrow_t) const { return hard_cast<T>(getSymbolByPath_(lib_loc, sym_name, false)); } template <typename T> inline void cet::LibraryManager:: getSymbolByPath(std::string const & lib_loc, std::string const & sym_name, T & sym, nothrow_t) const { hard_cast<T>(getSymbolByPath_(lib_loc, sym_name, false), sym); } template <class OutIter> size_t cet::LibraryManager::getLoadedLibraries(OutIter dest) const { size_t count = 0; lib_ptr_map_t::const_iterator i = lib_ptr_map_.begin(), end_iter = lib_ptr_map_.end(); for (; i != end_iter; ++i, ++count) { *dest++ = i->first; } return count; } template <class OutIter> size_t cet::LibraryManager::getValidLibspecs(OutIter dest) const { size_t count = 0; spec_trans_map_t::const_iterator i = spec_trans_map_.begin(), end_iter = spec_trans_map_.end(); for (; i != end_iter; ++i, ++count) { *dest++ = i->first; } return count; } #endif /* art_Utilities_LibraryManager_h */ // Local Variables: // mode: c++ // End:
ea5c3911e97e49a1d0efc99803f7046fc8082ade
dd83262926063813e0a7c5d941ea623ec07100eb
/uplay_src/Types/UplayOverlapped.hpp
b08cfc8a643d842f677ddc59d796a8265ec08f5f
[]
no_license
ReHamster/UPlayEmulator
b4089cd2a5887a38c7775ac4d765d631303b54ca
d3278e57a9ca90f14a2832dad5db11e11f26131a
refs/heads/master
2023-06-29T07:16:03.915747
2021-08-01T19:42:23
2021-08-01T19:42:23
391,418,847
1
0
null
null
null
null
UTF-8
C++
false
false
1,181
hpp
UplayOverlapped.hpp
#pragma once #include "pch.h" #include "Macro.hpp" namespace UplayR1Loader { #ifdef UPLAY_API_2014_NEXT_GEN class UplayOverlapped { public: int *Result; int IsOperationCompleted; int Reserved; void SetZeros(); void SetResult(); }; //------------------------------------------------------------------------------ inline void UplayOverlapped::SetZeros() { memset(this, NULL, sizeof(UplayOverlapped)); } //------------------------------------------------------------------------------ inline void UplayOverlapped::SetResult() { // Result++; IsOperationCompleted = 1; Reserved = 0; } #else class UplayOverlapped { public: void *Result; int IsOperationCompleted; int Reserved; void SetZeros(); void SetResult(void *result); }; //------------------------------------------------------------------------------ inline void UplayOverlapped::SetZeros() { memset(this, NULL, sizeof(UplayOverlapped)); } //------------------------------------------------------------------------------ inline void UplayOverlapped::SetResult(void *outResult) { Result = outResult; IsOperationCompleted = 1; } #endif } // namespace UplayR1Loader
ce5c8e8c99fc4dc1cc8c2018cde6dd61f52f9a48
aba8b646c24dd6f49a83b334d8800e3442bd49d1
/omp/15D-AngryBids/tester.cpp
7e9ccd763c3b3195c6db7153e8ad8437b3717c67
[]
no_license
marcos-dv/competitive-programming
89c1af786c1bf2f3e5a402d0d68e5a3d965f9053
3709975aab501d6a0b78e8f44229730df67716fd
refs/heads/master
2022-06-12T06:38:47.384667
2020-05-04T16:50:41
2020-05-04T16:50:41
261,242,535
0
0
null
null
null
null
UTF-8
C++
false
false
191
cpp
tester.cpp
#include <iostream> #include <stdlib.h> using namespace std; int main() { srand (time(NULL)); cout << "1 2235 2312\n"; for (int i = 0; i < 20000; ++i) cout << rand()%999999 << endl; }
598d164c3273d4949459183b86a3d62ef91c9271
54918bffd8f1de60afb38b8d8962628ff61803e9
/log.h
f9db958db42b983b3248568926b36a8135a9eb49
[]
no_license
lei130102/s5p
8daada4e0caa727e297761f0672f64bc85f292c9
1aef836c10a4763f37cdf809bd80b6fbe26074af
refs/heads/main
2023-09-04T19:57:39.932335
2021-11-13T00:20:12
2021-11-13T00:20:12
332,342,637
1
0
null
null
null
null
UTF-8
C++
false
false
1,611
h
log.h
#ifndef LOG_H #define LOG_H #include <boost/asio/io_service.hpp> #include <boost/asio/strand.hpp> #include <boost/asio/dispatch.hpp> #include <boost/asio/bind_executor.hpp> #include <iostream> enum log_level { log_level_info , log_level_warning , log_level_error }; inline void write_log(log_level level, short verbose, int session_id, const std::string& what, const std::string& error_message = "") { std::string session = ""; if (session_id >= 0) { session += "session("; session += std::to_string(session_id); session += "):"; } switch(level) { case log_level_info: { std::cerr << "info:"; } break; case log_level_warning: { std::cerr << "warning:"; } break; case log_level_error: { std::cerr << "error:"; } break; } std::cerr << session << what; if (error_message.size() > 0) std::cerr << ":" << error_message; std::cerr << std::endl; } inline void write_log(boost::asio::io_service& ioc_log, boost::asio::strand<boost::asio::io_service::executor_type>& strand_log , log_level level, short verbose, int session_id, const std::string& what, const std::string& error_message = "") { boost::asio::dispatch( ioc_log , boost::asio::bind_executor(strand_log , [session_id, verbose, what, error_message]() { write_log(log_level_info, verbose, session_id, what, error_message); } )); } #endif // LOG_H
e725904fdff6c4e302839728de56b0b493ae52f3
d705b9bdf0d67674b147bd8a4a6f6e8e6c913ce7
/leetcode/Implement_Trie.cpp
6cda9a8b8fa1de3f2879967666f381c8e7041916
[]
no_license
YiNANzhang/leetcode
9a6a6e0b6fddd4f10da30fd820149aa464a87e5c
13636f26d1dea9233f7b27360c57eaf32db46d27
refs/heads/master
2021-01-19T18:54:33.066223
2015-08-23T23:43:50
2015-08-23T23:43:50
34,886,537
0
0
null
null
null
null
UTF-8
C++
false
false
1,768
cpp
Implement_Trie.cpp
class TrieNode { public: TrieNode *children[26]; bool isEnd; // Initialize your data structure here. TrieNode() { fill_n(children, 26, nullptr); isEnd = false; } ~TrieNode() { delete children[26]; } }; class Trie { public: Trie() { root = new TrieNode(); } // Inserts a word into the trie. void insert(string s) { TrieNode *cur = root; for(int i = 0; i < s.size(); ++i) { if(cur->children[s[i]-'a'] != nullptr) { cur = cur->children[s[i]-'a']; } else { TrieNode *newNode = new TrieNode; cur->children[s[i]-'a'] = newNode; cur = cur->children[s[i]-'a']; } } cur->isEnd = true; } // Returns if the word is in the trie. bool search(string key) { TrieNode *cur = root; for(int i = 0; i < key.size(); ++i) { if(cur->children[key[i]-'a'] != nullptr) { cur = cur->children[key[i]-'a']; }else { return false; } } return cur->isEnd; } // Returns if there is any word in the trie // that starts with the given prefix. bool startsWith(string prefix) { TrieNode *cur = root; for(int i = 0; i < prefix.size(); ++i) { if(cur->children[prefix[i]-'a'] != nullptr) { cur = cur->children[prefix[i]-'a']; }else { return false; } } return true; // return search(prefix); } private: TrieNode* root; }; // Your Trie object will be instantiated and called as such: // Trie trie; // trie.insert("somestring"); // trie.search("key");
4673f4aaaf66899eecccb497623919ca20417cca
5dde665a05fc7ac8284f4a63cdbfd58d8365e24f
/interview/jingdong911/2.cpp
f35cfad8ea761f7284feb41b35e62e8dbfe3e007
[]
no_license
chen-huicheng/cpp-coder
e6613544db89c94b12e465986e60c851e908f7d6
de318edbdadff6fc31087be280228e32aae08147
refs/heads/master
2023-08-05T07:04:14.784018
2021-09-22T08:52:27
2021-09-22T08:52:27
359,787,922
1
0
null
null
null
null
UTF-8
C++
false
false
332
cpp
2.cpp
#include<bits/stdc++.h> using namespace std; int main(){ int n,q; cin>>n>>q; vector<set<int>> a(n+1),b(n+1); int k,x,y,m; for(int i=1;i<=n;i++){ cin>>k; while(k--){ cin>>m; a[i].insert(m); b[m].insert(i); } } set<int> task; return 0; }
261b7fe934b5ebb36c57ad9fcce0152c84abfb45
f4ef13becd49577ab0baf8aa1e4cc526c45df390
/March'21 LeetCode Challenge/Day23-3Sum With Multiplicity.cpp
c6a2bbb7e2fd16ea6ebf19d6412a0967f83c280e
[]
no_license
pranjal021/LeetCode-Challenges
331a207928c90f12364b40e69dd9159c90913185
60f24d9778c2ab69dff6a8fb6d99929ae755601d
refs/heads/main
2023-03-30T19:44:45.851128
2021-04-07T08:46:36
2021-04-07T08:46:36
309,061,426
1
2
null
null
null
null
UTF-8
C++
false
false
382
cpp
Day23-3Sum With Multiplicity.cpp
class Solution { public: int threeSumMulti(vector<int>& arr, int target) { unordered_map<int, int> m; int res = 0, mod = 1e9 + 7; for (int i = 0; i < arr.size(); i++) { res = (res + m[target - arr[i]]) % mod; for (int j = 0; j < i; j++) { m[arr[i] + arr[j]]++; } } return res; } };
ed2da58434c96aebd209e939e8f8f92a0375242d
1858bac2fb34d6574730b0dd2fc5a64cd8af3716
/return.cpp
edaa41dc06703f857482337cf5d43194f5af9f13
[]
no_license
Abuenameh/Canonical-Transformation-Gutzwiller-PaGMO
b5199a989020d89e2cea095d1ef6ac4c0c380c0c
d3a71dc3e0b3059d818d5c2a5d5f784535d5b431
refs/heads/master
2021-01-23T09:34:16.877320
2014-10-29T17:53:01
2014-10-29T17:53:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,490,269
cpp
return.cpp
double E = (-2*(sinth*(-(f[17]*(f[3]*(f[1]*f[18] + f[0]*f[19]) + f[2]*(f[0]*f[18] - f[1]*f[19]))) + f[16]*(f[0]*(-(f[3]*f[18]) + f[2]*f[19]) + f[1]*(f[2]*f[18] + f[3]*f[19]))) + costh*(f[1]*(f[16]*(f[3]*f[18] - f[2]*f[19]) + f[17]*(f[2]*f[18] + f[3]*f[19])) + f[0]*(f[3]*(-(f[17]*f[18]) + f[16]*f[19]) + f[2]*(f[16]*f[18] + f[17]*f[19]))) + 2*(sinth*(-(f[19]*(f[5]*(f[3]*f[20] + f[2]*f[21]) + f[4]*(f[2]*f[20] - f[3]*f[21]))) + f[18]*(f[2]*(-(f[5]*f[20]) + f[4]*f[21]) + f[3]*(f[4]*f[20] + f[5]*f[21]))) + costh*(f[3]*(f[18]*(f[5]*f[20] - f[4]*f[21]) + f[19]*(f[4]*f[20] + f[5]*f[21])) + f[2]*(f[5]*(-(f[19]*f[20]) + f[18]*f[21]) + f[4]*(f[18]*f[20] + f[19]*f[21])))) + 3*(sinth*(-(f[21]*(f[7]*(f[5]*f[22] + f[4]*f[23]) + f[6]*(f[4]*f[22] - f[5]*f[23]))) + f[20]*(f[4]*(-(f[7]*f[22]) + f[6]*f[23]) + f[5]*(f[6]*f[22] + f[7]*f[23]))) + costh*(f[5]*(f[20]*(f[7]*f[22] - f[6]*f[23]) + f[21]*(f[6]*f[22] + f[7]*f[23])) + f[4]*(f[7]*(-(f[21]*f[22]) + f[20]*f[23]) + f[6]*(f[20]*f[22] + f[21]*f[23])))) + 4*(sinth*(-(f[23]*(f[9]*(f[7]*f[24] + f[6]*f[25]) + f[8]*(f[6]*f[24] - f[7]*f[25]))) + f[22]*(f[6]*(-(f[9]*f[24]) + f[8]*f[25]) + f[7]*(f[8]*f[24] + f[9]*f[25]))) + costh*(f[7]*(f[22]*(f[9]*f[24] - f[8]*f[25]) + f[23]*(f[8]*f[24] + f[9]*f[25])) + f[6]*(f[9]*(-(f[23]*f[24]) + f[22]*f[25]) + f[8]*(f[22]*f[24] + f[23]*f[25])))) + 5*(sinth*(-(f[25]*(f[11]*(f[9]*f[26] + f[8]*f[27]) + f[10]*(f[8]*f[26] - f[9]*f[27]))) + f[24]*(f[8]*(-(f[11]*f[26]) + f[10]*f[27]) + f[9]*(f[10]*f[26] + f[11]*f[27]))) + costh*(f[9]*(f[24]*(f[11]*f[26] - f[10]*f[27]) + f[25]*(f[10]*f[26] + f[11]*f[27])) + f[8]*(f[11]*(-(f[25]*f[26]) + f[24]*f[27]) + f[10]*(f[24]*f[26] + f[25]*f[27])))) + 6*(sinth*(-(f[27]*(f[13]*(f[11]*f[28] + f[10]*f[29]) + f[12]*(f[10]*f[28] - f[11]*f[29]))) + f[26]*(f[10]*(-(f[13]*f[28]) + f[12]*f[29]) + f[11]*(f[12]*f[28] + f[13]*f[29]))) + costh*(f[11]*(f[26]*(f[13]*f[28] - f[12]*f[29]) + f[27]*(f[12]*f[28] + f[13]*f[29])) + f[10]*(f[13]*(-(f[27]*f[28]) + f[26]*f[29]) + f[12]*(f[26]*f[28] + f[27]*f[29])))) + 7*(sinth*(-(f[29]*(f[15]*(f[13]*f[30] + f[12]*f[31]) + f[14]*(f[12]*f[30] - f[13]*f[31]))) + f[28]*(f[12]*(-(f[15]*f[30]) + f[14]*f[31]) + f[13]*(f[14]*f[30] + f[15]*f[31]))) + costh*(f[13]*(f[28]*(f[15]*f[30] - f[14]*f[31]) + f[29]*(f[14]*f[30] + f[15]*f[31])) + f[12]*(f[15]*(-(f[29]*f[30]) + f[28]*f[31]) + f[14]*(f[28]*f[30] + f[29]*f[31])))))*J[0])/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (2*(sinth*(-(f[33]*(f[19]*(f[17]*f[34] + f[16]*f[35]) + f[18]*(f[16]*f[34] - f[17]*f[35]))) + f[32]*(f[16]*(-(f[19]*f[34]) + f[18]*f[35]) + f[17]*(f[18]*f[34] + f[19]*f[35]))) + costh*(f[17]*(f[32]*(f[19]*f[34] - f[18]*f[35]) + f[33]*(f[18]*f[34] + f[19]*f[35])) + f[16]*(f[19]*(-(f[33]*f[34]) + f[32]*f[35]) + f[18]*(f[32]*f[34] + f[33]*f[35]))) + 2*(sinth*(-(f[35]*(f[21]*(f[19]*f[36] + f[18]*f[37]) + f[20]*(f[18]*f[36] - f[19]*f[37]))) + f[34]*(f[18]*(-(f[21]*f[36]) + f[20]*f[37]) + f[19]*(f[20]*f[36] + f[21]*f[37]))) + costh*(f[19]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[18]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))) + 3*(sinth*(-(f[37]*(f[23]*(f[21]*f[38] + f[20]*f[39]) + f[22]*(f[20]*f[38] - f[21]*f[39]))) + f[36]*(f[20]*(-(f[23]*f[38]) + f[22]*f[39]) + f[21]*(f[22]*f[38] + f[23]*f[39]))) + costh*(f[21]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[20]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))) + 4*(sinth*(-(f[39]*(f[25]*(f[23]*f[40] + f[22]*f[41]) + f[24]*(f[22]*f[40] - f[23]*f[41]))) + f[38]*(f[22]*(-(f[25]*f[40]) + f[24]*f[41]) + f[23]*(f[24]*f[40] + f[25]*f[41]))) + costh*(f[23]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[22]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))) + 5*(sinth*(-(f[41]*(f[27]*(f[25]*f[42] + f[24]*f[43]) + f[26]*(f[24]*f[42] - f[25]*f[43]))) + f[40]*(f[24]*(-(f[27]*f[42]) + f[26]*f[43]) + f[25]*(f[26]*f[42] + f[27]*f[43]))) + costh*(f[25]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[24]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))) + 6*(sinth*(-(f[43]*(f[29]*(f[27]*f[44] + f[26]*f[45]) + f[28]*(f[26]*f[44] - f[27]*f[45]))) + f[42]*(f[26]*(-(f[29]*f[44]) + f[28]*f[45]) + f[27]*(f[28]*f[44] + f[29]*f[45]))) + costh*(f[27]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[26]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))) + 7*(sinth*(-(f[45]*(f[31]*(f[29]*f[46] + f[28]*f[47]) + f[30]*(f[28]*f[46] - f[29]*f[47]))) + f[44]*(f[28]*(-(f[31]*f[46]) + f[30]*f[47]) + f[29]*(f[30]*f[46] + f[31]*f[47]))) + costh*(f[29]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[28]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))))*J[1])/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)) - (2*(sinth*(-(f[49]*(f[35]*(f[33]*f[50] + f[32]*f[51]) + f[34]*(f[32]*f[50] - f[33]*f[51]))) + f[48]*(f[32]*(-(f[35]*f[50]) + f[34]*f[51]) + f[33]*(f[34]*f[50] + f[35]*f[51]))) + costh*(f[33]*(f[48]*(f[35]*f[50] - f[34]*f[51]) + f[49]*(f[34]*f[50] + f[35]*f[51])) + f[32]*(f[35]*(-(f[49]*f[50]) + f[48]*f[51]) + f[34]*(f[48]*f[50] + f[49]*f[51]))) + 2*(sinth*(-(f[51]*(f[37]*(f[35]*f[52] + f[34]*f[53]) + f[36]*(f[34]*f[52] - f[35]*f[53]))) + f[50]*(f[34]*(-(f[37]*f[52]) + f[36]*f[53]) + f[35]*(f[36]*f[52] + f[37]*f[53]))) + costh*(f[35]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[34]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))) + 3*(sinth*(-(f[53]*(f[39]*(f[37]*f[54] + f[36]*f[55]) + f[38]*(f[36]*f[54] - f[37]*f[55]))) + f[52]*(f[36]*(-(f[39]*f[54]) + f[38]*f[55]) + f[37]*(f[38]*f[54] + f[39]*f[55]))) + costh*(f[37]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[36]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))) + 4*(sinth*(-(f[55]*(f[41]*(f[39]*f[56] + f[38]*f[57]) + f[40]*(f[38]*f[56] - f[39]*f[57]))) + f[54]*(f[38]*(-(f[41]*f[56]) + f[40]*f[57]) + f[39]*(f[40]*f[56] + f[41]*f[57]))) + costh*(f[39]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[38]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))) + 5*(sinth*(-(f[57]*(f[43]*(f[41]*f[58] + f[40]*f[59]) + f[42]*(f[40]*f[58] - f[41]*f[59]))) + f[56]*(f[40]*(-(f[43]*f[58]) + f[42]*f[59]) + f[41]*(f[42]*f[58] + f[43]*f[59]))) + costh*(f[41]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[40]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))) + 6*(sinth*(-(f[59]*(f[45]*(f[43]*f[60] + f[42]*f[61]) + f[44]*(f[42]*f[60] - f[43]*f[61]))) + f[58]*(f[42]*(-(f[45]*f[60]) + f[44]*f[61]) + f[43]*(f[44]*f[60] + f[45]*f[61]))) + costh*(f[43]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[42]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))) + 7*(sinth*(-(f[61]*(f[47]*(f[45]*f[62] + f[44]*f[63]) + f[46]*(f[44]*f[62] - f[45]*f[63]))) + f[60]*(f[44]*(-(f[47]*f[62]) + f[46]*f[63]) + f[45]*(f[46]*f[62] + f[47]*f[63]))) + costh*(f[45]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[44]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))))*J[2])/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - (2*(sinth*(-(f[65]*(f[51]*(f[49]*f[66] + f[48]*f[67]) + f[50]*(f[48]*f[66] - f[49]*f[67]))) + f[64]*(f[48]*(-(f[51]*f[66]) + f[50]*f[67]) + f[49]*(f[50]*f[66] + f[51]*f[67]))) + costh*(f[49]*(f[64]*(f[51]*f[66] - f[50]*f[67]) + f[65]*(f[50]*f[66] + f[51]*f[67])) + f[48]*(f[51]*(-(f[65]*f[66]) + f[64]*f[67]) + f[50]*(f[64]*f[66] + f[65]*f[67]))) + 2*(sinth*(-(f[67]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69]))) + f[66]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69]))) + costh*(f[51]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[50]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))) + 3*(sinth*(-(f[69]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71]))) + f[68]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71]))) + costh*(f[53]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[52]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))) + 4*(sinth*(-(f[71]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73]))) + f[70]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73]))) + costh*(f[55]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[54]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))) + 5*(sinth*(-(f[73]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75]))) + f[72]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75]))) + costh*(f[57]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[56]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))) + 6*(sinth*(-(f[75]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77]))) + f[74]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77]))) + costh*(f[59]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[58]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))) + 7*(sinth*(-(f[77]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79]))) + f[76]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79]))) + costh*(f[61]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[60]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))))*J[3])/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) - (2*(sinth*(f[65]*(f[3]*(f[1]*f[66] + f[0]*f[67]) + f[2]*(f[0]*f[66] - f[1]*f[67])) - f[64]*(f[0]*(-(f[3]*f[66]) + f[2]*f[67]) + f[1]*(f[2]*f[66] + f[3]*f[67]))) + costh*(f[1]*(f[64]*(f[3]*f[66] - f[2]*f[67]) + f[65]*(f[2]*f[66] + f[3]*f[67])) + f[0]*(f[3]*(-(f[65]*f[66]) + f[64]*f[67]) + f[2]*(f[64]*f[66] + f[65]*f[67]))) + 2*(sinth*(f[67]*(f[5]*(f[3]*f[68] + f[2]*f[69]) + f[4]*(f[2]*f[68] - f[3]*f[69])) - f[66]*(f[2]*(-(f[5]*f[68]) + f[4]*f[69]) + f[3]*(f[4]*f[68] + f[5]*f[69]))) + costh*(f[3]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69])) + f[2]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))) + 3*(sinth*(f[69]*(f[7]*(f[5]*f[70] + f[4]*f[71]) + f[6]*(f[4]*f[70] - f[5]*f[71])) - f[68]*(f[4]*(-(f[7]*f[70]) + f[6]*f[71]) + f[5]*(f[6]*f[70] + f[7]*f[71]))) + costh*(f[5]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71])) + f[4]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))) + 4*(sinth*(f[71]*(f[9]*(f[7]*f[72] + f[6]*f[73]) + f[8]*(f[6]*f[72] - f[7]*f[73])) - f[70]*(f[6]*(-(f[9]*f[72]) + f[8]*f[73]) + f[7]*(f[8]*f[72] + f[9]*f[73]))) + costh*(f[7]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73])) + f[6]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))) + 5*(sinth*(f[73]*(f[11]*(f[9]*f[74] + f[8]*f[75]) + f[10]*(f[8]*f[74] - f[9]*f[75])) - f[72]*(f[8]*(-(f[11]*f[74]) + f[10]*f[75]) + f[9]*(f[10]*f[74] + f[11]*f[75]))) + costh*(f[9]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75])) + f[8]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))) + 6*(sinth*(f[75]*(f[13]*(f[11]*f[76] + f[10]*f[77]) + f[12]*(f[10]*f[76] - f[11]*f[77])) - f[74]*(f[10]*(-(f[13]*f[76]) + f[12]*f[77]) + f[11]*(f[12]*f[76] + f[13]*f[77]))) + costh*(f[11]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77])) + f[10]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))) + 7*(sinth*(f[77]*(f[15]*(f[13]*f[78] + f[12]*f[79]) + f[14]*(f[12]*f[78] - f[13]*f[79])) - f[76]*(f[12]*(-(f[15]*f[78]) + f[14]*f[79]) + f[13]*(f[14]*f[78] + f[15]*f[79]))) + costh*(f[13]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79])) + f[12]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))))*J[4])/((f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (-((f_2_2 + f_3_2)*mu) + (f_4_2 + f_5_2)*(-2*mu + U[0]) + (f_6_2 + f_7_2)*(-3*mu + 3*U[0]) + (f_8_2 + f_9_2)*(-4*mu + 6*U[0]) + (f_10_2 + f_11_2)*(-5*mu + 10*U[0]) + (f_12_2 + f_13_2)*(-6*mu + 15*U[0]) + (f_14_2 + f_15_2)*(-7*mu + 21*U[0]))/(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2) + (-((f_18_2 + f_19_2)*mu) + (f_20_2 + f_21_2)*(-2*mu + U[1]) + (f_22_2 + f_23_2)*(-3*mu + 3*U[1]) + (f_24_2 + f_25_2)*(-4*mu + 6*U[1]) + (f_26_2 + f_27_2)*(-5*mu + 10*U[1]) + (f_28_2 + f_29_2)*(-6*mu + 15*U[1]) + (f_30_2 + f_31_2)*(-7*mu + 21*U[1]))/(f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2) + (-((f_34_2 + f_35_2)*mu) + (f_36_2 + f_37_2)*(-2*mu + U[2]) + (f_38_2 + f_39_2)*(-3*mu + 3*U[2]) + (f_40_2 + f_41_2)*(-4*mu + 6*U[2]) + (f_42_2 + f_43_2)*(-5*mu + 10*U[2]) + (f_44_2 + f_45_2)*(-6*mu + 15*U[2]) + (f_46_2 + f_47_2)*(-7*mu + 21*U[2]))/(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2) + (-((f_50_2 + f_51_2)*mu) + (f_52_2 + f_53_2)*(-2*mu + U[3]) + (f_54_2 + f_55_2)*(-3*mu + 3*U[3]) + (f_56_2 + f_57_2)*(-4*mu + 6*U[3]) + (f_58_2 + f_59_2)*(-5*mu + 10*U[3]) + (f_60_2 + f_61_2)*(-6*mu + 15*U[3]) + (f_62_2 + f_63_2)*(-7*mu + 21*U[3]))/(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2) + (-((f_66_2 + f_67_2)*mu) + (f_68_2 + f_69_2)*(-2*mu + U[4]) + (f_70_2 + f_71_2)*(-3*mu + 3*U[4]) + (f_72_2 + f_73_2)*(-4*mu + 6*U[4]) + (f_74_2 + f_75_2)*(-5*mu + 10*U[4]) + (f_76_2 + f_77_2)*(-6*mu + 15*U[4]) + (f_78_2 + f_79_2)*(-7*mu + 21*U[4]))/(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2) + (((2*(f[17]*(f[32]*((f[2]*(-(f[5]*f[20]) + f[4]*f[21]) + f[3]*(f[4]*f[20] + f[5]*f[21]))*f[34] - (f[5]*(f[3]*f[20] + f[2]*f[21]) + f[4]*(f[2]*f[20] - f[3]*f[21]))*f[35]) + f[33]*(f[3]*((f[5]*f[20] - f[4]*f[21])*f[34] + (f[4]*f[20] + f[5]*f[21])*f[35]) + f[2]*(f[5]*(f[21]*f[34] - f[20]*f[35]) + f[4]*(f[20]*f[34] + f[21]*f[35])))) + f[16]*(f[3]*(-(((-(f[5]*f[20]) + f[4]*f[21])*f[32] + (f[4]*f[20] + f[5]*f[21])*f[33])*f[34]) + (f[5]*(f[21]*f[32] + f[20]*f[33]) + f[4]*(f[20]*f[32] - f[21]*f[33]))*f[35]) + f[2]*(f[33]*((f[5]*f[20] - f[4]*f[21])*f[34] + (f[4]*f[20] + f[5]*f[21])*f[35]) + f[32]*(f[5]*(f[21]*f[34] - f[20]*f[35]) + f[4]*(f[20]*f[34] + f[21]*f[35])))))*J[0]*J[1])/U[0] + (42*(f[27]*(f[42]*((f[12]*(-(f[15]*f[30]) + f[14]*f[31]) + f[13]*(f[14]*f[30] + f[15]*f[31]))*f[44] - (f[15]*(f[13]*f[30] + f[12]*f[31]) + f[14]*(f[12]*f[30] - f[13]*f[31]))*f[45]) + f[43]*(f[13]*((f[15]*f[30] - f[14]*f[31])*f[44] + (f[14]*f[30] + f[15]*f[31])*f[45]) + f[12]*(f[15]*(f[31]*f[44] - f[30]*f[45]) + f[14]*(f[30]*f[44] + f[31]*f[45])))) + f[26]*(f[13]*(-(((-(f[15]*f[30]) + f[14]*f[31])*f[42] + (f[14]*f[30] + f[15]*f[31])*f[43])*f[44]) + (f[15]*(f[31]*f[42] + f[30]*f[43]) + f[14]*(f[30]*f[42] - f[31]*f[43]))*f[45]) + f[12]*(f[43]*((f[15]*f[30] - f[14]*f[31])*f[44] + (f[14]*f[30] + f[15]*f[31])*f[45]) + f[42]*(f[15]*(f[31]*f[44] - f[30]*f[45]) + f[14]*(f[30]*f[44] + f[31]*f[45])))))*J[0]*J[1])/(6*U[0] - 5*U[1]) + (30*(f[25]*(f[40]*((f[10]*(-(f[13]*f[28]) + f[12]*f[29]) + f[11]*(f[12]*f[28] + f[13]*f[29]))*f[42] - (f[13]*(f[11]*f[28] + f[10]*f[29]) + f[12]*(f[10]*f[28] - f[11]*f[29]))*f[43]) + f[41]*(f[11]*((f[13]*f[28] - f[12]*f[29])*f[42] + (f[12]*f[28] + f[13]*f[29])*f[43]) + f[10]*(f[13]*(f[29]*f[42] - f[28]*f[43]) + f[12]*(f[28]*f[42] + f[29]*f[43])))) + f[24]*(f[11]*(-(((-(f[13]*f[28]) + f[12]*f[29])*f[40] + (f[12]*f[28] + f[13]*f[29])*f[41])*f[42]) + (f[13]*(f[29]*f[40] + f[28]*f[41]) + f[12]*(f[28]*f[40] - f[29]*f[41]))*f[43]) + f[10]*(f[41]*((f[13]*f[28] - f[12]*f[29])*f[42] + (f[12]*f[28] + f[13]*f[29])*f[43]) + f[40]*(f[13]*(f[29]*f[42] - f[28]*f[43]) + f[12]*(f[28]*f[42] + f[29]*f[43])))))*J[0]*J[1])/(5*U[0] - 4*U[1]) + (20*(f[23]*(f[38]*((f[8]*(-(f[11]*f[26]) + f[10]*f[27]) + f[9]*(f[10]*f[26] + f[11]*f[27]))*f[40] - (f[11]*(f[9]*f[26] + f[8]*f[27]) + f[10]*(f[8]*f[26] - f[9]*f[27]))*f[41]) + f[39]*(f[9]*((f[11]*f[26] - f[10]*f[27])*f[40] + (f[10]*f[26] + f[11]*f[27])*f[41]) + f[8]*(f[11]*(f[27]*f[40] - f[26]*f[41]) + f[10]*(f[26]*f[40] + f[27]*f[41])))) + f[22]*(f[9]*(-(((-(f[11]*f[26]) + f[10]*f[27])*f[38] + (f[10]*f[26] + f[11]*f[27])*f[39])*f[40]) + (f[11]*(f[27]*f[38] + f[26]*f[39]) + f[10]*(f[26]*f[38] - f[27]*f[39]))*f[41]) + f[8]*(f[39]*((f[11]*f[26] - f[10]*f[27])*f[40] + (f[10]*f[26] + f[11]*f[27])*f[41]) + f[38]*(f[11]*(f[27]*f[40] - f[26]*f[41]) + f[10]*(f[26]*f[40] + f[27]*f[41])))))*J[0]*J[1])/(4*U[0] - 3*U[1]) + (12*(f[21]*(f[36]*((f[6]*(-(f[9]*f[24]) + f[8]*f[25]) + f[7]*(f[8]*f[24] + f[9]*f[25]))*f[38] - (f[9]*(f[7]*f[24] + f[6]*f[25]) + f[8]*(f[6]*f[24] - f[7]*f[25]))*f[39]) + f[37]*(f[7]*((f[9]*f[24] - f[8]*f[25])*f[38] + (f[8]*f[24] + f[9]*f[25])*f[39]) + f[6]*(f[9]*(f[25]*f[38] - f[24]*f[39]) + f[8]*(f[24]*f[38] + f[25]*f[39])))) + f[20]*(f[7]*(-(((-(f[9]*f[24]) + f[8]*f[25])*f[36] + (f[8]*f[24] + f[9]*f[25])*f[37])*f[38]) + (f[9]*(f[25]*f[36] + f[24]*f[37]) + f[8]*(f[24]*f[36] - f[25]*f[37]))*f[39]) + f[6]*(f[37]*((f[9]*f[24] - f[8]*f[25])*f[38] + (f[8]*f[24] + f[9]*f[25])*f[39]) + f[36]*(f[9]*(f[25]*f[38] - f[24]*f[39]) + f[8]*(f[24]*f[38] + f[25]*f[39])))))*J[0]*J[1])/(3*U[0] - 2*U[1]) + (6*(f[19]*(f[34]*((f[4]*(-(f[7]*f[22]) + f[6]*f[23]) + f[5]*(f[6]*f[22] + f[7]*f[23]))*f[36] - (f[7]*(f[5]*f[22] + f[4]*f[23]) + f[6]*(f[4]*f[22] - f[5]*f[23]))*f[37]) + f[35]*(f[5]*((f[7]*f[22] - f[6]*f[23])*f[36] + (f[6]*f[22] + f[7]*f[23])*f[37]) + f[4]*(f[7]*(f[23]*f[36] - f[22]*f[37]) + f[6]*(f[22]*f[36] + f[23]*f[37])))) + f[18]*(f[5]*(-(((-(f[7]*f[22]) + f[6]*f[23])*f[34] + (f[6]*f[22] + f[7]*f[23])*f[35])*f[36]) + (f[7]*(f[23]*f[34] + f[22]*f[35]) + f[6]*(f[22]*f[34] - f[23]*f[35]))*f[37]) + f[4]*(f[35]*((f[7]*f[22] - f[6]*f[23])*f[36] + (f[6]*f[22] + f[7]*f[23])*f[37]) + f[34]*(f[7]*(f[23]*f[36] - f[22]*f[37]) + f[6]*(f[22]*f[36] + f[23]*f[37])))))*J[0]*J[1])/(2*U[0] - U[1]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[0]*(f[19]*(f[66]*(f[16]*(f[5]*f[68] - f[4]*f[69]) + f[17]*(f[4]*f[68] + f[5]*f[69])) + f[67]*(f[5]*(-(f[17]*f[68]) + f[16]*f[69]) + f[4]*(f[16]*f[68] + f[17]*f[69]))) + f[18]*(-(f[17]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69]))) + f[16]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))) + f[1]*(f[16]*(-(f[66]*(f[18]*(-(f[5]*f[68]) + f[4]*f[69]) + f[19]*(f[4]*f[68] + f[5]*f[69]))) + f[67]*(f[5]*(f[19]*f[68] + f[18]*f[69]) + f[4]*(f[18]*f[68] - f[19]*f[69]))) + f[17]*(f[19]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69])) + f[18]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))))*J[0]*J[4])/U[0] + (42*(f[10]*(f[29]*(f[76]*(f[26]*(f[15]*f[78] - f[14]*f[79]) + f[27]*(f[14]*f[78] + f[15]*f[79])) + f[77]*(f[15]*(-(f[27]*f[78]) + f[26]*f[79]) + f[14]*(f[26]*f[78] + f[27]*f[79]))) + f[28]*(-(f[27]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79]))) + f[26]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))) + f[11]*(f[26]*(-(f[76]*(f[28]*(-(f[15]*f[78]) + f[14]*f[79]) + f[29]*(f[14]*f[78] + f[15]*f[79]))) + f[77]*(f[15]*(f[29]*f[78] + f[28]*f[79]) + f[14]*(f[28]*f[78] - f[29]*f[79]))) + f[27]*(f[29]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79])) + f[28]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))))*J[0]*J[4])/(6*U[0] - 5*U[1]) + (30*(f[8]*(f[27]*(f[74]*(f[24]*(f[13]*f[76] - f[12]*f[77]) + f[25]*(f[12]*f[76] + f[13]*f[77])) + f[75]*(f[13]*(-(f[25]*f[76]) + f[24]*f[77]) + f[12]*(f[24]*f[76] + f[25]*f[77]))) + f[26]*(-(f[25]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77]))) + f[24]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))) + f[9]*(f[24]*(-(f[74]*(f[26]*(-(f[13]*f[76]) + f[12]*f[77]) + f[27]*(f[12]*f[76] + f[13]*f[77]))) + f[75]*(f[13]*(f[27]*f[76] + f[26]*f[77]) + f[12]*(f[26]*f[76] - f[27]*f[77]))) + f[25]*(f[27]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77])) + f[26]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))))*J[0]*J[4])/(5*U[0] - 4*U[1]) + (20*(f[6]*(f[25]*(f[72]*(f[22]*(f[11]*f[74] - f[10]*f[75]) + f[23]*(f[10]*f[74] + f[11]*f[75])) + f[73]*(f[11]*(-(f[23]*f[74]) + f[22]*f[75]) + f[10]*(f[22]*f[74] + f[23]*f[75]))) + f[24]*(-(f[23]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75]))) + f[22]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))) + f[7]*(f[22]*(-(f[72]*(f[24]*(-(f[11]*f[74]) + f[10]*f[75]) + f[25]*(f[10]*f[74] + f[11]*f[75]))) + f[73]*(f[11]*(f[25]*f[74] + f[24]*f[75]) + f[10]*(f[24]*f[74] - f[25]*f[75]))) + f[23]*(f[25]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75])) + f[24]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))))*J[0]*J[4])/(4*U[0] - 3*U[1]) + (12*(f[4]*(f[23]*(f[70]*(f[20]*(f[9]*f[72] - f[8]*f[73]) + f[21]*(f[8]*f[72] + f[9]*f[73])) + f[71]*(f[9]*(-(f[21]*f[72]) + f[20]*f[73]) + f[8]*(f[20]*f[72] + f[21]*f[73]))) + f[22]*(-(f[21]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73]))) + f[20]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))) + f[5]*(f[20]*(-(f[70]*(f[22]*(-(f[9]*f[72]) + f[8]*f[73]) + f[23]*(f[8]*f[72] + f[9]*f[73]))) + f[71]*(f[9]*(f[23]*f[72] + f[22]*f[73]) + f[8]*(f[22]*f[72] - f[23]*f[73]))) + f[21]*(f[23]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73])) + f[22]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))))*J[0]*J[4])/(3*U[0] - 2*U[1]) + (6*(f[2]*(f[21]*(f[68]*(f[18]*(f[7]*f[70] - f[6]*f[71]) + f[19]*(f[6]*f[70] + f[7]*f[71])) + f[69]*(f[7]*(-(f[19]*f[70]) + f[18]*f[71]) + f[6]*(f[18]*f[70] + f[19]*f[71]))) + f[20]*(-(f[19]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71]))) + f[18]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))) + f[3]*(f[18]*(-(f[68]*(f[20]*(-(f[7]*f[70]) + f[6]*f[71]) + f[21]*(f[6]*f[70] + f[7]*f[71]))) + f[69]*(f[7]*(f[21]*f[70] + f[20]*f[71]) + f[6]*(f[20]*f[70] - f[21]*f[71]))) + f[19]*(f[21]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71])) + f[20]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))))*J[0]*J[4])/(2*U[0] - U[1]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((42*(f[11]*(f[26]*(-(f[45]*(f[31]*(f[13]*f[46] + f[12]*f[47]) + f[30]*(f[12]*f[46] - f[13]*f[47]))) + f[44]*(f[12]*(-(f[31]*f[46]) + f[30]*f[47]) + f[13]*(f[30]*f[46] + f[31]*f[47]))) + f[27]*(f[13]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[12]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))) + f[10]*(f[13]*(f[45]*(f[31]*(f[27]*f[46] + f[26]*f[47]) + f[30]*(f[26]*f[46] - f[27]*f[47])) - f[44]*(f[26]*(-(f[31]*f[46]) + f[30]*f[47]) + f[27]*(f[30]*f[46] + f[31]*f[47]))) + f[12]*(f[27]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[26]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))))*J[0]*J[1])/(5*U[0] - 6*U[1]) + (30*(f[9]*(f[24]*(-(f[43]*(f[29]*(f[11]*f[44] + f[10]*f[45]) + f[28]*(f[10]*f[44] - f[11]*f[45]))) + f[42]*(f[10]*(-(f[29]*f[44]) + f[28]*f[45]) + f[11]*(f[28]*f[44] + f[29]*f[45]))) + f[25]*(f[11]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[10]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))) + f[8]*(f[11]*(f[43]*(f[29]*(f[25]*f[44] + f[24]*f[45]) + f[28]*(f[24]*f[44] - f[25]*f[45])) - f[42]*(f[24]*(-(f[29]*f[44]) + f[28]*f[45]) + f[25]*(f[28]*f[44] + f[29]*f[45]))) + f[10]*(f[25]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[24]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))))*J[0]*J[1])/(4*U[0] - 5*U[1]) + (20*(f[7]*(f[22]*(-(f[41]*(f[27]*(f[9]*f[42] + f[8]*f[43]) + f[26]*(f[8]*f[42] - f[9]*f[43]))) + f[40]*(f[8]*(-(f[27]*f[42]) + f[26]*f[43]) + f[9]*(f[26]*f[42] + f[27]*f[43]))) + f[23]*(f[9]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[8]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))) + f[6]*(f[9]*(f[41]*(f[27]*(f[23]*f[42] + f[22]*f[43]) + f[26]*(f[22]*f[42] - f[23]*f[43])) - f[40]*(f[22]*(-(f[27]*f[42]) + f[26]*f[43]) + f[23]*(f[26]*f[42] + f[27]*f[43]))) + f[8]*(f[23]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[22]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))))*J[0]*J[1])/(3*U[0] - 4*U[1]) + (12*(f[5]*(f[20]*(-(f[39]*(f[25]*(f[7]*f[40] + f[6]*f[41]) + f[24]*(f[6]*f[40] - f[7]*f[41]))) + f[38]*(f[6]*(-(f[25]*f[40]) + f[24]*f[41]) + f[7]*(f[24]*f[40] + f[25]*f[41]))) + f[21]*(f[7]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[6]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))) + f[4]*(f[7]*(f[39]*(f[25]*(f[21]*f[40] + f[20]*f[41]) + f[24]*(f[20]*f[40] - f[21]*f[41])) - f[38]*(f[20]*(-(f[25]*f[40]) + f[24]*f[41]) + f[21]*(f[24]*f[40] + f[25]*f[41]))) + f[6]*(f[21]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[20]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))))*J[0]*J[1])/(2*U[0] - 3*U[1]) + (6*(f[3]*(f[18]*(-(f[37]*(f[23]*(f[5]*f[38] + f[4]*f[39]) + f[22]*(f[4]*f[38] - f[5]*f[39]))) + f[36]*(f[4]*(-(f[23]*f[38]) + f[22]*f[39]) + f[5]*(f[22]*f[38] + f[23]*f[39]))) + f[19]*(f[5]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[4]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))) + f[2]*(f[5]*(f[37]*(f[23]*(f[19]*f[38] + f[18]*f[39]) + f[22]*(f[18]*f[38] - f[19]*f[39])) - f[36]*(f[18]*(-(f[23]*f[38]) + f[22]*f[39]) + f[19]*(f[22]*f[38] + f[23]*f[39]))) + f[4]*(f[19]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[18]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))))*J[0]*J[1])/(U[0] - 2*U[1]) - (2*(f[1]*(f[16]*(-(f[35]*(f[21]*(f[3]*f[36] + f[2]*f[37]) + f[20]*(f[2]*f[36] - f[3]*f[37]))) + f[34]*(f[2]*(-(f[21]*f[36]) + f[20]*f[37]) + f[3]*(f[20]*f[36] + f[21]*f[37]))) + f[17]*(f[3]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[2]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))) + f[0]*(f[3]*(f[35]*(f[21]*(f[17]*f[36] + f[16]*f[37]) + f[20]*(f[16]*f[36] - f[17]*f[37])) - f[34]*(f[16]*(-(f[21]*f[36]) + f[20]*f[37]) + f[17]*(f[20]*f[36] + f[21]*f[37]))) + f[2]*(f[17]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[16]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))))*J[0]*J[1])/U[1])/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((42*(f[11]*(f[74]*((f[28]*(f[15]*f[30] - f[14]*f[31]) + f[29]*(f[14]*f[30] + f[15]*f[31]))*f[76] - (f[15]*(-(f[29]*f[30]) + f[28]*f[31]) + f[14]*(f[28]*f[30] + f[29]*f[31]))*f[77]) + f[75]*(f[29]*((-(f[15]*f[30]) + f[14]*f[31])*f[76] + (f[14]*f[30] + f[15]*f[31])*f[77]) + f[28]*(f[15]*(f[31]*f[76] + f[30]*f[77]) + f[14]*(f[30]*f[76] - f[31]*f[77])))) + f[10]*(f[29]*(-(((f[15]*f[30] - f[14]*f[31])*f[74] + (f[14]*f[30] + f[15]*f[31])*f[75])*f[76]) + (f[15]*(f[31]*f[74] - f[30]*f[75]) + f[14]*(f[30]*f[74] + f[31]*f[75]))*f[77]) + f[28]*(f[75]*((-(f[15]*f[30]) + f[14]*f[31])*f[76] + (f[14]*f[30] + f[15]*f[31])*f[77]) + f[74]*(f[15]*(f[31]*f[76] + f[30]*f[77]) + f[14]*(f[30]*f[76] - f[31]*f[77])))))*J[0]*J[4])/(5*U[0] - 6*U[1]) + (30*(f[9]*(f[72]*((f[26]*(f[13]*f[28] - f[12]*f[29]) + f[27]*(f[12]*f[28] + f[13]*f[29]))*f[74] - (f[13]*(-(f[27]*f[28]) + f[26]*f[29]) + f[12]*(f[26]*f[28] + f[27]*f[29]))*f[75]) + f[73]*(f[27]*((-(f[13]*f[28]) + f[12]*f[29])*f[74] + (f[12]*f[28] + f[13]*f[29])*f[75]) + f[26]*(f[13]*(f[29]*f[74] + f[28]*f[75]) + f[12]*(f[28]*f[74] - f[29]*f[75])))) + f[8]*(f[27]*(-(((f[13]*f[28] - f[12]*f[29])*f[72] + (f[12]*f[28] + f[13]*f[29])*f[73])*f[74]) + (f[13]*(f[29]*f[72] - f[28]*f[73]) + f[12]*(f[28]*f[72] + f[29]*f[73]))*f[75]) + f[26]*(f[73]*((-(f[13]*f[28]) + f[12]*f[29])*f[74] + (f[12]*f[28] + f[13]*f[29])*f[75]) + f[72]*(f[13]*(f[29]*f[74] + f[28]*f[75]) + f[12]*(f[28]*f[74] - f[29]*f[75])))))*J[0]*J[4])/(4*U[0] - 5*U[1]) + (20*(f[7]*(f[70]*((f[24]*(f[11]*f[26] - f[10]*f[27]) + f[25]*(f[10]*f[26] + f[11]*f[27]))*f[72] - (f[11]*(-(f[25]*f[26]) + f[24]*f[27]) + f[10]*(f[24]*f[26] + f[25]*f[27]))*f[73]) + f[71]*(f[25]*((-(f[11]*f[26]) + f[10]*f[27])*f[72] + (f[10]*f[26] + f[11]*f[27])*f[73]) + f[24]*(f[11]*(f[27]*f[72] + f[26]*f[73]) + f[10]*(f[26]*f[72] - f[27]*f[73])))) + f[6]*(f[25]*(-(((f[11]*f[26] - f[10]*f[27])*f[70] + (f[10]*f[26] + f[11]*f[27])*f[71])*f[72]) + (f[11]*(f[27]*f[70] - f[26]*f[71]) + f[10]*(f[26]*f[70] + f[27]*f[71]))*f[73]) + f[24]*(f[71]*((-(f[11]*f[26]) + f[10]*f[27])*f[72] + (f[10]*f[26] + f[11]*f[27])*f[73]) + f[70]*(f[11]*(f[27]*f[72] + f[26]*f[73]) + f[10]*(f[26]*f[72] - f[27]*f[73])))))*J[0]*J[4])/(3*U[0] - 4*U[1]) + (12*(f[5]*(f[68]*((f[22]*(f[9]*f[24] - f[8]*f[25]) + f[23]*(f[8]*f[24] + f[9]*f[25]))*f[70] - (f[9]*(-(f[23]*f[24]) + f[22]*f[25]) + f[8]*(f[22]*f[24] + f[23]*f[25]))*f[71]) + f[69]*(f[23]*((-(f[9]*f[24]) + f[8]*f[25])*f[70] + (f[8]*f[24] + f[9]*f[25])*f[71]) + f[22]*(f[9]*(f[25]*f[70] + f[24]*f[71]) + f[8]*(f[24]*f[70] - f[25]*f[71])))) + f[4]*(f[23]*(-(((f[9]*f[24] - f[8]*f[25])*f[68] + (f[8]*f[24] + f[9]*f[25])*f[69])*f[70]) + (f[9]*(f[25]*f[68] - f[24]*f[69]) + f[8]*(f[24]*f[68] + f[25]*f[69]))*f[71]) + f[22]*(f[69]*((-(f[9]*f[24]) + f[8]*f[25])*f[70] + (f[8]*f[24] + f[9]*f[25])*f[71]) + f[68]*(f[9]*(f[25]*f[70] + f[24]*f[71]) + f[8]*(f[24]*f[70] - f[25]*f[71])))))*J[0]*J[4])/(2*U[0] - 3*U[1]) + (6*(f[3]*(f[66]*((f[20]*(f[7]*f[22] - f[6]*f[23]) + f[21]*(f[6]*f[22] + f[7]*f[23]))*f[68] - (f[7]*(-(f[21]*f[22]) + f[20]*f[23]) + f[6]*(f[20]*f[22] + f[21]*f[23]))*f[69]) + f[67]*(f[21]*((-(f[7]*f[22]) + f[6]*f[23])*f[68] + (f[6]*f[22] + f[7]*f[23])*f[69]) + f[20]*(f[7]*(f[23]*f[68] + f[22]*f[69]) + f[6]*(f[22]*f[68] - f[23]*f[69])))) + f[2]*(f[21]*(-(((f[7]*f[22] - f[6]*f[23])*f[66] + (f[6]*f[22] + f[7]*f[23])*f[67])*f[68]) + (f[7]*(f[23]*f[66] - f[22]*f[67]) + f[6]*(f[22]*f[66] + f[23]*f[67]))*f[69]) + f[20]*(f[67]*((-(f[7]*f[22]) + f[6]*f[23])*f[68] + (f[6]*f[22] + f[7]*f[23])*f[69]) + f[66]*(f[7]*(f[23]*f[68] + f[22]*f[69]) + f[6]*(f[22]*f[68] - f[23]*f[69])))))*J[0]*J[4])/(U[0] - 2*U[1]) - (2*(f[1]*(f[64]*((f[18]*(f[5]*f[20] - f[4]*f[21]) + f[19]*(f[4]*f[20] + f[5]*f[21]))*f[66] - (f[5]*(-(f[19]*f[20]) + f[18]*f[21]) + f[4]*(f[18]*f[20] + f[19]*f[21]))*f[67]) + f[65]*(f[19]*((-(f[5]*f[20]) + f[4]*f[21])*f[66] + (f[4]*f[20] + f[5]*f[21])*f[67]) + f[18]*(f[5]*(f[21]*f[66] + f[20]*f[67]) + f[4]*(f[20]*f[66] - f[21]*f[67])))) + f[0]*(f[19]*(-(((f[5]*f[20] - f[4]*f[21])*f[64] + (f[4]*f[20] + f[5]*f[21])*f[65])*f[66]) + (f[5]*(f[21]*f[64] - f[20]*f[65]) + f[4]*(f[20]*f[64] + f[21]*f[65]))*f[67]) + f[18]*(f[65]*((-(f[5]*f[20]) + f[4]*f[21])*f[66] + (f[4]*f[20] + f[5]*f[21])*f[67]) + f[64]*(f[5]*(f[21]*f[66] + f[20]*f[67]) + f[4]*(f[20]*f[66] - f[21]*f[67])))))*J[0]*J[4])/U[1])/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((-2*(f[17]*(f[32]*((f[2]*(-(f[5]*f[20]) + f[4]*f[21]) + f[3]*(f[4]*f[20] + f[5]*f[21]))*f[34] - (f[5]*(f[3]*f[20] + f[2]*f[21]) + f[4]*(f[2]*f[20] - f[3]*f[21]))*f[35]) + f[33]*(f[3]*((f[5]*f[20] - f[4]*f[21])*f[34] + (f[4]*f[20] + f[5]*f[21])*f[35]) + f[2]*(f[5]*(f[21]*f[34] - f[20]*f[35]) + f[4]*(f[20]*f[34] + f[21]*f[35])))) + f[16]*(f[3]*(-(((-(f[5]*f[20]) + f[4]*f[21])*f[32] + (f[4]*f[20] + f[5]*f[21])*f[33])*f[34]) + (f[5]*(f[21]*f[32] + f[20]*f[33]) + f[4]*(f[20]*f[32] - f[21]*f[33]))*f[35]) + f[2]*(f[33]*((f[5]*f[20] - f[4]*f[21])*f[34] + (f[4]*f[20] + f[5]*f[21])*f[35]) + f[32]*(f[5]*(f[21]*f[34] - f[20]*f[35]) + f[4]*(f[20]*f[34] + f[21]*f[35])))))*J[0]*J[1])/U[0] + (6*(f[19]*(f[34]*((f[4]*(-(f[7]*f[22]) + f[6]*f[23]) + f[5]*(f[6]*f[22] + f[7]*f[23]))*f[36] - (f[7]*(f[5]*f[22] + f[4]*f[23]) + f[6]*(f[4]*f[22] - f[5]*f[23]))*f[37]) + f[35]*(f[5]*((f[7]*f[22] - f[6]*f[23])*f[36] + (f[6]*f[22] + f[7]*f[23])*f[37]) + f[4]*(f[7]*(f[23]*f[36] - f[22]*f[37]) + f[6]*(f[22]*f[36] + f[23]*f[37])))) + f[18]*(f[5]*(-(((-(f[7]*f[22]) + f[6]*f[23])*f[34] + (f[6]*f[22] + f[7]*f[23])*f[35])*f[36]) + (f[7]*(f[23]*f[34] + f[22]*f[35]) + f[6]*(f[22]*f[34] - f[23]*f[35]))*f[37]) + f[4]*(f[35]*((f[7]*f[22] - f[6]*f[23])*f[36] + (f[6]*f[22] + f[7]*f[23])*f[37]) + f[34]*(f[7]*(f[23]*f[36] - f[22]*f[37]) + f[6]*(f[22]*f[36] + f[23]*f[37])))))*J[0]*J[1])/(-2*U[0] + U[1]) + (12*(f[21]*(f[36]*((f[6]*(-(f[9]*f[24]) + f[8]*f[25]) + f[7]*(f[8]*f[24] + f[9]*f[25]))*f[38] - (f[9]*(f[7]*f[24] + f[6]*f[25]) + f[8]*(f[6]*f[24] - f[7]*f[25]))*f[39]) + f[37]*(f[7]*((f[9]*f[24] - f[8]*f[25])*f[38] + (f[8]*f[24] + f[9]*f[25])*f[39]) + f[6]*(f[9]*(f[25]*f[38] - f[24]*f[39]) + f[8]*(f[24]*f[38] + f[25]*f[39])))) + f[20]*(f[7]*(-(((-(f[9]*f[24]) + f[8]*f[25])*f[36] + (f[8]*f[24] + f[9]*f[25])*f[37])*f[38]) + (f[9]*(f[25]*f[36] + f[24]*f[37]) + f[8]*(f[24]*f[36] - f[25]*f[37]))*f[39]) + f[6]*(f[37]*((f[9]*f[24] - f[8]*f[25])*f[38] + (f[8]*f[24] + f[9]*f[25])*f[39]) + f[36]*(f[9]*(f[25]*f[38] - f[24]*f[39]) + f[8]*(f[24]*f[38] + f[25]*f[39])))))*J[0]*J[1])/(-3*U[0] + 2*U[1]) + (20*(f[23]*(f[38]*((f[8]*(-(f[11]*f[26]) + f[10]*f[27]) + f[9]*(f[10]*f[26] + f[11]*f[27]))*f[40] - (f[11]*(f[9]*f[26] + f[8]*f[27]) + f[10]*(f[8]*f[26] - f[9]*f[27]))*f[41]) + f[39]*(f[9]*((f[11]*f[26] - f[10]*f[27])*f[40] + (f[10]*f[26] + f[11]*f[27])*f[41]) + f[8]*(f[11]*(f[27]*f[40] - f[26]*f[41]) + f[10]*(f[26]*f[40] + f[27]*f[41])))) + f[22]*(f[9]*(-(((-(f[11]*f[26]) + f[10]*f[27])*f[38] + (f[10]*f[26] + f[11]*f[27])*f[39])*f[40]) + (f[11]*(f[27]*f[38] + f[26]*f[39]) + f[10]*(f[26]*f[38] - f[27]*f[39]))*f[41]) + f[8]*(f[39]*((f[11]*f[26] - f[10]*f[27])*f[40] + (f[10]*f[26] + f[11]*f[27])*f[41]) + f[38]*(f[11]*(f[27]*f[40] - f[26]*f[41]) + f[10]*(f[26]*f[40] + f[27]*f[41])))))*J[0]*J[1])/(-4*U[0] + 3*U[1]) + (30*(f[25]*(f[40]*((f[10]*(-(f[13]*f[28]) + f[12]*f[29]) + f[11]*(f[12]*f[28] + f[13]*f[29]))*f[42] - (f[13]*(f[11]*f[28] + f[10]*f[29]) + f[12]*(f[10]*f[28] - f[11]*f[29]))*f[43]) + f[41]*(f[11]*((f[13]*f[28] - f[12]*f[29])*f[42] + (f[12]*f[28] + f[13]*f[29])*f[43]) + f[10]*(f[13]*(f[29]*f[42] - f[28]*f[43]) + f[12]*(f[28]*f[42] + f[29]*f[43])))) + f[24]*(f[11]*(-(((-(f[13]*f[28]) + f[12]*f[29])*f[40] + (f[12]*f[28] + f[13]*f[29])*f[41])*f[42]) + (f[13]*(f[29]*f[40] + f[28]*f[41]) + f[12]*(f[28]*f[40] - f[29]*f[41]))*f[43]) + f[10]*(f[41]*((f[13]*f[28] - f[12]*f[29])*f[42] + (f[12]*f[28] + f[13]*f[29])*f[43]) + f[40]*(f[13]*(f[29]*f[42] - f[28]*f[43]) + f[12]*(f[28]*f[42] + f[29]*f[43])))))*J[0]*J[1])/(-5*U[0] + 4*U[1]) + (42*(f[27]*(f[42]*((f[12]*(-(f[15]*f[30]) + f[14]*f[31]) + f[13]*(f[14]*f[30] + f[15]*f[31]))*f[44] - (f[15]*(f[13]*f[30] + f[12]*f[31]) + f[14]*(f[12]*f[30] - f[13]*f[31]))*f[45]) + f[43]*(f[13]*((f[15]*f[30] - f[14]*f[31])*f[44] + (f[14]*f[30] + f[15]*f[31])*f[45]) + f[12]*(f[15]*(f[31]*f[44] - f[30]*f[45]) + f[14]*(f[30]*f[44] + f[31]*f[45])))) + f[26]*(f[13]*(-(((-(f[15]*f[30]) + f[14]*f[31])*f[42] + (f[14]*f[30] + f[15]*f[31])*f[43])*f[44]) + (f[15]*(f[31]*f[42] + f[30]*f[43]) + f[14]*(f[30]*f[42] - f[31]*f[43]))*f[45]) + f[12]*(f[43]*((f[15]*f[30] - f[14]*f[31])*f[44] + (f[14]*f[30] + f[15]*f[31])*f[45]) + f[42]*(f[15]*(f[31]*f[44] - f[30]*f[45]) + f[14]*(f[30]*f[44] + f[31]*f[45])))))*J[0]*J[1])/(-6*U[0] + 5*U[1]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((-2*(f[0]*(f[19]*(f[66]*(f[16]*(f[5]*f[68] - f[4]*f[69]) + f[17]*(f[4]*f[68] + f[5]*f[69])) + f[67]*(f[5]*(-(f[17]*f[68]) + f[16]*f[69]) + f[4]*(f[16]*f[68] + f[17]*f[69]))) + f[18]*(-(f[17]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69]))) + f[16]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))) + f[1]*(f[16]*(-(f[66]*(f[18]*(-(f[5]*f[68]) + f[4]*f[69]) + f[19]*(f[4]*f[68] + f[5]*f[69]))) + f[67]*(f[5]*(f[19]*f[68] + f[18]*f[69]) + f[4]*(f[18]*f[68] - f[19]*f[69]))) + f[17]*(f[19]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69])) + f[18]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))))*J[0]*J[4])/U[0] + (6*(f[2]*(f[21]*(f[68]*(f[18]*(f[7]*f[70] - f[6]*f[71]) + f[19]*(f[6]*f[70] + f[7]*f[71])) + f[69]*(f[7]*(-(f[19]*f[70]) + f[18]*f[71]) + f[6]*(f[18]*f[70] + f[19]*f[71]))) + f[20]*(-(f[19]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71]))) + f[18]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))) + f[3]*(f[18]*(-(f[68]*(f[20]*(-(f[7]*f[70]) + f[6]*f[71]) + f[21]*(f[6]*f[70] + f[7]*f[71]))) + f[69]*(f[7]*(f[21]*f[70] + f[20]*f[71]) + f[6]*(f[20]*f[70] - f[21]*f[71]))) + f[19]*(f[21]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71])) + f[20]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))))*J[0]*J[4])/(-2*U[0] + U[1]) + (12*(f[4]*(f[23]*(f[70]*(f[20]*(f[9]*f[72] - f[8]*f[73]) + f[21]*(f[8]*f[72] + f[9]*f[73])) + f[71]*(f[9]*(-(f[21]*f[72]) + f[20]*f[73]) + f[8]*(f[20]*f[72] + f[21]*f[73]))) + f[22]*(-(f[21]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73]))) + f[20]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))) + f[5]*(f[20]*(-(f[70]*(f[22]*(-(f[9]*f[72]) + f[8]*f[73]) + f[23]*(f[8]*f[72] + f[9]*f[73]))) + f[71]*(f[9]*(f[23]*f[72] + f[22]*f[73]) + f[8]*(f[22]*f[72] - f[23]*f[73]))) + f[21]*(f[23]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73])) + f[22]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))))*J[0]*J[4])/(-3*U[0] + 2*U[1]) + (20*(f[6]*(f[25]*(f[72]*(f[22]*(f[11]*f[74] - f[10]*f[75]) + f[23]*(f[10]*f[74] + f[11]*f[75])) + f[73]*(f[11]*(-(f[23]*f[74]) + f[22]*f[75]) + f[10]*(f[22]*f[74] + f[23]*f[75]))) + f[24]*(-(f[23]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75]))) + f[22]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))) + f[7]*(f[22]*(-(f[72]*(f[24]*(-(f[11]*f[74]) + f[10]*f[75]) + f[25]*(f[10]*f[74] + f[11]*f[75]))) + f[73]*(f[11]*(f[25]*f[74] + f[24]*f[75]) + f[10]*(f[24]*f[74] - f[25]*f[75]))) + f[23]*(f[25]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75])) + f[24]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))))*J[0]*J[4])/(-4*U[0] + 3*U[1]) + (30*(f[8]*(f[27]*(f[74]*(f[24]*(f[13]*f[76] - f[12]*f[77]) + f[25]*(f[12]*f[76] + f[13]*f[77])) + f[75]*(f[13]*(-(f[25]*f[76]) + f[24]*f[77]) + f[12]*(f[24]*f[76] + f[25]*f[77]))) + f[26]*(-(f[25]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77]))) + f[24]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))) + f[9]*(f[24]*(-(f[74]*(f[26]*(-(f[13]*f[76]) + f[12]*f[77]) + f[27]*(f[12]*f[76] + f[13]*f[77]))) + f[75]*(f[13]*(f[27]*f[76] + f[26]*f[77]) + f[12]*(f[26]*f[76] - f[27]*f[77]))) + f[25]*(f[27]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77])) + f[26]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))))*J[0]*J[4])/(-5*U[0] + 4*U[1]) + (42*(f[10]*(f[29]*(f[76]*(f[26]*(f[15]*f[78] - f[14]*f[79]) + f[27]*(f[14]*f[78] + f[15]*f[79])) + f[77]*(f[15]*(-(f[27]*f[78]) + f[26]*f[79]) + f[14]*(f[26]*f[78] + f[27]*f[79]))) + f[28]*(-(f[27]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79]))) + f[26]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))) + f[11]*(f[26]*(-(f[76]*(f[28]*(-(f[15]*f[78]) + f[14]*f[79]) + f[29]*(f[14]*f[78] + f[15]*f[79]))) + f[77]*(f[15]*(f[29]*f[78] + f[28]*f[79]) + f[14]*(f[28]*f[78] - f[29]*f[79]))) + f[27]*(f[29]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79])) + f[28]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))))*J[0]*J[4])/(-6*U[0] + 5*U[1]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[1]*(f[16]*(-(f[35]*(f[21]*(f[3]*f[36] + f[2]*f[37]) + f[20]*(f[2]*f[36] - f[3]*f[37]))) + f[34]*(f[2]*(-(f[21]*f[36]) + f[20]*f[37]) + f[3]*(f[20]*f[36] + f[21]*f[37]))) + f[17]*(f[3]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[2]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))) + f[0]*(f[3]*(f[35]*(f[21]*(f[17]*f[36] + f[16]*f[37]) + f[20]*(f[16]*f[36] - f[17]*f[37])) - f[34]*(f[16]*(-(f[21]*f[36]) + f[20]*f[37]) + f[17]*(f[20]*f[36] + f[21]*f[37]))) + f[2]*(f[17]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[16]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))))*J[0]*J[1])/U[1] + (6*(f[3]*(f[18]*(-(f[37]*(f[23]*(f[5]*f[38] + f[4]*f[39]) + f[22]*(f[4]*f[38] - f[5]*f[39]))) + f[36]*(f[4]*(-(f[23]*f[38]) + f[22]*f[39]) + f[5]*(f[22]*f[38] + f[23]*f[39]))) + f[19]*(f[5]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[4]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))) + f[2]*(f[5]*(f[37]*(f[23]*(f[19]*f[38] + f[18]*f[39]) + f[22]*(f[18]*f[38] - f[19]*f[39])) - f[36]*(f[18]*(-(f[23]*f[38]) + f[22]*f[39]) + f[19]*(f[22]*f[38] + f[23]*f[39]))) + f[4]*(f[19]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[18]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))))*J[0]*J[1])/(-U[0] + 2*U[1]) + (12*(f[5]*(f[20]*(-(f[39]*(f[25]*(f[7]*f[40] + f[6]*f[41]) + f[24]*(f[6]*f[40] - f[7]*f[41]))) + f[38]*(f[6]*(-(f[25]*f[40]) + f[24]*f[41]) + f[7]*(f[24]*f[40] + f[25]*f[41]))) + f[21]*(f[7]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[6]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))) + f[4]*(f[7]*(f[39]*(f[25]*(f[21]*f[40] + f[20]*f[41]) + f[24]*(f[20]*f[40] - f[21]*f[41])) - f[38]*(f[20]*(-(f[25]*f[40]) + f[24]*f[41]) + f[21]*(f[24]*f[40] + f[25]*f[41]))) + f[6]*(f[21]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[20]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))))*J[0]*J[1])/(-2*U[0] + 3*U[1]) + (20*(f[7]*(f[22]*(-(f[41]*(f[27]*(f[9]*f[42] + f[8]*f[43]) + f[26]*(f[8]*f[42] - f[9]*f[43]))) + f[40]*(f[8]*(-(f[27]*f[42]) + f[26]*f[43]) + f[9]*(f[26]*f[42] + f[27]*f[43]))) + f[23]*(f[9]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[8]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))) + f[6]*(f[9]*(f[41]*(f[27]*(f[23]*f[42] + f[22]*f[43]) + f[26]*(f[22]*f[42] - f[23]*f[43])) - f[40]*(f[22]*(-(f[27]*f[42]) + f[26]*f[43]) + f[23]*(f[26]*f[42] + f[27]*f[43]))) + f[8]*(f[23]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[22]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))))*J[0]*J[1])/(-3*U[0] + 4*U[1]) + (30*(f[9]*(f[24]*(-(f[43]*(f[29]*(f[11]*f[44] + f[10]*f[45]) + f[28]*(f[10]*f[44] - f[11]*f[45]))) + f[42]*(f[10]*(-(f[29]*f[44]) + f[28]*f[45]) + f[11]*(f[28]*f[44] + f[29]*f[45]))) + f[25]*(f[11]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[10]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))) + f[8]*(f[11]*(f[43]*(f[29]*(f[25]*f[44] + f[24]*f[45]) + f[28]*(f[24]*f[44] - f[25]*f[45])) - f[42]*(f[24]*(-(f[29]*f[44]) + f[28]*f[45]) + f[25]*(f[28]*f[44] + f[29]*f[45]))) + f[10]*(f[25]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[24]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))))*J[0]*J[1])/(-4*U[0] + 5*U[1]) + (42*(f[11]*(f[26]*(-(f[45]*(f[31]*(f[13]*f[46] + f[12]*f[47]) + f[30]*(f[12]*f[46] - f[13]*f[47]))) + f[44]*(f[12]*(-(f[31]*f[46]) + f[30]*f[47]) + f[13]*(f[30]*f[46] + f[31]*f[47]))) + f[27]*(f[13]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[12]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))) + f[10]*(f[13]*(f[45]*(f[31]*(f[27]*f[46] + f[26]*f[47]) + f[30]*(f[26]*f[46] - f[27]*f[47])) - f[44]*(f[26]*(-(f[31]*f[46]) + f[30]*f[47]) + f[27]*(f[30]*f[46] + f[31]*f[47]))) + f[12]*(f[27]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[26]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))))*J[0]*J[1])/(-5*U[0] + 6*U[1]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[1]*(f[64]*((f[18]*(f[5]*f[20] - f[4]*f[21]) + f[19]*(f[4]*f[20] + f[5]*f[21]))*f[66] - (f[5]*(-(f[19]*f[20]) + f[18]*f[21]) + f[4]*(f[18]*f[20] + f[19]*f[21]))*f[67]) + f[65]*(f[19]*((-(f[5]*f[20]) + f[4]*f[21])*f[66] + (f[4]*f[20] + f[5]*f[21])*f[67]) + f[18]*(f[5]*(f[21]*f[66] + f[20]*f[67]) + f[4]*(f[20]*f[66] - f[21]*f[67])))) + f[0]*(f[19]*(-(((f[5]*f[20] - f[4]*f[21])*f[64] + (f[4]*f[20] + f[5]*f[21])*f[65])*f[66]) + (f[5]*(f[21]*f[64] - f[20]*f[65]) + f[4]*(f[20]*f[64] + f[21]*f[65]))*f[67]) + f[18]*(f[65]*((-(f[5]*f[20]) + f[4]*f[21])*f[66] + (f[4]*f[20] + f[5]*f[21])*f[67]) + f[64]*(f[5]*(f[21]*f[66] + f[20]*f[67]) + f[4]*(f[20]*f[66] - f[21]*f[67])))))*J[0]*J[4])/U[1] + (6*(f[3]*(f[66]*((f[20]*(f[7]*f[22] - f[6]*f[23]) + f[21]*(f[6]*f[22] + f[7]*f[23]))*f[68] - (f[7]*(-(f[21]*f[22]) + f[20]*f[23]) + f[6]*(f[20]*f[22] + f[21]*f[23]))*f[69]) + f[67]*(f[21]*((-(f[7]*f[22]) + f[6]*f[23])*f[68] + (f[6]*f[22] + f[7]*f[23])*f[69]) + f[20]*(f[7]*(f[23]*f[68] + f[22]*f[69]) + f[6]*(f[22]*f[68] - f[23]*f[69])))) + f[2]*(f[21]*(-(((f[7]*f[22] - f[6]*f[23])*f[66] + (f[6]*f[22] + f[7]*f[23])*f[67])*f[68]) + (f[7]*(f[23]*f[66] - f[22]*f[67]) + f[6]*(f[22]*f[66] + f[23]*f[67]))*f[69]) + f[20]*(f[67]*((-(f[7]*f[22]) + f[6]*f[23])*f[68] + (f[6]*f[22] + f[7]*f[23])*f[69]) + f[66]*(f[7]*(f[23]*f[68] + f[22]*f[69]) + f[6]*(f[22]*f[68] - f[23]*f[69])))))*J[0]*J[4])/(-U[0] + 2*U[1]) + (12*(f[5]*(f[68]*((f[22]*(f[9]*f[24] - f[8]*f[25]) + f[23]*(f[8]*f[24] + f[9]*f[25]))*f[70] - (f[9]*(-(f[23]*f[24]) + f[22]*f[25]) + f[8]*(f[22]*f[24] + f[23]*f[25]))*f[71]) + f[69]*(f[23]*((-(f[9]*f[24]) + f[8]*f[25])*f[70] + (f[8]*f[24] + f[9]*f[25])*f[71]) + f[22]*(f[9]*(f[25]*f[70] + f[24]*f[71]) + f[8]*(f[24]*f[70] - f[25]*f[71])))) + f[4]*(f[23]*(-(((f[9]*f[24] - f[8]*f[25])*f[68] + (f[8]*f[24] + f[9]*f[25])*f[69])*f[70]) + (f[9]*(f[25]*f[68] - f[24]*f[69]) + f[8]*(f[24]*f[68] + f[25]*f[69]))*f[71]) + f[22]*(f[69]*((-(f[9]*f[24]) + f[8]*f[25])*f[70] + (f[8]*f[24] + f[9]*f[25])*f[71]) + f[68]*(f[9]*(f[25]*f[70] + f[24]*f[71]) + f[8]*(f[24]*f[70] - f[25]*f[71])))))*J[0]*J[4])/(-2*U[0] + 3*U[1]) + (20*(f[7]*(f[70]*((f[24]*(f[11]*f[26] - f[10]*f[27]) + f[25]*(f[10]*f[26] + f[11]*f[27]))*f[72] - (f[11]*(-(f[25]*f[26]) + f[24]*f[27]) + f[10]*(f[24]*f[26] + f[25]*f[27]))*f[73]) + f[71]*(f[25]*((-(f[11]*f[26]) + f[10]*f[27])*f[72] + (f[10]*f[26] + f[11]*f[27])*f[73]) + f[24]*(f[11]*(f[27]*f[72] + f[26]*f[73]) + f[10]*(f[26]*f[72] - f[27]*f[73])))) + f[6]*(f[25]*(-(((f[11]*f[26] - f[10]*f[27])*f[70] + (f[10]*f[26] + f[11]*f[27])*f[71])*f[72]) + (f[11]*(f[27]*f[70] - f[26]*f[71]) + f[10]*(f[26]*f[70] + f[27]*f[71]))*f[73]) + f[24]*(f[71]*((-(f[11]*f[26]) + f[10]*f[27])*f[72] + (f[10]*f[26] + f[11]*f[27])*f[73]) + f[70]*(f[11]*(f[27]*f[72] + f[26]*f[73]) + f[10]*(f[26]*f[72] - f[27]*f[73])))))*J[0]*J[4])/(-3*U[0] + 4*U[1]) + (30*(f[9]*(f[72]*((f[26]*(f[13]*f[28] - f[12]*f[29]) + f[27]*(f[12]*f[28] + f[13]*f[29]))*f[74] - (f[13]*(-(f[27]*f[28]) + f[26]*f[29]) + f[12]*(f[26]*f[28] + f[27]*f[29]))*f[75]) + f[73]*(f[27]*((-(f[13]*f[28]) + f[12]*f[29])*f[74] + (f[12]*f[28] + f[13]*f[29])*f[75]) + f[26]*(f[13]*(f[29]*f[74] + f[28]*f[75]) + f[12]*(f[28]*f[74] - f[29]*f[75])))) + f[8]*(f[27]*(-(((f[13]*f[28] - f[12]*f[29])*f[72] + (f[12]*f[28] + f[13]*f[29])*f[73])*f[74]) + (f[13]*(f[29]*f[72] - f[28]*f[73]) + f[12]*(f[28]*f[72] + f[29]*f[73]))*f[75]) + f[26]*(f[73]*((-(f[13]*f[28]) + f[12]*f[29])*f[74] + (f[12]*f[28] + f[13]*f[29])*f[75]) + f[72]*(f[13]*(f[29]*f[74] + f[28]*f[75]) + f[12]*(f[28]*f[74] - f[29]*f[75])))))*J[0]*J[4])/(-4*U[0] + 5*U[1]) + (42*(f[11]*(f[74]*((f[28]*(f[15]*f[30] - f[14]*f[31]) + f[29]*(f[14]*f[30] + f[15]*f[31]))*f[76] - (f[15]*(-(f[29]*f[30]) + f[28]*f[31]) + f[14]*(f[28]*f[30] + f[29]*f[31]))*f[77]) + f[75]*(f[29]*((-(f[15]*f[30]) + f[14]*f[31])*f[76] + (f[14]*f[30] + f[15]*f[31])*f[77]) + f[28]*(f[15]*(f[31]*f[76] + f[30]*f[77]) + f[14]*(f[30]*f[76] - f[31]*f[77])))) + f[10]*(f[29]*(-(((f[15]*f[30] - f[14]*f[31])*f[74] + (f[14]*f[30] + f[15]*f[31])*f[75])*f[76]) + (f[15]*(f[31]*f[74] - f[30]*f[75]) + f[14]*(f[30]*f[74] + f[31]*f[75]))*f[77]) + f[28]*(f[75]*((-(f[15]*f[30]) + f[14]*f[31])*f[76] + (f[14]*f[30] + f[15]*f[31])*f[77]) + f[74]*(f[15]*(f[31]*f[76] + f[30]*f[77]) + f[14]*(f[30]*f[76] - f[31]*f[77])))))*J[0]*J[4])/(-5*U[0] + 6*U[1]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[17]*(f[32]*((f[2]*(-(f[5]*f[20]) + f[4]*f[21]) + f[3]*(f[4]*f[20] + f[5]*f[21]))*f[34] - (f[5]*(f[3]*f[20] + f[2]*f[21]) + f[4]*(f[2]*f[20] - f[3]*f[21]))*f[35]) + f[33]*(f[3]*((f[5]*f[20] - f[4]*f[21])*f[34] + (f[4]*f[20] + f[5]*f[21])*f[35]) + f[2]*(f[5]*(f[21]*f[34] - f[20]*f[35]) + f[4]*(f[20]*f[34] + f[21]*f[35])))) + f[16]*(f[3]*(-(((-(f[5]*f[20]) + f[4]*f[21])*f[32] + (f[4]*f[20] + f[5]*f[21])*f[33])*f[34]) + (f[5]*(f[21]*f[32] + f[20]*f[33]) + f[4]*(f[20]*f[32] - f[21]*f[33]))*f[35]) + f[2]*(f[33]*((f[5]*f[20] - f[4]*f[21])*f[34] + (f[4]*f[20] + f[5]*f[21])*f[35]) + f[32]*(f[5]*(f[21]*f[34] - f[20]*f[35]) + f[4]*(f[20]*f[34] + f[21]*f[35])))))*J[0]*J[1])/U[1] + (42*(f[27]*(f[42]*((f[12]*(-(f[15]*f[30]) + f[14]*f[31]) + f[13]*(f[14]*f[30] + f[15]*f[31]))*f[44] - (f[15]*(f[13]*f[30] + f[12]*f[31]) + f[14]*(f[12]*f[30] - f[13]*f[31]))*f[45]) + f[43]*(f[13]*((f[15]*f[30] - f[14]*f[31])*f[44] + (f[14]*f[30] + f[15]*f[31])*f[45]) + f[12]*(f[15]*(f[31]*f[44] - f[30]*f[45]) + f[14]*(f[30]*f[44] + f[31]*f[45])))) + f[26]*(f[13]*(-(((-(f[15]*f[30]) + f[14]*f[31])*f[42] + (f[14]*f[30] + f[15]*f[31])*f[43])*f[44]) + (f[15]*(f[31]*f[42] + f[30]*f[43]) + f[14]*(f[30]*f[42] - f[31]*f[43]))*f[45]) + f[12]*(f[43]*((f[15]*f[30] - f[14]*f[31])*f[44] + (f[14]*f[30] + f[15]*f[31])*f[45]) + f[42]*(f[15]*(f[31]*f[44] - f[30]*f[45]) + f[14]*(f[30]*f[44] + f[31]*f[45])))))*J[0]*J[1])/(6*U[1] - 5*U[2]) + (30*(f[25]*(f[40]*((f[10]*(-(f[13]*f[28]) + f[12]*f[29]) + f[11]*(f[12]*f[28] + f[13]*f[29]))*f[42] - (f[13]*(f[11]*f[28] + f[10]*f[29]) + f[12]*(f[10]*f[28] - f[11]*f[29]))*f[43]) + f[41]*(f[11]*((f[13]*f[28] - f[12]*f[29])*f[42] + (f[12]*f[28] + f[13]*f[29])*f[43]) + f[10]*(f[13]*(f[29]*f[42] - f[28]*f[43]) + f[12]*(f[28]*f[42] + f[29]*f[43])))) + f[24]*(f[11]*(-(((-(f[13]*f[28]) + f[12]*f[29])*f[40] + (f[12]*f[28] + f[13]*f[29])*f[41])*f[42]) + (f[13]*(f[29]*f[40] + f[28]*f[41]) + f[12]*(f[28]*f[40] - f[29]*f[41]))*f[43]) + f[10]*(f[41]*((f[13]*f[28] - f[12]*f[29])*f[42] + (f[12]*f[28] + f[13]*f[29])*f[43]) + f[40]*(f[13]*(f[29]*f[42] - f[28]*f[43]) + f[12]*(f[28]*f[42] + f[29]*f[43])))))*J[0]*J[1])/(5*U[1] - 4*U[2]) + (20*(f[23]*(f[38]*((f[8]*(-(f[11]*f[26]) + f[10]*f[27]) + f[9]*(f[10]*f[26] + f[11]*f[27]))*f[40] - (f[11]*(f[9]*f[26] + f[8]*f[27]) + f[10]*(f[8]*f[26] - f[9]*f[27]))*f[41]) + f[39]*(f[9]*((f[11]*f[26] - f[10]*f[27])*f[40] + (f[10]*f[26] + f[11]*f[27])*f[41]) + f[8]*(f[11]*(f[27]*f[40] - f[26]*f[41]) + f[10]*(f[26]*f[40] + f[27]*f[41])))) + f[22]*(f[9]*(-(((-(f[11]*f[26]) + f[10]*f[27])*f[38] + (f[10]*f[26] + f[11]*f[27])*f[39])*f[40]) + (f[11]*(f[27]*f[38] + f[26]*f[39]) + f[10]*(f[26]*f[38] - f[27]*f[39]))*f[41]) + f[8]*(f[39]*((f[11]*f[26] - f[10]*f[27])*f[40] + (f[10]*f[26] + f[11]*f[27])*f[41]) + f[38]*(f[11]*(f[27]*f[40] - f[26]*f[41]) + f[10]*(f[26]*f[40] + f[27]*f[41])))))*J[0]*J[1])/(4*U[1] - 3*U[2]) + (12*(f[21]*(f[36]*((f[6]*(-(f[9]*f[24]) + f[8]*f[25]) + f[7]*(f[8]*f[24] + f[9]*f[25]))*f[38] - (f[9]*(f[7]*f[24] + f[6]*f[25]) + f[8]*(f[6]*f[24] - f[7]*f[25]))*f[39]) + f[37]*(f[7]*((f[9]*f[24] - f[8]*f[25])*f[38] + (f[8]*f[24] + f[9]*f[25])*f[39]) + f[6]*(f[9]*(f[25]*f[38] - f[24]*f[39]) + f[8]*(f[24]*f[38] + f[25]*f[39])))) + f[20]*(f[7]*(-(((-(f[9]*f[24]) + f[8]*f[25])*f[36] + (f[8]*f[24] + f[9]*f[25])*f[37])*f[38]) + (f[9]*(f[25]*f[36] + f[24]*f[37]) + f[8]*(f[24]*f[36] - f[25]*f[37]))*f[39]) + f[6]*(f[37]*((f[9]*f[24] - f[8]*f[25])*f[38] + (f[8]*f[24] + f[9]*f[25])*f[39]) + f[36]*(f[9]*(f[25]*f[38] - f[24]*f[39]) + f[8]*(f[24]*f[38] + f[25]*f[39])))))*J[0]*J[1])/(3*U[1] - 2*U[2]) + (6*(f[19]*(f[34]*((f[4]*(-(f[7]*f[22]) + f[6]*f[23]) + f[5]*(f[6]*f[22] + f[7]*f[23]))*f[36] - (f[7]*(f[5]*f[22] + f[4]*f[23]) + f[6]*(f[4]*f[22] - f[5]*f[23]))*f[37]) + f[35]*(f[5]*((f[7]*f[22] - f[6]*f[23])*f[36] + (f[6]*f[22] + f[7]*f[23])*f[37]) + f[4]*(f[7]*(f[23]*f[36] - f[22]*f[37]) + f[6]*(f[22]*f[36] + f[23]*f[37])))) + f[18]*(f[5]*(-(((-(f[7]*f[22]) + f[6]*f[23])*f[34] + (f[6]*f[22] + f[7]*f[23])*f[35])*f[36]) + (f[7]*(f[23]*f[34] + f[22]*f[35]) + f[6]*(f[22]*f[34] - f[23]*f[35]))*f[37]) + f[4]*(f[35]*((f[7]*f[22] - f[6]*f[23])*f[36] + (f[6]*f[22] + f[7]*f[23])*f[37]) + f[34]*(f[7]*(f[23]*f[36] - f[22]*f[37]) + f[6]*(f[22]*f[36] + f[23]*f[37])))))*J[0]*J[1])/(2*U[1] - U[2]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[33]*(f[48]*((f[18]*(-(f[21]*f[36]) + f[20]*f[37]) + f[19]*(f[20]*f[36] + f[21]*f[37]))*f[50] - (f[21]*(f[19]*f[36] + f[18]*f[37]) + f[20]*(f[18]*f[36] - f[19]*f[37]))*f[51]) + f[49]*(f[19]*((f[21]*f[36] - f[20]*f[37])*f[50] + (f[20]*f[36] + f[21]*f[37])*f[51]) + f[18]*(f[21]*(f[37]*f[50] - f[36]*f[51]) + f[20]*(f[36]*f[50] + f[37]*f[51])))) + f[32]*(f[19]*(-(((-(f[21]*f[36]) + f[20]*f[37])*f[48] + (f[20]*f[36] + f[21]*f[37])*f[49])*f[50]) + (f[21]*(f[37]*f[48] + f[36]*f[49]) + f[20]*(f[36]*f[48] - f[37]*f[49]))*f[51]) + f[18]*(f[49]*((f[21]*f[36] - f[20]*f[37])*f[50] + (f[20]*f[36] + f[21]*f[37])*f[51]) + f[48]*(f[21]*(f[37]*f[50] - f[36]*f[51]) + f[20]*(f[36]*f[50] + f[37]*f[51])))))*J[1]*J[2])/U[1] + (42*(f[43]*(f[58]*((f[28]*(-(f[31]*f[46]) + f[30]*f[47]) + f[29]*(f[30]*f[46] + f[31]*f[47]))*f[60] - (f[31]*(f[29]*f[46] + f[28]*f[47]) + f[30]*(f[28]*f[46] - f[29]*f[47]))*f[61]) + f[59]*(f[29]*((f[31]*f[46] - f[30]*f[47])*f[60] + (f[30]*f[46] + f[31]*f[47])*f[61]) + f[28]*(f[31]*(f[47]*f[60] - f[46]*f[61]) + f[30]*(f[46]*f[60] + f[47]*f[61])))) + f[42]*(f[29]*(-(((-(f[31]*f[46]) + f[30]*f[47])*f[58] + (f[30]*f[46] + f[31]*f[47])*f[59])*f[60]) + (f[31]*(f[47]*f[58] + f[46]*f[59]) + f[30]*(f[46]*f[58] - f[47]*f[59]))*f[61]) + f[28]*(f[59]*((f[31]*f[46] - f[30]*f[47])*f[60] + (f[30]*f[46] + f[31]*f[47])*f[61]) + f[58]*(f[31]*(f[47]*f[60] - f[46]*f[61]) + f[30]*(f[46]*f[60] + f[47]*f[61])))))*J[1]*J[2])/(6*U[1] - 5*U[2]) + (30*(f[41]*(f[56]*((f[26]*(-(f[29]*f[44]) + f[28]*f[45]) + f[27]*(f[28]*f[44] + f[29]*f[45]))*f[58] - (f[29]*(f[27]*f[44] + f[26]*f[45]) + f[28]*(f[26]*f[44] - f[27]*f[45]))*f[59]) + f[57]*(f[27]*((f[29]*f[44] - f[28]*f[45])*f[58] + (f[28]*f[44] + f[29]*f[45])*f[59]) + f[26]*(f[29]*(f[45]*f[58] - f[44]*f[59]) + f[28]*(f[44]*f[58] + f[45]*f[59])))) + f[40]*(f[27]*(-(((-(f[29]*f[44]) + f[28]*f[45])*f[56] + (f[28]*f[44] + f[29]*f[45])*f[57])*f[58]) + (f[29]*(f[45]*f[56] + f[44]*f[57]) + f[28]*(f[44]*f[56] - f[45]*f[57]))*f[59]) + f[26]*(f[57]*((f[29]*f[44] - f[28]*f[45])*f[58] + (f[28]*f[44] + f[29]*f[45])*f[59]) + f[56]*(f[29]*(f[45]*f[58] - f[44]*f[59]) + f[28]*(f[44]*f[58] + f[45]*f[59])))))*J[1]*J[2])/(5*U[1] - 4*U[2]) + (20*(f[39]*(f[54]*((f[24]*(-(f[27]*f[42]) + f[26]*f[43]) + f[25]*(f[26]*f[42] + f[27]*f[43]))*f[56] - (f[27]*(f[25]*f[42] + f[24]*f[43]) + f[26]*(f[24]*f[42] - f[25]*f[43]))*f[57]) + f[55]*(f[25]*((f[27]*f[42] - f[26]*f[43])*f[56] + (f[26]*f[42] + f[27]*f[43])*f[57]) + f[24]*(f[27]*(f[43]*f[56] - f[42]*f[57]) + f[26]*(f[42]*f[56] + f[43]*f[57])))) + f[38]*(f[25]*(-(((-(f[27]*f[42]) + f[26]*f[43])*f[54] + (f[26]*f[42] + f[27]*f[43])*f[55])*f[56]) + (f[27]*(f[43]*f[54] + f[42]*f[55]) + f[26]*(f[42]*f[54] - f[43]*f[55]))*f[57]) + f[24]*(f[55]*((f[27]*f[42] - f[26]*f[43])*f[56] + (f[26]*f[42] + f[27]*f[43])*f[57]) + f[54]*(f[27]*(f[43]*f[56] - f[42]*f[57]) + f[26]*(f[42]*f[56] + f[43]*f[57])))))*J[1]*J[2])/(4*U[1] - 3*U[2]) + (12*(f[37]*(f[52]*((f[22]*(-(f[25]*f[40]) + f[24]*f[41]) + f[23]*(f[24]*f[40] + f[25]*f[41]))*f[54] - (f[25]*(f[23]*f[40] + f[22]*f[41]) + f[24]*(f[22]*f[40] - f[23]*f[41]))*f[55]) + f[53]*(f[23]*((f[25]*f[40] - f[24]*f[41])*f[54] + (f[24]*f[40] + f[25]*f[41])*f[55]) + f[22]*(f[25]*(f[41]*f[54] - f[40]*f[55]) + f[24]*(f[40]*f[54] + f[41]*f[55])))) + f[36]*(f[23]*(-(((-(f[25]*f[40]) + f[24]*f[41])*f[52] + (f[24]*f[40] + f[25]*f[41])*f[53])*f[54]) + (f[25]*(f[41]*f[52] + f[40]*f[53]) + f[24]*(f[40]*f[52] - f[41]*f[53]))*f[55]) + f[22]*(f[53]*((f[25]*f[40] - f[24]*f[41])*f[54] + (f[24]*f[40] + f[25]*f[41])*f[55]) + f[52]*(f[25]*(f[41]*f[54] - f[40]*f[55]) + f[24]*(f[40]*f[54] + f[41]*f[55])))))*J[1]*J[2])/(3*U[1] - 2*U[2]) + (6*(f[35]*(f[50]*((f[20]*(-(f[23]*f[38]) + f[22]*f[39]) + f[21]*(f[22]*f[38] + f[23]*f[39]))*f[52] - (f[23]*(f[21]*f[38] + f[20]*f[39]) + f[22]*(f[20]*f[38] - f[21]*f[39]))*f[53]) + f[51]*(f[21]*((f[23]*f[38] - f[22]*f[39])*f[52] + (f[22]*f[38] + f[23]*f[39])*f[53]) + f[20]*(f[23]*(f[39]*f[52] - f[38]*f[53]) + f[22]*(f[38]*f[52] + f[39]*f[53])))) + f[34]*(f[21]*(-(((-(f[23]*f[38]) + f[22]*f[39])*f[50] + (f[22]*f[38] + f[23]*f[39])*f[51])*f[52]) + (f[23]*(f[39]*f[50] + f[38]*f[51]) + f[22]*(f[38]*f[50] - f[39]*f[51]))*f[53]) + f[20]*(f[51]*((f[23]*f[38] - f[22]*f[39])*f[52] + (f[22]*f[38] + f[23]*f[39])*f[53]) + f[50]*(f[23]*(f[39]*f[52] - f[38]*f[53]) + f[22]*(f[38]*f[52] + f[39]*f[53])))))*J[1]*J[2])/(2*U[1] - U[2]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - ((42*(f[11]*(f[26]*(-(f[45]*(f[31]*(f[13]*f[46] + f[12]*f[47]) + f[30]*(f[12]*f[46] - f[13]*f[47]))) + f[44]*(f[12]*(-(f[31]*f[46]) + f[30]*f[47]) + f[13]*(f[30]*f[46] + f[31]*f[47]))) + f[27]*(f[13]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[12]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))) + f[10]*(f[13]*(f[45]*(f[31]*(f[27]*f[46] + f[26]*f[47]) + f[30]*(f[26]*f[46] - f[27]*f[47])) - f[44]*(f[26]*(-(f[31]*f[46]) + f[30]*f[47]) + f[27]*(f[30]*f[46] + f[31]*f[47]))) + f[12]*(f[27]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[26]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))))*J[0]*J[1])/(5*U[1] - 6*U[2]) + (30*(f[9]*(f[24]*(-(f[43]*(f[29]*(f[11]*f[44] + f[10]*f[45]) + f[28]*(f[10]*f[44] - f[11]*f[45]))) + f[42]*(f[10]*(-(f[29]*f[44]) + f[28]*f[45]) + f[11]*(f[28]*f[44] + f[29]*f[45]))) + f[25]*(f[11]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[10]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))) + f[8]*(f[11]*(f[43]*(f[29]*(f[25]*f[44] + f[24]*f[45]) + f[28]*(f[24]*f[44] - f[25]*f[45])) - f[42]*(f[24]*(-(f[29]*f[44]) + f[28]*f[45]) + f[25]*(f[28]*f[44] + f[29]*f[45]))) + f[10]*(f[25]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[24]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))))*J[0]*J[1])/(4*U[1] - 5*U[2]) + (20*(f[7]*(f[22]*(-(f[41]*(f[27]*(f[9]*f[42] + f[8]*f[43]) + f[26]*(f[8]*f[42] - f[9]*f[43]))) + f[40]*(f[8]*(-(f[27]*f[42]) + f[26]*f[43]) + f[9]*(f[26]*f[42] + f[27]*f[43]))) + f[23]*(f[9]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[8]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))) + f[6]*(f[9]*(f[41]*(f[27]*(f[23]*f[42] + f[22]*f[43]) + f[26]*(f[22]*f[42] - f[23]*f[43])) - f[40]*(f[22]*(-(f[27]*f[42]) + f[26]*f[43]) + f[23]*(f[26]*f[42] + f[27]*f[43]))) + f[8]*(f[23]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[22]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))))*J[0]*J[1])/(3*U[1] - 4*U[2]) + (12*(f[5]*(f[20]*(-(f[39]*(f[25]*(f[7]*f[40] + f[6]*f[41]) + f[24]*(f[6]*f[40] - f[7]*f[41]))) + f[38]*(f[6]*(-(f[25]*f[40]) + f[24]*f[41]) + f[7]*(f[24]*f[40] + f[25]*f[41]))) + f[21]*(f[7]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[6]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))) + f[4]*(f[7]*(f[39]*(f[25]*(f[21]*f[40] + f[20]*f[41]) + f[24]*(f[20]*f[40] - f[21]*f[41])) - f[38]*(f[20]*(-(f[25]*f[40]) + f[24]*f[41]) + f[21]*(f[24]*f[40] + f[25]*f[41]))) + f[6]*(f[21]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[20]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))))*J[0]*J[1])/(2*U[1] - 3*U[2]) + (6*(f[3]*(f[18]*(-(f[37]*(f[23]*(f[5]*f[38] + f[4]*f[39]) + f[22]*(f[4]*f[38] - f[5]*f[39]))) + f[36]*(f[4]*(-(f[23]*f[38]) + f[22]*f[39]) + f[5]*(f[22]*f[38] + f[23]*f[39]))) + f[19]*(f[5]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[4]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))) + f[2]*(f[5]*(f[37]*(f[23]*(f[19]*f[38] + f[18]*f[39]) + f[22]*(f[18]*f[38] - f[19]*f[39])) - f[36]*(f[18]*(-(f[23]*f[38]) + f[22]*f[39]) + f[19]*(f[22]*f[38] + f[23]*f[39]))) + f[4]*(f[19]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[18]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))))*J[0]*J[1])/(U[1] - 2*U[2]) - (2*(f[1]*(f[16]*(-(f[35]*(f[21]*(f[3]*f[36] + f[2]*f[37]) + f[20]*(f[2]*f[36] - f[3]*f[37]))) + f[34]*(f[2]*(-(f[21]*f[36]) + f[20]*f[37]) + f[3]*(f[20]*f[36] + f[21]*f[37]))) + f[17]*(f[3]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[2]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))) + f[0]*(f[3]*(f[35]*(f[21]*(f[17]*f[36] + f[16]*f[37]) + f[20]*(f[16]*f[36] - f[17]*f[37])) - f[34]*(f[16]*(-(f[21]*f[36]) + f[20]*f[37]) + f[17]*(f[20]*f[36] + f[21]*f[37]))) + f[2]*(f[17]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[16]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))))*J[0]*J[1])/U[2])/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((42*(f[27]*(f[42]*(-(f[61]*(f[47]*(f[29]*f[62] + f[28]*f[63]) + f[46]*(f[28]*f[62] - f[29]*f[63]))) + f[60]*(f[28]*(-(f[47]*f[62]) + f[46]*f[63]) + f[29]*(f[46]*f[62] + f[47]*f[63]))) + f[43]*(f[29]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[28]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))) + f[26]*(f[29]*(f[61]*(f[47]*(f[43]*f[62] + f[42]*f[63]) + f[46]*(f[42]*f[62] - f[43]*f[63])) - f[60]*(f[42]*(-(f[47]*f[62]) + f[46]*f[63]) + f[43]*(f[46]*f[62] + f[47]*f[63]))) + f[28]*(f[43]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[42]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))))*J[1]*J[2])/(5*U[1] - 6*U[2]) + (30*(f[25]*(f[40]*(-(f[59]*(f[45]*(f[27]*f[60] + f[26]*f[61]) + f[44]*(f[26]*f[60] - f[27]*f[61]))) + f[58]*(f[26]*(-(f[45]*f[60]) + f[44]*f[61]) + f[27]*(f[44]*f[60] + f[45]*f[61]))) + f[41]*(f[27]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[26]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))) + f[24]*(f[27]*(f[59]*(f[45]*(f[41]*f[60] + f[40]*f[61]) + f[44]*(f[40]*f[60] - f[41]*f[61])) - f[58]*(f[40]*(-(f[45]*f[60]) + f[44]*f[61]) + f[41]*(f[44]*f[60] + f[45]*f[61]))) + f[26]*(f[41]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[40]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))))*J[1]*J[2])/(4*U[1] - 5*U[2]) + (20*(f[23]*(f[38]*(-(f[57]*(f[43]*(f[25]*f[58] + f[24]*f[59]) + f[42]*(f[24]*f[58] - f[25]*f[59]))) + f[56]*(f[24]*(-(f[43]*f[58]) + f[42]*f[59]) + f[25]*(f[42]*f[58] + f[43]*f[59]))) + f[39]*(f[25]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[24]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))) + f[22]*(f[25]*(f[57]*(f[43]*(f[39]*f[58] + f[38]*f[59]) + f[42]*(f[38]*f[58] - f[39]*f[59])) - f[56]*(f[38]*(-(f[43]*f[58]) + f[42]*f[59]) + f[39]*(f[42]*f[58] + f[43]*f[59]))) + f[24]*(f[39]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[38]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))))*J[1]*J[2])/(3*U[1] - 4*U[2]) + (12*(f[21]*(f[36]*(-(f[55]*(f[41]*(f[23]*f[56] + f[22]*f[57]) + f[40]*(f[22]*f[56] - f[23]*f[57]))) + f[54]*(f[22]*(-(f[41]*f[56]) + f[40]*f[57]) + f[23]*(f[40]*f[56] + f[41]*f[57]))) + f[37]*(f[23]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[22]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))) + f[20]*(f[23]*(f[55]*(f[41]*(f[37]*f[56] + f[36]*f[57]) + f[40]*(f[36]*f[56] - f[37]*f[57])) - f[54]*(f[36]*(-(f[41]*f[56]) + f[40]*f[57]) + f[37]*(f[40]*f[56] + f[41]*f[57]))) + f[22]*(f[37]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[36]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))))*J[1]*J[2])/(2*U[1] - 3*U[2]) + (6*(f[19]*(f[34]*(-(f[53]*(f[39]*(f[21]*f[54] + f[20]*f[55]) + f[38]*(f[20]*f[54] - f[21]*f[55]))) + f[52]*(f[20]*(-(f[39]*f[54]) + f[38]*f[55]) + f[21]*(f[38]*f[54] + f[39]*f[55]))) + f[35]*(f[21]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[20]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))) + f[18]*(f[21]*(f[53]*(f[39]*(f[35]*f[54] + f[34]*f[55]) + f[38]*(f[34]*f[54] - f[35]*f[55])) - f[52]*(f[34]*(-(f[39]*f[54]) + f[38]*f[55]) + f[35]*(f[38]*f[54] + f[39]*f[55]))) + f[20]*(f[35]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[34]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))))*J[1]*J[2])/(U[1] - 2*U[2]) - (2*(f[17]*(f[32]*(-(f[51]*(f[37]*(f[19]*f[52] + f[18]*f[53]) + f[36]*(f[18]*f[52] - f[19]*f[53]))) + f[50]*(f[18]*(-(f[37]*f[52]) + f[36]*f[53]) + f[19]*(f[36]*f[52] + f[37]*f[53]))) + f[33]*(f[19]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[18]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))) + f[16]*(f[19]*(f[51]*(f[37]*(f[33]*f[52] + f[32]*f[53]) + f[36]*(f[32]*f[52] - f[33]*f[53])) - f[50]*(f[32]*(-(f[37]*f[52]) + f[36]*f[53]) + f[33]*(f[36]*f[52] + f[37]*f[53]))) + f[18]*(f[33]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[32]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))))*J[1]*J[2])/U[2])/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - ((-2*(f[17]*(f[32]*((f[2]*(-(f[5]*f[20]) + f[4]*f[21]) + f[3]*(f[4]*f[20] + f[5]*f[21]))*f[34] - (f[5]*(f[3]*f[20] + f[2]*f[21]) + f[4]*(f[2]*f[20] - f[3]*f[21]))*f[35]) + f[33]*(f[3]*((f[5]*f[20] - f[4]*f[21])*f[34] + (f[4]*f[20] + f[5]*f[21])*f[35]) + f[2]*(f[5]*(f[21]*f[34] - f[20]*f[35]) + f[4]*(f[20]*f[34] + f[21]*f[35])))) + f[16]*(f[3]*(-(((-(f[5]*f[20]) + f[4]*f[21])*f[32] + (f[4]*f[20] + f[5]*f[21])*f[33])*f[34]) + (f[5]*(f[21]*f[32] + f[20]*f[33]) + f[4]*(f[20]*f[32] - f[21]*f[33]))*f[35]) + f[2]*(f[33]*((f[5]*f[20] - f[4]*f[21])*f[34] + (f[4]*f[20] + f[5]*f[21])*f[35]) + f[32]*(f[5]*(f[21]*f[34] - f[20]*f[35]) + f[4]*(f[20]*f[34] + f[21]*f[35])))))*J[0]*J[1])/U[1] + (6*(f[19]*(f[34]*((f[4]*(-(f[7]*f[22]) + f[6]*f[23]) + f[5]*(f[6]*f[22] + f[7]*f[23]))*f[36] - (f[7]*(f[5]*f[22] + f[4]*f[23]) + f[6]*(f[4]*f[22] - f[5]*f[23]))*f[37]) + f[35]*(f[5]*((f[7]*f[22] - f[6]*f[23])*f[36] + (f[6]*f[22] + f[7]*f[23])*f[37]) + f[4]*(f[7]*(f[23]*f[36] - f[22]*f[37]) + f[6]*(f[22]*f[36] + f[23]*f[37])))) + f[18]*(f[5]*(-(((-(f[7]*f[22]) + f[6]*f[23])*f[34] + (f[6]*f[22] + f[7]*f[23])*f[35])*f[36]) + (f[7]*(f[23]*f[34] + f[22]*f[35]) + f[6]*(f[22]*f[34] - f[23]*f[35]))*f[37]) + f[4]*(f[35]*((f[7]*f[22] - f[6]*f[23])*f[36] + (f[6]*f[22] + f[7]*f[23])*f[37]) + f[34]*(f[7]*(f[23]*f[36] - f[22]*f[37]) + f[6]*(f[22]*f[36] + f[23]*f[37])))))*J[0]*J[1])/(-2*U[1] + U[2]) + (12*(f[21]*(f[36]*((f[6]*(-(f[9]*f[24]) + f[8]*f[25]) + f[7]*(f[8]*f[24] + f[9]*f[25]))*f[38] - (f[9]*(f[7]*f[24] + f[6]*f[25]) + f[8]*(f[6]*f[24] - f[7]*f[25]))*f[39]) + f[37]*(f[7]*((f[9]*f[24] - f[8]*f[25])*f[38] + (f[8]*f[24] + f[9]*f[25])*f[39]) + f[6]*(f[9]*(f[25]*f[38] - f[24]*f[39]) + f[8]*(f[24]*f[38] + f[25]*f[39])))) + f[20]*(f[7]*(-(((-(f[9]*f[24]) + f[8]*f[25])*f[36] + (f[8]*f[24] + f[9]*f[25])*f[37])*f[38]) + (f[9]*(f[25]*f[36] + f[24]*f[37]) + f[8]*(f[24]*f[36] - f[25]*f[37]))*f[39]) + f[6]*(f[37]*((f[9]*f[24] - f[8]*f[25])*f[38] + (f[8]*f[24] + f[9]*f[25])*f[39]) + f[36]*(f[9]*(f[25]*f[38] - f[24]*f[39]) + f[8]*(f[24]*f[38] + f[25]*f[39])))))*J[0]*J[1])/(-3*U[1] + 2*U[2]) + (20*(f[23]*(f[38]*((f[8]*(-(f[11]*f[26]) + f[10]*f[27]) + f[9]*(f[10]*f[26] + f[11]*f[27]))*f[40] - (f[11]*(f[9]*f[26] + f[8]*f[27]) + f[10]*(f[8]*f[26] - f[9]*f[27]))*f[41]) + f[39]*(f[9]*((f[11]*f[26] - f[10]*f[27])*f[40] + (f[10]*f[26] + f[11]*f[27])*f[41]) + f[8]*(f[11]*(f[27]*f[40] - f[26]*f[41]) + f[10]*(f[26]*f[40] + f[27]*f[41])))) + f[22]*(f[9]*(-(((-(f[11]*f[26]) + f[10]*f[27])*f[38] + (f[10]*f[26] + f[11]*f[27])*f[39])*f[40]) + (f[11]*(f[27]*f[38] + f[26]*f[39]) + f[10]*(f[26]*f[38] - f[27]*f[39]))*f[41]) + f[8]*(f[39]*((f[11]*f[26] - f[10]*f[27])*f[40] + (f[10]*f[26] + f[11]*f[27])*f[41]) + f[38]*(f[11]*(f[27]*f[40] - f[26]*f[41]) + f[10]*(f[26]*f[40] + f[27]*f[41])))))*J[0]*J[1])/(-4*U[1] + 3*U[2]) + (30*(f[25]*(f[40]*((f[10]*(-(f[13]*f[28]) + f[12]*f[29]) + f[11]*(f[12]*f[28] + f[13]*f[29]))*f[42] - (f[13]*(f[11]*f[28] + f[10]*f[29]) + f[12]*(f[10]*f[28] - f[11]*f[29]))*f[43]) + f[41]*(f[11]*((f[13]*f[28] - f[12]*f[29])*f[42] + (f[12]*f[28] + f[13]*f[29])*f[43]) + f[10]*(f[13]*(f[29]*f[42] - f[28]*f[43]) + f[12]*(f[28]*f[42] + f[29]*f[43])))) + f[24]*(f[11]*(-(((-(f[13]*f[28]) + f[12]*f[29])*f[40] + (f[12]*f[28] + f[13]*f[29])*f[41])*f[42]) + (f[13]*(f[29]*f[40] + f[28]*f[41]) + f[12]*(f[28]*f[40] - f[29]*f[41]))*f[43]) + f[10]*(f[41]*((f[13]*f[28] - f[12]*f[29])*f[42] + (f[12]*f[28] + f[13]*f[29])*f[43]) + f[40]*(f[13]*(f[29]*f[42] - f[28]*f[43]) + f[12]*(f[28]*f[42] + f[29]*f[43])))))*J[0]*J[1])/(-5*U[1] + 4*U[2]) + (42*(f[27]*(f[42]*((f[12]*(-(f[15]*f[30]) + f[14]*f[31]) + f[13]*(f[14]*f[30] + f[15]*f[31]))*f[44] - (f[15]*(f[13]*f[30] + f[12]*f[31]) + f[14]*(f[12]*f[30] - f[13]*f[31]))*f[45]) + f[43]*(f[13]*((f[15]*f[30] - f[14]*f[31])*f[44] + (f[14]*f[30] + f[15]*f[31])*f[45]) + f[12]*(f[15]*(f[31]*f[44] - f[30]*f[45]) + f[14]*(f[30]*f[44] + f[31]*f[45])))) + f[26]*(f[13]*(-(((-(f[15]*f[30]) + f[14]*f[31])*f[42] + (f[14]*f[30] + f[15]*f[31])*f[43])*f[44]) + (f[15]*(f[31]*f[42] + f[30]*f[43]) + f[14]*(f[30]*f[42] - f[31]*f[43]))*f[45]) + f[12]*(f[43]*((f[15]*f[30] - f[14]*f[31])*f[44] + (f[14]*f[30] + f[15]*f[31])*f[45]) + f[42]*(f[15]*(f[31]*f[44] - f[30]*f[45]) + f[14]*(f[30]*f[44] + f[31]*f[45])))))*J[0]*J[1])/(-6*U[1] + 5*U[2]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((-2*(f[33]*(f[48]*((f[18]*(-(f[21]*f[36]) + f[20]*f[37]) + f[19]*(f[20]*f[36] + f[21]*f[37]))*f[50] - (f[21]*(f[19]*f[36] + f[18]*f[37]) + f[20]*(f[18]*f[36] - f[19]*f[37]))*f[51]) + f[49]*(f[19]*((f[21]*f[36] - f[20]*f[37])*f[50] + (f[20]*f[36] + f[21]*f[37])*f[51]) + f[18]*(f[21]*(f[37]*f[50] - f[36]*f[51]) + f[20]*(f[36]*f[50] + f[37]*f[51])))) + f[32]*(f[19]*(-(((-(f[21]*f[36]) + f[20]*f[37])*f[48] + (f[20]*f[36] + f[21]*f[37])*f[49])*f[50]) + (f[21]*(f[37]*f[48] + f[36]*f[49]) + f[20]*(f[36]*f[48] - f[37]*f[49]))*f[51]) + f[18]*(f[49]*((f[21]*f[36] - f[20]*f[37])*f[50] + (f[20]*f[36] + f[21]*f[37])*f[51]) + f[48]*(f[21]*(f[37]*f[50] - f[36]*f[51]) + f[20]*(f[36]*f[50] + f[37]*f[51])))))*J[1]*J[2])/U[1] + (6*(f[35]*(f[50]*((f[20]*(-(f[23]*f[38]) + f[22]*f[39]) + f[21]*(f[22]*f[38] + f[23]*f[39]))*f[52] - (f[23]*(f[21]*f[38] + f[20]*f[39]) + f[22]*(f[20]*f[38] - f[21]*f[39]))*f[53]) + f[51]*(f[21]*((f[23]*f[38] - f[22]*f[39])*f[52] + (f[22]*f[38] + f[23]*f[39])*f[53]) + f[20]*(f[23]*(f[39]*f[52] - f[38]*f[53]) + f[22]*(f[38]*f[52] + f[39]*f[53])))) + f[34]*(f[21]*(-(((-(f[23]*f[38]) + f[22]*f[39])*f[50] + (f[22]*f[38] + f[23]*f[39])*f[51])*f[52]) + (f[23]*(f[39]*f[50] + f[38]*f[51]) + f[22]*(f[38]*f[50] - f[39]*f[51]))*f[53]) + f[20]*(f[51]*((f[23]*f[38] - f[22]*f[39])*f[52] + (f[22]*f[38] + f[23]*f[39])*f[53]) + f[50]*(f[23]*(f[39]*f[52] - f[38]*f[53]) + f[22]*(f[38]*f[52] + f[39]*f[53])))))*J[1]*J[2])/(-2*U[1] + U[2]) + (12*(f[37]*(f[52]*((f[22]*(-(f[25]*f[40]) + f[24]*f[41]) + f[23]*(f[24]*f[40] + f[25]*f[41]))*f[54] - (f[25]*(f[23]*f[40] + f[22]*f[41]) + f[24]*(f[22]*f[40] - f[23]*f[41]))*f[55]) + f[53]*(f[23]*((f[25]*f[40] - f[24]*f[41])*f[54] + (f[24]*f[40] + f[25]*f[41])*f[55]) + f[22]*(f[25]*(f[41]*f[54] - f[40]*f[55]) + f[24]*(f[40]*f[54] + f[41]*f[55])))) + f[36]*(f[23]*(-(((-(f[25]*f[40]) + f[24]*f[41])*f[52] + (f[24]*f[40] + f[25]*f[41])*f[53])*f[54]) + (f[25]*(f[41]*f[52] + f[40]*f[53]) + f[24]*(f[40]*f[52] - f[41]*f[53]))*f[55]) + f[22]*(f[53]*((f[25]*f[40] - f[24]*f[41])*f[54] + (f[24]*f[40] + f[25]*f[41])*f[55]) + f[52]*(f[25]*(f[41]*f[54] - f[40]*f[55]) + f[24]*(f[40]*f[54] + f[41]*f[55])))))*J[1]*J[2])/(-3*U[1] + 2*U[2]) + (20*(f[39]*(f[54]*((f[24]*(-(f[27]*f[42]) + f[26]*f[43]) + f[25]*(f[26]*f[42] + f[27]*f[43]))*f[56] - (f[27]*(f[25]*f[42] + f[24]*f[43]) + f[26]*(f[24]*f[42] - f[25]*f[43]))*f[57]) + f[55]*(f[25]*((f[27]*f[42] - f[26]*f[43])*f[56] + (f[26]*f[42] + f[27]*f[43])*f[57]) + f[24]*(f[27]*(f[43]*f[56] - f[42]*f[57]) + f[26]*(f[42]*f[56] + f[43]*f[57])))) + f[38]*(f[25]*(-(((-(f[27]*f[42]) + f[26]*f[43])*f[54] + (f[26]*f[42] + f[27]*f[43])*f[55])*f[56]) + (f[27]*(f[43]*f[54] + f[42]*f[55]) + f[26]*(f[42]*f[54] - f[43]*f[55]))*f[57]) + f[24]*(f[55]*((f[27]*f[42] - f[26]*f[43])*f[56] + (f[26]*f[42] + f[27]*f[43])*f[57]) + f[54]*(f[27]*(f[43]*f[56] - f[42]*f[57]) + f[26]*(f[42]*f[56] + f[43]*f[57])))))*J[1]*J[2])/(-4*U[1] + 3*U[2]) + (30*(f[41]*(f[56]*((f[26]*(-(f[29]*f[44]) + f[28]*f[45]) + f[27]*(f[28]*f[44] + f[29]*f[45]))*f[58] - (f[29]*(f[27]*f[44] + f[26]*f[45]) + f[28]*(f[26]*f[44] - f[27]*f[45]))*f[59]) + f[57]*(f[27]*((f[29]*f[44] - f[28]*f[45])*f[58] + (f[28]*f[44] + f[29]*f[45])*f[59]) + f[26]*(f[29]*(f[45]*f[58] - f[44]*f[59]) + f[28]*(f[44]*f[58] + f[45]*f[59])))) + f[40]*(f[27]*(-(((-(f[29]*f[44]) + f[28]*f[45])*f[56] + (f[28]*f[44] + f[29]*f[45])*f[57])*f[58]) + (f[29]*(f[45]*f[56] + f[44]*f[57]) + f[28]*(f[44]*f[56] - f[45]*f[57]))*f[59]) + f[26]*(f[57]*((f[29]*f[44] - f[28]*f[45])*f[58] + (f[28]*f[44] + f[29]*f[45])*f[59]) + f[56]*(f[29]*(f[45]*f[58] - f[44]*f[59]) + f[28]*(f[44]*f[58] + f[45]*f[59])))))*J[1]*J[2])/(-5*U[1] + 4*U[2]) + (42*(f[43]*(f[58]*((f[28]*(-(f[31]*f[46]) + f[30]*f[47]) + f[29]*(f[30]*f[46] + f[31]*f[47]))*f[60] - (f[31]*(f[29]*f[46] + f[28]*f[47]) + f[30]*(f[28]*f[46] - f[29]*f[47]))*f[61]) + f[59]*(f[29]*((f[31]*f[46] - f[30]*f[47])*f[60] + (f[30]*f[46] + f[31]*f[47])*f[61]) + f[28]*(f[31]*(f[47]*f[60] - f[46]*f[61]) + f[30]*(f[46]*f[60] + f[47]*f[61])))) + f[42]*(f[29]*(-(((-(f[31]*f[46]) + f[30]*f[47])*f[58] + (f[30]*f[46] + f[31]*f[47])*f[59])*f[60]) + (f[31]*(f[47]*f[58] + f[46]*f[59]) + f[30]*(f[46]*f[58] - f[47]*f[59]))*f[61]) + f[28]*(f[59]*((f[31]*f[46] - f[30]*f[47])*f[60] + (f[30]*f[46] + f[31]*f[47])*f[61]) + f[58]*(f[31]*(f[47]*f[60] - f[46]*f[61]) + f[30]*(f[46]*f[60] + f[47]*f[61])))))*J[1]*J[2])/(-6*U[1] + 5*U[2]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + ((2*(f[1]*(f[16]*(-(f[35]*(f[21]*(f[3]*f[36] + f[2]*f[37]) + f[20]*(f[2]*f[36] - f[3]*f[37]))) + f[34]*(f[2]*(-(f[21]*f[36]) + f[20]*f[37]) + f[3]*(f[20]*f[36] + f[21]*f[37]))) + f[17]*(f[3]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[2]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))) + f[0]*(f[3]*(f[35]*(f[21]*(f[17]*f[36] + f[16]*f[37]) + f[20]*(f[16]*f[36] - f[17]*f[37])) - f[34]*(f[16]*(-(f[21]*f[36]) + f[20]*f[37]) + f[17]*(f[20]*f[36] + f[21]*f[37]))) + f[2]*(f[17]*(f[34]*(f[21]*f[36] - f[20]*f[37]) + f[35]*(f[20]*f[36] + f[21]*f[37])) + f[16]*(f[21]*(-(f[35]*f[36]) + f[34]*f[37]) + f[20]*(f[34]*f[36] + f[35]*f[37])))))*J[0]*J[1])/U[2] + (6*(f[3]*(f[18]*(-(f[37]*(f[23]*(f[5]*f[38] + f[4]*f[39]) + f[22]*(f[4]*f[38] - f[5]*f[39]))) + f[36]*(f[4]*(-(f[23]*f[38]) + f[22]*f[39]) + f[5]*(f[22]*f[38] + f[23]*f[39]))) + f[19]*(f[5]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[4]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))) + f[2]*(f[5]*(f[37]*(f[23]*(f[19]*f[38] + f[18]*f[39]) + f[22]*(f[18]*f[38] - f[19]*f[39])) - f[36]*(f[18]*(-(f[23]*f[38]) + f[22]*f[39]) + f[19]*(f[22]*f[38] + f[23]*f[39]))) + f[4]*(f[19]*(f[36]*(f[23]*f[38] - f[22]*f[39]) + f[37]*(f[22]*f[38] + f[23]*f[39])) + f[18]*(f[23]*(-(f[37]*f[38]) + f[36]*f[39]) + f[22]*(f[36]*f[38] + f[37]*f[39])))))*J[0]*J[1])/(-U[1] + 2*U[2]) + (12*(f[5]*(f[20]*(-(f[39]*(f[25]*(f[7]*f[40] + f[6]*f[41]) + f[24]*(f[6]*f[40] - f[7]*f[41]))) + f[38]*(f[6]*(-(f[25]*f[40]) + f[24]*f[41]) + f[7]*(f[24]*f[40] + f[25]*f[41]))) + f[21]*(f[7]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[6]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))) + f[4]*(f[7]*(f[39]*(f[25]*(f[21]*f[40] + f[20]*f[41]) + f[24]*(f[20]*f[40] - f[21]*f[41])) - f[38]*(f[20]*(-(f[25]*f[40]) + f[24]*f[41]) + f[21]*(f[24]*f[40] + f[25]*f[41]))) + f[6]*(f[21]*(f[38]*(f[25]*f[40] - f[24]*f[41]) + f[39]*(f[24]*f[40] + f[25]*f[41])) + f[20]*(f[25]*(-(f[39]*f[40]) + f[38]*f[41]) + f[24]*(f[38]*f[40] + f[39]*f[41])))))*J[0]*J[1])/(-2*U[1] + 3*U[2]) + (20*(f[7]*(f[22]*(-(f[41]*(f[27]*(f[9]*f[42] + f[8]*f[43]) + f[26]*(f[8]*f[42] - f[9]*f[43]))) + f[40]*(f[8]*(-(f[27]*f[42]) + f[26]*f[43]) + f[9]*(f[26]*f[42] + f[27]*f[43]))) + f[23]*(f[9]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[8]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))) + f[6]*(f[9]*(f[41]*(f[27]*(f[23]*f[42] + f[22]*f[43]) + f[26]*(f[22]*f[42] - f[23]*f[43])) - f[40]*(f[22]*(-(f[27]*f[42]) + f[26]*f[43]) + f[23]*(f[26]*f[42] + f[27]*f[43]))) + f[8]*(f[23]*(f[40]*(f[27]*f[42] - f[26]*f[43]) + f[41]*(f[26]*f[42] + f[27]*f[43])) + f[22]*(f[27]*(-(f[41]*f[42]) + f[40]*f[43]) + f[26]*(f[40]*f[42] + f[41]*f[43])))))*J[0]*J[1])/(-3*U[1] + 4*U[2]) + (30*(f[9]*(f[24]*(-(f[43]*(f[29]*(f[11]*f[44] + f[10]*f[45]) + f[28]*(f[10]*f[44] - f[11]*f[45]))) + f[42]*(f[10]*(-(f[29]*f[44]) + f[28]*f[45]) + f[11]*(f[28]*f[44] + f[29]*f[45]))) + f[25]*(f[11]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[10]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))) + f[8]*(f[11]*(f[43]*(f[29]*(f[25]*f[44] + f[24]*f[45]) + f[28]*(f[24]*f[44] - f[25]*f[45])) - f[42]*(f[24]*(-(f[29]*f[44]) + f[28]*f[45]) + f[25]*(f[28]*f[44] + f[29]*f[45]))) + f[10]*(f[25]*(f[42]*(f[29]*f[44] - f[28]*f[45]) + f[43]*(f[28]*f[44] + f[29]*f[45])) + f[24]*(f[29]*(-(f[43]*f[44]) + f[42]*f[45]) + f[28]*(f[42]*f[44] + f[43]*f[45])))))*J[0]*J[1])/(-4*U[1] + 5*U[2]) + (42*(f[11]*(f[26]*(-(f[45]*(f[31]*(f[13]*f[46] + f[12]*f[47]) + f[30]*(f[12]*f[46] - f[13]*f[47]))) + f[44]*(f[12]*(-(f[31]*f[46]) + f[30]*f[47]) + f[13]*(f[30]*f[46] + f[31]*f[47]))) + f[27]*(f[13]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[12]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))) + f[10]*(f[13]*(f[45]*(f[31]*(f[27]*f[46] + f[26]*f[47]) + f[30]*(f[26]*f[46] - f[27]*f[47])) - f[44]*(f[26]*(-(f[31]*f[46]) + f[30]*f[47]) + f[27]*(f[30]*f[46] + f[31]*f[47]))) + f[12]*(f[27]*(f[44]*(f[31]*f[46] - f[30]*f[47]) + f[45]*(f[30]*f[46] + f[31]*f[47])) + f[26]*(f[31]*(-(f[45]*f[46]) + f[44]*f[47]) + f[30]*(f[44]*f[46] + f[45]*f[47])))))*J[0]*J[1])/(-5*U[1] + 6*U[2]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[17]*(f[32]*(-(f[51]*(f[37]*(f[19]*f[52] + f[18]*f[53]) + f[36]*(f[18]*f[52] - f[19]*f[53]))) + f[50]*(f[18]*(-(f[37]*f[52]) + f[36]*f[53]) + f[19]*(f[36]*f[52] + f[37]*f[53]))) + f[33]*(f[19]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[18]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))) + f[16]*(f[19]*(f[51]*(f[37]*(f[33]*f[52] + f[32]*f[53]) + f[36]*(f[32]*f[52] - f[33]*f[53])) - f[50]*(f[32]*(-(f[37]*f[52]) + f[36]*f[53]) + f[33]*(f[36]*f[52] + f[37]*f[53]))) + f[18]*(f[33]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[32]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))))*J[1]*J[2])/U[2] + (6*(f[19]*(f[34]*(-(f[53]*(f[39]*(f[21]*f[54] + f[20]*f[55]) + f[38]*(f[20]*f[54] - f[21]*f[55]))) + f[52]*(f[20]*(-(f[39]*f[54]) + f[38]*f[55]) + f[21]*(f[38]*f[54] + f[39]*f[55]))) + f[35]*(f[21]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[20]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))) + f[18]*(f[21]*(f[53]*(f[39]*(f[35]*f[54] + f[34]*f[55]) + f[38]*(f[34]*f[54] - f[35]*f[55])) - f[52]*(f[34]*(-(f[39]*f[54]) + f[38]*f[55]) + f[35]*(f[38]*f[54] + f[39]*f[55]))) + f[20]*(f[35]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[34]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))))*J[1]*J[2])/(-U[1] + 2*U[2]) + (12*(f[21]*(f[36]*(-(f[55]*(f[41]*(f[23]*f[56] + f[22]*f[57]) + f[40]*(f[22]*f[56] - f[23]*f[57]))) + f[54]*(f[22]*(-(f[41]*f[56]) + f[40]*f[57]) + f[23]*(f[40]*f[56] + f[41]*f[57]))) + f[37]*(f[23]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[22]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))) + f[20]*(f[23]*(f[55]*(f[41]*(f[37]*f[56] + f[36]*f[57]) + f[40]*(f[36]*f[56] - f[37]*f[57])) - f[54]*(f[36]*(-(f[41]*f[56]) + f[40]*f[57]) + f[37]*(f[40]*f[56] + f[41]*f[57]))) + f[22]*(f[37]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[36]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))))*J[1]*J[2])/(-2*U[1] + 3*U[2]) + (20*(f[23]*(f[38]*(-(f[57]*(f[43]*(f[25]*f[58] + f[24]*f[59]) + f[42]*(f[24]*f[58] - f[25]*f[59]))) + f[56]*(f[24]*(-(f[43]*f[58]) + f[42]*f[59]) + f[25]*(f[42]*f[58] + f[43]*f[59]))) + f[39]*(f[25]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[24]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))) + f[22]*(f[25]*(f[57]*(f[43]*(f[39]*f[58] + f[38]*f[59]) + f[42]*(f[38]*f[58] - f[39]*f[59])) - f[56]*(f[38]*(-(f[43]*f[58]) + f[42]*f[59]) + f[39]*(f[42]*f[58] + f[43]*f[59]))) + f[24]*(f[39]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[38]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))))*J[1]*J[2])/(-3*U[1] + 4*U[2]) + (30*(f[25]*(f[40]*(-(f[59]*(f[45]*(f[27]*f[60] + f[26]*f[61]) + f[44]*(f[26]*f[60] - f[27]*f[61]))) + f[58]*(f[26]*(-(f[45]*f[60]) + f[44]*f[61]) + f[27]*(f[44]*f[60] + f[45]*f[61]))) + f[41]*(f[27]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[26]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))) + f[24]*(f[27]*(f[59]*(f[45]*(f[41]*f[60] + f[40]*f[61]) + f[44]*(f[40]*f[60] - f[41]*f[61])) - f[58]*(f[40]*(-(f[45]*f[60]) + f[44]*f[61]) + f[41]*(f[44]*f[60] + f[45]*f[61]))) + f[26]*(f[41]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[40]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))))*J[1]*J[2])/(-4*U[1] + 5*U[2]) + (42*(f[27]*(f[42]*(-(f[61]*(f[47]*(f[29]*f[62] + f[28]*f[63]) + f[46]*(f[28]*f[62] - f[29]*f[63]))) + f[60]*(f[28]*(-(f[47]*f[62]) + f[46]*f[63]) + f[29]*(f[46]*f[62] + f[47]*f[63]))) + f[43]*(f[29]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[28]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))) + f[26]*(f[29]*(f[61]*(f[47]*(f[43]*f[62] + f[42]*f[63]) + f[46]*(f[42]*f[62] - f[43]*f[63])) - f[60]*(f[42]*(-(f[47]*f[62]) + f[46]*f[63]) + f[43]*(f[46]*f[62] + f[47]*f[63]))) + f[28]*(f[43]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[42]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))))*J[1]*J[2])/(-5*U[1] + 6*U[2]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + ((2*(f[33]*(f[48]*((f[18]*(-(f[21]*f[36]) + f[20]*f[37]) + f[19]*(f[20]*f[36] + f[21]*f[37]))*f[50] - (f[21]*(f[19]*f[36] + f[18]*f[37]) + f[20]*(f[18]*f[36] - f[19]*f[37]))*f[51]) + f[49]*(f[19]*((f[21]*f[36] - f[20]*f[37])*f[50] + (f[20]*f[36] + f[21]*f[37])*f[51]) + f[18]*(f[21]*(f[37]*f[50] - f[36]*f[51]) + f[20]*(f[36]*f[50] + f[37]*f[51])))) + f[32]*(f[19]*(-(((-(f[21]*f[36]) + f[20]*f[37])*f[48] + (f[20]*f[36] + f[21]*f[37])*f[49])*f[50]) + (f[21]*(f[37]*f[48] + f[36]*f[49]) + f[20]*(f[36]*f[48] - f[37]*f[49]))*f[51]) + f[18]*(f[49]*((f[21]*f[36] - f[20]*f[37])*f[50] + (f[20]*f[36] + f[21]*f[37])*f[51]) + f[48]*(f[21]*(f[37]*f[50] - f[36]*f[51]) + f[20]*(f[36]*f[50] + f[37]*f[51])))))*J[1]*J[2])/U[2] + (42*(f[43]*(f[58]*((f[28]*(-(f[31]*f[46]) + f[30]*f[47]) + f[29]*(f[30]*f[46] + f[31]*f[47]))*f[60] - (f[31]*(f[29]*f[46] + f[28]*f[47]) + f[30]*(f[28]*f[46] - f[29]*f[47]))*f[61]) + f[59]*(f[29]*((f[31]*f[46] - f[30]*f[47])*f[60] + (f[30]*f[46] + f[31]*f[47])*f[61]) + f[28]*(f[31]*(f[47]*f[60] - f[46]*f[61]) + f[30]*(f[46]*f[60] + f[47]*f[61])))) + f[42]*(f[29]*(-(((-(f[31]*f[46]) + f[30]*f[47])*f[58] + (f[30]*f[46] + f[31]*f[47])*f[59])*f[60]) + (f[31]*(f[47]*f[58] + f[46]*f[59]) + f[30]*(f[46]*f[58] - f[47]*f[59]))*f[61]) + f[28]*(f[59]*((f[31]*f[46] - f[30]*f[47])*f[60] + (f[30]*f[46] + f[31]*f[47])*f[61]) + f[58]*(f[31]*(f[47]*f[60] - f[46]*f[61]) + f[30]*(f[46]*f[60] + f[47]*f[61])))))*J[1]*J[2])/(6*U[2] - 5*U[3]) + (30*(f[41]*(f[56]*((f[26]*(-(f[29]*f[44]) + f[28]*f[45]) + f[27]*(f[28]*f[44] + f[29]*f[45]))*f[58] - (f[29]*(f[27]*f[44] + f[26]*f[45]) + f[28]*(f[26]*f[44] - f[27]*f[45]))*f[59]) + f[57]*(f[27]*((f[29]*f[44] - f[28]*f[45])*f[58] + (f[28]*f[44] + f[29]*f[45])*f[59]) + f[26]*(f[29]*(f[45]*f[58] - f[44]*f[59]) + f[28]*(f[44]*f[58] + f[45]*f[59])))) + f[40]*(f[27]*(-(((-(f[29]*f[44]) + f[28]*f[45])*f[56] + (f[28]*f[44] + f[29]*f[45])*f[57])*f[58]) + (f[29]*(f[45]*f[56] + f[44]*f[57]) + f[28]*(f[44]*f[56] - f[45]*f[57]))*f[59]) + f[26]*(f[57]*((f[29]*f[44] - f[28]*f[45])*f[58] + (f[28]*f[44] + f[29]*f[45])*f[59]) + f[56]*(f[29]*(f[45]*f[58] - f[44]*f[59]) + f[28]*(f[44]*f[58] + f[45]*f[59])))))*J[1]*J[2])/(5*U[2] - 4*U[3]) + (20*(f[39]*(f[54]*((f[24]*(-(f[27]*f[42]) + f[26]*f[43]) + f[25]*(f[26]*f[42] + f[27]*f[43]))*f[56] - (f[27]*(f[25]*f[42] + f[24]*f[43]) + f[26]*(f[24]*f[42] - f[25]*f[43]))*f[57]) + f[55]*(f[25]*((f[27]*f[42] - f[26]*f[43])*f[56] + (f[26]*f[42] + f[27]*f[43])*f[57]) + f[24]*(f[27]*(f[43]*f[56] - f[42]*f[57]) + f[26]*(f[42]*f[56] + f[43]*f[57])))) + f[38]*(f[25]*(-(((-(f[27]*f[42]) + f[26]*f[43])*f[54] + (f[26]*f[42] + f[27]*f[43])*f[55])*f[56]) + (f[27]*(f[43]*f[54] + f[42]*f[55]) + f[26]*(f[42]*f[54] - f[43]*f[55]))*f[57]) + f[24]*(f[55]*((f[27]*f[42] - f[26]*f[43])*f[56] + (f[26]*f[42] + f[27]*f[43])*f[57]) + f[54]*(f[27]*(f[43]*f[56] - f[42]*f[57]) + f[26]*(f[42]*f[56] + f[43]*f[57])))))*J[1]*J[2])/(4*U[2] - 3*U[3]) + (12*(f[37]*(f[52]*((f[22]*(-(f[25]*f[40]) + f[24]*f[41]) + f[23]*(f[24]*f[40] + f[25]*f[41]))*f[54] - (f[25]*(f[23]*f[40] + f[22]*f[41]) + f[24]*(f[22]*f[40] - f[23]*f[41]))*f[55]) + f[53]*(f[23]*((f[25]*f[40] - f[24]*f[41])*f[54] + (f[24]*f[40] + f[25]*f[41])*f[55]) + f[22]*(f[25]*(f[41]*f[54] - f[40]*f[55]) + f[24]*(f[40]*f[54] + f[41]*f[55])))) + f[36]*(f[23]*(-(((-(f[25]*f[40]) + f[24]*f[41])*f[52] + (f[24]*f[40] + f[25]*f[41])*f[53])*f[54]) + (f[25]*(f[41]*f[52] + f[40]*f[53]) + f[24]*(f[40]*f[52] - f[41]*f[53]))*f[55]) + f[22]*(f[53]*((f[25]*f[40] - f[24]*f[41])*f[54] + (f[24]*f[40] + f[25]*f[41])*f[55]) + f[52]*(f[25]*(f[41]*f[54] - f[40]*f[55]) + f[24]*(f[40]*f[54] + f[41]*f[55])))))*J[1]*J[2])/(3*U[2] - 2*U[3]) + (6*(f[35]*(f[50]*((f[20]*(-(f[23]*f[38]) + f[22]*f[39]) + f[21]*(f[22]*f[38] + f[23]*f[39]))*f[52] - (f[23]*(f[21]*f[38] + f[20]*f[39]) + f[22]*(f[20]*f[38] - f[21]*f[39]))*f[53]) + f[51]*(f[21]*((f[23]*f[38] - f[22]*f[39])*f[52] + (f[22]*f[38] + f[23]*f[39])*f[53]) + f[20]*(f[23]*(f[39]*f[52] - f[38]*f[53]) + f[22]*(f[38]*f[52] + f[39]*f[53])))) + f[34]*(f[21]*(-(((-(f[23]*f[38]) + f[22]*f[39])*f[50] + (f[22]*f[38] + f[23]*f[39])*f[51])*f[52]) + (f[23]*(f[39]*f[50] + f[38]*f[51]) + f[22]*(f[38]*f[50] - f[39]*f[51]))*f[53]) + f[20]*(f[51]*((f[23]*f[38] - f[22]*f[39])*f[52] + (f[22]*f[38] + f[23]*f[39])*f[53]) + f[50]*(f[23]*(f[39]*f[52] - f[38]*f[53]) + f[22]*(f[38]*f[52] + f[39]*f[53])))))*J[1]*J[2])/(2*U[2] - U[3]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + ((2*(f[49]*(f[64]*((f[34]*(-(f[37]*f[52]) + f[36]*f[53]) + f[35]*(f[36]*f[52] + f[37]*f[53]))*f[66] - (f[37]*(f[35]*f[52] + f[34]*f[53]) + f[36]*(f[34]*f[52] - f[35]*f[53]))*f[67]) + f[65]*(f[35]*((f[37]*f[52] - f[36]*f[53])*f[66] + (f[36]*f[52] + f[37]*f[53])*f[67]) + f[34]*(f[37]*(f[53]*f[66] - f[52]*f[67]) + f[36]*(f[52]*f[66] + f[53]*f[67])))) + f[48]*(f[35]*(-(((-(f[37]*f[52]) + f[36]*f[53])*f[64] + (f[36]*f[52] + f[37]*f[53])*f[65])*f[66]) + (f[37]*(f[53]*f[64] + f[52]*f[65]) + f[36]*(f[52]*f[64] - f[53]*f[65]))*f[67]) + f[34]*(f[65]*((f[37]*f[52] - f[36]*f[53])*f[66] + (f[36]*f[52] + f[37]*f[53])*f[67]) + f[64]*(f[37]*(f[53]*f[66] - f[52]*f[67]) + f[36]*(f[52]*f[66] + f[53]*f[67])))))*J[2]*J[3])/U[2] + (42*(f[59]*(f[74]*((f[44]*(-(f[47]*f[62]) + f[46]*f[63]) + f[45]*(f[46]*f[62] + f[47]*f[63]))*f[76] - (f[47]*(f[45]*f[62] + f[44]*f[63]) + f[46]*(f[44]*f[62] - f[45]*f[63]))*f[77]) + f[75]*(f[45]*((f[47]*f[62] - f[46]*f[63])*f[76] + (f[46]*f[62] + f[47]*f[63])*f[77]) + f[44]*(f[47]*(f[63]*f[76] - f[62]*f[77]) + f[46]*(f[62]*f[76] + f[63]*f[77])))) + f[58]*(f[45]*(-(((-(f[47]*f[62]) + f[46]*f[63])*f[74] + (f[46]*f[62] + f[47]*f[63])*f[75])*f[76]) + (f[47]*(f[63]*f[74] + f[62]*f[75]) + f[46]*(f[62]*f[74] - f[63]*f[75]))*f[77]) + f[44]*(f[75]*((f[47]*f[62] - f[46]*f[63])*f[76] + (f[46]*f[62] + f[47]*f[63])*f[77]) + f[74]*(f[47]*(f[63]*f[76] - f[62]*f[77]) + f[46]*(f[62]*f[76] + f[63]*f[77])))))*J[2]*J[3])/(6*U[2] - 5*U[3]) + (30*(f[57]*(f[72]*((f[42]*(-(f[45]*f[60]) + f[44]*f[61]) + f[43]*(f[44]*f[60] + f[45]*f[61]))*f[74] - (f[45]*(f[43]*f[60] + f[42]*f[61]) + f[44]*(f[42]*f[60] - f[43]*f[61]))*f[75]) + f[73]*(f[43]*((f[45]*f[60] - f[44]*f[61])*f[74] + (f[44]*f[60] + f[45]*f[61])*f[75]) + f[42]*(f[45]*(f[61]*f[74] - f[60]*f[75]) + f[44]*(f[60]*f[74] + f[61]*f[75])))) + f[56]*(f[43]*(-(((-(f[45]*f[60]) + f[44]*f[61])*f[72] + (f[44]*f[60] + f[45]*f[61])*f[73])*f[74]) + (f[45]*(f[61]*f[72] + f[60]*f[73]) + f[44]*(f[60]*f[72] - f[61]*f[73]))*f[75]) + f[42]*(f[73]*((f[45]*f[60] - f[44]*f[61])*f[74] + (f[44]*f[60] + f[45]*f[61])*f[75]) + f[72]*(f[45]*(f[61]*f[74] - f[60]*f[75]) + f[44]*(f[60]*f[74] + f[61]*f[75])))))*J[2]*J[3])/(5*U[2] - 4*U[3]) + (20*(f[55]*(f[70]*((f[40]*(-(f[43]*f[58]) + f[42]*f[59]) + f[41]*(f[42]*f[58] + f[43]*f[59]))*f[72] - (f[43]*(f[41]*f[58] + f[40]*f[59]) + f[42]*(f[40]*f[58] - f[41]*f[59]))*f[73]) + f[71]*(f[41]*((f[43]*f[58] - f[42]*f[59])*f[72] + (f[42]*f[58] + f[43]*f[59])*f[73]) + f[40]*(f[43]*(f[59]*f[72] - f[58]*f[73]) + f[42]*(f[58]*f[72] + f[59]*f[73])))) + f[54]*(f[41]*(-(((-(f[43]*f[58]) + f[42]*f[59])*f[70] + (f[42]*f[58] + f[43]*f[59])*f[71])*f[72]) + (f[43]*(f[59]*f[70] + f[58]*f[71]) + f[42]*(f[58]*f[70] - f[59]*f[71]))*f[73]) + f[40]*(f[71]*((f[43]*f[58] - f[42]*f[59])*f[72] + (f[42]*f[58] + f[43]*f[59])*f[73]) + f[70]*(f[43]*(f[59]*f[72] - f[58]*f[73]) + f[42]*(f[58]*f[72] + f[59]*f[73])))))*J[2]*J[3])/(4*U[2] - 3*U[3]) + (12*(f[53]*(f[68]*((f[38]*(-(f[41]*f[56]) + f[40]*f[57]) + f[39]*(f[40]*f[56] + f[41]*f[57]))*f[70] - (f[41]*(f[39]*f[56] + f[38]*f[57]) + f[40]*(f[38]*f[56] - f[39]*f[57]))*f[71]) + f[69]*(f[39]*((f[41]*f[56] - f[40]*f[57])*f[70] + (f[40]*f[56] + f[41]*f[57])*f[71]) + f[38]*(f[41]*(f[57]*f[70] - f[56]*f[71]) + f[40]*(f[56]*f[70] + f[57]*f[71])))) + f[52]*(f[39]*(-(((-(f[41]*f[56]) + f[40]*f[57])*f[68] + (f[40]*f[56] + f[41]*f[57])*f[69])*f[70]) + (f[41]*(f[57]*f[68] + f[56]*f[69]) + f[40]*(f[56]*f[68] - f[57]*f[69]))*f[71]) + f[38]*(f[69]*((f[41]*f[56] - f[40]*f[57])*f[70] + (f[40]*f[56] + f[41]*f[57])*f[71]) + f[68]*(f[41]*(f[57]*f[70] - f[56]*f[71]) + f[40]*(f[56]*f[70] + f[57]*f[71])))))*J[2]*J[3])/(3*U[2] - 2*U[3]) + (6*(f[51]*(f[66]*((f[36]*(-(f[39]*f[54]) + f[38]*f[55]) + f[37]*(f[38]*f[54] + f[39]*f[55]))*f[68] - (f[39]*(f[37]*f[54] + f[36]*f[55]) + f[38]*(f[36]*f[54] - f[37]*f[55]))*f[69]) + f[67]*(f[37]*((f[39]*f[54] - f[38]*f[55])*f[68] + (f[38]*f[54] + f[39]*f[55])*f[69]) + f[36]*(f[39]*(f[55]*f[68] - f[54]*f[69]) + f[38]*(f[54]*f[68] + f[55]*f[69])))) + f[50]*(f[37]*(-(((-(f[39]*f[54]) + f[38]*f[55])*f[66] + (f[38]*f[54] + f[39]*f[55])*f[67])*f[68]) + (f[39]*(f[55]*f[66] + f[54]*f[67]) + f[38]*(f[54]*f[66] - f[55]*f[67]))*f[69]) + f[36]*(f[67]*((f[39]*f[54] - f[38]*f[55])*f[68] + (f[38]*f[54] + f[39]*f[55])*f[69]) + f[66]*(f[39]*(f[55]*f[68] - f[54]*f[69]) + f[38]*(f[54]*f[68] + f[55]*f[69])))))*J[2]*J[3])/(2*U[2] - U[3]))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) - ((42*(f[27]*(f[42]*(-(f[61]*(f[47]*(f[29]*f[62] + f[28]*f[63]) + f[46]*(f[28]*f[62] - f[29]*f[63]))) + f[60]*(f[28]*(-(f[47]*f[62]) + f[46]*f[63]) + f[29]*(f[46]*f[62] + f[47]*f[63]))) + f[43]*(f[29]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[28]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))) + f[26]*(f[29]*(f[61]*(f[47]*(f[43]*f[62] + f[42]*f[63]) + f[46]*(f[42]*f[62] - f[43]*f[63])) - f[60]*(f[42]*(-(f[47]*f[62]) + f[46]*f[63]) + f[43]*(f[46]*f[62] + f[47]*f[63]))) + f[28]*(f[43]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[42]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))))*J[1]*J[2])/(5*U[2] - 6*U[3]) + (30*(f[25]*(f[40]*(-(f[59]*(f[45]*(f[27]*f[60] + f[26]*f[61]) + f[44]*(f[26]*f[60] - f[27]*f[61]))) + f[58]*(f[26]*(-(f[45]*f[60]) + f[44]*f[61]) + f[27]*(f[44]*f[60] + f[45]*f[61]))) + f[41]*(f[27]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[26]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))) + f[24]*(f[27]*(f[59]*(f[45]*(f[41]*f[60] + f[40]*f[61]) + f[44]*(f[40]*f[60] - f[41]*f[61])) - f[58]*(f[40]*(-(f[45]*f[60]) + f[44]*f[61]) + f[41]*(f[44]*f[60] + f[45]*f[61]))) + f[26]*(f[41]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[40]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))))*J[1]*J[2])/(4*U[2] - 5*U[3]) + (20*(f[23]*(f[38]*(-(f[57]*(f[43]*(f[25]*f[58] + f[24]*f[59]) + f[42]*(f[24]*f[58] - f[25]*f[59]))) + f[56]*(f[24]*(-(f[43]*f[58]) + f[42]*f[59]) + f[25]*(f[42]*f[58] + f[43]*f[59]))) + f[39]*(f[25]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[24]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))) + f[22]*(f[25]*(f[57]*(f[43]*(f[39]*f[58] + f[38]*f[59]) + f[42]*(f[38]*f[58] - f[39]*f[59])) - f[56]*(f[38]*(-(f[43]*f[58]) + f[42]*f[59]) + f[39]*(f[42]*f[58] + f[43]*f[59]))) + f[24]*(f[39]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[38]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))))*J[1]*J[2])/(3*U[2] - 4*U[3]) + (12*(f[21]*(f[36]*(-(f[55]*(f[41]*(f[23]*f[56] + f[22]*f[57]) + f[40]*(f[22]*f[56] - f[23]*f[57]))) + f[54]*(f[22]*(-(f[41]*f[56]) + f[40]*f[57]) + f[23]*(f[40]*f[56] + f[41]*f[57]))) + f[37]*(f[23]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[22]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))) + f[20]*(f[23]*(f[55]*(f[41]*(f[37]*f[56] + f[36]*f[57]) + f[40]*(f[36]*f[56] - f[37]*f[57])) - f[54]*(f[36]*(-(f[41]*f[56]) + f[40]*f[57]) + f[37]*(f[40]*f[56] + f[41]*f[57]))) + f[22]*(f[37]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[36]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))))*J[1]*J[2])/(2*U[2] - 3*U[3]) + (6*(f[19]*(f[34]*(-(f[53]*(f[39]*(f[21]*f[54] + f[20]*f[55]) + f[38]*(f[20]*f[54] - f[21]*f[55]))) + f[52]*(f[20]*(-(f[39]*f[54]) + f[38]*f[55]) + f[21]*(f[38]*f[54] + f[39]*f[55]))) + f[35]*(f[21]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[20]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))) + f[18]*(f[21]*(f[53]*(f[39]*(f[35]*f[54] + f[34]*f[55]) + f[38]*(f[34]*f[54] - f[35]*f[55])) - f[52]*(f[34]*(-(f[39]*f[54]) + f[38]*f[55]) + f[35]*(f[38]*f[54] + f[39]*f[55]))) + f[20]*(f[35]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[34]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))))*J[1]*J[2])/(U[2] - 2*U[3]) - (2*(f[17]*(f[32]*(-(f[51]*(f[37]*(f[19]*f[52] + f[18]*f[53]) + f[36]*(f[18]*f[52] - f[19]*f[53]))) + f[50]*(f[18]*(-(f[37]*f[52]) + f[36]*f[53]) + f[19]*(f[36]*f[52] + f[37]*f[53]))) + f[33]*(f[19]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[18]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))) + f[16]*(f[19]*(f[51]*(f[37]*(f[33]*f[52] + f[32]*f[53]) + f[36]*(f[32]*f[52] - f[33]*f[53])) - f[50]*(f[32]*(-(f[37]*f[52]) + f[36]*f[53]) + f[33]*(f[36]*f[52] + f[37]*f[53]))) + f[18]*(f[33]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[32]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))))*J[1]*J[2])/U[3])/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - ((42*(f[43]*(f[58]*(-(f[77]*(f[63]*(f[45]*f[78] + f[44]*f[79]) + f[62]*(f[44]*f[78] - f[45]*f[79]))) + f[76]*(f[44]*(-(f[63]*f[78]) + f[62]*f[79]) + f[45]*(f[62]*f[78] + f[63]*f[79]))) + f[59]*(f[45]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[44]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))) + f[42]*(f[45]*(f[77]*(f[63]*(f[59]*f[78] + f[58]*f[79]) + f[62]*(f[58]*f[78] - f[59]*f[79])) - f[76]*(f[58]*(-(f[63]*f[78]) + f[62]*f[79]) + f[59]*(f[62]*f[78] + f[63]*f[79]))) + f[44]*(f[59]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[58]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))))*J[2]*J[3])/(5*U[2] - 6*U[3]) + (30*(f[41]*(f[56]*(-(f[75]*(f[61]*(f[43]*f[76] + f[42]*f[77]) + f[60]*(f[42]*f[76] - f[43]*f[77]))) + f[74]*(f[42]*(-(f[61]*f[76]) + f[60]*f[77]) + f[43]*(f[60]*f[76] + f[61]*f[77]))) + f[57]*(f[43]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[42]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))) + f[40]*(f[43]*(f[75]*(f[61]*(f[57]*f[76] + f[56]*f[77]) + f[60]*(f[56]*f[76] - f[57]*f[77])) - f[74]*(f[56]*(-(f[61]*f[76]) + f[60]*f[77]) + f[57]*(f[60]*f[76] + f[61]*f[77]))) + f[42]*(f[57]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[56]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))))*J[2]*J[3])/(4*U[2] - 5*U[3]) + (20*(f[39]*(f[54]*(-(f[73]*(f[59]*(f[41]*f[74] + f[40]*f[75]) + f[58]*(f[40]*f[74] - f[41]*f[75]))) + f[72]*(f[40]*(-(f[59]*f[74]) + f[58]*f[75]) + f[41]*(f[58]*f[74] + f[59]*f[75]))) + f[55]*(f[41]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[40]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))) + f[38]*(f[41]*(f[73]*(f[59]*(f[55]*f[74] + f[54]*f[75]) + f[58]*(f[54]*f[74] - f[55]*f[75])) - f[72]*(f[54]*(-(f[59]*f[74]) + f[58]*f[75]) + f[55]*(f[58]*f[74] + f[59]*f[75]))) + f[40]*(f[55]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[54]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))))*J[2]*J[3])/(3*U[2] - 4*U[3]) + (12*(f[37]*(f[52]*(-(f[71]*(f[57]*(f[39]*f[72] + f[38]*f[73]) + f[56]*(f[38]*f[72] - f[39]*f[73]))) + f[70]*(f[38]*(-(f[57]*f[72]) + f[56]*f[73]) + f[39]*(f[56]*f[72] + f[57]*f[73]))) + f[53]*(f[39]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[38]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))) + f[36]*(f[39]*(f[71]*(f[57]*(f[53]*f[72] + f[52]*f[73]) + f[56]*(f[52]*f[72] - f[53]*f[73])) - f[70]*(f[52]*(-(f[57]*f[72]) + f[56]*f[73]) + f[53]*(f[56]*f[72] + f[57]*f[73]))) + f[38]*(f[53]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[52]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))))*J[2]*J[3])/(2*U[2] - 3*U[3]) + (6*(f[35]*(f[50]*(-(f[69]*(f[55]*(f[37]*f[70] + f[36]*f[71]) + f[54]*(f[36]*f[70] - f[37]*f[71]))) + f[68]*(f[36]*(-(f[55]*f[70]) + f[54]*f[71]) + f[37]*(f[54]*f[70] + f[55]*f[71]))) + f[51]*(f[37]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[36]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))) + f[34]*(f[37]*(f[69]*(f[55]*(f[51]*f[70] + f[50]*f[71]) + f[54]*(f[50]*f[70] - f[51]*f[71])) - f[68]*(f[50]*(-(f[55]*f[70]) + f[54]*f[71]) + f[51]*(f[54]*f[70] + f[55]*f[71]))) + f[36]*(f[51]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[50]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))))*J[2]*J[3])/(U[2] - 2*U[3]) - (2*(f[33]*(f[48]*(-(f[67]*(f[53]*(f[35]*f[68] + f[34]*f[69]) + f[52]*(f[34]*f[68] - f[35]*f[69]))) + f[66]*(f[34]*(-(f[53]*f[68]) + f[52]*f[69]) + f[35]*(f[52]*f[68] + f[53]*f[69]))) + f[49]*(f[35]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[34]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))) + f[32]*(f[35]*(f[67]*(f[53]*(f[49]*f[68] + f[48]*f[69]) + f[52]*(f[48]*f[68] - f[49]*f[69])) - f[66]*(f[48]*(-(f[53]*f[68]) + f[52]*f[69]) + f[49]*(f[52]*f[68] + f[53]*f[69]))) + f[34]*(f[49]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[48]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))))*J[2]*J[3])/U[3])/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) - ((-2*(f[33]*(f[48]*((f[18]*(-(f[21]*f[36]) + f[20]*f[37]) + f[19]*(f[20]*f[36] + f[21]*f[37]))*f[50] - (f[21]*(f[19]*f[36] + f[18]*f[37]) + f[20]*(f[18]*f[36] - f[19]*f[37]))*f[51]) + f[49]*(f[19]*((f[21]*f[36] - f[20]*f[37])*f[50] + (f[20]*f[36] + f[21]*f[37])*f[51]) + f[18]*(f[21]*(f[37]*f[50] - f[36]*f[51]) + f[20]*(f[36]*f[50] + f[37]*f[51])))) + f[32]*(f[19]*(-(((-(f[21]*f[36]) + f[20]*f[37])*f[48] + (f[20]*f[36] + f[21]*f[37])*f[49])*f[50]) + (f[21]*(f[37]*f[48] + f[36]*f[49]) + f[20]*(f[36]*f[48] - f[37]*f[49]))*f[51]) + f[18]*(f[49]*((f[21]*f[36] - f[20]*f[37])*f[50] + (f[20]*f[36] + f[21]*f[37])*f[51]) + f[48]*(f[21]*(f[37]*f[50] - f[36]*f[51]) + f[20]*(f[36]*f[50] + f[37]*f[51])))))*J[1]*J[2])/U[2] + (6*(f[35]*(f[50]*((f[20]*(-(f[23]*f[38]) + f[22]*f[39]) + f[21]*(f[22]*f[38] + f[23]*f[39]))*f[52] - (f[23]*(f[21]*f[38] + f[20]*f[39]) + f[22]*(f[20]*f[38] - f[21]*f[39]))*f[53]) + f[51]*(f[21]*((f[23]*f[38] - f[22]*f[39])*f[52] + (f[22]*f[38] + f[23]*f[39])*f[53]) + f[20]*(f[23]*(f[39]*f[52] - f[38]*f[53]) + f[22]*(f[38]*f[52] + f[39]*f[53])))) + f[34]*(f[21]*(-(((-(f[23]*f[38]) + f[22]*f[39])*f[50] + (f[22]*f[38] + f[23]*f[39])*f[51])*f[52]) + (f[23]*(f[39]*f[50] + f[38]*f[51]) + f[22]*(f[38]*f[50] - f[39]*f[51]))*f[53]) + f[20]*(f[51]*((f[23]*f[38] - f[22]*f[39])*f[52] + (f[22]*f[38] + f[23]*f[39])*f[53]) + f[50]*(f[23]*(f[39]*f[52] - f[38]*f[53]) + f[22]*(f[38]*f[52] + f[39]*f[53])))))*J[1]*J[2])/(-2*U[2] + U[3]) + (12*(f[37]*(f[52]*((f[22]*(-(f[25]*f[40]) + f[24]*f[41]) + f[23]*(f[24]*f[40] + f[25]*f[41]))*f[54] - (f[25]*(f[23]*f[40] + f[22]*f[41]) + f[24]*(f[22]*f[40] - f[23]*f[41]))*f[55]) + f[53]*(f[23]*((f[25]*f[40] - f[24]*f[41])*f[54] + (f[24]*f[40] + f[25]*f[41])*f[55]) + f[22]*(f[25]*(f[41]*f[54] - f[40]*f[55]) + f[24]*(f[40]*f[54] + f[41]*f[55])))) + f[36]*(f[23]*(-(((-(f[25]*f[40]) + f[24]*f[41])*f[52] + (f[24]*f[40] + f[25]*f[41])*f[53])*f[54]) + (f[25]*(f[41]*f[52] + f[40]*f[53]) + f[24]*(f[40]*f[52] - f[41]*f[53]))*f[55]) + f[22]*(f[53]*((f[25]*f[40] - f[24]*f[41])*f[54] + (f[24]*f[40] + f[25]*f[41])*f[55]) + f[52]*(f[25]*(f[41]*f[54] - f[40]*f[55]) + f[24]*(f[40]*f[54] + f[41]*f[55])))))*J[1]*J[2])/(-3*U[2] + 2*U[3]) + (20*(f[39]*(f[54]*((f[24]*(-(f[27]*f[42]) + f[26]*f[43]) + f[25]*(f[26]*f[42] + f[27]*f[43]))*f[56] - (f[27]*(f[25]*f[42] + f[24]*f[43]) + f[26]*(f[24]*f[42] - f[25]*f[43]))*f[57]) + f[55]*(f[25]*((f[27]*f[42] - f[26]*f[43])*f[56] + (f[26]*f[42] + f[27]*f[43])*f[57]) + f[24]*(f[27]*(f[43]*f[56] - f[42]*f[57]) + f[26]*(f[42]*f[56] + f[43]*f[57])))) + f[38]*(f[25]*(-(((-(f[27]*f[42]) + f[26]*f[43])*f[54] + (f[26]*f[42] + f[27]*f[43])*f[55])*f[56]) + (f[27]*(f[43]*f[54] + f[42]*f[55]) + f[26]*(f[42]*f[54] - f[43]*f[55]))*f[57]) + f[24]*(f[55]*((f[27]*f[42] - f[26]*f[43])*f[56] + (f[26]*f[42] + f[27]*f[43])*f[57]) + f[54]*(f[27]*(f[43]*f[56] - f[42]*f[57]) + f[26]*(f[42]*f[56] + f[43]*f[57])))))*J[1]*J[2])/(-4*U[2] + 3*U[3]) + (30*(f[41]*(f[56]*((f[26]*(-(f[29]*f[44]) + f[28]*f[45]) + f[27]*(f[28]*f[44] + f[29]*f[45]))*f[58] - (f[29]*(f[27]*f[44] + f[26]*f[45]) + f[28]*(f[26]*f[44] - f[27]*f[45]))*f[59]) + f[57]*(f[27]*((f[29]*f[44] - f[28]*f[45])*f[58] + (f[28]*f[44] + f[29]*f[45])*f[59]) + f[26]*(f[29]*(f[45]*f[58] - f[44]*f[59]) + f[28]*(f[44]*f[58] + f[45]*f[59])))) + f[40]*(f[27]*(-(((-(f[29]*f[44]) + f[28]*f[45])*f[56] + (f[28]*f[44] + f[29]*f[45])*f[57])*f[58]) + (f[29]*(f[45]*f[56] + f[44]*f[57]) + f[28]*(f[44]*f[56] - f[45]*f[57]))*f[59]) + f[26]*(f[57]*((f[29]*f[44] - f[28]*f[45])*f[58] + (f[28]*f[44] + f[29]*f[45])*f[59]) + f[56]*(f[29]*(f[45]*f[58] - f[44]*f[59]) + f[28]*(f[44]*f[58] + f[45]*f[59])))))*J[1]*J[2])/(-5*U[2] + 4*U[3]) + (42*(f[43]*(f[58]*((f[28]*(-(f[31]*f[46]) + f[30]*f[47]) + f[29]*(f[30]*f[46] + f[31]*f[47]))*f[60] - (f[31]*(f[29]*f[46] + f[28]*f[47]) + f[30]*(f[28]*f[46] - f[29]*f[47]))*f[61]) + f[59]*(f[29]*((f[31]*f[46] - f[30]*f[47])*f[60] + (f[30]*f[46] + f[31]*f[47])*f[61]) + f[28]*(f[31]*(f[47]*f[60] - f[46]*f[61]) + f[30]*(f[46]*f[60] + f[47]*f[61])))) + f[42]*(f[29]*(-(((-(f[31]*f[46]) + f[30]*f[47])*f[58] + (f[30]*f[46] + f[31]*f[47])*f[59])*f[60]) + (f[31]*(f[47]*f[58] + f[46]*f[59]) + f[30]*(f[46]*f[58] - f[47]*f[59]))*f[61]) + f[28]*(f[59]*((f[31]*f[46] - f[30]*f[47])*f[60] + (f[30]*f[46] + f[31]*f[47])*f[61]) + f[58]*(f[31]*(f[47]*f[60] - f[46]*f[61]) + f[30]*(f[46]*f[60] + f[47]*f[61])))))*J[1]*J[2])/(-6*U[2] + 5*U[3]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - ((-2*(f[49]*(f[64]*((f[34]*(-(f[37]*f[52]) + f[36]*f[53]) + f[35]*(f[36]*f[52] + f[37]*f[53]))*f[66] - (f[37]*(f[35]*f[52] + f[34]*f[53]) + f[36]*(f[34]*f[52] - f[35]*f[53]))*f[67]) + f[65]*(f[35]*((f[37]*f[52] - f[36]*f[53])*f[66] + (f[36]*f[52] + f[37]*f[53])*f[67]) + f[34]*(f[37]*(f[53]*f[66] - f[52]*f[67]) + f[36]*(f[52]*f[66] + f[53]*f[67])))) + f[48]*(f[35]*(-(((-(f[37]*f[52]) + f[36]*f[53])*f[64] + (f[36]*f[52] + f[37]*f[53])*f[65])*f[66]) + (f[37]*(f[53]*f[64] + f[52]*f[65]) + f[36]*(f[52]*f[64] - f[53]*f[65]))*f[67]) + f[34]*(f[65]*((f[37]*f[52] - f[36]*f[53])*f[66] + (f[36]*f[52] + f[37]*f[53])*f[67]) + f[64]*(f[37]*(f[53]*f[66] - f[52]*f[67]) + f[36]*(f[52]*f[66] + f[53]*f[67])))))*J[2]*J[3])/U[2] + (6*(f[51]*(f[66]*((f[36]*(-(f[39]*f[54]) + f[38]*f[55]) + f[37]*(f[38]*f[54] + f[39]*f[55]))*f[68] - (f[39]*(f[37]*f[54] + f[36]*f[55]) + f[38]*(f[36]*f[54] - f[37]*f[55]))*f[69]) + f[67]*(f[37]*((f[39]*f[54] - f[38]*f[55])*f[68] + (f[38]*f[54] + f[39]*f[55])*f[69]) + f[36]*(f[39]*(f[55]*f[68] - f[54]*f[69]) + f[38]*(f[54]*f[68] + f[55]*f[69])))) + f[50]*(f[37]*(-(((-(f[39]*f[54]) + f[38]*f[55])*f[66] + (f[38]*f[54] + f[39]*f[55])*f[67])*f[68]) + (f[39]*(f[55]*f[66] + f[54]*f[67]) + f[38]*(f[54]*f[66] - f[55]*f[67]))*f[69]) + f[36]*(f[67]*((f[39]*f[54] - f[38]*f[55])*f[68] + (f[38]*f[54] + f[39]*f[55])*f[69]) + f[66]*(f[39]*(f[55]*f[68] - f[54]*f[69]) + f[38]*(f[54]*f[68] + f[55]*f[69])))))*J[2]*J[3])/(-2*U[2] + U[3]) + (12*(f[53]*(f[68]*((f[38]*(-(f[41]*f[56]) + f[40]*f[57]) + f[39]*(f[40]*f[56] + f[41]*f[57]))*f[70] - (f[41]*(f[39]*f[56] + f[38]*f[57]) + f[40]*(f[38]*f[56] - f[39]*f[57]))*f[71]) + f[69]*(f[39]*((f[41]*f[56] - f[40]*f[57])*f[70] + (f[40]*f[56] + f[41]*f[57])*f[71]) + f[38]*(f[41]*(f[57]*f[70] - f[56]*f[71]) + f[40]*(f[56]*f[70] + f[57]*f[71])))) + f[52]*(f[39]*(-(((-(f[41]*f[56]) + f[40]*f[57])*f[68] + (f[40]*f[56] + f[41]*f[57])*f[69])*f[70]) + (f[41]*(f[57]*f[68] + f[56]*f[69]) + f[40]*(f[56]*f[68] - f[57]*f[69]))*f[71]) + f[38]*(f[69]*((f[41]*f[56] - f[40]*f[57])*f[70] + (f[40]*f[56] + f[41]*f[57])*f[71]) + f[68]*(f[41]*(f[57]*f[70] - f[56]*f[71]) + f[40]*(f[56]*f[70] + f[57]*f[71])))))*J[2]*J[3])/(-3*U[2] + 2*U[3]) + (20*(f[55]*(f[70]*((f[40]*(-(f[43]*f[58]) + f[42]*f[59]) + f[41]*(f[42]*f[58] + f[43]*f[59]))*f[72] - (f[43]*(f[41]*f[58] + f[40]*f[59]) + f[42]*(f[40]*f[58] - f[41]*f[59]))*f[73]) + f[71]*(f[41]*((f[43]*f[58] - f[42]*f[59])*f[72] + (f[42]*f[58] + f[43]*f[59])*f[73]) + f[40]*(f[43]*(f[59]*f[72] - f[58]*f[73]) + f[42]*(f[58]*f[72] + f[59]*f[73])))) + f[54]*(f[41]*(-(((-(f[43]*f[58]) + f[42]*f[59])*f[70] + (f[42]*f[58] + f[43]*f[59])*f[71])*f[72]) + (f[43]*(f[59]*f[70] + f[58]*f[71]) + f[42]*(f[58]*f[70] - f[59]*f[71]))*f[73]) + f[40]*(f[71]*((f[43]*f[58] - f[42]*f[59])*f[72] + (f[42]*f[58] + f[43]*f[59])*f[73]) + f[70]*(f[43]*(f[59]*f[72] - f[58]*f[73]) + f[42]*(f[58]*f[72] + f[59]*f[73])))))*J[2]*J[3])/(-4*U[2] + 3*U[3]) + (30*(f[57]*(f[72]*((f[42]*(-(f[45]*f[60]) + f[44]*f[61]) + f[43]*(f[44]*f[60] + f[45]*f[61]))*f[74] - (f[45]*(f[43]*f[60] + f[42]*f[61]) + f[44]*(f[42]*f[60] - f[43]*f[61]))*f[75]) + f[73]*(f[43]*((f[45]*f[60] - f[44]*f[61])*f[74] + (f[44]*f[60] + f[45]*f[61])*f[75]) + f[42]*(f[45]*(f[61]*f[74] - f[60]*f[75]) + f[44]*(f[60]*f[74] + f[61]*f[75])))) + f[56]*(f[43]*(-(((-(f[45]*f[60]) + f[44]*f[61])*f[72] + (f[44]*f[60] + f[45]*f[61])*f[73])*f[74]) + (f[45]*(f[61]*f[72] + f[60]*f[73]) + f[44]*(f[60]*f[72] - f[61]*f[73]))*f[75]) + f[42]*(f[73]*((f[45]*f[60] - f[44]*f[61])*f[74] + (f[44]*f[60] + f[45]*f[61])*f[75]) + f[72]*(f[45]*(f[61]*f[74] - f[60]*f[75]) + f[44]*(f[60]*f[74] + f[61]*f[75])))))*J[2]*J[3])/(-5*U[2] + 4*U[3]) + (42*(f[59]*(f[74]*((f[44]*(-(f[47]*f[62]) + f[46]*f[63]) + f[45]*(f[46]*f[62] + f[47]*f[63]))*f[76] - (f[47]*(f[45]*f[62] + f[44]*f[63]) + f[46]*(f[44]*f[62] - f[45]*f[63]))*f[77]) + f[75]*(f[45]*((f[47]*f[62] - f[46]*f[63])*f[76] + (f[46]*f[62] + f[47]*f[63])*f[77]) + f[44]*(f[47]*(f[63]*f[76] - f[62]*f[77]) + f[46]*(f[62]*f[76] + f[63]*f[77])))) + f[58]*(f[45]*(-(((-(f[47]*f[62]) + f[46]*f[63])*f[74] + (f[46]*f[62] + f[47]*f[63])*f[75])*f[76]) + (f[47]*(f[63]*f[74] + f[62]*f[75]) + f[46]*(f[62]*f[74] - f[63]*f[75]))*f[77]) + f[44]*(f[75]*((f[47]*f[62] - f[46]*f[63])*f[76] + (f[46]*f[62] + f[47]*f[63])*f[77]) + f[74]*(f[47]*(f[63]*f[76] - f[62]*f[77]) + f[46]*(f[62]*f[76] + f[63]*f[77])))))*J[2]*J[3])/(-6*U[2] + 5*U[3]))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + ((2*(f[17]*(f[32]*(-(f[51]*(f[37]*(f[19]*f[52] + f[18]*f[53]) + f[36]*(f[18]*f[52] - f[19]*f[53]))) + f[50]*(f[18]*(-(f[37]*f[52]) + f[36]*f[53]) + f[19]*(f[36]*f[52] + f[37]*f[53]))) + f[33]*(f[19]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[18]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))) + f[16]*(f[19]*(f[51]*(f[37]*(f[33]*f[52] + f[32]*f[53]) + f[36]*(f[32]*f[52] - f[33]*f[53])) - f[50]*(f[32]*(-(f[37]*f[52]) + f[36]*f[53]) + f[33]*(f[36]*f[52] + f[37]*f[53]))) + f[18]*(f[33]*(f[50]*(f[37]*f[52] - f[36]*f[53]) + f[51]*(f[36]*f[52] + f[37]*f[53])) + f[32]*(f[37]*(-(f[51]*f[52]) + f[50]*f[53]) + f[36]*(f[50]*f[52] + f[51]*f[53])))))*J[1]*J[2])/U[3] + (6*(f[19]*(f[34]*(-(f[53]*(f[39]*(f[21]*f[54] + f[20]*f[55]) + f[38]*(f[20]*f[54] - f[21]*f[55]))) + f[52]*(f[20]*(-(f[39]*f[54]) + f[38]*f[55]) + f[21]*(f[38]*f[54] + f[39]*f[55]))) + f[35]*(f[21]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[20]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))) + f[18]*(f[21]*(f[53]*(f[39]*(f[35]*f[54] + f[34]*f[55]) + f[38]*(f[34]*f[54] - f[35]*f[55])) - f[52]*(f[34]*(-(f[39]*f[54]) + f[38]*f[55]) + f[35]*(f[38]*f[54] + f[39]*f[55]))) + f[20]*(f[35]*(f[52]*(f[39]*f[54] - f[38]*f[55]) + f[53]*(f[38]*f[54] + f[39]*f[55])) + f[34]*(f[39]*(-(f[53]*f[54]) + f[52]*f[55]) + f[38]*(f[52]*f[54] + f[53]*f[55])))))*J[1]*J[2])/(-U[2] + 2*U[3]) + (12*(f[21]*(f[36]*(-(f[55]*(f[41]*(f[23]*f[56] + f[22]*f[57]) + f[40]*(f[22]*f[56] - f[23]*f[57]))) + f[54]*(f[22]*(-(f[41]*f[56]) + f[40]*f[57]) + f[23]*(f[40]*f[56] + f[41]*f[57]))) + f[37]*(f[23]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[22]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))) + f[20]*(f[23]*(f[55]*(f[41]*(f[37]*f[56] + f[36]*f[57]) + f[40]*(f[36]*f[56] - f[37]*f[57])) - f[54]*(f[36]*(-(f[41]*f[56]) + f[40]*f[57]) + f[37]*(f[40]*f[56] + f[41]*f[57]))) + f[22]*(f[37]*(f[54]*(f[41]*f[56] - f[40]*f[57]) + f[55]*(f[40]*f[56] + f[41]*f[57])) + f[36]*(f[41]*(-(f[55]*f[56]) + f[54]*f[57]) + f[40]*(f[54]*f[56] + f[55]*f[57])))))*J[1]*J[2])/(-2*U[2] + 3*U[3]) + (20*(f[23]*(f[38]*(-(f[57]*(f[43]*(f[25]*f[58] + f[24]*f[59]) + f[42]*(f[24]*f[58] - f[25]*f[59]))) + f[56]*(f[24]*(-(f[43]*f[58]) + f[42]*f[59]) + f[25]*(f[42]*f[58] + f[43]*f[59]))) + f[39]*(f[25]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[24]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))) + f[22]*(f[25]*(f[57]*(f[43]*(f[39]*f[58] + f[38]*f[59]) + f[42]*(f[38]*f[58] - f[39]*f[59])) - f[56]*(f[38]*(-(f[43]*f[58]) + f[42]*f[59]) + f[39]*(f[42]*f[58] + f[43]*f[59]))) + f[24]*(f[39]*(f[56]*(f[43]*f[58] - f[42]*f[59]) + f[57]*(f[42]*f[58] + f[43]*f[59])) + f[38]*(f[43]*(-(f[57]*f[58]) + f[56]*f[59]) + f[42]*(f[56]*f[58] + f[57]*f[59])))))*J[1]*J[2])/(-3*U[2] + 4*U[3]) + (30*(f[25]*(f[40]*(-(f[59]*(f[45]*(f[27]*f[60] + f[26]*f[61]) + f[44]*(f[26]*f[60] - f[27]*f[61]))) + f[58]*(f[26]*(-(f[45]*f[60]) + f[44]*f[61]) + f[27]*(f[44]*f[60] + f[45]*f[61]))) + f[41]*(f[27]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[26]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))) + f[24]*(f[27]*(f[59]*(f[45]*(f[41]*f[60] + f[40]*f[61]) + f[44]*(f[40]*f[60] - f[41]*f[61])) - f[58]*(f[40]*(-(f[45]*f[60]) + f[44]*f[61]) + f[41]*(f[44]*f[60] + f[45]*f[61]))) + f[26]*(f[41]*(f[58]*(f[45]*f[60] - f[44]*f[61]) + f[59]*(f[44]*f[60] + f[45]*f[61])) + f[40]*(f[45]*(-(f[59]*f[60]) + f[58]*f[61]) + f[44]*(f[58]*f[60] + f[59]*f[61])))))*J[1]*J[2])/(-4*U[2] + 5*U[3]) + (42*(f[27]*(f[42]*(-(f[61]*(f[47]*(f[29]*f[62] + f[28]*f[63]) + f[46]*(f[28]*f[62] - f[29]*f[63]))) + f[60]*(f[28]*(-(f[47]*f[62]) + f[46]*f[63]) + f[29]*(f[46]*f[62] + f[47]*f[63]))) + f[43]*(f[29]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[28]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))) + f[26]*(f[29]*(f[61]*(f[47]*(f[43]*f[62] + f[42]*f[63]) + f[46]*(f[42]*f[62] - f[43]*f[63])) - f[60]*(f[42]*(-(f[47]*f[62]) + f[46]*f[63]) + f[43]*(f[46]*f[62] + f[47]*f[63]))) + f[28]*(f[43]*(f[60]*(f[47]*f[62] - f[46]*f[63]) + f[61]*(f[46]*f[62] + f[47]*f[63])) + f[42]*(f[47]*(-(f[61]*f[62]) + f[60]*f[63]) + f[46]*(f[60]*f[62] + f[61]*f[63])))))*J[1]*J[2])/(-5*U[2] + 6*U[3]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + ((2*(f[33]*(f[48]*(-(f[67]*(f[53]*(f[35]*f[68] + f[34]*f[69]) + f[52]*(f[34]*f[68] - f[35]*f[69]))) + f[66]*(f[34]*(-(f[53]*f[68]) + f[52]*f[69]) + f[35]*(f[52]*f[68] + f[53]*f[69]))) + f[49]*(f[35]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[34]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))) + f[32]*(f[35]*(f[67]*(f[53]*(f[49]*f[68] + f[48]*f[69]) + f[52]*(f[48]*f[68] - f[49]*f[69])) - f[66]*(f[48]*(-(f[53]*f[68]) + f[52]*f[69]) + f[49]*(f[52]*f[68] + f[53]*f[69]))) + f[34]*(f[49]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[48]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))))*J[2]*J[3])/U[3] + (6*(f[35]*(f[50]*(-(f[69]*(f[55]*(f[37]*f[70] + f[36]*f[71]) + f[54]*(f[36]*f[70] - f[37]*f[71]))) + f[68]*(f[36]*(-(f[55]*f[70]) + f[54]*f[71]) + f[37]*(f[54]*f[70] + f[55]*f[71]))) + f[51]*(f[37]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[36]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))) + f[34]*(f[37]*(f[69]*(f[55]*(f[51]*f[70] + f[50]*f[71]) + f[54]*(f[50]*f[70] - f[51]*f[71])) - f[68]*(f[50]*(-(f[55]*f[70]) + f[54]*f[71]) + f[51]*(f[54]*f[70] + f[55]*f[71]))) + f[36]*(f[51]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[50]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))))*J[2]*J[3])/(-U[2] + 2*U[3]) + (12*(f[37]*(f[52]*(-(f[71]*(f[57]*(f[39]*f[72] + f[38]*f[73]) + f[56]*(f[38]*f[72] - f[39]*f[73]))) + f[70]*(f[38]*(-(f[57]*f[72]) + f[56]*f[73]) + f[39]*(f[56]*f[72] + f[57]*f[73]))) + f[53]*(f[39]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[38]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))) + f[36]*(f[39]*(f[71]*(f[57]*(f[53]*f[72] + f[52]*f[73]) + f[56]*(f[52]*f[72] - f[53]*f[73])) - f[70]*(f[52]*(-(f[57]*f[72]) + f[56]*f[73]) + f[53]*(f[56]*f[72] + f[57]*f[73]))) + f[38]*(f[53]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[52]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))))*J[2]*J[3])/(-2*U[2] + 3*U[3]) + (20*(f[39]*(f[54]*(-(f[73]*(f[59]*(f[41]*f[74] + f[40]*f[75]) + f[58]*(f[40]*f[74] - f[41]*f[75]))) + f[72]*(f[40]*(-(f[59]*f[74]) + f[58]*f[75]) + f[41]*(f[58]*f[74] + f[59]*f[75]))) + f[55]*(f[41]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[40]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))) + f[38]*(f[41]*(f[73]*(f[59]*(f[55]*f[74] + f[54]*f[75]) + f[58]*(f[54]*f[74] - f[55]*f[75])) - f[72]*(f[54]*(-(f[59]*f[74]) + f[58]*f[75]) + f[55]*(f[58]*f[74] + f[59]*f[75]))) + f[40]*(f[55]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[54]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))))*J[2]*J[3])/(-3*U[2] + 4*U[3]) + (30*(f[41]*(f[56]*(-(f[75]*(f[61]*(f[43]*f[76] + f[42]*f[77]) + f[60]*(f[42]*f[76] - f[43]*f[77]))) + f[74]*(f[42]*(-(f[61]*f[76]) + f[60]*f[77]) + f[43]*(f[60]*f[76] + f[61]*f[77]))) + f[57]*(f[43]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[42]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))) + f[40]*(f[43]*(f[75]*(f[61]*(f[57]*f[76] + f[56]*f[77]) + f[60]*(f[56]*f[76] - f[57]*f[77])) - f[74]*(f[56]*(-(f[61]*f[76]) + f[60]*f[77]) + f[57]*(f[60]*f[76] + f[61]*f[77]))) + f[42]*(f[57]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[56]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))))*J[2]*J[3])/(-4*U[2] + 5*U[3]) + (42*(f[43]*(f[58]*(-(f[77]*(f[63]*(f[45]*f[78] + f[44]*f[79]) + f[62]*(f[44]*f[78] - f[45]*f[79]))) + f[76]*(f[44]*(-(f[63]*f[78]) + f[62]*f[79]) + f[45]*(f[62]*f[78] + f[63]*f[79]))) + f[59]*(f[45]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[44]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))) + f[42]*(f[45]*(f[77]*(f[63]*(f[59]*f[78] + f[58]*f[79]) + f[62]*(f[58]*f[78] - f[59]*f[79])) - f[76]*(f[58]*(-(f[63]*f[78]) + f[62]*f[79]) + f[59]*(f[62]*f[78] + f[63]*f[79]))) + f[44]*(f[59]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[58]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))))*J[2]*J[3])/(-5*U[2] + 6*U[3]))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + ((2*(f[1]*(f[64]*((f[18]*(f[5]*f[20] - f[4]*f[21]) + f[19]*(f[4]*f[20] + f[5]*f[21]))*f[66] - (f[5]*(-(f[19]*f[20]) + f[18]*f[21]) + f[4]*(f[18]*f[20] + f[19]*f[21]))*f[67]) + f[65]*(f[19]*((-(f[5]*f[20]) + f[4]*f[21])*f[66] + (f[4]*f[20] + f[5]*f[21])*f[67]) + f[18]*(f[5]*(f[21]*f[66] + f[20]*f[67]) + f[4]*(f[20]*f[66] - f[21]*f[67])))) + f[0]*(f[19]*(-(((f[5]*f[20] - f[4]*f[21])*f[64] + (f[4]*f[20] + f[5]*f[21])*f[65])*f[66]) + (f[5]*(f[21]*f[64] - f[20]*f[65]) + f[4]*(f[20]*f[64] + f[21]*f[65]))*f[67]) + f[18]*(f[65]*((-(f[5]*f[20]) + f[4]*f[21])*f[66] + (f[4]*f[20] + f[5]*f[21])*f[67]) + f[64]*(f[5]*(f[21]*f[66] + f[20]*f[67]) + f[4]*(f[20]*f[66] - f[21]*f[67])))))*J[0]*J[4])/U[0] + (42*(f[11]*(f[74]*((f[28]*(f[15]*f[30] - f[14]*f[31]) + f[29]*(f[14]*f[30] + f[15]*f[31]))*f[76] - (f[15]*(-(f[29]*f[30]) + f[28]*f[31]) + f[14]*(f[28]*f[30] + f[29]*f[31]))*f[77]) + f[75]*(f[29]*((-(f[15]*f[30]) + f[14]*f[31])*f[76] + (f[14]*f[30] + f[15]*f[31])*f[77]) + f[28]*(f[15]*(f[31]*f[76] + f[30]*f[77]) + f[14]*(f[30]*f[76] - f[31]*f[77])))) + f[10]*(f[29]*(-(((f[15]*f[30] - f[14]*f[31])*f[74] + (f[14]*f[30] + f[15]*f[31])*f[75])*f[76]) + (f[15]*(f[31]*f[74] - f[30]*f[75]) + f[14]*(f[30]*f[74] + f[31]*f[75]))*f[77]) + f[28]*(f[75]*((-(f[15]*f[30]) + f[14]*f[31])*f[76] + (f[14]*f[30] + f[15]*f[31])*f[77]) + f[74]*(f[15]*(f[31]*f[76] + f[30]*f[77]) + f[14]*(f[30]*f[76] - f[31]*f[77])))))*J[0]*J[4])/(6*U[0] - 5*U[4]) + (30*(f[9]*(f[72]*((f[26]*(f[13]*f[28] - f[12]*f[29]) + f[27]*(f[12]*f[28] + f[13]*f[29]))*f[74] - (f[13]*(-(f[27]*f[28]) + f[26]*f[29]) + f[12]*(f[26]*f[28] + f[27]*f[29]))*f[75]) + f[73]*(f[27]*((-(f[13]*f[28]) + f[12]*f[29])*f[74] + (f[12]*f[28] + f[13]*f[29])*f[75]) + f[26]*(f[13]*(f[29]*f[74] + f[28]*f[75]) + f[12]*(f[28]*f[74] - f[29]*f[75])))) + f[8]*(f[27]*(-(((f[13]*f[28] - f[12]*f[29])*f[72] + (f[12]*f[28] + f[13]*f[29])*f[73])*f[74]) + (f[13]*(f[29]*f[72] - f[28]*f[73]) + f[12]*(f[28]*f[72] + f[29]*f[73]))*f[75]) + f[26]*(f[73]*((-(f[13]*f[28]) + f[12]*f[29])*f[74] + (f[12]*f[28] + f[13]*f[29])*f[75]) + f[72]*(f[13]*(f[29]*f[74] + f[28]*f[75]) + f[12]*(f[28]*f[74] - f[29]*f[75])))))*J[0]*J[4])/(5*U[0] - 4*U[4]) + (20*(f[7]*(f[70]*((f[24]*(f[11]*f[26] - f[10]*f[27]) + f[25]*(f[10]*f[26] + f[11]*f[27]))*f[72] - (f[11]*(-(f[25]*f[26]) + f[24]*f[27]) + f[10]*(f[24]*f[26] + f[25]*f[27]))*f[73]) + f[71]*(f[25]*((-(f[11]*f[26]) + f[10]*f[27])*f[72] + (f[10]*f[26] + f[11]*f[27])*f[73]) + f[24]*(f[11]*(f[27]*f[72] + f[26]*f[73]) + f[10]*(f[26]*f[72] - f[27]*f[73])))) + f[6]*(f[25]*(-(((f[11]*f[26] - f[10]*f[27])*f[70] + (f[10]*f[26] + f[11]*f[27])*f[71])*f[72]) + (f[11]*(f[27]*f[70] - f[26]*f[71]) + f[10]*(f[26]*f[70] + f[27]*f[71]))*f[73]) + f[24]*(f[71]*((-(f[11]*f[26]) + f[10]*f[27])*f[72] + (f[10]*f[26] + f[11]*f[27])*f[73]) + f[70]*(f[11]*(f[27]*f[72] + f[26]*f[73]) + f[10]*(f[26]*f[72] - f[27]*f[73])))))*J[0]*J[4])/(4*U[0] - 3*U[4]) + (12*(f[5]*(f[68]*((f[22]*(f[9]*f[24] - f[8]*f[25]) + f[23]*(f[8]*f[24] + f[9]*f[25]))*f[70] - (f[9]*(-(f[23]*f[24]) + f[22]*f[25]) + f[8]*(f[22]*f[24] + f[23]*f[25]))*f[71]) + f[69]*(f[23]*((-(f[9]*f[24]) + f[8]*f[25])*f[70] + (f[8]*f[24] + f[9]*f[25])*f[71]) + f[22]*(f[9]*(f[25]*f[70] + f[24]*f[71]) + f[8]*(f[24]*f[70] - f[25]*f[71])))) + f[4]*(f[23]*(-(((f[9]*f[24] - f[8]*f[25])*f[68] + (f[8]*f[24] + f[9]*f[25])*f[69])*f[70]) + (f[9]*(f[25]*f[68] - f[24]*f[69]) + f[8]*(f[24]*f[68] + f[25]*f[69]))*f[71]) + f[22]*(f[69]*((-(f[9]*f[24]) + f[8]*f[25])*f[70] + (f[8]*f[24] + f[9]*f[25])*f[71]) + f[68]*(f[9]*(f[25]*f[70] + f[24]*f[71]) + f[8]*(f[24]*f[70] - f[25]*f[71])))))*J[0]*J[4])/(3*U[0] - 2*U[4]) + (6*(f[3]*(f[66]*((f[20]*(f[7]*f[22] - f[6]*f[23]) + f[21]*(f[6]*f[22] + f[7]*f[23]))*f[68] - (f[7]*(-(f[21]*f[22]) + f[20]*f[23]) + f[6]*(f[20]*f[22] + f[21]*f[23]))*f[69]) + f[67]*(f[21]*((-(f[7]*f[22]) + f[6]*f[23])*f[68] + (f[6]*f[22] + f[7]*f[23])*f[69]) + f[20]*(f[7]*(f[23]*f[68] + f[22]*f[69]) + f[6]*(f[22]*f[68] - f[23]*f[69])))) + f[2]*(f[21]*(-(((f[7]*f[22] - f[6]*f[23])*f[66] + (f[6]*f[22] + f[7]*f[23])*f[67])*f[68]) + (f[7]*(f[23]*f[66] - f[22]*f[67]) + f[6]*(f[22]*f[66] + f[23]*f[67]))*f[69]) + f[20]*(f[67]*((-(f[7]*f[22]) + f[6]*f[23])*f[68] + (f[6]*f[22] + f[7]*f[23])*f[69]) + f[66]*(f[7]*(f[23]*f[68] + f[22]*f[69]) + f[6]*(f[22]*f[68] - f[23]*f[69])))))*J[0]*J[4])/(2*U[0] - U[4]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[49]*(f[64]*(f[51]*(f[5]*(f[3]*f[68] + f[2]*f[69]) + f[4]*(f[2]*f[68] - f[3]*f[69])) - f[50]*(f[2]*(-(f[5]*f[68]) + f[4]*f[69]) + f[3]*(f[4]*f[68] + f[5]*f[69]))) + f[65]*(f[3]*(f[50]*(f[5]*f[68] - f[4]*f[69]) + f[51]*(f[4]*f[68] + f[5]*f[69])) + f[2]*(f[5]*(-(f[51]*f[68]) + f[50]*f[69]) + f[4]*(f[50]*f[68] + f[51]*f[69])))) + f[48]*(f[2]*(-(f[65]*(f[50]*(f[5]*f[68] - f[4]*f[69]) + f[51]*(f[4]*f[68] + f[5]*f[69]))) + f[64]*(f[5]*(-(f[51]*f[68]) + f[50]*f[69]) + f[4]*(f[50]*f[68] + f[51]*f[69]))) + f[3]*(f[50]*(f[64]*(f[5]*f[68] - f[4]*f[69]) + f[65]*(f[4]*f[68] + f[5]*f[69])) + f[51]*(f[5]*(-(f[65]*f[68]) + f[64]*f[69]) + f[4]*(f[64]*f[68] + f[65]*f[69])))))*J[3]*J[4])/U[0] + (42*(f[59]*(f[74]*(f[61]*(f[15]*(f[13]*f[78] + f[12]*f[79]) + f[14]*(f[12]*f[78] - f[13]*f[79])) - f[60]*(f[12]*(-(f[15]*f[78]) + f[14]*f[79]) + f[13]*(f[14]*f[78] + f[15]*f[79]))) + f[75]*(f[13]*(f[60]*(f[15]*f[78] - f[14]*f[79]) + f[61]*(f[14]*f[78] + f[15]*f[79])) + f[12]*(f[15]*(-(f[61]*f[78]) + f[60]*f[79]) + f[14]*(f[60]*f[78] + f[61]*f[79])))) + f[58]*(f[12]*(-(f[75]*(f[60]*(f[15]*f[78] - f[14]*f[79]) + f[61]*(f[14]*f[78] + f[15]*f[79]))) + f[74]*(f[15]*(-(f[61]*f[78]) + f[60]*f[79]) + f[14]*(f[60]*f[78] + f[61]*f[79]))) + f[13]*(f[60]*(f[74]*(f[15]*f[78] - f[14]*f[79]) + f[75]*(f[14]*f[78] + f[15]*f[79])) + f[61]*(f[15]*(-(f[75]*f[78]) + f[74]*f[79]) + f[14]*(f[74]*f[78] + f[75]*f[79])))))*J[3]*J[4])/(6*U[0] - 5*U[4]) + (30*(f[57]*(f[72]*(f[59]*(f[13]*(f[11]*f[76] + f[10]*f[77]) + f[12]*(f[10]*f[76] - f[11]*f[77])) - f[58]*(f[10]*(-(f[13]*f[76]) + f[12]*f[77]) + f[11]*(f[12]*f[76] + f[13]*f[77]))) + f[73]*(f[11]*(f[58]*(f[13]*f[76] - f[12]*f[77]) + f[59]*(f[12]*f[76] + f[13]*f[77])) + f[10]*(f[13]*(-(f[59]*f[76]) + f[58]*f[77]) + f[12]*(f[58]*f[76] + f[59]*f[77])))) + f[56]*(f[10]*(-(f[73]*(f[58]*(f[13]*f[76] - f[12]*f[77]) + f[59]*(f[12]*f[76] + f[13]*f[77]))) + f[72]*(f[13]*(-(f[59]*f[76]) + f[58]*f[77]) + f[12]*(f[58]*f[76] + f[59]*f[77]))) + f[11]*(f[58]*(f[72]*(f[13]*f[76] - f[12]*f[77]) + f[73]*(f[12]*f[76] + f[13]*f[77])) + f[59]*(f[13]*(-(f[73]*f[76]) + f[72]*f[77]) + f[12]*(f[72]*f[76] + f[73]*f[77])))))*J[3]*J[4])/(5*U[0] - 4*U[4]) + (20*(f[55]*(f[70]*(f[57]*(f[11]*(f[9]*f[74] + f[8]*f[75]) + f[10]*(f[8]*f[74] - f[9]*f[75])) - f[56]*(f[8]*(-(f[11]*f[74]) + f[10]*f[75]) + f[9]*(f[10]*f[74] + f[11]*f[75]))) + f[71]*(f[9]*(f[56]*(f[11]*f[74] - f[10]*f[75]) + f[57]*(f[10]*f[74] + f[11]*f[75])) + f[8]*(f[11]*(-(f[57]*f[74]) + f[56]*f[75]) + f[10]*(f[56]*f[74] + f[57]*f[75])))) + f[54]*(f[8]*(-(f[71]*(f[56]*(f[11]*f[74] - f[10]*f[75]) + f[57]*(f[10]*f[74] + f[11]*f[75]))) + f[70]*(f[11]*(-(f[57]*f[74]) + f[56]*f[75]) + f[10]*(f[56]*f[74] + f[57]*f[75]))) + f[9]*(f[56]*(f[70]*(f[11]*f[74] - f[10]*f[75]) + f[71]*(f[10]*f[74] + f[11]*f[75])) + f[57]*(f[11]*(-(f[71]*f[74]) + f[70]*f[75]) + f[10]*(f[70]*f[74] + f[71]*f[75])))))*J[3]*J[4])/(4*U[0] - 3*U[4]) + (12*(f[53]*(f[68]*(f[55]*(f[9]*(f[7]*f[72] + f[6]*f[73]) + f[8]*(f[6]*f[72] - f[7]*f[73])) - f[54]*(f[6]*(-(f[9]*f[72]) + f[8]*f[73]) + f[7]*(f[8]*f[72] + f[9]*f[73]))) + f[69]*(f[7]*(f[54]*(f[9]*f[72] - f[8]*f[73]) + f[55]*(f[8]*f[72] + f[9]*f[73])) + f[6]*(f[9]*(-(f[55]*f[72]) + f[54]*f[73]) + f[8]*(f[54]*f[72] + f[55]*f[73])))) + f[52]*(f[6]*(-(f[69]*(f[54]*(f[9]*f[72] - f[8]*f[73]) + f[55]*(f[8]*f[72] + f[9]*f[73]))) + f[68]*(f[9]*(-(f[55]*f[72]) + f[54]*f[73]) + f[8]*(f[54]*f[72] + f[55]*f[73]))) + f[7]*(f[54]*(f[68]*(f[9]*f[72] - f[8]*f[73]) + f[69]*(f[8]*f[72] + f[9]*f[73])) + f[55]*(f[9]*(-(f[69]*f[72]) + f[68]*f[73]) + f[8]*(f[68]*f[72] + f[69]*f[73])))))*J[3]*J[4])/(3*U[0] - 2*U[4]) + (6*(f[51]*(f[66]*(f[53]*(f[7]*(f[5]*f[70] + f[4]*f[71]) + f[6]*(f[4]*f[70] - f[5]*f[71])) - f[52]*(f[4]*(-(f[7]*f[70]) + f[6]*f[71]) + f[5]*(f[6]*f[70] + f[7]*f[71]))) + f[67]*(f[5]*(f[52]*(f[7]*f[70] - f[6]*f[71]) + f[53]*(f[6]*f[70] + f[7]*f[71])) + f[4]*(f[7]*(-(f[53]*f[70]) + f[52]*f[71]) + f[6]*(f[52]*f[70] + f[53]*f[71])))) + f[50]*(f[4]*(-(f[67]*(f[52]*(f[7]*f[70] - f[6]*f[71]) + f[53]*(f[6]*f[70] + f[7]*f[71]))) + f[66]*(f[7]*(-(f[53]*f[70]) + f[52]*f[71]) + f[6]*(f[52]*f[70] + f[53]*f[71]))) + f[5]*(f[52]*(f[66]*(f[7]*f[70] - f[6]*f[71]) + f[67]*(f[6]*f[70] + f[7]*f[71])) + f[53]*(f[7]*(-(f[67]*f[70]) + f[66]*f[71]) + f[6]*(f[66]*f[70] + f[67]*f[71])))))*J[3]*J[4])/(2*U[0] - U[4]))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[49]*(f[64]*((f[34]*(-(f[37]*f[52]) + f[36]*f[53]) + f[35]*(f[36]*f[52] + f[37]*f[53]))*f[66] - (f[37]*(f[35]*f[52] + f[34]*f[53]) + f[36]*(f[34]*f[52] - f[35]*f[53]))*f[67]) + f[65]*(f[35]*((f[37]*f[52] - f[36]*f[53])*f[66] + (f[36]*f[52] + f[37]*f[53])*f[67]) + f[34]*(f[37]*(f[53]*f[66] - f[52]*f[67]) + f[36]*(f[52]*f[66] + f[53]*f[67])))) + f[48]*(f[35]*(-(((-(f[37]*f[52]) + f[36]*f[53])*f[64] + (f[36]*f[52] + f[37]*f[53])*f[65])*f[66]) + (f[37]*(f[53]*f[64] + f[52]*f[65]) + f[36]*(f[52]*f[64] - f[53]*f[65]))*f[67]) + f[34]*(f[65]*((f[37]*f[52] - f[36]*f[53])*f[66] + (f[36]*f[52] + f[37]*f[53])*f[67]) + f[64]*(f[37]*(f[53]*f[66] - f[52]*f[67]) + f[36]*(f[52]*f[66] + f[53]*f[67])))))*J[2]*J[3])/U[3] + (42*(f[59]*(f[74]*((f[44]*(-(f[47]*f[62]) + f[46]*f[63]) + f[45]*(f[46]*f[62] + f[47]*f[63]))*f[76] - (f[47]*(f[45]*f[62] + f[44]*f[63]) + f[46]*(f[44]*f[62] - f[45]*f[63]))*f[77]) + f[75]*(f[45]*((f[47]*f[62] - f[46]*f[63])*f[76] + (f[46]*f[62] + f[47]*f[63])*f[77]) + f[44]*(f[47]*(f[63]*f[76] - f[62]*f[77]) + f[46]*(f[62]*f[76] + f[63]*f[77])))) + f[58]*(f[45]*(-(((-(f[47]*f[62]) + f[46]*f[63])*f[74] + (f[46]*f[62] + f[47]*f[63])*f[75])*f[76]) + (f[47]*(f[63]*f[74] + f[62]*f[75]) + f[46]*(f[62]*f[74] - f[63]*f[75]))*f[77]) + f[44]*(f[75]*((f[47]*f[62] - f[46]*f[63])*f[76] + (f[46]*f[62] + f[47]*f[63])*f[77]) + f[74]*(f[47]*(f[63]*f[76] - f[62]*f[77]) + f[46]*(f[62]*f[76] + f[63]*f[77])))))*J[2]*J[3])/(6*U[3] - 5*U[4]) + (30*(f[57]*(f[72]*((f[42]*(-(f[45]*f[60]) + f[44]*f[61]) + f[43]*(f[44]*f[60] + f[45]*f[61]))*f[74] - (f[45]*(f[43]*f[60] + f[42]*f[61]) + f[44]*(f[42]*f[60] - f[43]*f[61]))*f[75]) + f[73]*(f[43]*((f[45]*f[60] - f[44]*f[61])*f[74] + (f[44]*f[60] + f[45]*f[61])*f[75]) + f[42]*(f[45]*(f[61]*f[74] - f[60]*f[75]) + f[44]*(f[60]*f[74] + f[61]*f[75])))) + f[56]*(f[43]*(-(((-(f[45]*f[60]) + f[44]*f[61])*f[72] + (f[44]*f[60] + f[45]*f[61])*f[73])*f[74]) + (f[45]*(f[61]*f[72] + f[60]*f[73]) + f[44]*(f[60]*f[72] - f[61]*f[73]))*f[75]) + f[42]*(f[73]*((f[45]*f[60] - f[44]*f[61])*f[74] + (f[44]*f[60] + f[45]*f[61])*f[75]) + f[72]*(f[45]*(f[61]*f[74] - f[60]*f[75]) + f[44]*(f[60]*f[74] + f[61]*f[75])))))*J[2]*J[3])/(5*U[3] - 4*U[4]) + (20*(f[55]*(f[70]*((f[40]*(-(f[43]*f[58]) + f[42]*f[59]) + f[41]*(f[42]*f[58] + f[43]*f[59]))*f[72] - (f[43]*(f[41]*f[58] + f[40]*f[59]) + f[42]*(f[40]*f[58] - f[41]*f[59]))*f[73]) + f[71]*(f[41]*((f[43]*f[58] - f[42]*f[59])*f[72] + (f[42]*f[58] + f[43]*f[59])*f[73]) + f[40]*(f[43]*(f[59]*f[72] - f[58]*f[73]) + f[42]*(f[58]*f[72] + f[59]*f[73])))) + f[54]*(f[41]*(-(((-(f[43]*f[58]) + f[42]*f[59])*f[70] + (f[42]*f[58] + f[43]*f[59])*f[71])*f[72]) + (f[43]*(f[59]*f[70] + f[58]*f[71]) + f[42]*(f[58]*f[70] - f[59]*f[71]))*f[73]) + f[40]*(f[71]*((f[43]*f[58] - f[42]*f[59])*f[72] + (f[42]*f[58] + f[43]*f[59])*f[73]) + f[70]*(f[43]*(f[59]*f[72] - f[58]*f[73]) + f[42]*(f[58]*f[72] + f[59]*f[73])))))*J[2]*J[3])/(4*U[3] - 3*U[4]) + (12*(f[53]*(f[68]*((f[38]*(-(f[41]*f[56]) + f[40]*f[57]) + f[39]*(f[40]*f[56] + f[41]*f[57]))*f[70] - (f[41]*(f[39]*f[56] + f[38]*f[57]) + f[40]*(f[38]*f[56] - f[39]*f[57]))*f[71]) + f[69]*(f[39]*((f[41]*f[56] - f[40]*f[57])*f[70] + (f[40]*f[56] + f[41]*f[57])*f[71]) + f[38]*(f[41]*(f[57]*f[70] - f[56]*f[71]) + f[40]*(f[56]*f[70] + f[57]*f[71])))) + f[52]*(f[39]*(-(((-(f[41]*f[56]) + f[40]*f[57])*f[68] + (f[40]*f[56] + f[41]*f[57])*f[69])*f[70]) + (f[41]*(f[57]*f[68] + f[56]*f[69]) + f[40]*(f[56]*f[68] - f[57]*f[69]))*f[71]) + f[38]*(f[69]*((f[41]*f[56] - f[40]*f[57])*f[70] + (f[40]*f[56] + f[41]*f[57])*f[71]) + f[68]*(f[41]*(f[57]*f[70] - f[56]*f[71]) + f[40]*(f[56]*f[70] + f[57]*f[71])))))*J[2]*J[3])/(3*U[3] - 2*U[4]) + (6*(f[51]*(f[66]*((f[36]*(-(f[39]*f[54]) + f[38]*f[55]) + f[37]*(f[38]*f[54] + f[39]*f[55]))*f[68] - (f[39]*(f[37]*f[54] + f[36]*f[55]) + f[38]*(f[36]*f[54] - f[37]*f[55]))*f[69]) + f[67]*(f[37]*((f[39]*f[54] - f[38]*f[55])*f[68] + (f[38]*f[54] + f[39]*f[55])*f[69]) + f[36]*(f[39]*(f[55]*f[68] - f[54]*f[69]) + f[38]*(f[54]*f[68] + f[55]*f[69])))) + f[50]*(f[37]*(-(((-(f[39]*f[54]) + f[38]*f[55])*f[66] + (f[38]*f[54] + f[39]*f[55])*f[67])*f[68]) + (f[39]*(f[55]*f[66] + f[54]*f[67]) + f[38]*(f[54]*f[66] - f[55]*f[67]))*f[69]) + f[36]*(f[67]*((f[39]*f[54] - f[38]*f[55])*f[68] + (f[38]*f[54] + f[39]*f[55])*f[69]) + f[66]*(f[39]*(f[55]*f[68] - f[54]*f[69]) + f[38]*(f[54]*f[68] + f[55]*f[69])))))*J[2]*J[3])/(2*U[3] - U[4]))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + ((2*(f[1]*(f[64]*(-(f[51]*(f[53]*(-(f[3]*f[68]) + f[2]*f[69]) + f[52]*(f[2]*f[68] + f[3]*f[69]))) + f[50]*(f[2]*(f[53]*f[68] - f[52]*f[69]) + f[3]*(f[52]*f[68] + f[53]*f[69]))) + f[65]*(f[2]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69])) + f[3]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69])))) + f[0]*(f[2]*(f[64]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69])) + f[65]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69]))) + f[3]*(-(f[50]*(f[64]*(f[53]*f[68] - f[52]*f[69]) + f[65]*(f[52]*f[68] + f[53]*f[69]))) + f[51]*(f[53]*(-(f[65]*f[68]) + f[64]*f[69]) + f[52]*(f[64]*f[68] + f[65]*f[69])))))*J[3]*J[4])/U[3] + (42*(f[11]*(f[74]*(-(f[61]*(f[63]*(-(f[13]*f[78]) + f[12]*f[79]) + f[62]*(f[12]*f[78] + f[13]*f[79]))) + f[60]*(f[12]*(f[63]*f[78] - f[62]*f[79]) + f[13]*(f[62]*f[78] + f[63]*f[79]))) + f[75]*(f[12]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79])) + f[13]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79])))) + f[10]*(f[12]*(f[74]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79])) + f[75]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79]))) + f[13]*(-(f[60]*(f[74]*(f[63]*f[78] - f[62]*f[79]) + f[75]*(f[62]*f[78] + f[63]*f[79]))) + f[61]*(f[63]*(-(f[75]*f[78]) + f[74]*f[79]) + f[62]*(f[74]*f[78] + f[75]*f[79])))))*J[3]*J[4])/(6*U[3] - 5*U[4]) + (30*(f[9]*(f[72]*(-(f[59]*(f[61]*(-(f[11]*f[76]) + f[10]*f[77]) + f[60]*(f[10]*f[76] + f[11]*f[77]))) + f[58]*(f[10]*(f[61]*f[76] - f[60]*f[77]) + f[11]*(f[60]*f[76] + f[61]*f[77]))) + f[73]*(f[10]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77])) + f[11]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77])))) + f[8]*(f[10]*(f[72]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77])) + f[73]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77]))) + f[11]*(-(f[58]*(f[72]*(f[61]*f[76] - f[60]*f[77]) + f[73]*(f[60]*f[76] + f[61]*f[77]))) + f[59]*(f[61]*(-(f[73]*f[76]) + f[72]*f[77]) + f[60]*(f[72]*f[76] + f[73]*f[77])))))*J[3]*J[4])/(5*U[3] - 4*U[4]) + (20*(f[7]*(f[70]*(-(f[57]*(f[59]*(-(f[9]*f[74]) + f[8]*f[75]) + f[58]*(f[8]*f[74] + f[9]*f[75]))) + f[56]*(f[8]*(f[59]*f[74] - f[58]*f[75]) + f[9]*(f[58]*f[74] + f[59]*f[75]))) + f[71]*(f[8]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75])) + f[9]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75])))) + f[6]*(f[8]*(f[70]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75])) + f[71]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75]))) + f[9]*(-(f[56]*(f[70]*(f[59]*f[74] - f[58]*f[75]) + f[71]*(f[58]*f[74] + f[59]*f[75]))) + f[57]*(f[59]*(-(f[71]*f[74]) + f[70]*f[75]) + f[58]*(f[70]*f[74] + f[71]*f[75])))))*J[3]*J[4])/(4*U[3] - 3*U[4]) + (12*(f[5]*(f[68]*(-(f[55]*(f[57]*(-(f[7]*f[72]) + f[6]*f[73]) + f[56]*(f[6]*f[72] + f[7]*f[73]))) + f[54]*(f[6]*(f[57]*f[72] - f[56]*f[73]) + f[7]*(f[56]*f[72] + f[57]*f[73]))) + f[69]*(f[6]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73])) + f[7]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73])))) + f[4]*(f[6]*(f[68]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73])) + f[69]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73]))) + f[7]*(-(f[54]*(f[68]*(f[57]*f[72] - f[56]*f[73]) + f[69]*(f[56]*f[72] + f[57]*f[73]))) + f[55]*(f[57]*(-(f[69]*f[72]) + f[68]*f[73]) + f[56]*(f[68]*f[72] + f[69]*f[73])))))*J[3]*J[4])/(3*U[3] - 2*U[4]) + (6*(f[3]*(f[66]*(-(f[53]*(f[55]*(-(f[5]*f[70]) + f[4]*f[71]) + f[54]*(f[4]*f[70] + f[5]*f[71]))) + f[52]*(f[4]*(f[55]*f[70] - f[54]*f[71]) + f[5]*(f[54]*f[70] + f[55]*f[71]))) + f[67]*(f[4]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71])) + f[5]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71])))) + f[2]*(f[4]*(f[66]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71])) + f[67]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71]))) + f[5]*(-(f[52]*(f[66]*(f[55]*f[70] - f[54]*f[71]) + f[67]*(f[54]*f[70] + f[55]*f[71]))) + f[53]*(f[55]*(-(f[67]*f[70]) + f[66]*f[71]) + f[54]*(f[66]*f[70] + f[67]*f[71])))))*J[3]*J[4])/(2*U[3] - U[4]))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((42*(f[43]*(f[58]*(-(f[77]*(f[63]*(f[45]*f[78] + f[44]*f[79]) + f[62]*(f[44]*f[78] - f[45]*f[79]))) + f[76]*(f[44]*(-(f[63]*f[78]) + f[62]*f[79]) + f[45]*(f[62]*f[78] + f[63]*f[79]))) + f[59]*(f[45]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[44]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))) + f[42]*(f[45]*(f[77]*(f[63]*(f[59]*f[78] + f[58]*f[79]) + f[62]*(f[58]*f[78] - f[59]*f[79])) - f[76]*(f[58]*(-(f[63]*f[78]) + f[62]*f[79]) + f[59]*(f[62]*f[78] + f[63]*f[79]))) + f[44]*(f[59]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[58]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))))*J[2]*J[3])/(5*U[3] - 6*U[4]) + (30*(f[41]*(f[56]*(-(f[75]*(f[61]*(f[43]*f[76] + f[42]*f[77]) + f[60]*(f[42]*f[76] - f[43]*f[77]))) + f[74]*(f[42]*(-(f[61]*f[76]) + f[60]*f[77]) + f[43]*(f[60]*f[76] + f[61]*f[77]))) + f[57]*(f[43]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[42]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))) + f[40]*(f[43]*(f[75]*(f[61]*(f[57]*f[76] + f[56]*f[77]) + f[60]*(f[56]*f[76] - f[57]*f[77])) - f[74]*(f[56]*(-(f[61]*f[76]) + f[60]*f[77]) + f[57]*(f[60]*f[76] + f[61]*f[77]))) + f[42]*(f[57]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[56]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))))*J[2]*J[3])/(4*U[3] - 5*U[4]) + (20*(f[39]*(f[54]*(-(f[73]*(f[59]*(f[41]*f[74] + f[40]*f[75]) + f[58]*(f[40]*f[74] - f[41]*f[75]))) + f[72]*(f[40]*(-(f[59]*f[74]) + f[58]*f[75]) + f[41]*(f[58]*f[74] + f[59]*f[75]))) + f[55]*(f[41]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[40]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))) + f[38]*(f[41]*(f[73]*(f[59]*(f[55]*f[74] + f[54]*f[75]) + f[58]*(f[54]*f[74] - f[55]*f[75])) - f[72]*(f[54]*(-(f[59]*f[74]) + f[58]*f[75]) + f[55]*(f[58]*f[74] + f[59]*f[75]))) + f[40]*(f[55]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[54]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))))*J[2]*J[3])/(3*U[3] - 4*U[4]) + (12*(f[37]*(f[52]*(-(f[71]*(f[57]*(f[39]*f[72] + f[38]*f[73]) + f[56]*(f[38]*f[72] - f[39]*f[73]))) + f[70]*(f[38]*(-(f[57]*f[72]) + f[56]*f[73]) + f[39]*(f[56]*f[72] + f[57]*f[73]))) + f[53]*(f[39]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[38]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))) + f[36]*(f[39]*(f[71]*(f[57]*(f[53]*f[72] + f[52]*f[73]) + f[56]*(f[52]*f[72] - f[53]*f[73])) - f[70]*(f[52]*(-(f[57]*f[72]) + f[56]*f[73]) + f[53]*(f[56]*f[72] + f[57]*f[73]))) + f[38]*(f[53]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[52]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))))*J[2]*J[3])/(2*U[3] - 3*U[4]) + (6*(f[35]*(f[50]*(-(f[69]*(f[55]*(f[37]*f[70] + f[36]*f[71]) + f[54]*(f[36]*f[70] - f[37]*f[71]))) + f[68]*(f[36]*(-(f[55]*f[70]) + f[54]*f[71]) + f[37]*(f[54]*f[70] + f[55]*f[71]))) + f[51]*(f[37]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[36]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))) + f[34]*(f[37]*(f[69]*(f[55]*(f[51]*f[70] + f[50]*f[71]) + f[54]*(f[50]*f[70] - f[51]*f[71])) - f[68]*(f[50]*(-(f[55]*f[70]) + f[54]*f[71]) + f[51]*(f[54]*f[70] + f[55]*f[71]))) + f[36]*(f[51]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[50]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))))*J[2]*J[3])/(U[3] - 2*U[4]) - (2*(f[33]*(f[48]*(-(f[67]*(f[53]*(f[35]*f[68] + f[34]*f[69]) + f[52]*(f[34]*f[68] - f[35]*f[69]))) + f[66]*(f[34]*(-(f[53]*f[68]) + f[52]*f[69]) + f[35]*(f[52]*f[68] + f[53]*f[69]))) + f[49]*(f[35]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[34]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))) + f[32]*(f[35]*(f[67]*(f[53]*(f[49]*f[68] + f[48]*f[69]) + f[52]*(f[48]*f[68] - f[49]*f[69])) - f[66]*(f[48]*(-(f[53]*f[68]) + f[52]*f[69]) + f[49]*(f[52]*f[68] + f[53]*f[69]))) + f[34]*(f[49]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[48]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))))*J[2]*J[3])/U[4])/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) - ((42*(f[10]*(f[29]*(f[76]*(f[26]*(f[15]*f[78] - f[14]*f[79]) + f[27]*(f[14]*f[78] + f[15]*f[79])) + f[77]*(f[15]*(-(f[27]*f[78]) + f[26]*f[79]) + f[14]*(f[26]*f[78] + f[27]*f[79]))) + f[28]*(-(f[27]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79]))) + f[26]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))) + f[11]*(f[26]*(-(f[76]*(f[28]*(-(f[15]*f[78]) + f[14]*f[79]) + f[29]*(f[14]*f[78] + f[15]*f[79]))) + f[77]*(f[15]*(f[29]*f[78] + f[28]*f[79]) + f[14]*(f[28]*f[78] - f[29]*f[79]))) + f[27]*(f[29]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79])) + f[28]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))))*J[0]*J[4])/(5*U[0] - 6*U[4]) + (30*(f[8]*(f[27]*(f[74]*(f[24]*(f[13]*f[76] - f[12]*f[77]) + f[25]*(f[12]*f[76] + f[13]*f[77])) + f[75]*(f[13]*(-(f[25]*f[76]) + f[24]*f[77]) + f[12]*(f[24]*f[76] + f[25]*f[77]))) + f[26]*(-(f[25]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77]))) + f[24]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))) + f[9]*(f[24]*(-(f[74]*(f[26]*(-(f[13]*f[76]) + f[12]*f[77]) + f[27]*(f[12]*f[76] + f[13]*f[77]))) + f[75]*(f[13]*(f[27]*f[76] + f[26]*f[77]) + f[12]*(f[26]*f[76] - f[27]*f[77]))) + f[25]*(f[27]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77])) + f[26]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))))*J[0]*J[4])/(4*U[0] - 5*U[4]) + (20*(f[6]*(f[25]*(f[72]*(f[22]*(f[11]*f[74] - f[10]*f[75]) + f[23]*(f[10]*f[74] + f[11]*f[75])) + f[73]*(f[11]*(-(f[23]*f[74]) + f[22]*f[75]) + f[10]*(f[22]*f[74] + f[23]*f[75]))) + f[24]*(-(f[23]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75]))) + f[22]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))) + f[7]*(f[22]*(-(f[72]*(f[24]*(-(f[11]*f[74]) + f[10]*f[75]) + f[25]*(f[10]*f[74] + f[11]*f[75]))) + f[73]*(f[11]*(f[25]*f[74] + f[24]*f[75]) + f[10]*(f[24]*f[74] - f[25]*f[75]))) + f[23]*(f[25]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75])) + f[24]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))))*J[0]*J[4])/(3*U[0] - 4*U[4]) + (12*(f[4]*(f[23]*(f[70]*(f[20]*(f[9]*f[72] - f[8]*f[73]) + f[21]*(f[8]*f[72] + f[9]*f[73])) + f[71]*(f[9]*(-(f[21]*f[72]) + f[20]*f[73]) + f[8]*(f[20]*f[72] + f[21]*f[73]))) + f[22]*(-(f[21]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73]))) + f[20]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))) + f[5]*(f[20]*(-(f[70]*(f[22]*(-(f[9]*f[72]) + f[8]*f[73]) + f[23]*(f[8]*f[72] + f[9]*f[73]))) + f[71]*(f[9]*(f[23]*f[72] + f[22]*f[73]) + f[8]*(f[22]*f[72] - f[23]*f[73]))) + f[21]*(f[23]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73])) + f[22]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))))*J[0]*J[4])/(2*U[0] - 3*U[4]) + (6*(f[2]*(f[21]*(f[68]*(f[18]*(f[7]*f[70] - f[6]*f[71]) + f[19]*(f[6]*f[70] + f[7]*f[71])) + f[69]*(f[7]*(-(f[19]*f[70]) + f[18]*f[71]) + f[6]*(f[18]*f[70] + f[19]*f[71]))) + f[20]*(-(f[19]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71]))) + f[18]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))) + f[3]*(f[18]*(-(f[68]*(f[20]*(-(f[7]*f[70]) + f[6]*f[71]) + f[21]*(f[6]*f[70] + f[7]*f[71]))) + f[69]*(f[7]*(f[21]*f[70] + f[20]*f[71]) + f[6]*(f[20]*f[70] - f[21]*f[71]))) + f[19]*(f[21]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71])) + f[20]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))))*J[0]*J[4])/(U[0] - 2*U[4]) - (2*(f[0]*(f[19]*(f[66]*(f[16]*(f[5]*f[68] - f[4]*f[69]) + f[17]*(f[4]*f[68] + f[5]*f[69])) + f[67]*(f[5]*(-(f[17]*f[68]) + f[16]*f[69]) + f[4]*(f[16]*f[68] + f[17]*f[69]))) + f[18]*(-(f[17]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69]))) + f[16]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))) + f[1]*(f[16]*(-(f[66]*(f[18]*(-(f[5]*f[68]) + f[4]*f[69]) + f[19]*(f[4]*f[68] + f[5]*f[69]))) + f[67]*(f[5]*(f[19]*f[68] + f[18]*f[69]) + f[4]*(f[18]*f[68] - f[19]*f[69]))) + f[17]*(f[19]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69])) + f[18]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))))*J[0]*J[4])/U[4])/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((42*(f[59]*(f[74]*(f[61]*(f[15]*(f[13]*f[78] + f[12]*f[79]) + f[14]*(f[12]*f[78] - f[13]*f[79])) - f[60]*(f[12]*(-(f[15]*f[78]) + f[14]*f[79]) + f[13]*(f[14]*f[78] + f[15]*f[79]))) + f[75]*(f[13]*(f[60]*(f[15]*f[78] - f[14]*f[79]) + f[61]*(f[14]*f[78] + f[15]*f[79])) + f[12]*(f[15]*(-(f[61]*f[78]) + f[60]*f[79]) + f[14]*(f[60]*f[78] + f[61]*f[79])))) + f[58]*(f[12]*(-(f[75]*(f[60]*(f[15]*f[78] - f[14]*f[79]) + f[61]*(f[14]*f[78] + f[15]*f[79]))) + f[74]*(f[15]*(-(f[61]*f[78]) + f[60]*f[79]) + f[14]*(f[60]*f[78] + f[61]*f[79]))) + f[13]*(f[60]*(f[74]*(f[15]*f[78] - f[14]*f[79]) + f[75]*(f[14]*f[78] + f[15]*f[79])) + f[61]*(f[15]*(-(f[75]*f[78]) + f[74]*f[79]) + f[14]*(f[74]*f[78] + f[75]*f[79])))))*J[3]*J[4])/(5*U[3] - 6*U[4]) + (30*(f[57]*(f[72]*(f[59]*(f[13]*(f[11]*f[76] + f[10]*f[77]) + f[12]*(f[10]*f[76] - f[11]*f[77])) - f[58]*(f[10]*(-(f[13]*f[76]) + f[12]*f[77]) + f[11]*(f[12]*f[76] + f[13]*f[77]))) + f[73]*(f[11]*(f[58]*(f[13]*f[76] - f[12]*f[77]) + f[59]*(f[12]*f[76] + f[13]*f[77])) + f[10]*(f[13]*(-(f[59]*f[76]) + f[58]*f[77]) + f[12]*(f[58]*f[76] + f[59]*f[77])))) + f[56]*(f[10]*(-(f[73]*(f[58]*(f[13]*f[76] - f[12]*f[77]) + f[59]*(f[12]*f[76] + f[13]*f[77]))) + f[72]*(f[13]*(-(f[59]*f[76]) + f[58]*f[77]) + f[12]*(f[58]*f[76] + f[59]*f[77]))) + f[11]*(f[58]*(f[72]*(f[13]*f[76] - f[12]*f[77]) + f[73]*(f[12]*f[76] + f[13]*f[77])) + f[59]*(f[13]*(-(f[73]*f[76]) + f[72]*f[77]) + f[12]*(f[72]*f[76] + f[73]*f[77])))))*J[3]*J[4])/(4*U[3] - 5*U[4]) + (20*(f[55]*(f[70]*(f[57]*(f[11]*(f[9]*f[74] + f[8]*f[75]) + f[10]*(f[8]*f[74] - f[9]*f[75])) - f[56]*(f[8]*(-(f[11]*f[74]) + f[10]*f[75]) + f[9]*(f[10]*f[74] + f[11]*f[75]))) + f[71]*(f[9]*(f[56]*(f[11]*f[74] - f[10]*f[75]) + f[57]*(f[10]*f[74] + f[11]*f[75])) + f[8]*(f[11]*(-(f[57]*f[74]) + f[56]*f[75]) + f[10]*(f[56]*f[74] + f[57]*f[75])))) + f[54]*(f[8]*(-(f[71]*(f[56]*(f[11]*f[74] - f[10]*f[75]) + f[57]*(f[10]*f[74] + f[11]*f[75]))) + f[70]*(f[11]*(-(f[57]*f[74]) + f[56]*f[75]) + f[10]*(f[56]*f[74] + f[57]*f[75]))) + f[9]*(f[56]*(f[70]*(f[11]*f[74] - f[10]*f[75]) + f[71]*(f[10]*f[74] + f[11]*f[75])) + f[57]*(f[11]*(-(f[71]*f[74]) + f[70]*f[75]) + f[10]*(f[70]*f[74] + f[71]*f[75])))))*J[3]*J[4])/(3*U[3] - 4*U[4]) + (12*(f[53]*(f[68]*(f[55]*(f[9]*(f[7]*f[72] + f[6]*f[73]) + f[8]*(f[6]*f[72] - f[7]*f[73])) - f[54]*(f[6]*(-(f[9]*f[72]) + f[8]*f[73]) + f[7]*(f[8]*f[72] + f[9]*f[73]))) + f[69]*(f[7]*(f[54]*(f[9]*f[72] - f[8]*f[73]) + f[55]*(f[8]*f[72] + f[9]*f[73])) + f[6]*(f[9]*(-(f[55]*f[72]) + f[54]*f[73]) + f[8]*(f[54]*f[72] + f[55]*f[73])))) + f[52]*(f[6]*(-(f[69]*(f[54]*(f[9]*f[72] - f[8]*f[73]) + f[55]*(f[8]*f[72] + f[9]*f[73]))) + f[68]*(f[9]*(-(f[55]*f[72]) + f[54]*f[73]) + f[8]*(f[54]*f[72] + f[55]*f[73]))) + f[7]*(f[54]*(f[68]*(f[9]*f[72] - f[8]*f[73]) + f[69]*(f[8]*f[72] + f[9]*f[73])) + f[55]*(f[9]*(-(f[69]*f[72]) + f[68]*f[73]) + f[8]*(f[68]*f[72] + f[69]*f[73])))))*J[3]*J[4])/(2*U[3] - 3*U[4]) + (6*(f[51]*(f[66]*(f[53]*(f[7]*(f[5]*f[70] + f[4]*f[71]) + f[6]*(f[4]*f[70] - f[5]*f[71])) - f[52]*(f[4]*(-(f[7]*f[70]) + f[6]*f[71]) + f[5]*(f[6]*f[70] + f[7]*f[71]))) + f[67]*(f[5]*(f[52]*(f[7]*f[70] - f[6]*f[71]) + f[53]*(f[6]*f[70] + f[7]*f[71])) + f[4]*(f[7]*(-(f[53]*f[70]) + f[52]*f[71]) + f[6]*(f[52]*f[70] + f[53]*f[71])))) + f[50]*(f[4]*(-(f[67]*(f[52]*(f[7]*f[70] - f[6]*f[71]) + f[53]*(f[6]*f[70] + f[7]*f[71]))) + f[66]*(f[7]*(-(f[53]*f[70]) + f[52]*f[71]) + f[6]*(f[52]*f[70] + f[53]*f[71]))) + f[5]*(f[52]*(f[66]*(f[7]*f[70] - f[6]*f[71]) + f[67]*(f[6]*f[70] + f[7]*f[71])) + f[53]*(f[7]*(-(f[67]*f[70]) + f[66]*f[71]) + f[6]*(f[66]*f[70] + f[67]*f[71])))))*J[3]*J[4])/(U[3] - 2*U[4]) - (2*(f[49]*(f[64]*(f[51]*(f[5]*(f[3]*f[68] + f[2]*f[69]) + f[4]*(f[2]*f[68] - f[3]*f[69])) - f[50]*(f[2]*(-(f[5]*f[68]) + f[4]*f[69]) + f[3]*(f[4]*f[68] + f[5]*f[69]))) + f[65]*(f[3]*(f[50]*(f[5]*f[68] - f[4]*f[69]) + f[51]*(f[4]*f[68] + f[5]*f[69])) + f[2]*(f[5]*(-(f[51]*f[68]) + f[50]*f[69]) + f[4]*(f[50]*f[68] + f[51]*f[69])))) + f[48]*(f[2]*(-(f[65]*(f[50]*(f[5]*f[68] - f[4]*f[69]) + f[51]*(f[4]*f[68] + f[5]*f[69]))) + f[64]*(f[5]*(-(f[51]*f[68]) + f[50]*f[69]) + f[4]*(f[50]*f[68] + f[51]*f[69]))) + f[3]*(f[50]*(f[64]*(f[5]*f[68] - f[4]*f[69]) + f[65]*(f[4]*f[68] + f[5]*f[69])) + f[51]*(f[5]*(-(f[65]*f[68]) + f[64]*f[69]) + f[4]*(f[64]*f[68] + f[65]*f[69])))))*J[3]*J[4])/U[4])/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((42*(f[11]*(f[74]*(-(f[61]*(f[63]*(-(f[13]*f[78]) + f[12]*f[79]) + f[62]*(f[12]*f[78] + f[13]*f[79]))) + f[60]*(f[12]*(f[63]*f[78] - f[62]*f[79]) + f[13]*(f[62]*f[78] + f[63]*f[79]))) + f[75]*(f[12]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79])) + f[13]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79])))) + f[10]*(f[12]*(f[74]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79])) + f[75]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79]))) + f[13]*(-(f[60]*(f[74]*(f[63]*f[78] - f[62]*f[79]) + f[75]*(f[62]*f[78] + f[63]*f[79]))) + f[61]*(f[63]*(-(f[75]*f[78]) + f[74]*f[79]) + f[62]*(f[74]*f[78] + f[75]*f[79])))))*J[3]*J[4])/(5*U[0] - 6*U[4]) + (30*(f[9]*(f[72]*(-(f[59]*(f[61]*(-(f[11]*f[76]) + f[10]*f[77]) + f[60]*(f[10]*f[76] + f[11]*f[77]))) + f[58]*(f[10]*(f[61]*f[76] - f[60]*f[77]) + f[11]*(f[60]*f[76] + f[61]*f[77]))) + f[73]*(f[10]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77])) + f[11]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77])))) + f[8]*(f[10]*(f[72]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77])) + f[73]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77]))) + f[11]*(-(f[58]*(f[72]*(f[61]*f[76] - f[60]*f[77]) + f[73]*(f[60]*f[76] + f[61]*f[77]))) + f[59]*(f[61]*(-(f[73]*f[76]) + f[72]*f[77]) + f[60]*(f[72]*f[76] + f[73]*f[77])))))*J[3]*J[4])/(4*U[0] - 5*U[4]) + (20*(f[7]*(f[70]*(-(f[57]*(f[59]*(-(f[9]*f[74]) + f[8]*f[75]) + f[58]*(f[8]*f[74] + f[9]*f[75]))) + f[56]*(f[8]*(f[59]*f[74] - f[58]*f[75]) + f[9]*(f[58]*f[74] + f[59]*f[75]))) + f[71]*(f[8]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75])) + f[9]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75])))) + f[6]*(f[8]*(f[70]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75])) + f[71]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75]))) + f[9]*(-(f[56]*(f[70]*(f[59]*f[74] - f[58]*f[75]) + f[71]*(f[58]*f[74] + f[59]*f[75]))) + f[57]*(f[59]*(-(f[71]*f[74]) + f[70]*f[75]) + f[58]*(f[70]*f[74] + f[71]*f[75])))))*J[3]*J[4])/(3*U[0] - 4*U[4]) + (12*(f[5]*(f[68]*(-(f[55]*(f[57]*(-(f[7]*f[72]) + f[6]*f[73]) + f[56]*(f[6]*f[72] + f[7]*f[73]))) + f[54]*(f[6]*(f[57]*f[72] - f[56]*f[73]) + f[7]*(f[56]*f[72] + f[57]*f[73]))) + f[69]*(f[6]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73])) + f[7]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73])))) + f[4]*(f[6]*(f[68]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73])) + f[69]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73]))) + f[7]*(-(f[54]*(f[68]*(f[57]*f[72] - f[56]*f[73]) + f[69]*(f[56]*f[72] + f[57]*f[73]))) + f[55]*(f[57]*(-(f[69]*f[72]) + f[68]*f[73]) + f[56]*(f[68]*f[72] + f[69]*f[73])))))*J[3]*J[4])/(2*U[0] - 3*U[4]) + (6*(f[3]*(f[66]*(-(f[53]*(f[55]*(-(f[5]*f[70]) + f[4]*f[71]) + f[54]*(f[4]*f[70] + f[5]*f[71]))) + f[52]*(f[4]*(f[55]*f[70] - f[54]*f[71]) + f[5]*(f[54]*f[70] + f[55]*f[71]))) + f[67]*(f[4]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71])) + f[5]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71])))) + f[2]*(f[4]*(f[66]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71])) + f[67]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71]))) + f[5]*(-(f[52]*(f[66]*(f[55]*f[70] - f[54]*f[71]) + f[67]*(f[54]*f[70] + f[55]*f[71]))) + f[53]*(f[55]*(-(f[67]*f[70]) + f[66]*f[71]) + f[54]*(f[66]*f[70] + f[67]*f[71])))))*J[3]*J[4])/(U[0] - 2*U[4]) - (2*(f[1]*(f[64]*(-(f[51]*(f[53]*(-(f[3]*f[68]) + f[2]*f[69]) + f[52]*(f[2]*f[68] + f[3]*f[69]))) + f[50]*(f[2]*(f[53]*f[68] - f[52]*f[69]) + f[3]*(f[52]*f[68] + f[53]*f[69]))) + f[65]*(f[2]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69])) + f[3]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69])))) + f[0]*(f[2]*(f[64]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69])) + f[65]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69]))) + f[3]*(-(f[50]*(f[64]*(f[53]*f[68] - f[52]*f[69]) + f[65]*(f[52]*f[68] + f[53]*f[69]))) + f[51]*(f[53]*(-(f[65]*f[68]) + f[64]*f[69]) + f[52]*(f[64]*f[68] + f[65]*f[69])))))*J[3]*J[4])/U[4])/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((-2*(f[1]*(f[64]*((f[18]*(f[5]*f[20] - f[4]*f[21]) + f[19]*(f[4]*f[20] + f[5]*f[21]))*f[66] - (f[5]*(-(f[19]*f[20]) + f[18]*f[21]) + f[4]*(f[18]*f[20] + f[19]*f[21]))*f[67]) + f[65]*(f[19]*((-(f[5]*f[20]) + f[4]*f[21])*f[66] + (f[4]*f[20] + f[5]*f[21])*f[67]) + f[18]*(f[5]*(f[21]*f[66] + f[20]*f[67]) + f[4]*(f[20]*f[66] - f[21]*f[67])))) + f[0]*(f[19]*(-(((f[5]*f[20] - f[4]*f[21])*f[64] + (f[4]*f[20] + f[5]*f[21])*f[65])*f[66]) + (f[5]*(f[21]*f[64] - f[20]*f[65]) + f[4]*(f[20]*f[64] + f[21]*f[65]))*f[67]) + f[18]*(f[65]*((-(f[5]*f[20]) + f[4]*f[21])*f[66] + (f[4]*f[20] + f[5]*f[21])*f[67]) + f[64]*(f[5]*(f[21]*f[66] + f[20]*f[67]) + f[4]*(f[20]*f[66] - f[21]*f[67])))))*J[0]*J[4])/U[0] + (6*(f[3]*(f[66]*((f[20]*(f[7]*f[22] - f[6]*f[23]) + f[21]*(f[6]*f[22] + f[7]*f[23]))*f[68] - (f[7]*(-(f[21]*f[22]) + f[20]*f[23]) + f[6]*(f[20]*f[22] + f[21]*f[23]))*f[69]) + f[67]*(f[21]*((-(f[7]*f[22]) + f[6]*f[23])*f[68] + (f[6]*f[22] + f[7]*f[23])*f[69]) + f[20]*(f[7]*(f[23]*f[68] + f[22]*f[69]) + f[6]*(f[22]*f[68] - f[23]*f[69])))) + f[2]*(f[21]*(-(((f[7]*f[22] - f[6]*f[23])*f[66] + (f[6]*f[22] + f[7]*f[23])*f[67])*f[68]) + (f[7]*(f[23]*f[66] - f[22]*f[67]) + f[6]*(f[22]*f[66] + f[23]*f[67]))*f[69]) + f[20]*(f[67]*((-(f[7]*f[22]) + f[6]*f[23])*f[68] + (f[6]*f[22] + f[7]*f[23])*f[69]) + f[66]*(f[7]*(f[23]*f[68] + f[22]*f[69]) + f[6]*(f[22]*f[68] - f[23]*f[69])))))*J[0]*J[4])/(-2*U[0] + U[4]) + (12*(f[5]*(f[68]*((f[22]*(f[9]*f[24] - f[8]*f[25]) + f[23]*(f[8]*f[24] + f[9]*f[25]))*f[70] - (f[9]*(-(f[23]*f[24]) + f[22]*f[25]) + f[8]*(f[22]*f[24] + f[23]*f[25]))*f[71]) + f[69]*(f[23]*((-(f[9]*f[24]) + f[8]*f[25])*f[70] + (f[8]*f[24] + f[9]*f[25])*f[71]) + f[22]*(f[9]*(f[25]*f[70] + f[24]*f[71]) + f[8]*(f[24]*f[70] - f[25]*f[71])))) + f[4]*(f[23]*(-(((f[9]*f[24] - f[8]*f[25])*f[68] + (f[8]*f[24] + f[9]*f[25])*f[69])*f[70]) + (f[9]*(f[25]*f[68] - f[24]*f[69]) + f[8]*(f[24]*f[68] + f[25]*f[69]))*f[71]) + f[22]*(f[69]*((-(f[9]*f[24]) + f[8]*f[25])*f[70] + (f[8]*f[24] + f[9]*f[25])*f[71]) + f[68]*(f[9]*(f[25]*f[70] + f[24]*f[71]) + f[8]*(f[24]*f[70] - f[25]*f[71])))))*J[0]*J[4])/(-3*U[0] + 2*U[4]) + (20*(f[7]*(f[70]*((f[24]*(f[11]*f[26] - f[10]*f[27]) + f[25]*(f[10]*f[26] + f[11]*f[27]))*f[72] - (f[11]*(-(f[25]*f[26]) + f[24]*f[27]) + f[10]*(f[24]*f[26] + f[25]*f[27]))*f[73]) + f[71]*(f[25]*((-(f[11]*f[26]) + f[10]*f[27])*f[72] + (f[10]*f[26] + f[11]*f[27])*f[73]) + f[24]*(f[11]*(f[27]*f[72] + f[26]*f[73]) + f[10]*(f[26]*f[72] - f[27]*f[73])))) + f[6]*(f[25]*(-(((f[11]*f[26] - f[10]*f[27])*f[70] + (f[10]*f[26] + f[11]*f[27])*f[71])*f[72]) + (f[11]*(f[27]*f[70] - f[26]*f[71]) + f[10]*(f[26]*f[70] + f[27]*f[71]))*f[73]) + f[24]*(f[71]*((-(f[11]*f[26]) + f[10]*f[27])*f[72] + (f[10]*f[26] + f[11]*f[27])*f[73]) + f[70]*(f[11]*(f[27]*f[72] + f[26]*f[73]) + f[10]*(f[26]*f[72] - f[27]*f[73])))))*J[0]*J[4])/(-4*U[0] + 3*U[4]) + (30*(f[9]*(f[72]*((f[26]*(f[13]*f[28] - f[12]*f[29]) + f[27]*(f[12]*f[28] + f[13]*f[29]))*f[74] - (f[13]*(-(f[27]*f[28]) + f[26]*f[29]) + f[12]*(f[26]*f[28] + f[27]*f[29]))*f[75]) + f[73]*(f[27]*((-(f[13]*f[28]) + f[12]*f[29])*f[74] + (f[12]*f[28] + f[13]*f[29])*f[75]) + f[26]*(f[13]*(f[29]*f[74] + f[28]*f[75]) + f[12]*(f[28]*f[74] - f[29]*f[75])))) + f[8]*(f[27]*(-(((f[13]*f[28] - f[12]*f[29])*f[72] + (f[12]*f[28] + f[13]*f[29])*f[73])*f[74]) + (f[13]*(f[29]*f[72] - f[28]*f[73]) + f[12]*(f[28]*f[72] + f[29]*f[73]))*f[75]) + f[26]*(f[73]*((-(f[13]*f[28]) + f[12]*f[29])*f[74] + (f[12]*f[28] + f[13]*f[29])*f[75]) + f[72]*(f[13]*(f[29]*f[74] + f[28]*f[75]) + f[12]*(f[28]*f[74] - f[29]*f[75])))))*J[0]*J[4])/(-5*U[0] + 4*U[4]) + (42*(f[11]*(f[74]*((f[28]*(f[15]*f[30] - f[14]*f[31]) + f[29]*(f[14]*f[30] + f[15]*f[31]))*f[76] - (f[15]*(-(f[29]*f[30]) + f[28]*f[31]) + f[14]*(f[28]*f[30] + f[29]*f[31]))*f[77]) + f[75]*(f[29]*((-(f[15]*f[30]) + f[14]*f[31])*f[76] + (f[14]*f[30] + f[15]*f[31])*f[77]) + f[28]*(f[15]*(f[31]*f[76] + f[30]*f[77]) + f[14]*(f[30]*f[76] - f[31]*f[77])))) + f[10]*(f[29]*(-(((f[15]*f[30] - f[14]*f[31])*f[74] + (f[14]*f[30] + f[15]*f[31])*f[75])*f[76]) + (f[15]*(f[31]*f[74] - f[30]*f[75]) + f[14]*(f[30]*f[74] + f[31]*f[75]))*f[77]) + f[28]*(f[75]*((-(f[15]*f[30]) + f[14]*f[31])*f[76] + (f[14]*f[30] + f[15]*f[31])*f[77]) + f[74]*(f[15]*(f[31]*f[76] + f[30]*f[77]) + f[14]*(f[30]*f[76] - f[31]*f[77])))))*J[0]*J[4])/(-6*U[0] + 5*U[4]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((-2*(f[49]*(f[64]*(f[51]*(f[5]*(f[3]*f[68] + f[2]*f[69]) + f[4]*(f[2]*f[68] - f[3]*f[69])) - f[50]*(f[2]*(-(f[5]*f[68]) + f[4]*f[69]) + f[3]*(f[4]*f[68] + f[5]*f[69]))) + f[65]*(f[3]*(f[50]*(f[5]*f[68] - f[4]*f[69]) + f[51]*(f[4]*f[68] + f[5]*f[69])) + f[2]*(f[5]*(-(f[51]*f[68]) + f[50]*f[69]) + f[4]*(f[50]*f[68] + f[51]*f[69])))) + f[48]*(f[2]*(-(f[65]*(f[50]*(f[5]*f[68] - f[4]*f[69]) + f[51]*(f[4]*f[68] + f[5]*f[69]))) + f[64]*(f[5]*(-(f[51]*f[68]) + f[50]*f[69]) + f[4]*(f[50]*f[68] + f[51]*f[69]))) + f[3]*(f[50]*(f[64]*(f[5]*f[68] - f[4]*f[69]) + f[65]*(f[4]*f[68] + f[5]*f[69])) + f[51]*(f[5]*(-(f[65]*f[68]) + f[64]*f[69]) + f[4]*(f[64]*f[68] + f[65]*f[69])))))*J[3]*J[4])/U[0] + (6*(f[51]*(f[66]*(f[53]*(f[7]*(f[5]*f[70] + f[4]*f[71]) + f[6]*(f[4]*f[70] - f[5]*f[71])) - f[52]*(f[4]*(-(f[7]*f[70]) + f[6]*f[71]) + f[5]*(f[6]*f[70] + f[7]*f[71]))) + f[67]*(f[5]*(f[52]*(f[7]*f[70] - f[6]*f[71]) + f[53]*(f[6]*f[70] + f[7]*f[71])) + f[4]*(f[7]*(-(f[53]*f[70]) + f[52]*f[71]) + f[6]*(f[52]*f[70] + f[53]*f[71])))) + f[50]*(f[4]*(-(f[67]*(f[52]*(f[7]*f[70] - f[6]*f[71]) + f[53]*(f[6]*f[70] + f[7]*f[71]))) + f[66]*(f[7]*(-(f[53]*f[70]) + f[52]*f[71]) + f[6]*(f[52]*f[70] + f[53]*f[71]))) + f[5]*(f[52]*(f[66]*(f[7]*f[70] - f[6]*f[71]) + f[67]*(f[6]*f[70] + f[7]*f[71])) + f[53]*(f[7]*(-(f[67]*f[70]) + f[66]*f[71]) + f[6]*(f[66]*f[70] + f[67]*f[71])))))*J[3]*J[4])/(-2*U[0] + U[4]) + (12*(f[53]*(f[68]*(f[55]*(f[9]*(f[7]*f[72] + f[6]*f[73]) + f[8]*(f[6]*f[72] - f[7]*f[73])) - f[54]*(f[6]*(-(f[9]*f[72]) + f[8]*f[73]) + f[7]*(f[8]*f[72] + f[9]*f[73]))) + f[69]*(f[7]*(f[54]*(f[9]*f[72] - f[8]*f[73]) + f[55]*(f[8]*f[72] + f[9]*f[73])) + f[6]*(f[9]*(-(f[55]*f[72]) + f[54]*f[73]) + f[8]*(f[54]*f[72] + f[55]*f[73])))) + f[52]*(f[6]*(-(f[69]*(f[54]*(f[9]*f[72] - f[8]*f[73]) + f[55]*(f[8]*f[72] + f[9]*f[73]))) + f[68]*(f[9]*(-(f[55]*f[72]) + f[54]*f[73]) + f[8]*(f[54]*f[72] + f[55]*f[73]))) + f[7]*(f[54]*(f[68]*(f[9]*f[72] - f[8]*f[73]) + f[69]*(f[8]*f[72] + f[9]*f[73])) + f[55]*(f[9]*(-(f[69]*f[72]) + f[68]*f[73]) + f[8]*(f[68]*f[72] + f[69]*f[73])))))*J[3]*J[4])/(-3*U[0] + 2*U[4]) + (20*(f[55]*(f[70]*(f[57]*(f[11]*(f[9]*f[74] + f[8]*f[75]) + f[10]*(f[8]*f[74] - f[9]*f[75])) - f[56]*(f[8]*(-(f[11]*f[74]) + f[10]*f[75]) + f[9]*(f[10]*f[74] + f[11]*f[75]))) + f[71]*(f[9]*(f[56]*(f[11]*f[74] - f[10]*f[75]) + f[57]*(f[10]*f[74] + f[11]*f[75])) + f[8]*(f[11]*(-(f[57]*f[74]) + f[56]*f[75]) + f[10]*(f[56]*f[74] + f[57]*f[75])))) + f[54]*(f[8]*(-(f[71]*(f[56]*(f[11]*f[74] - f[10]*f[75]) + f[57]*(f[10]*f[74] + f[11]*f[75]))) + f[70]*(f[11]*(-(f[57]*f[74]) + f[56]*f[75]) + f[10]*(f[56]*f[74] + f[57]*f[75]))) + f[9]*(f[56]*(f[70]*(f[11]*f[74] - f[10]*f[75]) + f[71]*(f[10]*f[74] + f[11]*f[75])) + f[57]*(f[11]*(-(f[71]*f[74]) + f[70]*f[75]) + f[10]*(f[70]*f[74] + f[71]*f[75])))))*J[3]*J[4])/(-4*U[0] + 3*U[4]) + (30*(f[57]*(f[72]*(f[59]*(f[13]*(f[11]*f[76] + f[10]*f[77]) + f[12]*(f[10]*f[76] - f[11]*f[77])) - f[58]*(f[10]*(-(f[13]*f[76]) + f[12]*f[77]) + f[11]*(f[12]*f[76] + f[13]*f[77]))) + f[73]*(f[11]*(f[58]*(f[13]*f[76] - f[12]*f[77]) + f[59]*(f[12]*f[76] + f[13]*f[77])) + f[10]*(f[13]*(-(f[59]*f[76]) + f[58]*f[77]) + f[12]*(f[58]*f[76] + f[59]*f[77])))) + f[56]*(f[10]*(-(f[73]*(f[58]*(f[13]*f[76] - f[12]*f[77]) + f[59]*(f[12]*f[76] + f[13]*f[77]))) + f[72]*(f[13]*(-(f[59]*f[76]) + f[58]*f[77]) + f[12]*(f[58]*f[76] + f[59]*f[77]))) + f[11]*(f[58]*(f[72]*(f[13]*f[76] - f[12]*f[77]) + f[73]*(f[12]*f[76] + f[13]*f[77])) + f[59]*(f[13]*(-(f[73]*f[76]) + f[72]*f[77]) + f[12]*(f[72]*f[76] + f[73]*f[77])))))*J[3]*J[4])/(-5*U[0] + 4*U[4]) + (42*(f[59]*(f[74]*(f[61]*(f[15]*(f[13]*f[78] + f[12]*f[79]) + f[14]*(f[12]*f[78] - f[13]*f[79])) - f[60]*(f[12]*(-(f[15]*f[78]) + f[14]*f[79]) + f[13]*(f[14]*f[78] + f[15]*f[79]))) + f[75]*(f[13]*(f[60]*(f[15]*f[78] - f[14]*f[79]) + f[61]*(f[14]*f[78] + f[15]*f[79])) + f[12]*(f[15]*(-(f[61]*f[78]) + f[60]*f[79]) + f[14]*(f[60]*f[78] + f[61]*f[79])))) + f[58]*(f[12]*(-(f[75]*(f[60]*(f[15]*f[78] - f[14]*f[79]) + f[61]*(f[14]*f[78] + f[15]*f[79]))) + f[74]*(f[15]*(-(f[61]*f[78]) + f[60]*f[79]) + f[14]*(f[60]*f[78] + f[61]*f[79]))) + f[13]*(f[60]*(f[74]*(f[15]*f[78] - f[14]*f[79]) + f[75]*(f[14]*f[78] + f[15]*f[79])) + f[61]*(f[15]*(-(f[75]*f[78]) + f[74]*f[79]) + f[14]*(f[74]*f[78] + f[75]*f[79])))))*J[3]*J[4])/(-6*U[0] + 5*U[4]))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - ((-2*(f[49]*(f[64]*((f[34]*(-(f[37]*f[52]) + f[36]*f[53]) + f[35]*(f[36]*f[52] + f[37]*f[53]))*f[66] - (f[37]*(f[35]*f[52] + f[34]*f[53]) + f[36]*(f[34]*f[52] - f[35]*f[53]))*f[67]) + f[65]*(f[35]*((f[37]*f[52] - f[36]*f[53])*f[66] + (f[36]*f[52] + f[37]*f[53])*f[67]) + f[34]*(f[37]*(f[53]*f[66] - f[52]*f[67]) + f[36]*(f[52]*f[66] + f[53]*f[67])))) + f[48]*(f[35]*(-(((-(f[37]*f[52]) + f[36]*f[53])*f[64] + (f[36]*f[52] + f[37]*f[53])*f[65])*f[66]) + (f[37]*(f[53]*f[64] + f[52]*f[65]) + f[36]*(f[52]*f[64] - f[53]*f[65]))*f[67]) + f[34]*(f[65]*((f[37]*f[52] - f[36]*f[53])*f[66] + (f[36]*f[52] + f[37]*f[53])*f[67]) + f[64]*(f[37]*(f[53]*f[66] - f[52]*f[67]) + f[36]*(f[52]*f[66] + f[53]*f[67])))))*J[2]*J[3])/U[3] + (6*(f[51]*(f[66]*((f[36]*(-(f[39]*f[54]) + f[38]*f[55]) + f[37]*(f[38]*f[54] + f[39]*f[55]))*f[68] - (f[39]*(f[37]*f[54] + f[36]*f[55]) + f[38]*(f[36]*f[54] - f[37]*f[55]))*f[69]) + f[67]*(f[37]*((f[39]*f[54] - f[38]*f[55])*f[68] + (f[38]*f[54] + f[39]*f[55])*f[69]) + f[36]*(f[39]*(f[55]*f[68] - f[54]*f[69]) + f[38]*(f[54]*f[68] + f[55]*f[69])))) + f[50]*(f[37]*(-(((-(f[39]*f[54]) + f[38]*f[55])*f[66] + (f[38]*f[54] + f[39]*f[55])*f[67])*f[68]) + (f[39]*(f[55]*f[66] + f[54]*f[67]) + f[38]*(f[54]*f[66] - f[55]*f[67]))*f[69]) + f[36]*(f[67]*((f[39]*f[54] - f[38]*f[55])*f[68] + (f[38]*f[54] + f[39]*f[55])*f[69]) + f[66]*(f[39]*(f[55]*f[68] - f[54]*f[69]) + f[38]*(f[54]*f[68] + f[55]*f[69])))))*J[2]*J[3])/(-2*U[3] + U[4]) + (12*(f[53]*(f[68]*((f[38]*(-(f[41]*f[56]) + f[40]*f[57]) + f[39]*(f[40]*f[56] + f[41]*f[57]))*f[70] - (f[41]*(f[39]*f[56] + f[38]*f[57]) + f[40]*(f[38]*f[56] - f[39]*f[57]))*f[71]) + f[69]*(f[39]*((f[41]*f[56] - f[40]*f[57])*f[70] + (f[40]*f[56] + f[41]*f[57])*f[71]) + f[38]*(f[41]*(f[57]*f[70] - f[56]*f[71]) + f[40]*(f[56]*f[70] + f[57]*f[71])))) + f[52]*(f[39]*(-(((-(f[41]*f[56]) + f[40]*f[57])*f[68] + (f[40]*f[56] + f[41]*f[57])*f[69])*f[70]) + (f[41]*(f[57]*f[68] + f[56]*f[69]) + f[40]*(f[56]*f[68] - f[57]*f[69]))*f[71]) + f[38]*(f[69]*((f[41]*f[56] - f[40]*f[57])*f[70] + (f[40]*f[56] + f[41]*f[57])*f[71]) + f[68]*(f[41]*(f[57]*f[70] - f[56]*f[71]) + f[40]*(f[56]*f[70] + f[57]*f[71])))))*J[2]*J[3])/(-3*U[3] + 2*U[4]) + (20*(f[55]*(f[70]*((f[40]*(-(f[43]*f[58]) + f[42]*f[59]) + f[41]*(f[42]*f[58] + f[43]*f[59]))*f[72] - (f[43]*(f[41]*f[58] + f[40]*f[59]) + f[42]*(f[40]*f[58] - f[41]*f[59]))*f[73]) + f[71]*(f[41]*((f[43]*f[58] - f[42]*f[59])*f[72] + (f[42]*f[58] + f[43]*f[59])*f[73]) + f[40]*(f[43]*(f[59]*f[72] - f[58]*f[73]) + f[42]*(f[58]*f[72] + f[59]*f[73])))) + f[54]*(f[41]*(-(((-(f[43]*f[58]) + f[42]*f[59])*f[70] + (f[42]*f[58] + f[43]*f[59])*f[71])*f[72]) + (f[43]*(f[59]*f[70] + f[58]*f[71]) + f[42]*(f[58]*f[70] - f[59]*f[71]))*f[73]) + f[40]*(f[71]*((f[43]*f[58] - f[42]*f[59])*f[72] + (f[42]*f[58] + f[43]*f[59])*f[73]) + f[70]*(f[43]*(f[59]*f[72] - f[58]*f[73]) + f[42]*(f[58]*f[72] + f[59]*f[73])))))*J[2]*J[3])/(-4*U[3] + 3*U[4]) + (30*(f[57]*(f[72]*((f[42]*(-(f[45]*f[60]) + f[44]*f[61]) + f[43]*(f[44]*f[60] + f[45]*f[61]))*f[74] - (f[45]*(f[43]*f[60] + f[42]*f[61]) + f[44]*(f[42]*f[60] - f[43]*f[61]))*f[75]) + f[73]*(f[43]*((f[45]*f[60] - f[44]*f[61])*f[74] + (f[44]*f[60] + f[45]*f[61])*f[75]) + f[42]*(f[45]*(f[61]*f[74] - f[60]*f[75]) + f[44]*(f[60]*f[74] + f[61]*f[75])))) + f[56]*(f[43]*(-(((-(f[45]*f[60]) + f[44]*f[61])*f[72] + (f[44]*f[60] + f[45]*f[61])*f[73])*f[74]) + (f[45]*(f[61]*f[72] + f[60]*f[73]) + f[44]*(f[60]*f[72] - f[61]*f[73]))*f[75]) + f[42]*(f[73]*((f[45]*f[60] - f[44]*f[61])*f[74] + (f[44]*f[60] + f[45]*f[61])*f[75]) + f[72]*(f[45]*(f[61]*f[74] - f[60]*f[75]) + f[44]*(f[60]*f[74] + f[61]*f[75])))))*J[2]*J[3])/(-5*U[3] + 4*U[4]) + (42*(f[59]*(f[74]*((f[44]*(-(f[47]*f[62]) + f[46]*f[63]) + f[45]*(f[46]*f[62] + f[47]*f[63]))*f[76] - (f[47]*(f[45]*f[62] + f[44]*f[63]) + f[46]*(f[44]*f[62] - f[45]*f[63]))*f[77]) + f[75]*(f[45]*((f[47]*f[62] - f[46]*f[63])*f[76] + (f[46]*f[62] + f[47]*f[63])*f[77]) + f[44]*(f[47]*(f[63]*f[76] - f[62]*f[77]) + f[46]*(f[62]*f[76] + f[63]*f[77])))) + f[58]*(f[45]*(-(((-(f[47]*f[62]) + f[46]*f[63])*f[74] + (f[46]*f[62] + f[47]*f[63])*f[75])*f[76]) + (f[47]*(f[63]*f[74] + f[62]*f[75]) + f[46]*(f[62]*f[74] - f[63]*f[75]))*f[77]) + f[44]*(f[75]*((f[47]*f[62] - f[46]*f[63])*f[76] + (f[46]*f[62] + f[47]*f[63])*f[77]) + f[74]*(f[47]*(f[63]*f[76] - f[62]*f[77]) + f[46]*(f[62]*f[76] + f[63]*f[77])))))*J[2]*J[3])/(-6*U[3] + 5*U[4]))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) - ((-2*(f[1]*(f[64]*(-(f[51]*(f[53]*(-(f[3]*f[68]) + f[2]*f[69]) + f[52]*(f[2]*f[68] + f[3]*f[69]))) + f[50]*(f[2]*(f[53]*f[68] - f[52]*f[69]) + f[3]*(f[52]*f[68] + f[53]*f[69]))) + f[65]*(f[2]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69])) + f[3]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69])))) + f[0]*(f[2]*(f[64]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69])) + f[65]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69]))) + f[3]*(-(f[50]*(f[64]*(f[53]*f[68] - f[52]*f[69]) + f[65]*(f[52]*f[68] + f[53]*f[69]))) + f[51]*(f[53]*(-(f[65]*f[68]) + f[64]*f[69]) + f[52]*(f[64]*f[68] + f[65]*f[69])))))*J[3]*J[4])/U[3] + (6*(f[3]*(f[66]*(-(f[53]*(f[55]*(-(f[5]*f[70]) + f[4]*f[71]) + f[54]*(f[4]*f[70] + f[5]*f[71]))) + f[52]*(f[4]*(f[55]*f[70] - f[54]*f[71]) + f[5]*(f[54]*f[70] + f[55]*f[71]))) + f[67]*(f[4]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71])) + f[5]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71])))) + f[2]*(f[4]*(f[66]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71])) + f[67]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71]))) + f[5]*(-(f[52]*(f[66]*(f[55]*f[70] - f[54]*f[71]) + f[67]*(f[54]*f[70] + f[55]*f[71]))) + f[53]*(f[55]*(-(f[67]*f[70]) + f[66]*f[71]) + f[54]*(f[66]*f[70] + f[67]*f[71])))))*J[3]*J[4])/(-2*U[3] + U[4]) + (12*(f[5]*(f[68]*(-(f[55]*(f[57]*(-(f[7]*f[72]) + f[6]*f[73]) + f[56]*(f[6]*f[72] + f[7]*f[73]))) + f[54]*(f[6]*(f[57]*f[72] - f[56]*f[73]) + f[7]*(f[56]*f[72] + f[57]*f[73]))) + f[69]*(f[6]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73])) + f[7]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73])))) + f[4]*(f[6]*(f[68]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73])) + f[69]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73]))) + f[7]*(-(f[54]*(f[68]*(f[57]*f[72] - f[56]*f[73]) + f[69]*(f[56]*f[72] + f[57]*f[73]))) + f[55]*(f[57]*(-(f[69]*f[72]) + f[68]*f[73]) + f[56]*(f[68]*f[72] + f[69]*f[73])))))*J[3]*J[4])/(-3*U[3] + 2*U[4]) + (20*(f[7]*(f[70]*(-(f[57]*(f[59]*(-(f[9]*f[74]) + f[8]*f[75]) + f[58]*(f[8]*f[74] + f[9]*f[75]))) + f[56]*(f[8]*(f[59]*f[74] - f[58]*f[75]) + f[9]*(f[58]*f[74] + f[59]*f[75]))) + f[71]*(f[8]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75])) + f[9]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75])))) + f[6]*(f[8]*(f[70]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75])) + f[71]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75]))) + f[9]*(-(f[56]*(f[70]*(f[59]*f[74] - f[58]*f[75]) + f[71]*(f[58]*f[74] + f[59]*f[75]))) + f[57]*(f[59]*(-(f[71]*f[74]) + f[70]*f[75]) + f[58]*(f[70]*f[74] + f[71]*f[75])))))*J[3]*J[4])/(-4*U[3] + 3*U[4]) + (30*(f[9]*(f[72]*(-(f[59]*(f[61]*(-(f[11]*f[76]) + f[10]*f[77]) + f[60]*(f[10]*f[76] + f[11]*f[77]))) + f[58]*(f[10]*(f[61]*f[76] - f[60]*f[77]) + f[11]*(f[60]*f[76] + f[61]*f[77]))) + f[73]*(f[10]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77])) + f[11]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77])))) + f[8]*(f[10]*(f[72]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77])) + f[73]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77]))) + f[11]*(-(f[58]*(f[72]*(f[61]*f[76] - f[60]*f[77]) + f[73]*(f[60]*f[76] + f[61]*f[77]))) + f[59]*(f[61]*(-(f[73]*f[76]) + f[72]*f[77]) + f[60]*(f[72]*f[76] + f[73]*f[77])))))*J[3]*J[4])/(-5*U[3] + 4*U[4]) + (42*(f[11]*(f[74]*(-(f[61]*(f[63]*(-(f[13]*f[78]) + f[12]*f[79]) + f[62]*(f[12]*f[78] + f[13]*f[79]))) + f[60]*(f[12]*(f[63]*f[78] - f[62]*f[79]) + f[13]*(f[62]*f[78] + f[63]*f[79]))) + f[75]*(f[12]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79])) + f[13]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79])))) + f[10]*(f[12]*(f[74]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79])) + f[75]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79]))) + f[13]*(-(f[60]*(f[74]*(f[63]*f[78] - f[62]*f[79]) + f[75]*(f[62]*f[78] + f[63]*f[79]))) + f[61]*(f[63]*(-(f[75]*f[78]) + f[74]*f[79]) + f[62]*(f[74]*f[78] + f[75]*f[79])))))*J[3]*J[4])/(-6*U[3] + 5*U[4]))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[0]*(f[19]*(f[66]*(f[16]*(f[5]*f[68] - f[4]*f[69]) + f[17]*(f[4]*f[68] + f[5]*f[69])) + f[67]*(f[5]*(-(f[17]*f[68]) + f[16]*f[69]) + f[4]*(f[16]*f[68] + f[17]*f[69]))) + f[18]*(-(f[17]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69]))) + f[16]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))) + f[1]*(f[16]*(-(f[66]*(f[18]*(-(f[5]*f[68]) + f[4]*f[69]) + f[19]*(f[4]*f[68] + f[5]*f[69]))) + f[67]*(f[5]*(f[19]*f[68] + f[18]*f[69]) + f[4]*(f[18]*f[68] - f[19]*f[69]))) + f[17]*(f[19]*(f[66]*(f[5]*f[68] - f[4]*f[69]) + f[67]*(f[4]*f[68] + f[5]*f[69])) + f[18]*(f[5]*(-(f[67]*f[68]) + f[66]*f[69]) + f[4]*(f[66]*f[68] + f[67]*f[69])))))*J[0]*J[4])/U[4] + (6*(f[2]*(f[21]*(f[68]*(f[18]*(f[7]*f[70] - f[6]*f[71]) + f[19]*(f[6]*f[70] + f[7]*f[71])) + f[69]*(f[7]*(-(f[19]*f[70]) + f[18]*f[71]) + f[6]*(f[18]*f[70] + f[19]*f[71]))) + f[20]*(-(f[19]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71]))) + f[18]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))) + f[3]*(f[18]*(-(f[68]*(f[20]*(-(f[7]*f[70]) + f[6]*f[71]) + f[21]*(f[6]*f[70] + f[7]*f[71]))) + f[69]*(f[7]*(f[21]*f[70] + f[20]*f[71]) + f[6]*(f[20]*f[70] - f[21]*f[71]))) + f[19]*(f[21]*(f[68]*(f[7]*f[70] - f[6]*f[71]) + f[69]*(f[6]*f[70] + f[7]*f[71])) + f[20]*(f[7]*(-(f[69]*f[70]) + f[68]*f[71]) + f[6]*(f[68]*f[70] + f[69]*f[71])))))*J[0]*J[4])/(-U[0] + 2*U[4]) + (12*(f[4]*(f[23]*(f[70]*(f[20]*(f[9]*f[72] - f[8]*f[73]) + f[21]*(f[8]*f[72] + f[9]*f[73])) + f[71]*(f[9]*(-(f[21]*f[72]) + f[20]*f[73]) + f[8]*(f[20]*f[72] + f[21]*f[73]))) + f[22]*(-(f[21]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73]))) + f[20]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))) + f[5]*(f[20]*(-(f[70]*(f[22]*(-(f[9]*f[72]) + f[8]*f[73]) + f[23]*(f[8]*f[72] + f[9]*f[73]))) + f[71]*(f[9]*(f[23]*f[72] + f[22]*f[73]) + f[8]*(f[22]*f[72] - f[23]*f[73]))) + f[21]*(f[23]*(f[70]*(f[9]*f[72] - f[8]*f[73]) + f[71]*(f[8]*f[72] + f[9]*f[73])) + f[22]*(f[9]*(-(f[71]*f[72]) + f[70]*f[73]) + f[8]*(f[70]*f[72] + f[71]*f[73])))))*J[0]*J[4])/(-2*U[0] + 3*U[4]) + (20*(f[6]*(f[25]*(f[72]*(f[22]*(f[11]*f[74] - f[10]*f[75]) + f[23]*(f[10]*f[74] + f[11]*f[75])) + f[73]*(f[11]*(-(f[23]*f[74]) + f[22]*f[75]) + f[10]*(f[22]*f[74] + f[23]*f[75]))) + f[24]*(-(f[23]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75]))) + f[22]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))) + f[7]*(f[22]*(-(f[72]*(f[24]*(-(f[11]*f[74]) + f[10]*f[75]) + f[25]*(f[10]*f[74] + f[11]*f[75]))) + f[73]*(f[11]*(f[25]*f[74] + f[24]*f[75]) + f[10]*(f[24]*f[74] - f[25]*f[75]))) + f[23]*(f[25]*(f[72]*(f[11]*f[74] - f[10]*f[75]) + f[73]*(f[10]*f[74] + f[11]*f[75])) + f[24]*(f[11]*(-(f[73]*f[74]) + f[72]*f[75]) + f[10]*(f[72]*f[74] + f[73]*f[75])))))*J[0]*J[4])/(-3*U[0] + 4*U[4]) + (30*(f[8]*(f[27]*(f[74]*(f[24]*(f[13]*f[76] - f[12]*f[77]) + f[25]*(f[12]*f[76] + f[13]*f[77])) + f[75]*(f[13]*(-(f[25]*f[76]) + f[24]*f[77]) + f[12]*(f[24]*f[76] + f[25]*f[77]))) + f[26]*(-(f[25]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77]))) + f[24]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))) + f[9]*(f[24]*(-(f[74]*(f[26]*(-(f[13]*f[76]) + f[12]*f[77]) + f[27]*(f[12]*f[76] + f[13]*f[77]))) + f[75]*(f[13]*(f[27]*f[76] + f[26]*f[77]) + f[12]*(f[26]*f[76] - f[27]*f[77]))) + f[25]*(f[27]*(f[74]*(f[13]*f[76] - f[12]*f[77]) + f[75]*(f[12]*f[76] + f[13]*f[77])) + f[26]*(f[13]*(-(f[75]*f[76]) + f[74]*f[77]) + f[12]*(f[74]*f[76] + f[75]*f[77])))))*J[0]*J[4])/(-4*U[0] + 5*U[4]) + (42*(f[10]*(f[29]*(f[76]*(f[26]*(f[15]*f[78] - f[14]*f[79]) + f[27]*(f[14]*f[78] + f[15]*f[79])) + f[77]*(f[15]*(-(f[27]*f[78]) + f[26]*f[79]) + f[14]*(f[26]*f[78] + f[27]*f[79]))) + f[28]*(-(f[27]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79]))) + f[26]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))) + f[11]*(f[26]*(-(f[76]*(f[28]*(-(f[15]*f[78]) + f[14]*f[79]) + f[29]*(f[14]*f[78] + f[15]*f[79]))) + f[77]*(f[15]*(f[29]*f[78] + f[28]*f[79]) + f[14]*(f[28]*f[78] - f[29]*f[79]))) + f[27]*(f[29]*(f[76]*(f[15]*f[78] - f[14]*f[79]) + f[77]*(f[14]*f[78] + f[15]*f[79])) + f[28]*(f[15]*(-(f[77]*f[78]) + f[76]*f[79]) + f[14]*(f[76]*f[78] + f[77]*f[79])))))*J[0]*J[4])/(-5*U[0] + 6*U[4]))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[1]*(f[64]*(-(f[51]*(f[53]*(-(f[3]*f[68]) + f[2]*f[69]) + f[52]*(f[2]*f[68] + f[3]*f[69]))) + f[50]*(f[2]*(f[53]*f[68] - f[52]*f[69]) + f[3]*(f[52]*f[68] + f[53]*f[69]))) + f[65]*(f[2]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69])) + f[3]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69])))) + f[0]*(f[2]*(f[64]*(f[53]*(f[51]*f[68] + f[50]*f[69]) + f[52]*(f[50]*f[68] - f[51]*f[69])) + f[65]*(f[50]*(-(f[53]*f[68]) + f[52]*f[69]) + f[51]*(f[52]*f[68] + f[53]*f[69]))) + f[3]*(-(f[50]*(f[64]*(f[53]*f[68] - f[52]*f[69]) + f[65]*(f[52]*f[68] + f[53]*f[69]))) + f[51]*(f[53]*(-(f[65]*f[68]) + f[64]*f[69]) + f[52]*(f[64]*f[68] + f[65]*f[69])))))*J[3]*J[4])/U[4] + (6*(f[3]*(f[66]*(-(f[53]*(f[55]*(-(f[5]*f[70]) + f[4]*f[71]) + f[54]*(f[4]*f[70] + f[5]*f[71]))) + f[52]*(f[4]*(f[55]*f[70] - f[54]*f[71]) + f[5]*(f[54]*f[70] + f[55]*f[71]))) + f[67]*(f[4]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71])) + f[5]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71])))) + f[2]*(f[4]*(f[66]*(f[55]*(f[53]*f[70] + f[52]*f[71]) + f[54]*(f[52]*f[70] - f[53]*f[71])) + f[67]*(f[52]*(-(f[55]*f[70]) + f[54]*f[71]) + f[53]*(f[54]*f[70] + f[55]*f[71]))) + f[5]*(-(f[52]*(f[66]*(f[55]*f[70] - f[54]*f[71]) + f[67]*(f[54]*f[70] + f[55]*f[71]))) + f[53]*(f[55]*(-(f[67]*f[70]) + f[66]*f[71]) + f[54]*(f[66]*f[70] + f[67]*f[71])))))*J[3]*J[4])/(-U[0] + 2*U[4]) + (12*(f[5]*(f[68]*(-(f[55]*(f[57]*(-(f[7]*f[72]) + f[6]*f[73]) + f[56]*(f[6]*f[72] + f[7]*f[73]))) + f[54]*(f[6]*(f[57]*f[72] - f[56]*f[73]) + f[7]*(f[56]*f[72] + f[57]*f[73]))) + f[69]*(f[6]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73])) + f[7]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73])))) + f[4]*(f[6]*(f[68]*(f[57]*(f[55]*f[72] + f[54]*f[73]) + f[56]*(f[54]*f[72] - f[55]*f[73])) + f[69]*(f[54]*(-(f[57]*f[72]) + f[56]*f[73]) + f[55]*(f[56]*f[72] + f[57]*f[73]))) + f[7]*(-(f[54]*(f[68]*(f[57]*f[72] - f[56]*f[73]) + f[69]*(f[56]*f[72] + f[57]*f[73]))) + f[55]*(f[57]*(-(f[69]*f[72]) + f[68]*f[73]) + f[56]*(f[68]*f[72] + f[69]*f[73])))))*J[3]*J[4])/(-2*U[0] + 3*U[4]) + (20*(f[7]*(f[70]*(-(f[57]*(f[59]*(-(f[9]*f[74]) + f[8]*f[75]) + f[58]*(f[8]*f[74] + f[9]*f[75]))) + f[56]*(f[8]*(f[59]*f[74] - f[58]*f[75]) + f[9]*(f[58]*f[74] + f[59]*f[75]))) + f[71]*(f[8]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75])) + f[9]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75])))) + f[6]*(f[8]*(f[70]*(f[59]*(f[57]*f[74] + f[56]*f[75]) + f[58]*(f[56]*f[74] - f[57]*f[75])) + f[71]*(f[56]*(-(f[59]*f[74]) + f[58]*f[75]) + f[57]*(f[58]*f[74] + f[59]*f[75]))) + f[9]*(-(f[56]*(f[70]*(f[59]*f[74] - f[58]*f[75]) + f[71]*(f[58]*f[74] + f[59]*f[75]))) + f[57]*(f[59]*(-(f[71]*f[74]) + f[70]*f[75]) + f[58]*(f[70]*f[74] + f[71]*f[75])))))*J[3]*J[4])/(-3*U[0] + 4*U[4]) + (30*(f[9]*(f[72]*(-(f[59]*(f[61]*(-(f[11]*f[76]) + f[10]*f[77]) + f[60]*(f[10]*f[76] + f[11]*f[77]))) + f[58]*(f[10]*(f[61]*f[76] - f[60]*f[77]) + f[11]*(f[60]*f[76] + f[61]*f[77]))) + f[73]*(f[10]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77])) + f[11]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77])))) + f[8]*(f[10]*(f[72]*(f[61]*(f[59]*f[76] + f[58]*f[77]) + f[60]*(f[58]*f[76] - f[59]*f[77])) + f[73]*(f[58]*(-(f[61]*f[76]) + f[60]*f[77]) + f[59]*(f[60]*f[76] + f[61]*f[77]))) + f[11]*(-(f[58]*(f[72]*(f[61]*f[76] - f[60]*f[77]) + f[73]*(f[60]*f[76] + f[61]*f[77]))) + f[59]*(f[61]*(-(f[73]*f[76]) + f[72]*f[77]) + f[60]*(f[72]*f[76] + f[73]*f[77])))))*J[3]*J[4])/(-4*U[0] + 5*U[4]) + (42*(f[11]*(f[74]*(-(f[61]*(f[63]*(-(f[13]*f[78]) + f[12]*f[79]) + f[62]*(f[12]*f[78] + f[13]*f[79]))) + f[60]*(f[12]*(f[63]*f[78] - f[62]*f[79]) + f[13]*(f[62]*f[78] + f[63]*f[79]))) + f[75]*(f[12]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79])) + f[13]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79])))) + f[10]*(f[12]*(f[74]*(f[63]*(f[61]*f[78] + f[60]*f[79]) + f[62]*(f[60]*f[78] - f[61]*f[79])) + f[75]*(f[60]*(-(f[63]*f[78]) + f[62]*f[79]) + f[61]*(f[62]*f[78] + f[63]*f[79]))) + f[13]*(-(f[60]*(f[74]*(f[63]*f[78] - f[62]*f[79]) + f[75]*(f[62]*f[78] + f[63]*f[79]))) + f[61]*(f[63]*(-(f[75]*f[78]) + f[74]*f[79]) + f[62]*(f[74]*f[78] + f[75]*f[79])))))*J[3]*J[4])/(-5*U[0] + 6*U[4]))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + ((2*(f[33]*(f[48]*(-(f[67]*(f[53]*(f[35]*f[68] + f[34]*f[69]) + f[52]*(f[34]*f[68] - f[35]*f[69]))) + f[66]*(f[34]*(-(f[53]*f[68]) + f[52]*f[69]) + f[35]*(f[52]*f[68] + f[53]*f[69]))) + f[49]*(f[35]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[34]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))) + f[32]*(f[35]*(f[67]*(f[53]*(f[49]*f[68] + f[48]*f[69]) + f[52]*(f[48]*f[68] - f[49]*f[69])) - f[66]*(f[48]*(-(f[53]*f[68]) + f[52]*f[69]) + f[49]*(f[52]*f[68] + f[53]*f[69]))) + f[34]*(f[49]*(f[66]*(f[53]*f[68] - f[52]*f[69]) + f[67]*(f[52]*f[68] + f[53]*f[69])) + f[48]*(f[53]*(-(f[67]*f[68]) + f[66]*f[69]) + f[52]*(f[66]*f[68] + f[67]*f[69])))))*J[2]*J[3])/U[4] + (6*(f[35]*(f[50]*(-(f[69]*(f[55]*(f[37]*f[70] + f[36]*f[71]) + f[54]*(f[36]*f[70] - f[37]*f[71]))) + f[68]*(f[36]*(-(f[55]*f[70]) + f[54]*f[71]) + f[37]*(f[54]*f[70] + f[55]*f[71]))) + f[51]*(f[37]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[36]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))) + f[34]*(f[37]*(f[69]*(f[55]*(f[51]*f[70] + f[50]*f[71]) + f[54]*(f[50]*f[70] - f[51]*f[71])) - f[68]*(f[50]*(-(f[55]*f[70]) + f[54]*f[71]) + f[51]*(f[54]*f[70] + f[55]*f[71]))) + f[36]*(f[51]*(f[68]*(f[55]*f[70] - f[54]*f[71]) + f[69]*(f[54]*f[70] + f[55]*f[71])) + f[50]*(f[55]*(-(f[69]*f[70]) + f[68]*f[71]) + f[54]*(f[68]*f[70] + f[69]*f[71])))))*J[2]*J[3])/(-U[3] + 2*U[4]) + (12*(f[37]*(f[52]*(-(f[71]*(f[57]*(f[39]*f[72] + f[38]*f[73]) + f[56]*(f[38]*f[72] - f[39]*f[73]))) + f[70]*(f[38]*(-(f[57]*f[72]) + f[56]*f[73]) + f[39]*(f[56]*f[72] + f[57]*f[73]))) + f[53]*(f[39]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[38]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))) + f[36]*(f[39]*(f[71]*(f[57]*(f[53]*f[72] + f[52]*f[73]) + f[56]*(f[52]*f[72] - f[53]*f[73])) - f[70]*(f[52]*(-(f[57]*f[72]) + f[56]*f[73]) + f[53]*(f[56]*f[72] + f[57]*f[73]))) + f[38]*(f[53]*(f[70]*(f[57]*f[72] - f[56]*f[73]) + f[71]*(f[56]*f[72] + f[57]*f[73])) + f[52]*(f[57]*(-(f[71]*f[72]) + f[70]*f[73]) + f[56]*(f[70]*f[72] + f[71]*f[73])))))*J[2]*J[3])/(-2*U[3] + 3*U[4]) + (20*(f[39]*(f[54]*(-(f[73]*(f[59]*(f[41]*f[74] + f[40]*f[75]) + f[58]*(f[40]*f[74] - f[41]*f[75]))) + f[72]*(f[40]*(-(f[59]*f[74]) + f[58]*f[75]) + f[41]*(f[58]*f[74] + f[59]*f[75]))) + f[55]*(f[41]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[40]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))) + f[38]*(f[41]*(f[73]*(f[59]*(f[55]*f[74] + f[54]*f[75]) + f[58]*(f[54]*f[74] - f[55]*f[75])) - f[72]*(f[54]*(-(f[59]*f[74]) + f[58]*f[75]) + f[55]*(f[58]*f[74] + f[59]*f[75]))) + f[40]*(f[55]*(f[72]*(f[59]*f[74] - f[58]*f[75]) + f[73]*(f[58]*f[74] + f[59]*f[75])) + f[54]*(f[59]*(-(f[73]*f[74]) + f[72]*f[75]) + f[58]*(f[72]*f[74] + f[73]*f[75])))))*J[2]*J[3])/(-3*U[3] + 4*U[4]) + (30*(f[41]*(f[56]*(-(f[75]*(f[61]*(f[43]*f[76] + f[42]*f[77]) + f[60]*(f[42]*f[76] - f[43]*f[77]))) + f[74]*(f[42]*(-(f[61]*f[76]) + f[60]*f[77]) + f[43]*(f[60]*f[76] + f[61]*f[77]))) + f[57]*(f[43]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[42]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))) + f[40]*(f[43]*(f[75]*(f[61]*(f[57]*f[76] + f[56]*f[77]) + f[60]*(f[56]*f[76] - f[57]*f[77])) - f[74]*(f[56]*(-(f[61]*f[76]) + f[60]*f[77]) + f[57]*(f[60]*f[76] + f[61]*f[77]))) + f[42]*(f[57]*(f[74]*(f[61]*f[76] - f[60]*f[77]) + f[75]*(f[60]*f[76] + f[61]*f[77])) + f[56]*(f[61]*(-(f[75]*f[76]) + f[74]*f[77]) + f[60]*(f[74]*f[76] + f[75]*f[77])))))*J[2]*J[3])/(-4*U[3] + 5*U[4]) + (42*(f[43]*(f[58]*(-(f[77]*(f[63]*(f[45]*f[78] + f[44]*f[79]) + f[62]*(f[44]*f[78] - f[45]*f[79]))) + f[76]*(f[44]*(-(f[63]*f[78]) + f[62]*f[79]) + f[45]*(f[62]*f[78] + f[63]*f[79]))) + f[59]*(f[45]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[44]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))) + f[42]*(f[45]*(f[77]*(f[63]*(f[59]*f[78] + f[58]*f[79]) + f[62]*(f[58]*f[78] - f[59]*f[79])) - f[76]*(f[58]*(-(f[63]*f[78]) + f[62]*f[79]) + f[59]*(f[62]*f[78] + f[63]*f[79]))) + f[44]*(f[59]*(f[76]*(f[63]*f[78] - f[62]*f[79]) + f[77]*(f[62]*f[78] + f[63]*f[79])) + f[58]*(f[63]*(-(f[77]*f[78]) + f[76]*f[79]) + f[62]*(f[76]*f[78] + f[77]*f[79])))))*J[2]*J[3])/(-5*U[3] + 6*U[4]))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + ((2*(f[49]*(f[64]*(f[51]*(f[5]*(f[3]*f[68] + f[2]*f[69]) + f[4]*(f[2]*f[68] - f[3]*f[69])) - f[50]*(f[2]*(-(f[5]*f[68]) + f[4]*f[69]) + f[3]*(f[4]*f[68] + f[5]*f[69]))) + f[65]*(f[3]*(f[50]*(f[5]*f[68] - f[4]*f[69]) + f[51]*(f[4]*f[68] + f[5]*f[69])) + f[2]*(f[5]*(-(f[51]*f[68]) + f[50]*f[69]) + f[4]*(f[50]*f[68] + f[51]*f[69])))) + f[48]*(f[2]*(-(f[65]*(f[50]*(f[5]*f[68] - f[4]*f[69]) + f[51]*(f[4]*f[68] + f[5]*f[69]))) + f[64]*(f[5]*(-(f[51]*f[68]) + f[50]*f[69]) + f[4]*(f[50]*f[68] + f[51]*f[69]))) + f[3]*(f[50]*(f[64]*(f[5]*f[68] - f[4]*f[69]) + f[65]*(f[4]*f[68] + f[5]*f[69])) + f[51]*(f[5]*(-(f[65]*f[68]) + f[64]*f[69]) + f[4]*(f[64]*f[68] + f[65]*f[69])))))*J[3]*J[4])/U[4] + (6*(f[51]*(f[66]*(f[53]*(f[7]*(f[5]*f[70] + f[4]*f[71]) + f[6]*(f[4]*f[70] - f[5]*f[71])) - f[52]*(f[4]*(-(f[7]*f[70]) + f[6]*f[71]) + f[5]*(f[6]*f[70] + f[7]*f[71]))) + f[67]*(f[5]*(f[52]*(f[7]*f[70] - f[6]*f[71]) + f[53]*(f[6]*f[70] + f[7]*f[71])) + f[4]*(f[7]*(-(f[53]*f[70]) + f[52]*f[71]) + f[6]*(f[52]*f[70] + f[53]*f[71])))) + f[50]*(f[4]*(-(f[67]*(f[52]*(f[7]*f[70] - f[6]*f[71]) + f[53]*(f[6]*f[70] + f[7]*f[71]))) + f[66]*(f[7]*(-(f[53]*f[70]) + f[52]*f[71]) + f[6]*(f[52]*f[70] + f[53]*f[71]))) + f[5]*(f[52]*(f[66]*(f[7]*f[70] - f[6]*f[71]) + f[67]*(f[6]*f[70] + f[7]*f[71])) + f[53]*(f[7]*(-(f[67]*f[70]) + f[66]*f[71]) + f[6]*(f[66]*f[70] + f[67]*f[71])))))*J[3]*J[4])/(-U[3] + 2*U[4]) + (12*(f[53]*(f[68]*(f[55]*(f[9]*(f[7]*f[72] + f[6]*f[73]) + f[8]*(f[6]*f[72] - f[7]*f[73])) - f[54]*(f[6]*(-(f[9]*f[72]) + f[8]*f[73]) + f[7]*(f[8]*f[72] + f[9]*f[73]))) + f[69]*(f[7]*(f[54]*(f[9]*f[72] - f[8]*f[73]) + f[55]*(f[8]*f[72] + f[9]*f[73])) + f[6]*(f[9]*(-(f[55]*f[72]) + f[54]*f[73]) + f[8]*(f[54]*f[72] + f[55]*f[73])))) + f[52]*(f[6]*(-(f[69]*(f[54]*(f[9]*f[72] - f[8]*f[73]) + f[55]*(f[8]*f[72] + f[9]*f[73]))) + f[68]*(f[9]*(-(f[55]*f[72]) + f[54]*f[73]) + f[8]*(f[54]*f[72] + f[55]*f[73]))) + f[7]*(f[54]*(f[68]*(f[9]*f[72] - f[8]*f[73]) + f[69]*(f[8]*f[72] + f[9]*f[73])) + f[55]*(f[9]*(-(f[69]*f[72]) + f[68]*f[73]) + f[8]*(f[68]*f[72] + f[69]*f[73])))))*J[3]*J[4])/(-2*U[3] + 3*U[4]) + (20*(f[55]*(f[70]*(f[57]*(f[11]*(f[9]*f[74] + f[8]*f[75]) + f[10]*(f[8]*f[74] - f[9]*f[75])) - f[56]*(f[8]*(-(f[11]*f[74]) + f[10]*f[75]) + f[9]*(f[10]*f[74] + f[11]*f[75]))) + f[71]*(f[9]*(f[56]*(f[11]*f[74] - f[10]*f[75]) + f[57]*(f[10]*f[74] + f[11]*f[75])) + f[8]*(f[11]*(-(f[57]*f[74]) + f[56]*f[75]) + f[10]*(f[56]*f[74] + f[57]*f[75])))) + f[54]*(f[8]*(-(f[71]*(f[56]*(f[11]*f[74] - f[10]*f[75]) + f[57]*(f[10]*f[74] + f[11]*f[75]))) + f[70]*(f[11]*(-(f[57]*f[74]) + f[56]*f[75]) + f[10]*(f[56]*f[74] + f[57]*f[75]))) + f[9]*(f[56]*(f[70]*(f[11]*f[74] - f[10]*f[75]) + f[71]*(f[10]*f[74] + f[11]*f[75])) + f[57]*(f[11]*(-(f[71]*f[74]) + f[70]*f[75]) + f[10]*(f[70]*f[74] + f[71]*f[75])))))*J[3]*J[4])/(-3*U[3] + 4*U[4]) + (30*(f[57]*(f[72]*(f[59]*(f[13]*(f[11]*f[76] + f[10]*f[77]) + f[12]*(f[10]*f[76] - f[11]*f[77])) - f[58]*(f[10]*(-(f[13]*f[76]) + f[12]*f[77]) + f[11]*(f[12]*f[76] + f[13]*f[77]))) + f[73]*(f[11]*(f[58]*(f[13]*f[76] - f[12]*f[77]) + f[59]*(f[12]*f[76] + f[13]*f[77])) + f[10]*(f[13]*(-(f[59]*f[76]) + f[58]*f[77]) + f[12]*(f[58]*f[76] + f[59]*f[77])))) + f[56]*(f[10]*(-(f[73]*(f[58]*(f[13]*f[76] - f[12]*f[77]) + f[59]*(f[12]*f[76] + f[13]*f[77]))) + f[72]*(f[13]*(-(f[59]*f[76]) + f[58]*f[77]) + f[12]*(f[58]*f[76] + f[59]*f[77]))) + f[11]*(f[58]*(f[72]*(f[13]*f[76] - f[12]*f[77]) + f[73]*(f[12]*f[76] + f[13]*f[77])) + f[59]*(f[13]*(-(f[73]*f[76]) + f[72]*f[77]) + f[12]*(f[72]*f[76] + f[73]*f[77])))))*J[3]*J[4])/(-4*U[3] + 5*U[4]) + (42*(f[59]*(f[74]*(f[61]*(f[15]*(f[13]*f[78] + f[12]*f[79]) + f[14]*(f[12]*f[78] - f[13]*f[79])) - f[60]*(f[12]*(-(f[15]*f[78]) + f[14]*f[79]) + f[13]*(f[14]*f[78] + f[15]*f[79]))) + f[75]*(f[13]*(f[60]*(f[15]*f[78] - f[14]*f[79]) + f[61]*(f[14]*f[78] + f[15]*f[79])) + f[12]*(f[15]*(-(f[61]*f[78]) + f[60]*f[79]) + f[14]*(f[60]*f[78] + f[61]*f[79])))) + f[58]*(f[12]*(-(f[75]*(f[60]*(f[15]*f[78] - f[14]*f[79]) + f[61]*(f[14]*f[78] + f[15]*f[79]))) + f[74]*(f[15]*(-(f[61]*f[78]) + f[60]*f[79]) + f[14]*(f[60]*f[78] + f[61]*f[79]))) + f[13]*(f[60]*(f[74]*(f[15]*f[78] - f[14]*f[79]) + f[75]*(f[14]*f[78] + f[15]*f[79])) + f[61]*(f[15]*(-(f[75]*f[78]) + f[74]*f[79]) + f[14]*(f[74]*f[78] + f[75]*f[79])))))*J[3]*J[4])/(-5*U[3] + 6*U[4]))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)))/2. + ((J[0]*J[1]*((2*cos2th*f_16_2*f[2]*f[4]*f[34]*f[36])/U[0] + (2*cos2th*f_17_2*f[2]*f[4]*f[34]*f[36])/U[0] + (2*f_16_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[0] + (2*f_17_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[0] - (2*f_16_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[0] - (2*f_17_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[0] + (2*cos2th*f_16_2*f[3]*f[5]*f[34]*f[36])/U[0] + (2*cos2th*f_17_2*f[3]*f[5]*f[34]*f[36])/U[0] - (2*f_16_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[0] - (2*f_17_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[0] + (2*cos2th*f_16_2*f[3]*f[4]*f[35]*f[36])/U[0] + (2*cos2th*f_17_2*f[3]*f[4]*f[35]*f[36])/U[0] - (2*cos2th*f_16_2*f[2]*f[5]*f[35]*f[36])/U[0] - (2*cos2th*f_17_2*f[2]*f[5]*f[35]*f[36])/U[0] - (2*f_16_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[0] - (2*f_17_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[0] + (2*f_16_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[0] + (2*f_17_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[0] - (2*cos2th*f_16_2*f[3]*f[4]*f[34]*f[37])/U[0] - (2*cos2th*f_17_2*f[3]*f[4]*f[34]*f[37])/U[0] + (2*cos2th*f_16_2*f[2]*f[5]*f[34]*f[37])/U[0] + (2*cos2th*f_17_2*f[2]*f[5]*f[34]*f[37])/U[0] + (2*f_16_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[0] + (2*f_17_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[0] + (2*cos2th*f_16_2*f[2]*f[4]*f[35]*f[37])/U[0] + (2*cos2th*f_17_2*f[2]*f[4]*f[35]*f[37])/U[0] + (2*f_16_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[0] + (2*f_17_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[0] - (2*f_16_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[0] - (2*f_17_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[0] + (2*cos2th*f_16_2*f[3]*f[5]*f[35]*f[37])/U[0] + (2*cos2th*f_17_2*f[3]*f[5]*f[35]*f[37])/U[0] + (3*cos2th*f_16_2*f[4]*f[6]*f[36]*f[38])/(2.*U[0]) + (3*cos2th*f_17_2*f[4]*f[6]*f[36]*f[38])/(2.*U[0]) + (3*f_16_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[0]) + (3*f_17_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[0]) - (3*f_16_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[0]) - (3*f_17_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[0]) + (3*cos2th*f_16_2*f[5]*f[7]*f[36]*f[38])/(2.*U[0]) + (3*cos2th*f_17_2*f[5]*f[7]*f[36]*f[38])/(2.*U[0]) - (3*f_16_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[0]) - (3*f_17_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[0]) + (3*cos2th*f_16_2*f[5]*f[6]*f[37]*f[38])/(2.*U[0]) + (3*cos2th*f_17_2*f[5]*f[6]*f[37]*f[38])/(2.*U[0]) - (3*cos2th*f_16_2*f[4]*f[7]*f[37]*f[38])/(2.*U[0]) - (3*cos2th*f_17_2*f[4]*f[7]*f[37]*f[38])/(2.*U[0]) - (3*f_16_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[0]) - (3*f_17_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[0]) + (3*f_16_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[0]) + (3*f_17_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_16_2*f[5]*f[6]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_17_2*f[5]*f[6]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_16_2*f[4]*f[7]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_17_2*f[4]*f[7]*f[36]*f[39])/(2.*U[0]) + (3*f_16_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[0]) + (3*f_17_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_16_2*f[4]*f[6]*f[37]*f[39])/(2.*U[0]) + (3*cos2th*f_17_2*f[4]*f[6]*f[37]*f[39])/(2.*U[0]) + (3*f_16_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[0]) + (3*f_17_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[0]) - (3*f_16_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[0]) - (3*f_17_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[0]) + (3*cos2th*f_16_2*f[5]*f[7]*f[37]*f[39])/(2.*U[0]) + (3*cos2th*f_17_2*f[5]*f[7]*f[37]*f[39])/(2.*U[0]) + (4*cos2th*f_16_2*f[6]*f[8]*f[38]*f[40])/(3.*U[0]) + (4*cos2th*f_17_2*f[6]*f[8]*f[38]*f[40])/(3.*U[0]) + (4*f_16_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[0]) + (4*f_17_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[0]) - (4*f_16_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[0]) - (4*f_17_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[0]) + (4*cos2th*f_16_2*f[7]*f[9]*f[38]*f[40])/(3.*U[0]) + (4*cos2th*f_17_2*f[7]*f[9]*f[38]*f[40])/(3.*U[0]) - (4*f_16_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[0]) - (4*f_17_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[0]) + (4*cos2th*f_16_2*f[7]*f[8]*f[39]*f[40])/(3.*U[0]) + (4*cos2th*f_17_2*f[7]*f[8]*f[39]*f[40])/(3.*U[0]) - (4*cos2th*f_16_2*f[6]*f[9]*f[39]*f[40])/(3.*U[0]) - (4*cos2th*f_17_2*f[6]*f[9]*f[39]*f[40])/(3.*U[0]) - (4*f_16_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[0]) - (4*f_17_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[0]) + (4*f_16_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[0]) + (4*f_17_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_16_2*f[7]*f[8]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_17_2*f[7]*f[8]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_16_2*f[6]*f[9]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_17_2*f[6]*f[9]*f[38]*f[41])/(3.*U[0]) + (4*f_16_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[0]) + (4*f_17_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_16_2*f[6]*f[8]*f[39]*f[41])/(3.*U[0]) + (4*cos2th*f_17_2*f[6]*f[8]*f[39]*f[41])/(3.*U[0]) + (4*f_16_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[0]) + (4*f_17_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[0]) - (4*f_16_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[0]) - (4*f_17_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[0]) + (4*cos2th*f_16_2*f[7]*f[9]*f[39]*f[41])/(3.*U[0]) + (4*cos2th*f_17_2*f[7]*f[9]*f[39]*f[41])/(3.*U[0]) + (5*cos2th*f_16_2*f[8]*f[10]*f[40]*f[42])/(4.*U[0]) + (5*cos2th*f_17_2*f[8]*f[10]*f[40]*f[42])/(4.*U[0]) + (5*f_16_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[0]) + (5*f_17_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[0]) - (5*f_16_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[0]) - (5*f_17_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[0]) + (5*cos2th*f_16_2*f[9]*f[11]*f[40]*f[42])/(4.*U[0]) + (5*cos2th*f_17_2*f[9]*f[11]*f[40]*f[42])/(4.*U[0]) - (5*f_16_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[0]) - (5*f_17_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[0]) + (5*cos2th*f_16_2*f[9]*f[10]*f[41]*f[42])/(4.*U[0]) + (5*cos2th*f_17_2*f[9]*f[10]*f[41]*f[42])/(4.*U[0]) - (5*cos2th*f_16_2*f[8]*f[11]*f[41]*f[42])/(4.*U[0]) - (5*cos2th*f_17_2*f[8]*f[11]*f[41]*f[42])/(4.*U[0]) - (5*f_16_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[0]) - (5*f_17_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[0]) + (5*f_16_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[0]) + (5*f_17_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_16_2*f[9]*f[10]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_17_2*f[9]*f[10]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_16_2*f[8]*f[11]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_17_2*f[8]*f[11]*f[40]*f[43])/(4.*U[0]) + (5*f_16_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[0]) + (5*f_17_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_16_2*f[8]*f[10]*f[41]*f[43])/(4.*U[0]) + (5*cos2th*f_17_2*f[8]*f[10]*f[41]*f[43])/(4.*U[0]) + (5*f_16_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[0]) + (5*f_17_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[0]) - (5*f_16_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[0]) - (5*f_17_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[0]) + (5*cos2th*f_16_2*f[9]*f[11]*f[41]*f[43])/(4.*U[0]) + (5*cos2th*f_17_2*f[9]*f[11]*f[41]*f[43])/(4.*U[0]) + (6*cos2th*f_16_2*f[10]*f[12]*f[42]*f[44])/(5.*U[0]) + (6*cos2th*f_17_2*f[10]*f[12]*f[42]*f[44])/(5.*U[0]) + (6*f_16_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[0]) + (6*f_17_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[0]) - (6*f_16_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[0]) - (6*f_17_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[0]) + (6*cos2th*f_16_2*f[11]*f[13]*f[42]*f[44])/(5.*U[0]) + (6*cos2th*f_17_2*f[11]*f[13]*f[42]*f[44])/(5.*U[0]) - (6*f_16_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[0]) - (6*f_17_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[0]) + (6*cos2th*f_16_2*f[11]*f[12]*f[43]*f[44])/(5.*U[0]) + (6*cos2th*f_17_2*f[11]*f[12]*f[43]*f[44])/(5.*U[0]) - (6*cos2th*f_16_2*f[10]*f[13]*f[43]*f[44])/(5.*U[0]) - (6*cos2th*f_17_2*f[10]*f[13]*f[43]*f[44])/(5.*U[0]) - (6*f_16_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[0]) - (6*f_17_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[0]) + (6*f_16_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[0]) + (6*f_17_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_16_2*f[11]*f[12]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_17_2*f[11]*f[12]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_16_2*f[10]*f[13]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_17_2*f[10]*f[13]*f[42]*f[45])/(5.*U[0]) + (6*f_16_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[0]) + (6*f_17_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_16_2*f[10]*f[12]*f[43]*f[45])/(5.*U[0]) + (6*cos2th*f_17_2*f[10]*f[12]*f[43]*f[45])/(5.*U[0]) + (6*f_16_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[0]) + (6*f_17_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[0]) - (6*f_16_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[0]) - (6*f_17_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[0]) + (6*cos2th*f_16_2*f[11]*f[13]*f[43]*f[45])/(5.*U[0]) + (6*cos2th*f_17_2*f[11]*f[13]*f[43]*f[45])/(5.*U[0]) + (7*cos2th*f_16_2*f[12]*f[14]*f[44]*f[46])/(6.*U[0]) + (7*cos2th*f_17_2*f[12]*f[14]*f[44]*f[46])/(6.*U[0]) + (7*f_16_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[0]) + (7*f_17_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[0]) - (7*f_16_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[0]) - (7*f_17_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[0]) + (7*cos2th*f_16_2*f[13]*f[15]*f[44]*f[46])/(6.*U[0]) + (7*cos2th*f_17_2*f[13]*f[15]*f[44]*f[46])/(6.*U[0]) - (7*f_16_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[0]) - (7*f_17_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[0]) + (7*cos2th*f_16_2*f[13]*f[14]*f[45]*f[46])/(6.*U[0]) + (7*cos2th*f_17_2*f[13]*f[14]*f[45]*f[46])/(6.*U[0]) - (7*cos2th*f_16_2*f[12]*f[15]*f[45]*f[46])/(6.*U[0]) - (7*cos2th*f_17_2*f[12]*f[15]*f[45]*f[46])/(6.*U[0]) - (7*f_16_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[0]) - (7*f_17_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[0]) + (7*f_16_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[0]) + (7*f_17_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_16_2*f[13]*f[14]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_17_2*f[13]*f[14]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_16_2*f[12]*f[15]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_17_2*f[12]*f[15]*f[44]*f[47])/(6.*U[0]) + (7*f_16_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[0]) + (7*f_17_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_16_2*f[12]*f[14]*f[45]*f[47])/(6.*U[0]) + (7*cos2th*f_17_2*f[12]*f[14]*f[45]*f[47])/(6.*U[0]) + (7*f_16_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[0]) + (7*f_17_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[0]) - (7*f_16_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[0]) - (7*f_17_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[0]) + (7*cos2th*f_16_2*f[13]*f[15]*f[45]*f[47])/(6.*U[0]) + (7*cos2th*f_17_2*f[13]*f[15]*f[45]*f[47])/(6.*U[0]) + (14*cos2th*f_28_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_29_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*f_28_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*f_29_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 6*U[1]) - (14*f_28_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 6*U[1]) - (14*f_29_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_28_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_29_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 6*U[1]) - (14*f_28_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*f_29_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_28_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_29_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*cos2th*f_28_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*cos2th*f_29_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*f_28_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*f_29_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 6*U[1]) + (14*f_28_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*f_29_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 6*U[1]) - (14*cos2th*f_28_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 6*U[1]) - (14*cos2th*f_29_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_28_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_29_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*f_28_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*f_29_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_28_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_29_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*f_28_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*f_29_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 6*U[1]) - (14*f_28_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 6*U[1]) - (14*f_29_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_28_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_29_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 6*U[1]) + (21*cos2th*f_28_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_29_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*f_28_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*f_29_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 6*U[1]) - (21*f_28_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 6*U[1]) - (21*f_29_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_28_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_29_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 6*U[1]) - (21*f_28_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*f_29_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_28_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_29_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*cos2th*f_28_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*cos2th*f_29_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*f_28_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*f_29_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 6*U[1]) + (21*f_28_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*f_29_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 6*U[1]) - (21*cos2th*f_28_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 6*U[1]) - (21*cos2th*f_29_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_28_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_29_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*f_28_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*f_29_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_28_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_29_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*f_28_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*f_29_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 6*U[1]) - (21*f_28_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 6*U[1]) - (21*f_29_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_28_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_29_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (28*cos2th*f_28_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_29_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*f_28_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*f_29_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 6*U[1]) - (28*f_28_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 6*U[1]) - (28*f_29_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_28_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_29_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 6*U[1]) - (28*f_28_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*f_29_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_28_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_29_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*cos2th*f_28_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*cos2th*f_29_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*f_28_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*f_29_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 6*U[1]) + (28*f_28_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*f_29_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 6*U[1]) - (28*cos2th*f_28_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 6*U[1]) - (28*cos2th*f_29_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_28_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_29_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*f_28_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*f_29_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_28_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_29_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*f_28_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*f_29_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 6*U[1]) - (28*f_28_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 6*U[1]) - (28*f_29_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_28_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_29_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (35*cos2th*f_28_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_29_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*f_28_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*f_29_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 6*U[1]) - (35*f_28_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 6*U[1]) - (35*f_29_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_28_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_29_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 6*U[1]) - (35*f_28_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*f_29_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_28_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_29_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*cos2th*f_28_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*cos2th*f_29_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*f_28_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*f_29_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 6*U[1]) + (35*f_28_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*f_29_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 6*U[1]) - (35*cos2th*f_28_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 6*U[1]) - (35*cos2th*f_29_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_28_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_29_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*f_28_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*f_29_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_28_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_29_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*f_28_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*f_29_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 6*U[1]) - (35*f_28_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 6*U[1]) - (35*f_29_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_28_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_29_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (42*cos2th*f_28_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_29_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*f_28_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*f_29_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 6*U[1]) - (42*f_28_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 6*U[1]) - (42*f_29_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_28_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_29_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 6*U[1]) - (42*f_28_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*f_29_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_28_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_29_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*cos2th*f_28_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*cos2th*f_29_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*f_28_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*f_29_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 6*U[1]) + (42*f_28_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*f_29_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 6*U[1]) - (42*cos2th*f_28_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 6*U[1]) - (42*cos2th*f_29_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_28_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_29_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*f_28_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*f_29_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_28_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_29_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*f_28_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*f_29_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 6*U[1]) - (42*f_28_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 6*U[1]) - (42*f_29_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_28_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_29_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (12*cos2th*f_26_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_27_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*f_26_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*f_27_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 5*U[1]) - (12*f_26_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 5*U[1]) - (12*f_27_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_26_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_27_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 5*U[1]) - (12*f_26_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*f_27_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_26_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_27_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*cos2th*f_26_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*cos2th*f_27_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*f_26_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*f_27_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 5*U[1]) + (12*f_26_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*f_27_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 5*U[1]) - (12*cos2th*f_26_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 5*U[1]) - (12*cos2th*f_27_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_26_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_27_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*f_26_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*f_27_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_26_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_27_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*f_26_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*f_27_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 5*U[1]) - (12*f_26_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 5*U[1]) - (12*f_27_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_26_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_27_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 5*U[1]) + (18*cos2th*f_26_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_27_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*f_26_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*f_27_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 5*U[1]) - (18*f_26_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 5*U[1]) - (18*f_27_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_26_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_27_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 5*U[1]) - (18*f_26_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*f_27_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_26_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_27_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*cos2th*f_26_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*cos2th*f_27_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*f_26_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*f_27_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 5*U[1]) + (18*f_26_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*f_27_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 5*U[1]) - (18*cos2th*f_26_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 5*U[1]) - (18*cos2th*f_27_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_26_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_27_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*f_26_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*f_27_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_26_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_27_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*f_26_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*f_27_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 5*U[1]) - (18*f_26_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 5*U[1]) - (18*f_27_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_26_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_27_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (24*cos2th*f_26_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_27_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*f_26_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*f_27_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 5*U[1]) - (24*f_26_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 5*U[1]) - (24*f_27_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_26_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_27_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 5*U[1]) - (24*f_26_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*f_27_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_26_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_27_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*cos2th*f_26_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*cos2th*f_27_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*f_26_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*f_27_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 5*U[1]) + (24*f_26_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*f_27_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 5*U[1]) - (24*cos2th*f_26_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 5*U[1]) - (24*cos2th*f_27_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_26_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_27_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*f_26_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*f_27_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_26_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_27_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*f_26_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*f_27_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 5*U[1]) - (24*f_26_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 5*U[1]) - (24*f_27_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_26_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_27_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (30*cos2th*f_26_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_27_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*f_26_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*f_27_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 5*U[1]) - (30*f_26_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 5*U[1]) - (30*f_27_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_26_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_27_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 5*U[1]) - (30*f_26_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*f_27_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_26_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_27_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*cos2th*f_26_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*cos2th*f_27_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*f_26_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*f_27_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 5*U[1]) + (30*f_26_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*f_27_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 5*U[1]) - (30*cos2th*f_26_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 5*U[1]) - (30*cos2th*f_27_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_26_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_27_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*f_26_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*f_27_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_26_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_27_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*f_26_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*f_27_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 5*U[1]) - (30*f_26_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 5*U[1]) - (30*f_27_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_26_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_27_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (42*cos2th*f_26_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_27_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*f_26_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*f_27_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 5*U[1]) - (42*f_26_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 5*U[1]) - (42*f_27_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_26_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_27_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 5*U[1]) - (42*f_26_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*f_27_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_26_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_27_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*cos2th*f_26_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*cos2th*f_27_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*f_26_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*f_27_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 5*U[1]) + (42*f_26_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*f_27_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 5*U[1]) - (42*cos2th*f_26_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 5*U[1]) - (42*cos2th*f_27_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_26_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_27_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*f_26_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*f_27_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_26_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_27_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*f_26_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*f_27_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 5*U[1]) - (42*f_26_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 5*U[1]) - (42*f_27_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_26_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_27_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (10*cos2th*f_24_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_25_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*f_24_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*f_25_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 4*U[1]) - (10*f_24_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 4*U[1]) - (10*f_25_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_24_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_25_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 4*U[1]) - (10*f_24_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*f_25_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_24_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_25_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*cos2th*f_24_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*cos2th*f_25_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*f_24_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*f_25_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 4*U[1]) + (10*f_24_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*f_25_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 4*U[1]) - (10*cos2th*f_24_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 4*U[1]) - (10*cos2th*f_25_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_24_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_25_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*f_24_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*f_25_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_24_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_25_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*f_24_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*f_25_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 4*U[1]) - (10*f_24_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 4*U[1]) - (10*f_25_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_24_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_25_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 4*U[1]) + (15*cos2th*f_24_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_25_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*f_24_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*f_25_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 4*U[1]) - (15*f_24_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 4*U[1]) - (15*f_25_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_24_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_25_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 4*U[1]) - (15*f_24_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*f_25_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_24_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_25_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*cos2th*f_24_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*cos2th*f_25_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*f_24_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*f_25_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 4*U[1]) + (15*f_24_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*f_25_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 4*U[1]) - (15*cos2th*f_24_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 4*U[1]) - (15*cos2th*f_25_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_24_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_25_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*f_24_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*f_25_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_24_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_25_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*f_24_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*f_25_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 4*U[1]) - (15*f_24_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 4*U[1]) - (15*f_25_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_24_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_25_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (20*cos2th*f_24_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_25_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*f_24_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*f_25_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 4*U[1]) - (20*f_24_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 4*U[1]) - (20*f_25_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_24_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_25_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 4*U[1]) - (20*f_24_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*f_25_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_24_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_25_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*cos2th*f_24_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*cos2th*f_25_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*f_24_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*f_25_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 4*U[1]) + (20*f_24_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*f_25_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 4*U[1]) - (20*cos2th*f_24_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 4*U[1]) - (20*cos2th*f_25_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_24_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_25_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*f_24_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*f_25_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_24_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_25_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*f_24_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*f_25_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 4*U[1]) - (20*f_24_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 4*U[1]) - (20*f_25_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_24_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_25_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (30*cos2th*f_24_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_25_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*f_24_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*f_25_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 4*U[1]) - (30*f_24_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 4*U[1]) - (30*f_25_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_24_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_25_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 4*U[1]) - (30*f_24_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*f_25_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_24_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_25_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*cos2th*f_24_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*cos2th*f_25_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*f_24_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*f_25_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 4*U[1]) + (30*f_24_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*f_25_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 4*U[1]) - (30*cos2th*f_24_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 4*U[1]) - (30*cos2th*f_25_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_24_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_25_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*f_24_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*f_25_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_24_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_25_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*f_24_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*f_25_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 4*U[1]) - (30*f_24_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 4*U[1]) - (30*f_25_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_24_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_25_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (35*cos2th*f_24_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_25_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*f_24_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*f_25_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 4*U[1]) - (35*f_24_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 4*U[1]) - (35*f_25_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_24_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_25_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 4*U[1]) - (35*f_24_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*f_25_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_24_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_25_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*cos2th*f_24_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*cos2th*f_25_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*f_24_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*f_25_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 4*U[1]) + (35*f_24_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*f_25_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 4*U[1]) - (35*cos2th*f_24_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 4*U[1]) - (35*cos2th*f_25_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_24_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_25_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*f_24_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*f_25_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_24_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_25_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*f_24_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*f_25_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 4*U[1]) - (35*f_24_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 4*U[1]) - (35*f_25_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_24_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_25_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (8*cos2th*f_22_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_23_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*f_22_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*f_23_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 3*U[1]) - (8*f_22_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 3*U[1]) - (8*f_23_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_22_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_23_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 3*U[1]) - (8*f_22_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*f_23_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_22_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_23_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*cos2th*f_22_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*cos2th*f_23_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*f_22_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*f_23_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 3*U[1]) + (8*f_22_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*f_23_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 3*U[1]) - (8*cos2th*f_22_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 3*U[1]) - (8*cos2th*f_23_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_22_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_23_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*f_22_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*f_23_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_22_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_23_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*f_22_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*f_23_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 3*U[1]) - (8*f_22_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 3*U[1]) - (8*f_23_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_22_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_23_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 3*U[1]) + (12*cos2th*f_22_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_23_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*f_22_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*f_23_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 3*U[1]) - (12*f_22_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 3*U[1]) - (12*f_23_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_22_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_23_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 3*U[1]) - (12*f_22_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*f_23_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_22_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_23_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*cos2th*f_22_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*cos2th*f_23_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*f_22_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*f_23_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 3*U[1]) + (12*f_22_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*f_23_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 3*U[1]) - (12*cos2th*f_22_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 3*U[1]) - (12*cos2th*f_23_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_22_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_23_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*f_22_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*f_23_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_22_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_23_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*f_22_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*f_23_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 3*U[1]) - (12*f_22_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 3*U[1]) - (12*f_23_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_22_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_23_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (20*cos2th*f_22_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_23_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*f_22_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*f_23_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 3*U[1]) - (20*f_22_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 3*U[1]) - (20*f_23_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_22_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_23_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 3*U[1]) - (20*f_22_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*f_23_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_22_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_23_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*cos2th*f_22_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*cos2th*f_23_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*f_22_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*f_23_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 3*U[1]) + (20*f_22_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*f_23_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 3*U[1]) - (20*cos2th*f_22_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 3*U[1]) - (20*cos2th*f_23_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_22_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_23_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*f_22_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*f_23_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_22_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_23_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*f_22_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*f_23_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 3*U[1]) - (20*f_22_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 3*U[1]) - (20*f_23_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_22_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_23_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (24*cos2th*f_22_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_23_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*f_22_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*f_23_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 3*U[1]) - (24*f_22_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 3*U[1]) - (24*f_23_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_22_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_23_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 3*U[1]) - (24*f_22_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*f_23_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_22_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_23_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*cos2th*f_22_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*cos2th*f_23_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*f_22_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*f_23_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 3*U[1]) + (24*f_22_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*f_23_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 3*U[1]) - (24*cos2th*f_22_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 3*U[1]) - (24*cos2th*f_23_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_22_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_23_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*f_22_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*f_23_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_22_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_23_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*f_22_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*f_23_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 3*U[1]) - (24*f_22_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 3*U[1]) - (24*f_23_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_22_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_23_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (28*cos2th*f_22_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_23_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*f_22_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*f_23_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 3*U[1]) - (28*f_22_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 3*U[1]) - (28*f_23_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_22_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_23_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 3*U[1]) - (28*f_22_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*f_23_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_22_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_23_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*cos2th*f_22_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*cos2th*f_23_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*f_22_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*f_23_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 3*U[1]) + (28*f_22_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*f_23_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 3*U[1]) - (28*cos2th*f_22_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 3*U[1]) - (28*cos2th*f_23_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_22_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_23_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*f_22_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*f_23_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_22_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_23_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*f_22_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*f_23_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 3*U[1]) - (28*f_22_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 3*U[1]) - (28*f_23_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_22_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_23_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (6*cos2th*f_20_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_21_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*f_20_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*f_21_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 2*U[1]) - (6*f_20_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 2*U[1]) - (6*f_21_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_20_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_21_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 2*U[1]) - (6*f_20_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*f_21_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_20_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_21_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*cos2th*f_20_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*cos2th*f_21_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*f_20_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*f_21_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 2*U[1]) + (6*f_20_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*f_21_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 2*U[1]) - (6*cos2th*f_20_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 2*U[1]) - (6*cos2th*f_21_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_20_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_21_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*f_20_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*f_21_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_20_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_21_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*f_20_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*f_21_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 2*U[1]) - (6*f_20_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 2*U[1]) - (6*f_21_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_20_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_21_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 2*U[1]) + (12*cos2th*f_20_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_21_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*f_20_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*f_21_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 2*U[1]) - (12*f_20_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 2*U[1]) - (12*f_21_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_20_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_21_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 2*U[1]) - (12*f_20_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*f_21_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_20_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_21_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*cos2th*f_20_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*cos2th*f_21_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*f_20_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*f_21_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 2*U[1]) + (12*f_20_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*f_21_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 2*U[1]) - (12*cos2th*f_20_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 2*U[1]) - (12*cos2th*f_21_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_20_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_21_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*f_20_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*f_21_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_20_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_21_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*f_20_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*f_21_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 2*U[1]) - (12*f_20_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 2*U[1]) - (12*f_21_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_20_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_21_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (15*cos2th*f_20_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_21_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*f_20_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*f_21_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 2*U[1]) - (15*f_20_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 2*U[1]) - (15*f_21_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_20_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_21_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 2*U[1]) - (15*f_20_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*f_21_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_20_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_21_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*cos2th*f_20_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*cos2th*f_21_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*f_20_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*f_21_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 2*U[1]) + (15*f_20_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*f_21_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 2*U[1]) - (15*cos2th*f_20_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 2*U[1]) - (15*cos2th*f_21_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_20_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_21_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*f_20_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*f_21_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_20_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_21_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*f_20_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*f_21_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 2*U[1]) - (15*f_20_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 2*U[1]) - (15*f_21_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_20_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_21_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (18*cos2th*f_20_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_21_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*f_20_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*f_21_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 2*U[1]) - (18*f_20_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 2*U[1]) - (18*f_21_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_20_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_21_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 2*U[1]) - (18*f_20_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*f_21_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_20_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_21_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*cos2th*f_20_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*cos2th*f_21_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*f_20_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*f_21_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 2*U[1]) + (18*f_20_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*f_21_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 2*U[1]) - (18*cos2th*f_20_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 2*U[1]) - (18*cos2th*f_21_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_20_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_21_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*f_20_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*f_21_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_20_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_21_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*f_20_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*f_21_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 2*U[1]) - (18*f_20_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 2*U[1]) - (18*f_21_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_20_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_21_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (21*cos2th*f_20_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_21_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*f_20_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*f_21_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 2*U[1]) - (21*f_20_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 2*U[1]) - (21*f_21_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_20_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_21_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 2*U[1]) - (21*f_20_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*f_21_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_20_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_21_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*cos2th*f_20_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*cos2th*f_21_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*f_20_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*f_21_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 2*U[1]) + (21*f_20_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*f_21_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 2*U[1]) - (21*cos2th*f_20_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 2*U[1]) - (21*cos2th*f_21_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_20_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_21_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*f_20_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*f_21_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_20_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_21_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*f_20_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*f_21_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 2*U[1]) - (21*f_20_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 2*U[1]) - (21*f_21_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_20_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_21_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (6*cos2th*f_18_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_19_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - U[1]) + (6*f_18_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - U[1]) + (6*f_19_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - U[1]) - (6*f_18_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - U[1]) - (6*f_19_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_18_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_19_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - U[1]) - (6*f_18_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - U[1]) - (6*f_19_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_18_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_19_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - U[1]) - (6*cos2th*f_18_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - U[1]) - (6*cos2th*f_19_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - U[1]) - (6*f_18_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - U[1]) - (6*f_19_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - U[1]) + (6*f_18_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - U[1]) + (6*f_19_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - U[1]) - (6*cos2th*f_18_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - U[1]) - (6*cos2th*f_19_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_18_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_19_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - U[1]) + (6*f_18_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - U[1]) + (6*f_19_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_18_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_19_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - U[1]) + (6*f_18_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - U[1]) + (6*f_19_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - U[1]) - (6*f_18_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - U[1]) - (6*f_19_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_18_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_19_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - U[1]) + (8*cos2th*f_18_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_19_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - U[1]) + (8*f_18_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - U[1]) + (8*f_19_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - U[1]) - (8*f_18_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - U[1]) - (8*f_19_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_18_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_19_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - U[1]) - (8*f_18_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - U[1]) - (8*f_19_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_18_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_19_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - U[1]) - (8*cos2th*f_18_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - U[1]) - (8*cos2th*f_19_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - U[1]) - (8*f_18_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - U[1]) - (8*f_19_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - U[1]) + (8*f_18_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - U[1]) + (8*f_19_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - U[1]) - (8*cos2th*f_18_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - U[1]) - (8*cos2th*f_19_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_18_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_19_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - U[1]) + (8*f_18_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - U[1]) + (8*f_19_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_18_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_19_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - U[1]) + (8*f_18_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - U[1]) + (8*f_19_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - U[1]) - (8*f_18_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - U[1]) - (8*f_19_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_18_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_19_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - U[1]) + (10*cos2th*f_18_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_19_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - U[1]) + (10*f_18_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - U[1]) + (10*f_19_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - U[1]) - (10*f_18_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - U[1]) - (10*f_19_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_18_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_19_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - U[1]) - (10*f_18_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - U[1]) - (10*f_19_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_18_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_19_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - U[1]) - (10*cos2th*f_18_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - U[1]) - (10*cos2th*f_19_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - U[1]) - (10*f_18_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - U[1]) - (10*f_19_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - U[1]) + (10*f_18_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - U[1]) + (10*f_19_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - U[1]) - (10*cos2th*f_18_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - U[1]) - (10*cos2th*f_19_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_18_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_19_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - U[1]) + (10*f_18_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - U[1]) + (10*f_19_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_18_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_19_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - U[1]) + (10*f_18_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - U[1]) + (10*f_19_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - U[1]) - (10*f_18_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - U[1]) - (10*f_19_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_18_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_19_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - U[1]) + (12*cos2th*f_18_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_19_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - U[1]) + (12*f_18_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - U[1]) + (12*f_19_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - U[1]) - (12*f_18_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - U[1]) - (12*f_19_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_18_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_19_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - U[1]) - (12*f_18_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - U[1]) - (12*f_19_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_18_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_19_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - U[1]) - (12*cos2th*f_18_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - U[1]) - (12*cos2th*f_19_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - U[1]) - (12*f_18_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - U[1]) - (12*f_19_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - U[1]) + (12*f_18_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - U[1]) + (12*f_19_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - U[1]) - (12*cos2th*f_18_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - U[1]) - (12*cos2th*f_19_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_18_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_19_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - U[1]) + (12*f_18_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - U[1]) + (12*f_19_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_18_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_19_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - U[1]) + (12*f_18_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - U[1]) + (12*f_19_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - U[1]) - (12*f_18_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - U[1]) - (12*f_19_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_18_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_19_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - U[1]) + (14*cos2th*f_18_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_19_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - U[1]) + (14*f_18_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - U[1]) + (14*f_19_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - U[1]) - (14*f_18_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - U[1]) - (14*f_19_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_18_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_19_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - U[1]) - (14*f_18_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - U[1]) - (14*f_19_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_18_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_19_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - U[1]) - (14*cos2th*f_18_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - U[1]) - (14*cos2th*f_19_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - U[1]) - (14*f_18_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - U[1]) - (14*f_19_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - U[1]) + (14*f_18_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - U[1]) + (14*f_19_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - U[1]) - (14*cos2th*f_18_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - U[1]) - (14*cos2th*f_19_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_18_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_19_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - U[1]) + (14*f_18_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - U[1]) + (14*f_19_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_18_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_19_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - U[1]) + (14*f_18_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - U[1]) + (14*f_19_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - U[1]) - (14*f_18_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - U[1]) - (14*f_19_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_18_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_19_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - U[1]) - (2*cos2th*f_18_2*f[0]*f[2]*f[32]*f[34])/U[1] - (2*cos2th*f_19_2*f[0]*f[2]*f[32]*f[34])/U[1] - (3*cos2th*f_20_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) - (3*cos2th*f_21_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) - (4*cos2th*f_22_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) - (4*cos2th*f_23_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) - (5*cos2th*f_24_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) - (5*cos2th*f_25_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) - (6*cos2th*f_26_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) - (6*cos2th*f_27_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) - (7*cos2th*f_28_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) - (7*cos2th*f_29_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] - (2*f_19_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] - (3*f_20_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) - (3*f_21_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) - (4*f_22_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) - (4*f_23_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) - (5*f_24_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) - (5*f_25_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) - (6*f_26_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) - (6*f_27_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) - (7*f_28_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) - (7*f_29_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] + (2*f_19_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] + (3*f_20_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) + (3*f_21_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) + (4*f_22_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) + (4*f_23_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) + (5*f_24_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) + (5*f_25_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) + (6*f_26_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) + (6*f_27_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) + (7*f_28_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) + (7*f_29_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) - (2*cos2th*f_18_2*f[1]*f[3]*f[32]*f[34])/U[1] - (2*cos2th*f_19_2*f[1]*f[3]*f[32]*f[34])/U[1] - (3*cos2th*f_20_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) - (3*cos2th*f_21_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) - (4*cos2th*f_22_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) - (4*cos2th*f_23_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) - (5*cos2th*f_24_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) - (5*cos2th*f_25_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) - (6*cos2th*f_26_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) - (6*cos2th*f_27_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) - (7*cos2th*f_28_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) - (7*cos2th*f_29_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] + (2*f_19_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] + (3*f_20_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) + (3*f_21_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) + (4*f_22_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) + (4*f_23_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) + (5*f_24_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) + (5*f_25_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) + (6*f_26_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) + (6*f_27_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) + (7*f_28_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) + (7*f_29_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) - (2*cos2th*f_18_2*f[1]*f[2]*f[33]*f[34])/U[1] - (2*cos2th*f_19_2*f[1]*f[2]*f[33]*f[34])/U[1] - (3*cos2th*f_20_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) - (3*cos2th*f_21_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) - (4*cos2th*f_22_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) - (4*cos2th*f_23_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) - (5*cos2th*f_24_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) - (5*cos2th*f_25_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) - (6*cos2th*f_26_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) - (6*cos2th*f_27_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) - (7*cos2th*f_28_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) - (7*cos2th*f_29_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) + (2*cos2th*f_18_2*f[0]*f[3]*f[33]*f[34])/U[1] + (2*cos2th*f_19_2*f[0]*f[3]*f[33]*f[34])/U[1] + (3*cos2th*f_20_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) + (3*cos2th*f_21_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) + (4*cos2th*f_22_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) + (4*cos2th*f_23_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) + (5*cos2th*f_24_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) + (5*cos2th*f_25_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) + (6*cos2th*f_26_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) + (6*cos2th*f_27_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) + (7*cos2th*f_28_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) + (7*cos2th*f_29_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] + (2*f_19_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] + (3*f_20_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) + (3*f_21_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) + (4*f_22_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) + (4*f_23_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) + (5*f_24_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) + (5*f_25_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) + (6*f_26_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) + (6*f_27_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) + (7*f_28_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) + (7*f_29_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] - (2*f_19_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] - (3*f_20_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) - (3*f_21_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) - (4*f_22_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) - (4*f_23_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) - (5*f_24_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) - (5*f_25_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) - (6*f_26_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) - (6*f_27_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) - (7*f_28_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) - (7*f_29_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[1]*f[2]*f[32]*f[35])/U[1] + (2*cos2th*f_19_2*f[1]*f[2]*f[32]*f[35])/U[1] + (3*cos2th*f_20_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) + (3*cos2th*f_21_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) + (4*cos2th*f_22_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) + (4*cos2th*f_23_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) + (5*cos2th*f_24_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) + (5*cos2th*f_25_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) + (6*cos2th*f_26_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) + (6*cos2th*f_27_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) + (7*cos2th*f_28_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) + (7*cos2th*f_29_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_18_2*f[0]*f[3]*f[32]*f[35])/U[1] - (2*cos2th*f_19_2*f[0]*f[3]*f[32]*f[35])/U[1] - (3*cos2th*f_20_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) - (3*cos2th*f_21_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) - (4*cos2th*f_22_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) - (4*cos2th*f_23_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) - (5*cos2th*f_24_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) - (5*cos2th*f_25_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) - (6*cos2th*f_26_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) - (6*cos2th*f_27_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) - (7*cos2th*f_28_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) - (7*cos2th*f_29_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) - (2*f_18_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] - (2*f_19_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] - (3*f_20_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) - (3*f_21_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) - (4*f_22_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) - (4*f_23_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) - (5*f_24_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) - (5*f_25_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) - (6*f_26_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) - (6*f_27_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) - (7*f_28_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) - (7*f_29_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_18_2*f[0]*f[2]*f[33]*f[35])/U[1] - (2*cos2th*f_19_2*f[0]*f[2]*f[33]*f[35])/U[1] - (3*cos2th*f_20_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) - (3*cos2th*f_21_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) - (4*cos2th*f_22_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) - (4*cos2th*f_23_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) - (5*cos2th*f_24_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) - (5*cos2th*f_25_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) - (6*cos2th*f_26_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) - (6*cos2th*f_27_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) - (7*cos2th*f_28_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) - (7*cos2th*f_29_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) - (2*f_18_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] - (2*f_19_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] - (3*f_20_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) - (3*f_21_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) - (4*f_22_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) - (4*f_23_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) - (5*f_24_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) - (5*f_25_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) - (6*f_26_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) - (6*f_27_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) - (7*f_28_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) - (7*f_29_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) + (2*f_18_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] + (2*f_19_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] + (3*f_20_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) + (3*f_21_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) + (4*f_22_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) + (4*f_23_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) + (5*f_24_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) + (5*f_25_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) + (6*f_26_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) + (6*f_27_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) + (7*f_28_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) + (7*f_29_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) - (2*cos2th*f_18_2*f[1]*f[3]*f[33]*f[35])/U[1] - (2*cos2th*f_19_2*f[1]*f[3]*f[33]*f[35])/U[1] - (3*cos2th*f_20_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) - (3*cos2th*f_21_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) - (4*cos2th*f_22_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) - (4*cos2th*f_23_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) - (5*cos2th*f_24_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) - (5*cos2th*f_25_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) - (6*cos2th*f_26_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) - (6*cos2th*f_27_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) - (7*cos2th*f_28_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) - (7*cos2th*f_29_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[0]*J[1]*((2*cos2th*f_18_2*f[2]*f[4]*f[34]*f[36])/U[0] + (2*cos2th*f_19_2*f[2]*f[4]*f[34]*f[36])/U[0] + (2*f_18_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[0] + (2*f_19_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[0] - (2*f_18_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[0] - (2*f_19_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[0] + (2*cos2th*f_18_2*f[3]*f[5]*f[34]*f[36])/U[0] + (2*cos2th*f_19_2*f[3]*f[5]*f[34]*f[36])/U[0] - (2*f_18_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[0] - (2*f_19_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[0] + (2*cos2th*f_18_2*f[3]*f[4]*f[35]*f[36])/U[0] + (2*cos2th*f_19_2*f[3]*f[4]*f[35]*f[36])/U[0] - (2*cos2th*f_18_2*f[2]*f[5]*f[35]*f[36])/U[0] - (2*cos2th*f_19_2*f[2]*f[5]*f[35]*f[36])/U[0] - (2*f_18_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[0] - (2*f_19_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[0] + (2*f_18_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[0] + (2*f_19_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[0] - (2*cos2th*f_18_2*f[3]*f[4]*f[34]*f[37])/U[0] - (2*cos2th*f_19_2*f[3]*f[4]*f[34]*f[37])/U[0] + (2*cos2th*f_18_2*f[2]*f[5]*f[34]*f[37])/U[0] + (2*cos2th*f_19_2*f[2]*f[5]*f[34]*f[37])/U[0] + (2*f_18_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[0] + (2*f_19_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[0] + (2*cos2th*f_18_2*f[2]*f[4]*f[35]*f[37])/U[0] + (2*cos2th*f_19_2*f[2]*f[4]*f[35]*f[37])/U[0] + (2*f_18_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[0] + (2*f_19_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[0] - (2*f_18_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[0] - (2*f_19_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[0] + (2*cos2th*f_18_2*f[3]*f[5]*f[35]*f[37])/U[0] + (2*cos2th*f_19_2*f[3]*f[5]*f[35]*f[37])/U[0] + (3*cos2th*f_18_2*f[4]*f[6]*f[36]*f[38])/(2.*U[0]) + (3*cos2th*f_19_2*f[4]*f[6]*f[36]*f[38])/(2.*U[0]) + (3*f_18_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[0]) + (3*f_19_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[0]) - (3*f_18_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[0]) - (3*f_19_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[0]) + (3*cos2th*f_18_2*f[5]*f[7]*f[36]*f[38])/(2.*U[0]) + (3*cos2th*f_19_2*f[5]*f[7]*f[36]*f[38])/(2.*U[0]) - (3*f_18_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[0]) - (3*f_19_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[0]) + (3*cos2th*f_18_2*f[5]*f[6]*f[37]*f[38])/(2.*U[0]) + (3*cos2th*f_19_2*f[5]*f[6]*f[37]*f[38])/(2.*U[0]) - (3*cos2th*f_18_2*f[4]*f[7]*f[37]*f[38])/(2.*U[0]) - (3*cos2th*f_19_2*f[4]*f[7]*f[37]*f[38])/(2.*U[0]) - (3*f_18_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[0]) - (3*f_19_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[0]) + (3*f_18_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[0]) + (3*f_19_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_18_2*f[5]*f[6]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_19_2*f[5]*f[6]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_18_2*f[4]*f[7]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_19_2*f[4]*f[7]*f[36]*f[39])/(2.*U[0]) + (3*f_18_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[0]) + (3*f_19_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_18_2*f[4]*f[6]*f[37]*f[39])/(2.*U[0]) + (3*cos2th*f_19_2*f[4]*f[6]*f[37]*f[39])/(2.*U[0]) + (3*f_18_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[0]) + (3*f_19_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[0]) - (3*f_18_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[0]) - (3*f_19_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[0]) + (3*cos2th*f_18_2*f[5]*f[7]*f[37]*f[39])/(2.*U[0]) + (3*cos2th*f_19_2*f[5]*f[7]*f[37]*f[39])/(2.*U[0]) + (4*cos2th*f_18_2*f[6]*f[8]*f[38]*f[40])/(3.*U[0]) + (4*cos2th*f_19_2*f[6]*f[8]*f[38]*f[40])/(3.*U[0]) + (4*f_18_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[0]) + (4*f_19_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[0]) - (4*f_18_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[0]) - (4*f_19_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[0]) + (4*cos2th*f_18_2*f[7]*f[9]*f[38]*f[40])/(3.*U[0]) + (4*cos2th*f_19_2*f[7]*f[9]*f[38]*f[40])/(3.*U[0]) - (4*f_18_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[0]) - (4*f_19_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[0]) + (4*cos2th*f_18_2*f[7]*f[8]*f[39]*f[40])/(3.*U[0]) + (4*cos2th*f_19_2*f[7]*f[8]*f[39]*f[40])/(3.*U[0]) - (4*cos2th*f_18_2*f[6]*f[9]*f[39]*f[40])/(3.*U[0]) - (4*cos2th*f_19_2*f[6]*f[9]*f[39]*f[40])/(3.*U[0]) - (4*f_18_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[0]) - (4*f_19_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[0]) + (4*f_18_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[0]) + (4*f_19_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_18_2*f[7]*f[8]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_19_2*f[7]*f[8]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_18_2*f[6]*f[9]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_19_2*f[6]*f[9]*f[38]*f[41])/(3.*U[0]) + (4*f_18_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[0]) + (4*f_19_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_18_2*f[6]*f[8]*f[39]*f[41])/(3.*U[0]) + (4*cos2th*f_19_2*f[6]*f[8]*f[39]*f[41])/(3.*U[0]) + (4*f_18_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[0]) + (4*f_19_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[0]) - (4*f_18_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[0]) - (4*f_19_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[0]) + (4*cos2th*f_18_2*f[7]*f[9]*f[39]*f[41])/(3.*U[0]) + (4*cos2th*f_19_2*f[7]*f[9]*f[39]*f[41])/(3.*U[0]) + (5*cos2th*f_18_2*f[8]*f[10]*f[40]*f[42])/(4.*U[0]) + (5*cos2th*f_19_2*f[8]*f[10]*f[40]*f[42])/(4.*U[0]) + (5*f_18_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[0]) + (5*f_19_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[0]) - (5*f_18_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[0]) - (5*f_19_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[0]) + (5*cos2th*f_18_2*f[9]*f[11]*f[40]*f[42])/(4.*U[0]) + (5*cos2th*f_19_2*f[9]*f[11]*f[40]*f[42])/(4.*U[0]) - (5*f_18_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[0]) - (5*f_19_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[0]) + (5*cos2th*f_18_2*f[9]*f[10]*f[41]*f[42])/(4.*U[0]) + (5*cos2th*f_19_2*f[9]*f[10]*f[41]*f[42])/(4.*U[0]) - (5*cos2th*f_18_2*f[8]*f[11]*f[41]*f[42])/(4.*U[0]) - (5*cos2th*f_19_2*f[8]*f[11]*f[41]*f[42])/(4.*U[0]) - (5*f_18_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[0]) - (5*f_19_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[0]) + (5*f_18_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[0]) + (5*f_19_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_18_2*f[9]*f[10]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_19_2*f[9]*f[10]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_18_2*f[8]*f[11]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_19_2*f[8]*f[11]*f[40]*f[43])/(4.*U[0]) + (5*f_18_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[0]) + (5*f_19_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_18_2*f[8]*f[10]*f[41]*f[43])/(4.*U[0]) + (5*cos2th*f_19_2*f[8]*f[10]*f[41]*f[43])/(4.*U[0]) + (5*f_18_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[0]) + (5*f_19_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[0]) - (5*f_18_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[0]) - (5*f_19_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[0]) + (5*cos2th*f_18_2*f[9]*f[11]*f[41]*f[43])/(4.*U[0]) + (5*cos2th*f_19_2*f[9]*f[11]*f[41]*f[43])/(4.*U[0]) + (6*cos2th*f_18_2*f[10]*f[12]*f[42]*f[44])/(5.*U[0]) + (6*cos2th*f_19_2*f[10]*f[12]*f[42]*f[44])/(5.*U[0]) + (6*f_18_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[0]) + (6*f_19_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[0]) - (6*f_18_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[0]) - (6*f_19_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[0]) + (6*cos2th*f_18_2*f[11]*f[13]*f[42]*f[44])/(5.*U[0]) + (6*cos2th*f_19_2*f[11]*f[13]*f[42]*f[44])/(5.*U[0]) - (6*f_18_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[0]) - (6*f_19_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[0]) + (6*cos2th*f_18_2*f[11]*f[12]*f[43]*f[44])/(5.*U[0]) + (6*cos2th*f_19_2*f[11]*f[12]*f[43]*f[44])/(5.*U[0]) - (6*cos2th*f_18_2*f[10]*f[13]*f[43]*f[44])/(5.*U[0]) - (6*cos2th*f_19_2*f[10]*f[13]*f[43]*f[44])/(5.*U[0]) - (6*f_18_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[0]) - (6*f_19_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[0]) + (6*f_18_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[0]) + (6*f_19_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_18_2*f[11]*f[12]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_19_2*f[11]*f[12]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_18_2*f[10]*f[13]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_19_2*f[10]*f[13]*f[42]*f[45])/(5.*U[0]) + (6*f_18_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[0]) + (6*f_19_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_18_2*f[10]*f[12]*f[43]*f[45])/(5.*U[0]) + (6*cos2th*f_19_2*f[10]*f[12]*f[43]*f[45])/(5.*U[0]) + (6*f_18_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[0]) + (6*f_19_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[0]) - (6*f_18_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[0]) - (6*f_19_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[0]) + (6*cos2th*f_18_2*f[11]*f[13]*f[43]*f[45])/(5.*U[0]) + (6*cos2th*f_19_2*f[11]*f[13]*f[43]*f[45])/(5.*U[0]) + (7*cos2th*f_18_2*f[12]*f[14]*f[44]*f[46])/(6.*U[0]) + (7*cos2th*f_19_2*f[12]*f[14]*f[44]*f[46])/(6.*U[0]) + (7*f_18_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[0]) + (7*f_19_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[0]) - (7*f_18_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[0]) - (7*f_19_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[0]) + (7*cos2th*f_18_2*f[13]*f[15]*f[44]*f[46])/(6.*U[0]) + (7*cos2th*f_19_2*f[13]*f[15]*f[44]*f[46])/(6.*U[0]) - (7*f_18_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[0]) - (7*f_19_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[0]) + (7*cos2th*f_18_2*f[13]*f[14]*f[45]*f[46])/(6.*U[0]) + (7*cos2th*f_19_2*f[13]*f[14]*f[45]*f[46])/(6.*U[0]) - (7*cos2th*f_18_2*f[12]*f[15]*f[45]*f[46])/(6.*U[0]) - (7*cos2th*f_19_2*f[12]*f[15]*f[45]*f[46])/(6.*U[0]) - (7*f_18_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[0]) - (7*f_19_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[0]) + (7*f_18_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[0]) + (7*f_19_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_18_2*f[13]*f[14]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_19_2*f[13]*f[14]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_18_2*f[12]*f[15]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_19_2*f[12]*f[15]*f[44]*f[47])/(6.*U[0]) + (7*f_18_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[0]) + (7*f_19_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_18_2*f[12]*f[14]*f[45]*f[47])/(6.*U[0]) + (7*cos2th*f_19_2*f[12]*f[14]*f[45]*f[47])/(6.*U[0]) + (7*f_18_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[0]) + (7*f_19_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[0]) - (7*f_18_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[0]) - (7*f_19_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[0]) + (7*cos2th*f_18_2*f[13]*f[15]*f[45]*f[47])/(6.*U[0]) + (7*cos2th*f_19_2*f[13]*f[15]*f[45]*f[47])/(6.*U[0]) + (14*cos2th*f_30_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_31_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*f_30_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*f_31_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 6*U[1]) - (14*f_30_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 6*U[1]) - (14*f_31_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_30_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_31_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 6*U[1]) - (14*f_30_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*f_31_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_30_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 6*U[1]) + (14*cos2th*f_31_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*cos2th*f_30_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*cos2th*f_31_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*f_30_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 6*U[1]) - (14*f_31_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 6*U[1]) + (14*f_30_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*f_31_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 6*U[1]) - (14*cos2th*f_30_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 6*U[1]) - (14*cos2th*f_31_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_30_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_31_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*f_30_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*f_31_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_30_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_31_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*f_30_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*f_31_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 6*U[1]) - (14*f_30_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 6*U[1]) - (14*f_31_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_30_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 6*U[1]) + (14*cos2th*f_31_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 6*U[1]) + (21*cos2th*f_30_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_31_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*f_30_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*f_31_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 6*U[1]) - (21*f_30_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 6*U[1]) - (21*f_31_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_30_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_31_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 6*U[1]) - (21*f_30_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*f_31_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_30_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 6*U[1]) + (21*cos2th*f_31_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*cos2th*f_30_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*cos2th*f_31_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*f_30_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 6*U[1]) - (21*f_31_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 6*U[1]) + (21*f_30_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*f_31_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 6*U[1]) - (21*cos2th*f_30_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 6*U[1]) - (21*cos2th*f_31_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_30_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_31_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*f_30_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*f_31_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_30_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_31_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*f_30_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*f_31_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 6*U[1]) - (21*f_30_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 6*U[1]) - (21*f_31_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_30_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (21*cos2th*f_31_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 6*U[1]) + (28*cos2th*f_30_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_31_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*f_30_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*f_31_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 6*U[1]) - (28*f_30_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 6*U[1]) - (28*f_31_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_30_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_31_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 6*U[1]) - (28*f_30_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*f_31_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_30_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 6*U[1]) + (28*cos2th*f_31_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*cos2th*f_30_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*cos2th*f_31_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*f_30_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 6*U[1]) - (28*f_31_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 6*U[1]) + (28*f_30_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*f_31_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 6*U[1]) - (28*cos2th*f_30_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 6*U[1]) - (28*cos2th*f_31_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_30_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_31_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*f_30_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*f_31_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_30_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_31_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*f_30_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*f_31_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 6*U[1]) - (28*f_30_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 6*U[1]) - (28*f_31_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_30_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (28*cos2th*f_31_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 6*U[1]) + (35*cos2th*f_30_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_31_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*f_30_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*f_31_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 6*U[1]) - (35*f_30_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 6*U[1]) - (35*f_31_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_30_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_31_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 6*U[1]) - (35*f_30_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*f_31_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_30_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 6*U[1]) + (35*cos2th*f_31_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*cos2th*f_30_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*cos2th*f_31_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*f_30_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 6*U[1]) - (35*f_31_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 6*U[1]) + (35*f_30_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*f_31_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 6*U[1]) - (35*cos2th*f_30_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 6*U[1]) - (35*cos2th*f_31_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_30_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_31_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*f_30_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*f_31_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_30_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_31_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*f_30_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*f_31_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 6*U[1]) - (35*f_30_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 6*U[1]) - (35*f_31_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_30_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (35*cos2th*f_31_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 6*U[1]) + (42*cos2th*f_30_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_31_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*f_30_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*f_31_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 6*U[1]) - (42*f_30_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 6*U[1]) - (42*f_31_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_30_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_31_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 6*U[1]) - (42*f_30_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*f_31_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_30_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 6*U[1]) + (42*cos2th*f_31_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*cos2th*f_30_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*cos2th*f_31_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*f_30_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 6*U[1]) - (42*f_31_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 6*U[1]) + (42*f_30_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*f_31_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 6*U[1]) - (42*cos2th*f_30_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 6*U[1]) - (42*cos2th*f_31_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_30_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_31_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*f_30_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*f_31_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_30_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_31_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*f_30_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*f_31_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 6*U[1]) - (42*f_30_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 6*U[1]) - (42*f_31_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_30_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (42*cos2th*f_31_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 6*U[1]) + (12*cos2th*f_28_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_29_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*f_28_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*f_29_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 5*U[1]) - (12*f_28_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 5*U[1]) - (12*f_29_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_28_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_29_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 5*U[1]) - (12*f_28_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*f_29_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_28_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 5*U[1]) + (12*cos2th*f_29_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*cos2th*f_28_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*cos2th*f_29_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*f_28_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 5*U[1]) - (12*f_29_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 5*U[1]) + (12*f_28_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*f_29_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 5*U[1]) - (12*cos2th*f_28_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 5*U[1]) - (12*cos2th*f_29_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_28_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_29_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*f_28_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*f_29_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_28_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_29_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*f_28_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*f_29_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 5*U[1]) - (12*f_28_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 5*U[1]) - (12*f_29_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_28_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 5*U[1]) + (12*cos2th*f_29_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 5*U[1]) + (18*cos2th*f_28_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_29_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*f_28_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*f_29_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 5*U[1]) - (18*f_28_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 5*U[1]) - (18*f_29_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_28_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_29_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 5*U[1]) - (18*f_28_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*f_29_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_28_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 5*U[1]) + (18*cos2th*f_29_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*cos2th*f_28_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*cos2th*f_29_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*f_28_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 5*U[1]) - (18*f_29_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 5*U[1]) + (18*f_28_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*f_29_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 5*U[1]) - (18*cos2th*f_28_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 5*U[1]) - (18*cos2th*f_29_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_28_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_29_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*f_28_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*f_29_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_28_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_29_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*f_28_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*f_29_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 5*U[1]) - (18*f_28_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 5*U[1]) - (18*f_29_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_28_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (18*cos2th*f_29_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 5*U[1]) + (24*cos2th*f_28_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_29_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*f_28_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*f_29_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 5*U[1]) - (24*f_28_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 5*U[1]) - (24*f_29_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_28_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_29_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 5*U[1]) - (24*f_28_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*f_29_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_28_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 5*U[1]) + (24*cos2th*f_29_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*cos2th*f_28_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*cos2th*f_29_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*f_28_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 5*U[1]) - (24*f_29_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 5*U[1]) + (24*f_28_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*f_29_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 5*U[1]) - (24*cos2th*f_28_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 5*U[1]) - (24*cos2th*f_29_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_28_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_29_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*f_28_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*f_29_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_28_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_29_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*f_28_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*f_29_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 5*U[1]) - (24*f_28_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 5*U[1]) - (24*f_29_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_28_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (24*cos2th*f_29_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 5*U[1]) + (30*cos2th*f_28_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_29_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*f_28_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*f_29_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 5*U[1]) - (30*f_28_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 5*U[1]) - (30*f_29_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_28_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_29_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 5*U[1]) - (30*f_28_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*f_29_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_28_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 5*U[1]) + (30*cos2th*f_29_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*cos2th*f_28_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*cos2th*f_29_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*f_28_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 5*U[1]) - (30*f_29_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 5*U[1]) + (30*f_28_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*f_29_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 5*U[1]) - (30*cos2th*f_28_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 5*U[1]) - (30*cos2th*f_29_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_28_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_29_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*f_28_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*f_29_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_28_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_29_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*f_28_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*f_29_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 5*U[1]) - (30*f_28_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 5*U[1]) - (30*f_29_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_28_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (30*cos2th*f_29_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 5*U[1]) + (42*cos2th*f_28_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_29_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*f_28_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*f_29_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 5*U[1]) - (42*f_28_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 5*U[1]) - (42*f_29_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_28_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_29_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 5*U[1]) - (42*f_28_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*f_29_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_28_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 5*U[1]) + (42*cos2th*f_29_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*cos2th*f_28_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*cos2th*f_29_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*f_28_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 5*U[1]) - (42*f_29_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 5*U[1]) + (42*f_28_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*f_29_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 5*U[1]) - (42*cos2th*f_28_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 5*U[1]) - (42*cos2th*f_29_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_28_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_29_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*f_28_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*f_29_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_28_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_29_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*f_28_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*f_29_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 5*U[1]) - (42*f_28_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 5*U[1]) - (42*f_29_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_28_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (42*cos2th*f_29_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 5*U[1]) + (10*cos2th*f_26_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_27_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*f_26_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*f_27_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 4*U[1]) - (10*f_26_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 4*U[1]) - (10*f_27_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_26_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_27_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 4*U[1]) - (10*f_26_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*f_27_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_26_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 4*U[1]) + (10*cos2th*f_27_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*cos2th*f_26_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*cos2th*f_27_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*f_26_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 4*U[1]) - (10*f_27_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 4*U[1]) + (10*f_26_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*f_27_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 4*U[1]) - (10*cos2th*f_26_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 4*U[1]) - (10*cos2th*f_27_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_26_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_27_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*f_26_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*f_27_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_26_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_27_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*f_26_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*f_27_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 4*U[1]) - (10*f_26_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 4*U[1]) - (10*f_27_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_26_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 4*U[1]) + (10*cos2th*f_27_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 4*U[1]) + (15*cos2th*f_26_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_27_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*f_26_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*f_27_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 4*U[1]) - (15*f_26_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 4*U[1]) - (15*f_27_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_26_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_27_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 4*U[1]) - (15*f_26_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*f_27_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_26_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 4*U[1]) + (15*cos2th*f_27_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*cos2th*f_26_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*cos2th*f_27_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*f_26_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 4*U[1]) - (15*f_27_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 4*U[1]) + (15*f_26_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*f_27_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 4*U[1]) - (15*cos2th*f_26_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 4*U[1]) - (15*cos2th*f_27_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_26_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_27_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*f_26_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*f_27_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_26_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_27_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*f_26_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*f_27_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 4*U[1]) - (15*f_26_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 4*U[1]) - (15*f_27_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_26_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (15*cos2th*f_27_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 4*U[1]) + (20*cos2th*f_26_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_27_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*f_26_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*f_27_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 4*U[1]) - (20*f_26_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 4*U[1]) - (20*f_27_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_26_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_27_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 4*U[1]) - (20*f_26_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*f_27_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_26_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 4*U[1]) + (20*cos2th*f_27_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*cos2th*f_26_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*cos2th*f_27_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*f_26_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 4*U[1]) - (20*f_27_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 4*U[1]) + (20*f_26_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*f_27_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 4*U[1]) - (20*cos2th*f_26_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 4*U[1]) - (20*cos2th*f_27_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_26_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_27_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*f_26_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*f_27_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_26_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_27_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*f_26_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*f_27_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 4*U[1]) - (20*f_26_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 4*U[1]) - (20*f_27_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_26_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (20*cos2th*f_27_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 4*U[1]) + (30*cos2th*f_26_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_27_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*f_26_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*f_27_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 4*U[1]) - (30*f_26_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 4*U[1]) - (30*f_27_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_26_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_27_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 4*U[1]) - (30*f_26_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*f_27_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_26_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 4*U[1]) + (30*cos2th*f_27_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*cos2th*f_26_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*cos2th*f_27_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*f_26_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 4*U[1]) - (30*f_27_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 4*U[1]) + (30*f_26_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*f_27_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 4*U[1]) - (30*cos2th*f_26_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 4*U[1]) - (30*cos2th*f_27_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_26_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_27_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*f_26_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*f_27_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_26_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_27_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*f_26_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*f_27_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 4*U[1]) - (30*f_26_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 4*U[1]) - (30*f_27_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_26_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (30*cos2th*f_27_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 4*U[1]) + (35*cos2th*f_26_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_27_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*f_26_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*f_27_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 4*U[1]) - (35*f_26_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 4*U[1]) - (35*f_27_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_26_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_27_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 4*U[1]) - (35*f_26_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*f_27_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_26_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 4*U[1]) + (35*cos2th*f_27_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*cos2th*f_26_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*cos2th*f_27_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*f_26_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 4*U[1]) - (35*f_27_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 4*U[1]) + (35*f_26_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*f_27_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 4*U[1]) - (35*cos2th*f_26_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 4*U[1]) - (35*cos2th*f_27_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_26_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_27_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*f_26_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*f_27_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_26_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_27_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*f_26_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*f_27_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 4*U[1]) - (35*f_26_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 4*U[1]) - (35*f_27_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_26_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (35*cos2th*f_27_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 4*U[1]) + (8*cos2th*f_24_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_25_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*f_24_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*f_25_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 3*U[1]) - (8*f_24_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 3*U[1]) - (8*f_25_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_24_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_25_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 3*U[1]) - (8*f_24_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*f_25_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_24_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 3*U[1]) + (8*cos2th*f_25_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*cos2th*f_24_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*cos2th*f_25_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*f_24_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 3*U[1]) - (8*f_25_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 3*U[1]) + (8*f_24_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*f_25_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 3*U[1]) - (8*cos2th*f_24_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 3*U[1]) - (8*cos2th*f_25_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_24_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_25_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*f_24_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*f_25_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_24_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_25_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*f_24_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*f_25_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 3*U[1]) - (8*f_24_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 3*U[1]) - (8*f_25_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_24_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 3*U[1]) + (8*cos2th*f_25_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 3*U[1]) + (12*cos2th*f_24_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_25_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*f_24_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*f_25_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - 3*U[1]) - (12*f_24_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 3*U[1]) - (12*f_25_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_24_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_25_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - 3*U[1]) - (12*f_24_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*f_25_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_24_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 3*U[1]) + (12*cos2th*f_25_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*cos2th*f_24_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*cos2th*f_25_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*f_24_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 3*U[1]) - (12*f_25_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - 3*U[1]) + (12*f_24_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*f_25_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - 3*U[1]) - (12*cos2th*f_24_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 3*U[1]) - (12*cos2th*f_25_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_24_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_25_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*f_24_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*f_25_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_24_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_25_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*f_24_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*f_25_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - 3*U[1]) - (12*f_24_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 3*U[1]) - (12*f_25_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_24_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (12*cos2th*f_25_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - 3*U[1]) + (20*cos2th*f_24_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_25_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*f_24_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*f_25_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 3*U[1]) - (20*f_24_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 3*U[1]) - (20*f_25_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_24_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_25_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 3*U[1]) - (20*f_24_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*f_25_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_24_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 3*U[1]) + (20*cos2th*f_25_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*cos2th*f_24_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*cos2th*f_25_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*f_24_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 3*U[1]) - (20*f_25_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 3*U[1]) + (20*f_24_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*f_25_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 3*U[1]) - (20*cos2th*f_24_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 3*U[1]) - (20*cos2th*f_25_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_24_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_25_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*f_24_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*f_25_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_24_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_25_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*f_24_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*f_25_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 3*U[1]) - (20*f_24_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 3*U[1]) - (20*f_25_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_24_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (20*cos2th*f_25_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 3*U[1]) + (24*cos2th*f_24_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_25_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*f_24_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*f_25_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 3*U[1]) - (24*f_24_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 3*U[1]) - (24*f_25_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_24_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_25_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 3*U[1]) - (24*f_24_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*f_25_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_24_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 3*U[1]) + (24*cos2th*f_25_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*cos2th*f_24_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*cos2th*f_25_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*f_24_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 3*U[1]) - (24*f_25_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 3*U[1]) + (24*f_24_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*f_25_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 3*U[1]) - (24*cos2th*f_24_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 3*U[1]) - (24*cos2th*f_25_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_24_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_25_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*f_24_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*f_25_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_24_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_25_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*f_24_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*f_25_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 3*U[1]) - (24*f_24_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 3*U[1]) - (24*f_25_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_24_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (24*cos2th*f_25_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 3*U[1]) + (28*cos2th*f_24_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_25_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*f_24_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*f_25_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 3*U[1]) - (28*f_24_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 3*U[1]) - (28*f_25_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_24_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_25_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 3*U[1]) - (28*f_24_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*f_25_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_24_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 3*U[1]) + (28*cos2th*f_25_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*cos2th*f_24_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*cos2th*f_25_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*f_24_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 3*U[1]) - (28*f_25_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 3*U[1]) + (28*f_24_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*f_25_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 3*U[1]) - (28*cos2th*f_24_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 3*U[1]) - (28*cos2th*f_25_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_24_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_25_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*f_24_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*f_25_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_24_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_25_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*f_24_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*f_25_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 3*U[1]) - (28*f_24_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 3*U[1]) - (28*f_25_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_24_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (28*cos2th*f_25_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 3*U[1]) + (6*cos2th*f_22_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_23_2*f[2]*f[4]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*f_22_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*f_23_2*sin2th*f[3]*f[4]*f[34]*f[36])/(U[0] - 2*U[1]) - (6*f_22_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 2*U[1]) - (6*f_23_2*sin2th*f[2]*f[5]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_22_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_23_2*f[3]*f[5]*f[34]*f[36])/(U[0] - 2*U[1]) - (6*f_22_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*f_23_2*sin2th*f[2]*f[4]*f[35]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_22_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 2*U[1]) + (6*cos2th*f_23_2*f[3]*f[4]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*cos2th*f_22_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*cos2th*f_23_2*f[2]*f[5]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*f_22_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 2*U[1]) - (6*f_23_2*sin2th*f[3]*f[5]*f[35]*f[36])/(U[0] - 2*U[1]) + (6*f_22_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*f_23_2*sin2th*f[2]*f[4]*f[34]*f[37])/(U[0] - 2*U[1]) - (6*cos2th*f_22_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 2*U[1]) - (6*cos2th*f_23_2*f[3]*f[4]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_22_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_23_2*f[2]*f[5]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*f_22_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*f_23_2*sin2th*f[3]*f[5]*f[34]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_22_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_23_2*f[2]*f[4]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*f_22_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*f_23_2*sin2th*f[3]*f[4]*f[35]*f[37])/(U[0] - 2*U[1]) - (6*f_22_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 2*U[1]) - (6*f_23_2*sin2th*f[2]*f[5]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_22_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 2*U[1]) + (6*cos2th*f_23_2*f[3]*f[5]*f[35]*f[37])/(U[0] - 2*U[1]) + (12*cos2th*f_22_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_23_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*f_22_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*f_23_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - 2*U[1]) - (12*f_22_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 2*U[1]) - (12*f_23_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_22_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_23_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - 2*U[1]) - (12*f_22_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*f_23_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_22_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 2*U[1]) + (12*cos2th*f_23_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*cos2th*f_22_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*cos2th*f_23_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*f_22_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 2*U[1]) - (12*f_23_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - 2*U[1]) + (12*f_22_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*f_23_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - 2*U[1]) - (12*cos2th*f_22_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 2*U[1]) - (12*cos2th*f_23_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_22_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_23_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*f_22_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*f_23_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_22_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_23_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*f_22_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*f_23_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - 2*U[1]) - (12*f_22_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 2*U[1]) - (12*f_23_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_22_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (12*cos2th*f_23_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - 2*U[1]) + (15*cos2th*f_22_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_23_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*f_22_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*f_23_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - 2*U[1]) - (15*f_22_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 2*U[1]) - (15*f_23_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_22_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_23_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - 2*U[1]) - (15*f_22_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*f_23_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_22_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 2*U[1]) + (15*cos2th*f_23_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*cos2th*f_22_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*cos2th*f_23_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*f_22_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 2*U[1]) - (15*f_23_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - 2*U[1]) + (15*f_22_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*f_23_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - 2*U[1]) - (15*cos2th*f_22_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 2*U[1]) - (15*cos2th*f_23_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_22_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_23_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*f_22_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*f_23_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_22_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_23_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*f_22_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*f_23_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - 2*U[1]) - (15*f_22_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 2*U[1]) - (15*f_23_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_22_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (15*cos2th*f_23_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - 2*U[1]) + (18*cos2th*f_22_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_23_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*f_22_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*f_23_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - 2*U[1]) - (18*f_22_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 2*U[1]) - (18*f_23_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_22_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_23_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - 2*U[1]) - (18*f_22_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*f_23_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_22_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 2*U[1]) + (18*cos2th*f_23_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*cos2th*f_22_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*cos2th*f_23_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*f_22_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 2*U[1]) - (18*f_23_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - 2*U[1]) + (18*f_22_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*f_23_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - 2*U[1]) - (18*cos2th*f_22_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 2*U[1]) - (18*cos2th*f_23_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_22_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_23_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*f_22_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*f_23_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_22_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_23_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*f_22_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*f_23_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - 2*U[1]) - (18*f_22_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 2*U[1]) - (18*f_23_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_22_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (18*cos2th*f_23_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - 2*U[1]) + (21*cos2th*f_22_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_23_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*f_22_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*f_23_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - 2*U[1]) - (21*f_22_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 2*U[1]) - (21*f_23_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_22_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_23_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - 2*U[1]) - (21*f_22_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*f_23_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_22_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 2*U[1]) + (21*cos2th*f_23_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*cos2th*f_22_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*cos2th*f_23_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*f_22_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 2*U[1]) - (21*f_23_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - 2*U[1]) + (21*f_22_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*f_23_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - 2*U[1]) - (21*cos2th*f_22_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 2*U[1]) - (21*cos2th*f_23_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_22_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_23_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*f_22_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*f_23_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_22_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_23_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*f_22_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*f_23_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - 2*U[1]) - (21*f_22_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 2*U[1]) - (21*f_23_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_22_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (21*cos2th*f_23_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - 2*U[1]) + (6*cos2th*f_20_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_21_2*f[4]*f[6]*f[36]*f[38])/(2*U[0] - U[1]) + (6*f_20_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - U[1]) + (6*f_21_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2*U[0] - U[1]) - (6*f_20_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - U[1]) - (6*f_21_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_20_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_21_2*f[5]*f[7]*f[36]*f[38])/(2*U[0] - U[1]) - (6*f_20_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - U[1]) - (6*f_21_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_20_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - U[1]) + (6*cos2th*f_21_2*f[5]*f[6]*f[37]*f[38])/(2*U[0] - U[1]) - (6*cos2th*f_20_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - U[1]) - (6*cos2th*f_21_2*f[4]*f[7]*f[37]*f[38])/(2*U[0] - U[1]) - (6*f_20_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - U[1]) - (6*f_21_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2*U[0] - U[1]) + (6*f_20_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - U[1]) + (6*f_21_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2*U[0] - U[1]) - (6*cos2th*f_20_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - U[1]) - (6*cos2th*f_21_2*f[5]*f[6]*f[36]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_20_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_21_2*f[4]*f[7]*f[36]*f[39])/(2*U[0] - U[1]) + (6*f_20_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - U[1]) + (6*f_21_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_20_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_21_2*f[4]*f[6]*f[37]*f[39])/(2*U[0] - U[1]) + (6*f_20_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - U[1]) + (6*f_21_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2*U[0] - U[1]) - (6*f_20_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - U[1]) - (6*f_21_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_20_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - U[1]) + (6*cos2th*f_21_2*f[5]*f[7]*f[37]*f[39])/(2*U[0] - U[1]) + (8*cos2th*f_20_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_21_2*f[6]*f[8]*f[38]*f[40])/(3*U[0] - U[1]) + (8*f_20_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - U[1]) + (8*f_21_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3*U[0] - U[1]) - (8*f_20_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - U[1]) - (8*f_21_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_20_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_21_2*f[7]*f[9]*f[38]*f[40])/(3*U[0] - U[1]) - (8*f_20_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - U[1]) - (8*f_21_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_20_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - U[1]) + (8*cos2th*f_21_2*f[7]*f[8]*f[39]*f[40])/(3*U[0] - U[1]) - (8*cos2th*f_20_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - U[1]) - (8*cos2th*f_21_2*f[6]*f[9]*f[39]*f[40])/(3*U[0] - U[1]) - (8*f_20_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - U[1]) - (8*f_21_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3*U[0] - U[1]) + (8*f_20_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - U[1]) + (8*f_21_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3*U[0] - U[1]) - (8*cos2th*f_20_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - U[1]) - (8*cos2th*f_21_2*f[7]*f[8]*f[38]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_20_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_21_2*f[6]*f[9]*f[38]*f[41])/(3*U[0] - U[1]) + (8*f_20_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - U[1]) + (8*f_21_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_20_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_21_2*f[6]*f[8]*f[39]*f[41])/(3*U[0] - U[1]) + (8*f_20_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - U[1]) + (8*f_21_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3*U[0] - U[1]) - (8*f_20_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - U[1]) - (8*f_21_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_20_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - U[1]) + (8*cos2th*f_21_2*f[7]*f[9]*f[39]*f[41])/(3*U[0] - U[1]) + (10*cos2th*f_20_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_21_2*f[8]*f[10]*f[40]*f[42])/(4*U[0] - U[1]) + (10*f_20_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - U[1]) + (10*f_21_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4*U[0] - U[1]) - (10*f_20_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - U[1]) - (10*f_21_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_20_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_21_2*f[9]*f[11]*f[40]*f[42])/(4*U[0] - U[1]) - (10*f_20_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - U[1]) - (10*f_21_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_20_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - U[1]) + (10*cos2th*f_21_2*f[9]*f[10]*f[41]*f[42])/(4*U[0] - U[1]) - (10*cos2th*f_20_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - U[1]) - (10*cos2th*f_21_2*f[8]*f[11]*f[41]*f[42])/(4*U[0] - U[1]) - (10*f_20_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - U[1]) - (10*f_21_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4*U[0] - U[1]) + (10*f_20_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - U[1]) + (10*f_21_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4*U[0] - U[1]) - (10*cos2th*f_20_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - U[1]) - (10*cos2th*f_21_2*f[9]*f[10]*f[40]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_20_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_21_2*f[8]*f[11]*f[40]*f[43])/(4*U[0] - U[1]) + (10*f_20_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - U[1]) + (10*f_21_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_20_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_21_2*f[8]*f[10]*f[41]*f[43])/(4*U[0] - U[1]) + (10*f_20_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - U[1]) + (10*f_21_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4*U[0] - U[1]) - (10*f_20_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - U[1]) - (10*f_21_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_20_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - U[1]) + (10*cos2th*f_21_2*f[9]*f[11]*f[41]*f[43])/(4*U[0] - U[1]) + (12*cos2th*f_20_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_21_2*f[10]*f[12]*f[42]*f[44])/(5*U[0] - U[1]) + (12*f_20_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - U[1]) + (12*f_21_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5*U[0] - U[1]) - (12*f_20_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - U[1]) - (12*f_21_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_20_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_21_2*f[11]*f[13]*f[42]*f[44])/(5*U[0] - U[1]) - (12*f_20_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - U[1]) - (12*f_21_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_20_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - U[1]) + (12*cos2th*f_21_2*f[11]*f[12]*f[43]*f[44])/(5*U[0] - U[1]) - (12*cos2th*f_20_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - U[1]) - (12*cos2th*f_21_2*f[10]*f[13]*f[43]*f[44])/(5*U[0] - U[1]) - (12*f_20_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - U[1]) - (12*f_21_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5*U[0] - U[1]) + (12*f_20_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - U[1]) + (12*f_21_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5*U[0] - U[1]) - (12*cos2th*f_20_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - U[1]) - (12*cos2th*f_21_2*f[11]*f[12]*f[42]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_20_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_21_2*f[10]*f[13]*f[42]*f[45])/(5*U[0] - U[1]) + (12*f_20_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - U[1]) + (12*f_21_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_20_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_21_2*f[10]*f[12]*f[43]*f[45])/(5*U[0] - U[1]) + (12*f_20_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - U[1]) + (12*f_21_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5*U[0] - U[1]) - (12*f_20_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - U[1]) - (12*f_21_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_20_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - U[1]) + (12*cos2th*f_21_2*f[11]*f[13]*f[43]*f[45])/(5*U[0] - U[1]) + (14*cos2th*f_20_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_21_2*f[12]*f[14]*f[44]*f[46])/(6*U[0] - U[1]) + (14*f_20_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - U[1]) + (14*f_21_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6*U[0] - U[1]) - (14*f_20_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - U[1]) - (14*f_21_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_20_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_21_2*f[13]*f[15]*f[44]*f[46])/(6*U[0] - U[1]) - (14*f_20_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - U[1]) - (14*f_21_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_20_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - U[1]) + (14*cos2th*f_21_2*f[13]*f[14]*f[45]*f[46])/(6*U[0] - U[1]) - (14*cos2th*f_20_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - U[1]) - (14*cos2th*f_21_2*f[12]*f[15]*f[45]*f[46])/(6*U[0] - U[1]) - (14*f_20_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - U[1]) - (14*f_21_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6*U[0] - U[1]) + (14*f_20_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - U[1]) + (14*f_21_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6*U[0] - U[1]) - (14*cos2th*f_20_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - U[1]) - (14*cos2th*f_21_2*f[13]*f[14]*f[44]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_20_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_21_2*f[12]*f[15]*f[44]*f[47])/(6*U[0] - U[1]) + (14*f_20_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - U[1]) + (14*f_21_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_20_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_21_2*f[12]*f[14]*f[45]*f[47])/(6*U[0] - U[1]) + (14*f_20_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - U[1]) + (14*f_21_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6*U[0] - U[1]) - (14*f_20_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - U[1]) - (14*f_21_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_20_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - U[1]) + (14*cos2th*f_21_2*f[13]*f[15]*f[45]*f[47])/(6*U[0] - U[1]) - (2*cos2th*f_20_2*f[0]*f[2]*f[32]*f[34])/U[1] - (2*cos2th*f_21_2*f[0]*f[2]*f[32]*f[34])/U[1] - (3*cos2th*f_22_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) - (3*cos2th*f_23_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) - (4*cos2th*f_24_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) - (4*cos2th*f_25_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) - (5*cos2th*f_26_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) - (5*cos2th*f_27_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) - (6*cos2th*f_28_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) - (6*cos2th*f_29_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) - (7*cos2th*f_30_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) - (7*cos2th*f_31_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] - (2*f_21_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] - (3*f_22_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) - (3*f_23_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) - (4*f_24_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) - (4*f_25_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) - (5*f_26_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) - (5*f_27_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) - (6*f_28_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) - (6*f_29_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) - (7*f_30_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) - (7*f_31_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] + (2*f_21_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] + (3*f_22_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) + (3*f_23_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) + (4*f_24_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) + (4*f_25_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) + (5*f_26_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) + (5*f_27_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) + (6*f_28_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) + (6*f_29_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) + (7*f_30_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) + (7*f_31_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) - (2*cos2th*f_20_2*f[1]*f[3]*f[32]*f[34])/U[1] - (2*cos2th*f_21_2*f[1]*f[3]*f[32]*f[34])/U[1] - (3*cos2th*f_22_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) - (3*cos2th*f_23_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) - (4*cos2th*f_24_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) - (4*cos2th*f_25_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) - (5*cos2th*f_26_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) - (5*cos2th*f_27_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) - (6*cos2th*f_28_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) - (6*cos2th*f_29_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) - (7*cos2th*f_30_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) - (7*cos2th*f_31_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] + (2*f_21_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] + (3*f_22_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) + (3*f_23_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) + (4*f_24_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) + (4*f_25_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) + (5*f_26_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) + (5*f_27_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) + (6*f_28_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) + (6*f_29_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) + (7*f_30_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) + (7*f_31_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) - (2*cos2th*f_20_2*f[1]*f[2]*f[33]*f[34])/U[1] - (2*cos2th*f_21_2*f[1]*f[2]*f[33]*f[34])/U[1] - (3*cos2th*f_22_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) - (3*cos2th*f_23_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) - (4*cos2th*f_24_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) - (4*cos2th*f_25_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) - (5*cos2th*f_26_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) - (5*cos2th*f_27_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) - (6*cos2th*f_28_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) - (6*cos2th*f_29_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) - (7*cos2th*f_30_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) - (7*cos2th*f_31_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) + (2*cos2th*f_20_2*f[0]*f[3]*f[33]*f[34])/U[1] + (2*cos2th*f_21_2*f[0]*f[3]*f[33]*f[34])/U[1] + (3*cos2th*f_22_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) + (3*cos2th*f_23_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) + (4*cos2th*f_24_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) + (4*cos2th*f_25_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) + (5*cos2th*f_26_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) + (5*cos2th*f_27_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) + (6*cos2th*f_28_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) + (6*cos2th*f_29_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) + (7*cos2th*f_30_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) + (7*cos2th*f_31_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] + (2*f_21_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] + (3*f_22_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) + (3*f_23_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) + (4*f_24_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) + (4*f_25_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) + (5*f_26_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) + (5*f_27_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) + (6*f_28_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) + (6*f_29_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) + (7*f_30_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) + (7*f_31_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] - (2*f_21_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] - (3*f_22_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) - (3*f_23_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) - (4*f_24_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) - (4*f_25_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) - (5*f_26_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) - (5*f_27_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) - (6*f_28_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) - (6*f_29_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) - (7*f_30_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) - (7*f_31_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_20_2*f[1]*f[2]*f[32]*f[35])/U[1] + (2*cos2th*f_21_2*f[1]*f[2]*f[32]*f[35])/U[1] + (3*cos2th*f_22_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) + (3*cos2th*f_23_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) + (4*cos2th*f_24_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) + (4*cos2th*f_25_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) + (5*cos2th*f_26_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) + (5*cos2th*f_27_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) + (6*cos2th*f_28_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) + (6*cos2th*f_29_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) + (7*cos2th*f_30_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) + (7*cos2th*f_31_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_20_2*f[0]*f[3]*f[32]*f[35])/U[1] - (2*cos2th*f_21_2*f[0]*f[3]*f[32]*f[35])/U[1] - (3*cos2th*f_22_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) - (3*cos2th*f_23_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) - (4*cos2th*f_24_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) - (4*cos2th*f_25_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) - (5*cos2th*f_26_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) - (5*cos2th*f_27_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) - (6*cos2th*f_28_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) - (6*cos2th*f_29_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) - (7*cos2th*f_30_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) - (7*cos2th*f_31_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) - (2*f_20_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] - (2*f_21_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] - (3*f_22_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) - (3*f_23_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) - (4*f_24_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) - (4*f_25_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) - (5*f_26_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) - (5*f_27_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) - (6*f_28_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) - (6*f_29_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) - (7*f_30_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) - (7*f_31_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_20_2*f[0]*f[2]*f[33]*f[35])/U[1] - (2*cos2th*f_21_2*f[0]*f[2]*f[33]*f[35])/U[1] - (3*cos2th*f_22_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) - (3*cos2th*f_23_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) - (4*cos2th*f_24_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) - (4*cos2th*f_25_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) - (5*cos2th*f_26_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) - (5*cos2th*f_27_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) - (6*cos2th*f_28_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) - (6*cos2th*f_29_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) - (7*cos2th*f_30_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) - (7*cos2th*f_31_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) - (2*f_20_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] - (2*f_21_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] - (3*f_22_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) - (3*f_23_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) - (4*f_24_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) - (4*f_25_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) - (5*f_26_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) - (5*f_27_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) - (6*f_28_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) - (6*f_29_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) - (7*f_30_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) - (7*f_31_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) + (2*f_20_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] + (2*f_21_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] + (3*f_22_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) + (3*f_23_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) + (4*f_24_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) + (4*f_25_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) + (5*f_26_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) + (5*f_27_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) + (6*f_28_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) + (6*f_29_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) + (7*f_30_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) + (7*f_31_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) - (2*cos2th*f_20_2*f[1]*f[3]*f[33]*f[35])/U[1] - (2*cos2th*f_21_2*f[1]*f[3]*f[33]*f[35])/U[1] - (3*cos2th*f_22_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) - (3*cos2th*f_23_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) - (4*cos2th*f_24_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) - (4*cos2th*f_25_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) - (5*cos2th*f_26_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) - (5*cos2th*f_27_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) - (6*cos2th*f_28_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) - (6*cos2th*f_29_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) - (7*cos2th*f_30_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) - (7*cos2th*f_31_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[0]*J[4]*((6*cos2th*f_10_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) + (6*cos2th*f_11_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) + (7*cos2th*f_12_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) + (7*cos2th*f_13_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) + (2*cos2th*f_2_2*f[16]*f[18]*f[64]*f[66])/U[0] + (2*cos2th*f_3_2*f[16]*f[18]*f[64]*f[66])/U[0] + (3*cos2th*f_4_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) + (3*cos2th*f_5_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) + (4*cos2th*f_6_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) + (4*cos2th*f_7_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) + (5*cos2th*f_8_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) + (5*cos2th*f_9_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) - (6*f_11_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) - (7*f_12_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) - (7*f_13_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) - (2*f_2_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] - (2*f_3_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] - (3*f_4_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) - (3*f_5_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) - (4*f_6_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) - (4*f_7_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) - (5*f_8_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) - (5*f_9_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) + (6*f_11_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) + (7*f_12_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) + (7*f_13_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) + (2*f_2_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] + (2*f_3_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] + (3*f_4_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) + (3*f_5_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) + (4*f_6_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) + (4*f_7_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) + (5*f_8_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) + (5*f_9_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) + (6*cos2th*f_10_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) + (6*cos2th*f_11_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) + (7*cos2th*f_12_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) + (7*cos2th*f_13_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) + (2*cos2th*f_2_2*f[17]*f[19]*f[64]*f[66])/U[0] + (2*cos2th*f_3_2*f[17]*f[19]*f[64]*f[66])/U[0] + (3*cos2th*f_4_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) + (3*cos2th*f_5_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) + (4*cos2th*f_6_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) + (4*cos2th*f_7_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) + (5*cos2th*f_8_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) + (5*cos2th*f_9_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) + (6*f_11_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) + (7*f_12_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) + (7*f_13_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) + (2*f_2_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] + (2*f_3_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] + (3*f_4_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) + (3*f_5_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) + (4*f_6_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) + (4*f_7_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) + (5*f_8_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) + (5*f_9_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) + (6*cos2th*f_10_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) + (6*cos2th*f_11_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) + (7*cos2th*f_12_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) + (7*cos2th*f_13_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) + (2*cos2th*f_2_2*f[17]*f[18]*f[65]*f[66])/U[0] + (2*cos2th*f_3_2*f[17]*f[18]*f[65]*f[66])/U[0] + (3*cos2th*f_4_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) + (3*cos2th*f_5_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) + (4*cos2th*f_6_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) + (4*cos2th*f_7_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) + (5*cos2th*f_8_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) + (5*cos2th*f_9_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) - (6*cos2th*f_10_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) - (6*cos2th*f_11_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) - (7*cos2th*f_12_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) - (7*cos2th*f_13_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) - (2*cos2th*f_2_2*f[16]*f[19]*f[65]*f[66])/U[0] - (2*cos2th*f_3_2*f[16]*f[19]*f[65]*f[66])/U[0] - (3*cos2th*f_4_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) - (3*cos2th*f_5_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) - (4*cos2th*f_6_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) - (4*cos2th*f_7_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) - (5*cos2th*f_8_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) - (5*cos2th*f_9_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) + (6*f_11_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) + (7*f_12_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) + (7*f_13_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) + (2*f_2_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] + (2*f_3_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] + (3*f_4_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) + (3*f_5_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) + (4*f_6_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) + (4*f_7_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) + (5*f_8_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) + (5*f_9_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) - (6*f_11_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) - (7*f_12_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) - (7*f_13_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) - (2*f_2_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] - (2*f_3_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] - (3*f_4_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) - (3*f_5_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) - (4*f_6_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) - (4*f_7_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) - (5*f_8_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) - (5*f_9_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_10_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) - (6*cos2th*f_11_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) - (7*cos2th*f_12_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) - (7*cos2th*f_13_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) - (2*cos2th*f_2_2*f[17]*f[18]*f[64]*f[67])/U[0] - (2*cos2th*f_3_2*f[17]*f[18]*f[64]*f[67])/U[0] - (3*cos2th*f_4_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) - (3*cos2th*f_5_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) - (4*cos2th*f_6_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) - (4*cos2th*f_7_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_8_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) - (5*cos2th*f_9_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_10_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) + (6*cos2th*f_11_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) + (7*cos2th*f_12_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) + (7*cos2th*f_13_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) + (2*cos2th*f_2_2*f[16]*f[19]*f[64]*f[67])/U[0] + (2*cos2th*f_3_2*f[16]*f[19]*f[64]*f[67])/U[0] + (3*cos2th*f_4_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) + (3*cos2th*f_5_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) + (4*cos2th*f_6_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) + (4*cos2th*f_7_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_8_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) + (5*cos2th*f_9_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) - (6*f_10_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) - (6*f_11_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) - (7*f_12_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) - (7*f_13_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) - (2*f_2_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] - (2*f_3_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] - (3*f_4_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) - (3*f_5_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) - (4*f_6_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) - (4*f_7_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) - (5*f_8_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) - (5*f_9_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_10_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) + (6*cos2th*f_11_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) + (7*cos2th*f_12_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) + (7*cos2th*f_13_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) + (2*cos2th*f_2_2*f[16]*f[18]*f[65]*f[67])/U[0] + (2*cos2th*f_3_2*f[16]*f[18]*f[65]*f[67])/U[0] + (3*cos2th*f_4_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) + (3*cos2th*f_5_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) + (4*cos2th*f_6_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) + (4*cos2th*f_7_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) + (5*cos2th*f_8_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) + (5*cos2th*f_9_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) - (6*f_10_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) - (6*f_11_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) - (7*f_12_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) - (7*f_13_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) - (2*f_2_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] - (2*f_3_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] - (3*f_4_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) - (3*f_5_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) - (4*f_6_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) - (4*f_7_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) - (5*f_8_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) - (5*f_9_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) + (6*f_10_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) + (6*f_11_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) + (7*f_12_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) + (7*f_13_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) + (2*f_2_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] + (2*f_3_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] + (3*f_4_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) + (3*f_5_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) + (4*f_6_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) + (4*f_7_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) + (5*f_8_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) + (5*f_9_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) + (6*cos2th*f_10_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) + (6*cos2th*f_11_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) + (7*cos2th*f_12_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) + (7*cos2th*f_13_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) + (2*cos2th*f_2_2*f[17]*f[19]*f[65]*f[67])/U[0] + (2*cos2th*f_3_2*f[17]*f[19]*f[65]*f[67])/U[0] + (3*cos2th*f_4_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) + (3*cos2th*f_5_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) + (4*cos2th*f_6_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (4*cos2th*f_7_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (5*cos2th*f_8_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (5*cos2th*f_9_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (14*cos2th*f_2_2*f[28]*f[30]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_3_2*f[28]*f[30]*f[76]*f[78])/(U[0] - 6*U[1]) - (14*f_2_2*sin2th*f[29]*f[30]*f[76]*f[78])/(U[0] - 6*U[1]) - (14*f_3_2*sin2th*f[29]*f[30]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*f_2_2*sin2th*f[28]*f[31]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*f_3_2*sin2th*f[28]*f[31]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_2_2*f[29]*f[31]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_3_2*f[29]*f[31]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*f_2_2*sin2th*f[28]*f[30]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*f_3_2*sin2th*f[28]*f[30]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_2_2*f[29]*f[30]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_3_2*f[29]*f[30]*f[77]*f[78])/(U[0] - 6*U[1]) - (14*cos2th*f_2_2*f[28]*f[31]*f[77]*f[78])/(U[0] - 6*U[1]) - (14*cos2th*f_3_2*f[28]*f[31]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*f_2_2*sin2th*f[29]*f[31]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*f_3_2*sin2th*f[29]*f[31]*f[77]*f[78])/(U[0] - 6*U[1]) - (14*f_2_2*sin2th*f[28]*f[30]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*f_3_2*sin2th*f[28]*f[30]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*cos2th*f_2_2*f[29]*f[30]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*cos2th*f_3_2*f[29]*f[30]*f[76]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_2_2*f[28]*f[31]*f[76]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_3_2*f[28]*f[31]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*f_2_2*sin2th*f[29]*f[31]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*f_3_2*sin2th*f[29]*f[31]*f[76]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_2_2*f[28]*f[30]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_3_2*f[28]*f[30]*f[77]*f[79])/(U[0] - 6*U[1]) - (14*f_2_2*sin2th*f[29]*f[30]*f[77]*f[79])/(U[0] - 6*U[1]) - (14*f_3_2*sin2th*f[29]*f[30]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*f_2_2*sin2th*f[28]*f[31]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*f_3_2*sin2th*f[28]*f[31]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_2_2*f[29]*f[31]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_3_2*f[29]*f[31]*f[77]*f[79])/(U[0] - 6*U[1]) + (21*cos2th*f_4_2*f[28]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_5_2*f[28]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[1]) - (21*f_4_2*sin2th*f[29]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[1]) - (21*f_5_2*sin2th*f[29]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*f_4_2*sin2th*f[28]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*f_5_2*sin2th*f[28]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_4_2*f[29]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_5_2*f[29]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*f_4_2*sin2th*f[28]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*f_5_2*sin2th*f[28]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_4_2*f[29]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_5_2*f[29]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[1]) - (21*cos2th*f_4_2*f[28]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[1]) - (21*cos2th*f_5_2*f[28]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*f_4_2*sin2th*f[29]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*f_5_2*sin2th*f[29]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[1]) - (21*f_4_2*sin2th*f[28]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*f_5_2*sin2th*f[28]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*cos2th*f_4_2*f[29]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*cos2th*f_5_2*f[29]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_4_2*f[28]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_5_2*f[28]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*f_4_2*sin2th*f[29]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*f_5_2*sin2th*f[29]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_4_2*f[28]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_5_2*f[28]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[1]) - (21*f_4_2*sin2th*f[29]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[1]) - (21*f_5_2*sin2th*f[29]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*f_4_2*sin2th*f[28]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*f_5_2*sin2th*f[28]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_4_2*f[29]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_5_2*f[29]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (28*cos2th*f_6_2*f[28]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_7_2*f[28]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[1]) - (28*f_6_2*sin2th*f[29]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[1]) - (28*f_7_2*sin2th*f[29]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*f_6_2*sin2th*f[28]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*f_7_2*sin2th*f[28]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_6_2*f[29]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_7_2*f[29]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*f_6_2*sin2th*f[28]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*f_7_2*sin2th*f[28]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_6_2*f[29]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_7_2*f[29]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[1]) - (28*cos2th*f_6_2*f[28]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[1]) - (28*cos2th*f_7_2*f[28]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*f_6_2*sin2th*f[29]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*f_7_2*sin2th*f[29]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[1]) - (28*f_6_2*sin2th*f[28]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*f_7_2*sin2th*f[28]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*cos2th*f_6_2*f[29]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*cos2th*f_7_2*f[29]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_6_2*f[28]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_7_2*f[28]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*f_6_2*sin2th*f[29]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*f_7_2*sin2th*f[29]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_6_2*f[28]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_7_2*f[28]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[1]) - (28*f_6_2*sin2th*f[29]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[1]) - (28*f_7_2*sin2th*f[29]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*f_6_2*sin2th*f[28]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*f_7_2*sin2th*f[28]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_6_2*f[29]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_7_2*f[29]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (35*cos2th*f_8_2*f[28]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_9_2*f[28]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[1]) - (35*f_8_2*sin2th*f[29]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[1]) - (35*f_9_2*sin2th*f[29]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*f_8_2*sin2th*f[28]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*f_9_2*sin2th*f[28]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_8_2*f[29]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_9_2*f[29]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*f_8_2*sin2th*f[28]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*f_9_2*sin2th*f[28]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_8_2*f[29]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_9_2*f[29]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[1]) - (35*cos2th*f_8_2*f[28]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[1]) - (35*cos2th*f_9_2*f[28]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*f_8_2*sin2th*f[29]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*f_9_2*sin2th*f[29]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[1]) - (35*f_8_2*sin2th*f[28]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*f_9_2*sin2th*f[28]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*cos2th*f_8_2*f[29]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*cos2th*f_9_2*f[29]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_8_2*f[28]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_9_2*f[28]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*f_8_2*sin2th*f[29]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*f_9_2*sin2th*f[29]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_8_2*f[28]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_9_2*f[28]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[1]) - (35*f_8_2*sin2th*f[29]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[1]) - (35*f_9_2*sin2th*f[29]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*f_8_2*sin2th*f[28]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*f_9_2*sin2th*f[28]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_8_2*f[29]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_9_2*f[29]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (42*cos2th*f_10_2*f[28]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_11_2*f[28]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[1]) - (42*f_10_2*sin2th*f[29]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[1]) - (42*f_11_2*sin2th*f[29]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*f_10_2*sin2th*f[28]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*f_11_2*sin2th*f[28]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_10_2*f[29]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_11_2*f[29]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*f_10_2*sin2th*f[28]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*f_11_2*sin2th*f[28]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_10_2*f[29]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_11_2*f[29]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[1]) - (42*cos2th*f_10_2*f[28]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[1]) - (42*cos2th*f_11_2*f[28]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*f_10_2*sin2th*f[29]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*f_11_2*sin2th*f[29]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[1]) - (42*f_10_2*sin2th*f[28]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*f_11_2*sin2th*f[28]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*cos2th*f_10_2*f[29]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*cos2th*f_11_2*f[29]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_10_2*f[28]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_11_2*f[28]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*f_10_2*sin2th*f[29]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*f_11_2*sin2th*f[29]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_10_2*f[28]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_11_2*f[28]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[1]) - (42*f_10_2*sin2th*f[29]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[1]) - (42*f_11_2*sin2th*f[29]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*f_10_2*sin2th*f[28]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*f_11_2*sin2th*f[28]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_10_2*f[29]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_11_2*f[29]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (12*cos2th*f_2_2*f[26]*f[28]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_3_2*f[26]*f[28]*f[74]*f[76])/(U[0] - 5*U[1]) - (12*f_2_2*sin2th*f[27]*f[28]*f[74]*f[76])/(U[0] - 5*U[1]) - (12*f_3_2*sin2th*f[27]*f[28]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*f_2_2*sin2th*f[26]*f[29]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*f_3_2*sin2th*f[26]*f[29]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_2_2*f[27]*f[29]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_3_2*f[27]*f[29]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*f_2_2*sin2th*f[26]*f[28]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*f_3_2*sin2th*f[26]*f[28]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_2_2*f[27]*f[28]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_3_2*f[27]*f[28]*f[75]*f[76])/(U[0] - 5*U[1]) - (12*cos2th*f_2_2*f[26]*f[29]*f[75]*f[76])/(U[0] - 5*U[1]) - (12*cos2th*f_3_2*f[26]*f[29]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*f_2_2*sin2th*f[27]*f[29]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*f_3_2*sin2th*f[27]*f[29]*f[75]*f[76])/(U[0] - 5*U[1]) - (12*f_2_2*sin2th*f[26]*f[28]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*f_3_2*sin2th*f[26]*f[28]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*cos2th*f_2_2*f[27]*f[28]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*cos2th*f_3_2*f[27]*f[28]*f[74]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_2_2*f[26]*f[29]*f[74]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_3_2*f[26]*f[29]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*f_2_2*sin2th*f[27]*f[29]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*f_3_2*sin2th*f[27]*f[29]*f[74]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_2_2*f[26]*f[28]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_3_2*f[26]*f[28]*f[75]*f[77])/(U[0] - 5*U[1]) - (12*f_2_2*sin2th*f[27]*f[28]*f[75]*f[77])/(U[0] - 5*U[1]) - (12*f_3_2*sin2th*f[27]*f[28]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*f_2_2*sin2th*f[26]*f[29]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*f_3_2*sin2th*f[26]*f[29]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_2_2*f[27]*f[29]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_3_2*f[27]*f[29]*f[75]*f[77])/(U[0] - 5*U[1]) + (18*cos2th*f_4_2*f[26]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_5_2*f[26]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[1]) - (18*f_4_2*sin2th*f[27]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[1]) - (18*f_5_2*sin2th*f[27]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*f_4_2*sin2th*f[26]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*f_5_2*sin2th*f[26]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_4_2*f[27]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_5_2*f[27]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*f_4_2*sin2th*f[26]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*f_5_2*sin2th*f[26]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_4_2*f[27]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_5_2*f[27]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[1]) - (18*cos2th*f_4_2*f[26]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[1]) - (18*cos2th*f_5_2*f[26]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*f_4_2*sin2th*f[27]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*f_5_2*sin2th*f[27]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[1]) - (18*f_4_2*sin2th*f[26]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*f_5_2*sin2th*f[26]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*cos2th*f_4_2*f[27]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*cos2th*f_5_2*f[27]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_4_2*f[26]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_5_2*f[26]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*f_4_2*sin2th*f[27]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*f_5_2*sin2th*f[27]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_4_2*f[26]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_5_2*f[26]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[1]) - (18*f_4_2*sin2th*f[27]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[1]) - (18*f_5_2*sin2th*f[27]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*f_4_2*sin2th*f[26]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*f_5_2*sin2th*f[26]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_4_2*f[27]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_5_2*f[27]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (24*cos2th*f_6_2*f[26]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_7_2*f[26]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[1]) - (24*f_6_2*sin2th*f[27]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[1]) - (24*f_7_2*sin2th*f[27]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*f_6_2*sin2th*f[26]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*f_7_2*sin2th*f[26]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_6_2*f[27]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_7_2*f[27]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*f_6_2*sin2th*f[26]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*f_7_2*sin2th*f[26]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_6_2*f[27]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_7_2*f[27]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[1]) - (24*cos2th*f_6_2*f[26]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[1]) - (24*cos2th*f_7_2*f[26]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*f_6_2*sin2th*f[27]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*f_7_2*sin2th*f[27]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[1]) - (24*f_6_2*sin2th*f[26]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*f_7_2*sin2th*f[26]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*cos2th*f_6_2*f[27]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*cos2th*f_7_2*f[27]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_6_2*f[26]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_7_2*f[26]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*f_6_2*sin2th*f[27]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*f_7_2*sin2th*f[27]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_6_2*f[26]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_7_2*f[26]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[1]) - (24*f_6_2*sin2th*f[27]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[1]) - (24*f_7_2*sin2th*f[27]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*f_6_2*sin2th*f[26]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*f_7_2*sin2th*f[26]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_6_2*f[27]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_7_2*f[27]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (30*cos2th*f_8_2*f[26]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_9_2*f[26]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[1]) - (30*f_8_2*sin2th*f[27]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[1]) - (30*f_9_2*sin2th*f[27]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*f_8_2*sin2th*f[26]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*f_9_2*sin2th*f[26]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_8_2*f[27]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_9_2*f[27]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*f_8_2*sin2th*f[26]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*f_9_2*sin2th*f[26]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_8_2*f[27]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_9_2*f[27]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[1]) - (30*cos2th*f_8_2*f[26]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[1]) - (30*cos2th*f_9_2*f[26]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*f_8_2*sin2th*f[27]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*f_9_2*sin2th*f[27]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[1]) - (30*f_8_2*sin2th*f[26]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*f_9_2*sin2th*f[26]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*cos2th*f_8_2*f[27]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*cos2th*f_9_2*f[27]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_8_2*f[26]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_9_2*f[26]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*f_8_2*sin2th*f[27]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*f_9_2*sin2th*f[27]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_8_2*f[26]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_9_2*f[26]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[1]) - (30*f_8_2*sin2th*f[27]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[1]) - (30*f_9_2*sin2th*f[27]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*f_8_2*sin2th*f[26]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*f_9_2*sin2th*f[26]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_8_2*f[27]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_9_2*f[27]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (42*cos2th*f_12_2*f[26]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_13_2*f[26]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[1]) - (42*f_12_2*sin2th*f[27]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[1]) - (42*f_13_2*sin2th*f[27]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*f_12_2*sin2th*f[26]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*f_13_2*sin2th*f[26]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_12_2*f[27]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_13_2*f[27]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*f_12_2*sin2th*f[26]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*f_13_2*sin2th*f[26]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_12_2*f[27]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_13_2*f[27]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[1]) - (42*cos2th*f_12_2*f[26]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[1]) - (42*cos2th*f_13_2*f[26]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*f_12_2*sin2th*f[27]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*f_13_2*sin2th*f[27]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[1]) - (42*f_12_2*sin2th*f[26]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*f_13_2*sin2th*f[26]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*cos2th*f_12_2*f[27]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*cos2th*f_13_2*f[27]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_12_2*f[26]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_13_2*f[26]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*f_12_2*sin2th*f[27]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*f_13_2*sin2th*f[27]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_12_2*f[26]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_13_2*f[26]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[1]) - (42*f_12_2*sin2th*f[27]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[1]) - (42*f_13_2*sin2th*f[27]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*f_12_2*sin2th*f[26]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*f_13_2*sin2th*f[26]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_12_2*f[27]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_13_2*f[27]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (10*cos2th*f_2_2*f[24]*f[26]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_3_2*f[24]*f[26]*f[72]*f[74])/(U[0] - 4*U[1]) - (10*f_2_2*sin2th*f[25]*f[26]*f[72]*f[74])/(U[0] - 4*U[1]) - (10*f_3_2*sin2th*f[25]*f[26]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*f_2_2*sin2th*f[24]*f[27]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*f_3_2*sin2th*f[24]*f[27]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_2_2*f[25]*f[27]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_3_2*f[25]*f[27]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*f_2_2*sin2th*f[24]*f[26]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*f_3_2*sin2th*f[24]*f[26]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_2_2*f[25]*f[26]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_3_2*f[25]*f[26]*f[73]*f[74])/(U[0] - 4*U[1]) - (10*cos2th*f_2_2*f[24]*f[27]*f[73]*f[74])/(U[0] - 4*U[1]) - (10*cos2th*f_3_2*f[24]*f[27]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*f_2_2*sin2th*f[25]*f[27]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*f_3_2*sin2th*f[25]*f[27]*f[73]*f[74])/(U[0] - 4*U[1]) - (10*f_2_2*sin2th*f[24]*f[26]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*f_3_2*sin2th*f[24]*f[26]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*cos2th*f_2_2*f[25]*f[26]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*cos2th*f_3_2*f[25]*f[26]*f[72]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_2_2*f[24]*f[27]*f[72]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_3_2*f[24]*f[27]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*f_2_2*sin2th*f[25]*f[27]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*f_3_2*sin2th*f[25]*f[27]*f[72]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_2_2*f[24]*f[26]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_3_2*f[24]*f[26]*f[73]*f[75])/(U[0] - 4*U[1]) - (10*f_2_2*sin2th*f[25]*f[26]*f[73]*f[75])/(U[0] - 4*U[1]) - (10*f_3_2*sin2th*f[25]*f[26]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*f_2_2*sin2th*f[24]*f[27]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*f_3_2*sin2th*f[24]*f[27]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_2_2*f[25]*f[27]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_3_2*f[25]*f[27]*f[73]*f[75])/(U[0] - 4*U[1]) + (15*cos2th*f_4_2*f[24]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_5_2*f[24]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[1]) - (15*f_4_2*sin2th*f[25]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[1]) - (15*f_5_2*sin2th*f[25]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*f_4_2*sin2th*f[24]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*f_5_2*sin2th*f[24]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_4_2*f[25]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_5_2*f[25]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*f_4_2*sin2th*f[24]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*f_5_2*sin2th*f[24]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_4_2*f[25]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_5_2*f[25]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[1]) - (15*cos2th*f_4_2*f[24]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[1]) - (15*cos2th*f_5_2*f[24]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*f_4_2*sin2th*f[25]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*f_5_2*sin2th*f[25]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[1]) - (15*f_4_2*sin2th*f[24]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*f_5_2*sin2th*f[24]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*cos2th*f_4_2*f[25]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*cos2th*f_5_2*f[25]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_4_2*f[24]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_5_2*f[24]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*f_4_2*sin2th*f[25]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*f_5_2*sin2th*f[25]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_4_2*f[24]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_5_2*f[24]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[1]) - (15*f_4_2*sin2th*f[25]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[1]) - (15*f_5_2*sin2th*f[25]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*f_4_2*sin2th*f[24]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*f_5_2*sin2th*f[24]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_4_2*f[25]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_5_2*f[25]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (20*cos2th*f_6_2*f[24]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_7_2*f[24]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[1]) - (20*f_6_2*sin2th*f[25]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[1]) - (20*f_7_2*sin2th*f[25]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*f_6_2*sin2th*f[24]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*f_7_2*sin2th*f[24]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_6_2*f[25]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_7_2*f[25]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*f_6_2*sin2th*f[24]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*f_7_2*sin2th*f[24]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_6_2*f[25]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_7_2*f[25]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[1]) - (20*cos2th*f_6_2*f[24]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[1]) - (20*cos2th*f_7_2*f[24]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*f_6_2*sin2th*f[25]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*f_7_2*sin2th*f[25]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[1]) - (20*f_6_2*sin2th*f[24]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*f_7_2*sin2th*f[24]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*cos2th*f_6_2*f[25]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*cos2th*f_7_2*f[25]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_6_2*f[24]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_7_2*f[24]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*f_6_2*sin2th*f[25]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*f_7_2*sin2th*f[25]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_6_2*f[24]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_7_2*f[24]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[1]) - (20*f_6_2*sin2th*f[25]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[1]) - (20*f_7_2*sin2th*f[25]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*f_6_2*sin2th*f[24]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*f_7_2*sin2th*f[24]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_6_2*f[25]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_7_2*f[25]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (30*cos2th*f_10_2*f[24]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_11_2*f[24]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[1]) - (30*f_10_2*sin2th*f[25]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[1]) - (30*f_11_2*sin2th*f[25]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*f_10_2*sin2th*f[24]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*f_11_2*sin2th*f[24]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_10_2*f[25]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_11_2*f[25]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*f_10_2*sin2th*f[24]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*f_11_2*sin2th*f[24]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_10_2*f[25]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_11_2*f[25]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[1]) - (30*cos2th*f_10_2*f[24]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[1]) - (30*cos2th*f_11_2*f[24]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*f_10_2*sin2th*f[25]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*f_11_2*sin2th*f[25]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[1]) - (30*f_10_2*sin2th*f[24]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*f_11_2*sin2th*f[24]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*cos2th*f_10_2*f[25]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*cos2th*f_11_2*f[25]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_10_2*f[24]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_11_2*f[24]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*f_10_2*sin2th*f[25]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*f_11_2*sin2th*f[25]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_10_2*f[24]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_11_2*f[24]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[1]) - (30*f_10_2*sin2th*f[25]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[1]) - (30*f_11_2*sin2th*f[25]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*f_10_2*sin2th*f[24]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*f_11_2*sin2th*f[24]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_10_2*f[25]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_11_2*f[25]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (35*cos2th*f_12_2*f[24]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_13_2*f[24]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[1]) - (35*f_12_2*sin2th*f[25]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[1]) - (35*f_13_2*sin2th*f[25]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*f_12_2*sin2th*f[24]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*f_13_2*sin2th*f[24]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_12_2*f[25]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_13_2*f[25]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*f_12_2*sin2th*f[24]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*f_13_2*sin2th*f[24]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_12_2*f[25]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_13_2*f[25]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[1]) - (35*cos2th*f_12_2*f[24]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[1]) - (35*cos2th*f_13_2*f[24]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*f_12_2*sin2th*f[25]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*f_13_2*sin2th*f[25]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[1]) - (35*f_12_2*sin2th*f[24]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*f_13_2*sin2th*f[24]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*cos2th*f_12_2*f[25]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*cos2th*f_13_2*f[25]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_12_2*f[24]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_13_2*f[24]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*f_12_2*sin2th*f[25]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*f_13_2*sin2th*f[25]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_12_2*f[24]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_13_2*f[24]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[1]) - (35*f_12_2*sin2th*f[25]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[1]) - (35*f_13_2*sin2th*f[25]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*f_12_2*sin2th*f[24]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*f_13_2*sin2th*f[24]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_12_2*f[25]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_13_2*f[25]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (8*cos2th*f_2_2*f[22]*f[24]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_3_2*f[22]*f[24]*f[70]*f[72])/(U[0] - 3*U[1]) - (8*f_2_2*sin2th*f[23]*f[24]*f[70]*f[72])/(U[0] - 3*U[1]) - (8*f_3_2*sin2th*f[23]*f[24]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*f_2_2*sin2th*f[22]*f[25]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*f_3_2*sin2th*f[22]*f[25]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_2_2*f[23]*f[25]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_3_2*f[23]*f[25]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*f_2_2*sin2th*f[22]*f[24]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*f_3_2*sin2th*f[22]*f[24]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_2_2*f[23]*f[24]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_3_2*f[23]*f[24]*f[71]*f[72])/(U[0] - 3*U[1]) - (8*cos2th*f_2_2*f[22]*f[25]*f[71]*f[72])/(U[0] - 3*U[1]) - (8*cos2th*f_3_2*f[22]*f[25]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*f_2_2*sin2th*f[23]*f[25]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*f_3_2*sin2th*f[23]*f[25]*f[71]*f[72])/(U[0] - 3*U[1]) - (8*f_2_2*sin2th*f[22]*f[24]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*f_3_2*sin2th*f[22]*f[24]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*cos2th*f_2_2*f[23]*f[24]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*cos2th*f_3_2*f[23]*f[24]*f[70]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_2_2*f[22]*f[25]*f[70]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_3_2*f[22]*f[25]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*f_2_2*sin2th*f[23]*f[25]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*f_3_2*sin2th*f[23]*f[25]*f[70]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_2_2*f[22]*f[24]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_3_2*f[22]*f[24]*f[71]*f[73])/(U[0] - 3*U[1]) - (8*f_2_2*sin2th*f[23]*f[24]*f[71]*f[73])/(U[0] - 3*U[1]) - (8*f_3_2*sin2th*f[23]*f[24]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*f_2_2*sin2th*f[22]*f[25]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*f_3_2*sin2th*f[22]*f[25]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_2_2*f[23]*f[25]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_3_2*f[23]*f[25]*f[71]*f[73])/(U[0] - 3*U[1]) + (12*cos2th*f_4_2*f[22]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_5_2*f[22]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[1]) - (12*f_4_2*sin2th*f[23]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[1]) - (12*f_5_2*sin2th*f[23]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*f_4_2*sin2th*f[22]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*f_5_2*sin2th*f[22]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_4_2*f[23]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_5_2*f[23]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*f_4_2*sin2th*f[22]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*f_5_2*sin2th*f[22]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_4_2*f[23]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_5_2*f[23]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[1]) - (12*cos2th*f_4_2*f[22]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[1]) - (12*cos2th*f_5_2*f[22]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*f_4_2*sin2th*f[23]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*f_5_2*sin2th*f[23]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[1]) - (12*f_4_2*sin2th*f[22]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*f_5_2*sin2th*f[22]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*cos2th*f_4_2*f[23]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*cos2th*f_5_2*f[23]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_4_2*f[22]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_5_2*f[22]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*f_4_2*sin2th*f[23]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*f_5_2*sin2th*f[23]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_4_2*f[22]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_5_2*f[22]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[1]) - (12*f_4_2*sin2th*f[23]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[1]) - (12*f_5_2*sin2th*f[23]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*f_4_2*sin2th*f[22]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*f_5_2*sin2th*f[22]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_4_2*f[23]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_5_2*f[23]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (20*cos2th*f_8_2*f[22]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_9_2*f[22]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[1]) - (20*f_8_2*sin2th*f[23]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[1]) - (20*f_9_2*sin2th*f[23]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*f_8_2*sin2th*f[22]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*f_9_2*sin2th*f[22]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_8_2*f[23]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_9_2*f[23]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*f_8_2*sin2th*f[22]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*f_9_2*sin2th*f[22]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_8_2*f[23]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_9_2*f[23]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[1]) - (20*cos2th*f_8_2*f[22]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[1]) - (20*cos2th*f_9_2*f[22]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*f_8_2*sin2th*f[23]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*f_9_2*sin2th*f[23]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[1]) - (20*f_8_2*sin2th*f[22]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*f_9_2*sin2th*f[22]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*cos2th*f_8_2*f[23]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*cos2th*f_9_2*f[23]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_8_2*f[22]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_9_2*f[22]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*f_8_2*sin2th*f[23]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*f_9_2*sin2th*f[23]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_8_2*f[22]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_9_2*f[22]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[1]) - (20*f_8_2*sin2th*f[23]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[1]) - (20*f_9_2*sin2th*f[23]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*f_8_2*sin2th*f[22]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*f_9_2*sin2th*f[22]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_8_2*f[23]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_9_2*f[23]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (24*cos2th*f_10_2*f[22]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_11_2*f[22]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[1]) - (24*f_10_2*sin2th*f[23]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[1]) - (24*f_11_2*sin2th*f[23]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*f_10_2*sin2th*f[22]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*f_11_2*sin2th*f[22]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_10_2*f[23]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_11_2*f[23]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*f_10_2*sin2th*f[22]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*f_11_2*sin2th*f[22]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_10_2*f[23]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_11_2*f[23]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[1]) - (24*cos2th*f_10_2*f[22]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[1]) - (24*cos2th*f_11_2*f[22]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*f_10_2*sin2th*f[23]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*f_11_2*sin2th*f[23]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[1]) - (24*f_10_2*sin2th*f[22]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*f_11_2*sin2th*f[22]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*cos2th*f_10_2*f[23]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*cos2th*f_11_2*f[23]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_10_2*f[22]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_11_2*f[22]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*f_10_2*sin2th*f[23]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*f_11_2*sin2th*f[23]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_10_2*f[22]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_11_2*f[22]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[1]) - (24*f_10_2*sin2th*f[23]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[1]) - (24*f_11_2*sin2th*f[23]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*f_10_2*sin2th*f[22]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*f_11_2*sin2th*f[22]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_10_2*f[23]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_11_2*f[23]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (28*cos2th*f_12_2*f[22]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_13_2*f[22]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[1]) - (28*f_12_2*sin2th*f[23]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[1]) - (28*f_13_2*sin2th*f[23]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*f_12_2*sin2th*f[22]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*f_13_2*sin2th*f[22]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_12_2*f[23]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_13_2*f[23]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*f_12_2*sin2th*f[22]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*f_13_2*sin2th*f[22]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_12_2*f[23]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_13_2*f[23]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[1]) - (28*cos2th*f_12_2*f[22]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[1]) - (28*cos2th*f_13_2*f[22]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*f_12_2*sin2th*f[23]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*f_13_2*sin2th*f[23]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[1]) - (28*f_12_2*sin2th*f[22]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*f_13_2*sin2th*f[22]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*cos2th*f_12_2*f[23]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*cos2th*f_13_2*f[23]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_12_2*f[22]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_13_2*f[22]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*f_12_2*sin2th*f[23]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*f_13_2*sin2th*f[23]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_12_2*f[22]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_13_2*f[22]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[1]) - (28*f_12_2*sin2th*f[23]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[1]) - (28*f_13_2*sin2th*f[23]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*f_12_2*sin2th*f[22]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*f_13_2*sin2th*f[22]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_12_2*f[23]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_13_2*f[23]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (6*cos2th*f_2_2*f[20]*f[22]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_3_2*f[20]*f[22]*f[68]*f[70])/(U[0] - 2*U[1]) - (6*f_2_2*sin2th*f[21]*f[22]*f[68]*f[70])/(U[0] - 2*U[1]) - (6*f_3_2*sin2th*f[21]*f[22]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*f_2_2*sin2th*f[20]*f[23]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*f_3_2*sin2th*f[20]*f[23]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_2_2*f[21]*f[23]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_3_2*f[21]*f[23]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*f_2_2*sin2th*f[20]*f[22]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*f_3_2*sin2th*f[20]*f[22]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_2_2*f[21]*f[22]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_3_2*f[21]*f[22]*f[69]*f[70])/(U[0] - 2*U[1]) - (6*cos2th*f_2_2*f[20]*f[23]*f[69]*f[70])/(U[0] - 2*U[1]) - (6*cos2th*f_3_2*f[20]*f[23]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*f_2_2*sin2th*f[21]*f[23]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*f_3_2*sin2th*f[21]*f[23]*f[69]*f[70])/(U[0] - 2*U[1]) - (6*f_2_2*sin2th*f[20]*f[22]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*f_3_2*sin2th*f[20]*f[22]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*cos2th*f_2_2*f[21]*f[22]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*cos2th*f_3_2*f[21]*f[22]*f[68]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_2_2*f[20]*f[23]*f[68]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_3_2*f[20]*f[23]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*f_2_2*sin2th*f[21]*f[23]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*f_3_2*sin2th*f[21]*f[23]*f[68]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_2_2*f[20]*f[22]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_3_2*f[20]*f[22]*f[69]*f[71])/(U[0] - 2*U[1]) - (6*f_2_2*sin2th*f[21]*f[22]*f[69]*f[71])/(U[0] - 2*U[1]) - (6*f_3_2*sin2th*f[21]*f[22]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*f_2_2*sin2th*f[20]*f[23]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*f_3_2*sin2th*f[20]*f[23]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_2_2*f[21]*f[23]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_3_2*f[21]*f[23]*f[69]*f[71])/(U[0] - 2*U[1]) + (12*cos2th*f_6_2*f[20]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_7_2*f[20]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[1]) - (12*f_6_2*sin2th*f[21]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[1]) - (12*f_7_2*sin2th*f[21]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*f_6_2*sin2th*f[20]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*f_7_2*sin2th*f[20]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_6_2*f[21]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_7_2*f[21]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*f_6_2*sin2th*f[20]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*f_7_2*sin2th*f[20]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_6_2*f[21]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_7_2*f[21]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[1]) - (12*cos2th*f_6_2*f[20]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[1]) - (12*cos2th*f_7_2*f[20]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*f_6_2*sin2th*f[21]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*f_7_2*sin2th*f[21]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[1]) - (12*f_6_2*sin2th*f[20]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*f_7_2*sin2th*f[20]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*cos2th*f_6_2*f[21]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*cos2th*f_7_2*f[21]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_6_2*f[20]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_7_2*f[20]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*f_6_2*sin2th*f[21]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*f_7_2*sin2th*f[21]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_6_2*f[20]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_7_2*f[20]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[1]) - (12*f_6_2*sin2th*f[21]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[1]) - (12*f_7_2*sin2th*f[21]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*f_6_2*sin2th*f[20]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*f_7_2*sin2th*f[20]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_6_2*f[21]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_7_2*f[21]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (15*cos2th*f_8_2*f[20]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_9_2*f[20]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[1]) - (15*f_8_2*sin2th*f[21]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[1]) - (15*f_9_2*sin2th*f[21]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*f_8_2*sin2th*f[20]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*f_9_2*sin2th*f[20]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_8_2*f[21]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_9_2*f[21]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*f_8_2*sin2th*f[20]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*f_9_2*sin2th*f[20]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_8_2*f[21]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_9_2*f[21]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[1]) - (15*cos2th*f_8_2*f[20]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[1]) - (15*cos2th*f_9_2*f[20]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*f_8_2*sin2th*f[21]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*f_9_2*sin2th*f[21]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[1]) - (15*f_8_2*sin2th*f[20]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*f_9_2*sin2th*f[20]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*cos2th*f_8_2*f[21]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*cos2th*f_9_2*f[21]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_8_2*f[20]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_9_2*f[20]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*f_8_2*sin2th*f[21]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*f_9_2*sin2th*f[21]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_8_2*f[20]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_9_2*f[20]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[1]) - (15*f_8_2*sin2th*f[21]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[1]) - (15*f_9_2*sin2th*f[21]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*f_8_2*sin2th*f[20]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*f_9_2*sin2th*f[20]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_8_2*f[21]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_9_2*f[21]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (18*cos2th*f_10_2*f[20]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_11_2*f[20]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[1]) - (18*f_10_2*sin2th*f[21]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[1]) - (18*f_11_2*sin2th*f[21]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*f_10_2*sin2th*f[20]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*f_11_2*sin2th*f[20]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_10_2*f[21]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_11_2*f[21]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*f_10_2*sin2th*f[20]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*f_11_2*sin2th*f[20]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_10_2*f[21]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_11_2*f[21]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[1]) - (18*cos2th*f_10_2*f[20]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[1]) - (18*cos2th*f_11_2*f[20]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*f_10_2*sin2th*f[21]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*f_11_2*sin2th*f[21]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[1]) - (18*f_10_2*sin2th*f[20]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*f_11_2*sin2th*f[20]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*cos2th*f_10_2*f[21]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*cos2th*f_11_2*f[21]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_10_2*f[20]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_11_2*f[20]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*f_10_2*sin2th*f[21]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*f_11_2*sin2th*f[21]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_10_2*f[20]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_11_2*f[20]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[1]) - (18*f_10_2*sin2th*f[21]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[1]) - (18*f_11_2*sin2th*f[21]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*f_10_2*sin2th*f[20]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*f_11_2*sin2th*f[20]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_10_2*f[21]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_11_2*f[21]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (21*cos2th*f_12_2*f[20]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_13_2*f[20]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[1]) - (21*f_12_2*sin2th*f[21]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[1]) - (21*f_13_2*sin2th*f[21]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*f_12_2*sin2th*f[20]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*f_13_2*sin2th*f[20]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_12_2*f[21]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_13_2*f[21]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*f_12_2*sin2th*f[20]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*f_13_2*sin2th*f[20]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_12_2*f[21]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_13_2*f[21]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[1]) - (21*cos2th*f_12_2*f[20]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[1]) - (21*cos2th*f_13_2*f[20]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*f_12_2*sin2th*f[21]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*f_13_2*sin2th*f[21]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[1]) - (21*f_12_2*sin2th*f[20]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*f_13_2*sin2th*f[20]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*cos2th*f_12_2*f[21]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*cos2th*f_13_2*f[21]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_12_2*f[20]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_13_2*f[20]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*f_12_2*sin2th*f[21]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*f_13_2*sin2th*f[21]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_12_2*f[20]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_13_2*f[20]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[1]) - (21*f_12_2*sin2th*f[21]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[1]) - (21*f_13_2*sin2th*f[21]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*f_12_2*sin2th*f[20]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*f_13_2*sin2th*f[20]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_12_2*f[21]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_13_2*f[21]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (6*cos2th*f_4_2*f[18]*f[20]*f[66]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_5_2*f[18]*f[20]*f[66]*f[68])/(2*U[0] - U[1]) - (6*f_4_2*sin2th*f[19]*f[20]*f[66]*f[68])/(2*U[0] - U[1]) - (6*f_5_2*sin2th*f[19]*f[20]*f[66]*f[68])/(2*U[0] - U[1]) + (6*f_4_2*sin2th*f[18]*f[21]*f[66]*f[68])/(2*U[0] - U[1]) + (6*f_5_2*sin2th*f[18]*f[21]*f[66]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_4_2*f[19]*f[21]*f[66]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_5_2*f[19]*f[21]*f[66]*f[68])/(2*U[0] - U[1]) + (6*f_4_2*sin2th*f[18]*f[20]*f[67]*f[68])/(2*U[0] - U[1]) + (6*f_5_2*sin2th*f[18]*f[20]*f[67]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_4_2*f[19]*f[20]*f[67]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_5_2*f[19]*f[20]*f[67]*f[68])/(2*U[0] - U[1]) - (6*cos2th*f_4_2*f[18]*f[21]*f[67]*f[68])/(2*U[0] - U[1]) - (6*cos2th*f_5_2*f[18]*f[21]*f[67]*f[68])/(2*U[0] - U[1]) + (6*f_4_2*sin2th*f[19]*f[21]*f[67]*f[68])/(2*U[0] - U[1]) + (6*f_5_2*sin2th*f[19]*f[21]*f[67]*f[68])/(2*U[0] - U[1]) - (6*f_4_2*sin2th*f[18]*f[20]*f[66]*f[69])/(2*U[0] - U[1]) - (6*f_5_2*sin2th*f[18]*f[20]*f[66]*f[69])/(2*U[0] - U[1]) - (6*cos2th*f_4_2*f[19]*f[20]*f[66]*f[69])/(2*U[0] - U[1]) - (6*cos2th*f_5_2*f[19]*f[20]*f[66]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_4_2*f[18]*f[21]*f[66]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_5_2*f[18]*f[21]*f[66]*f[69])/(2*U[0] - U[1]) - (6*f_4_2*sin2th*f[19]*f[21]*f[66]*f[69])/(2*U[0] - U[1]) - (6*f_5_2*sin2th*f[19]*f[21]*f[66]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_4_2*f[18]*f[20]*f[67]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_5_2*f[18]*f[20]*f[67]*f[69])/(2*U[0] - U[1]) - (6*f_4_2*sin2th*f[19]*f[20]*f[67]*f[69])/(2*U[0] - U[1]) - (6*f_5_2*sin2th*f[19]*f[20]*f[67]*f[69])/(2*U[0] - U[1]) + (6*f_4_2*sin2th*f[18]*f[21]*f[67]*f[69])/(2*U[0] - U[1]) + (6*f_5_2*sin2th*f[18]*f[21]*f[67]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_4_2*f[19]*f[21]*f[67]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_5_2*f[19]*f[21]*f[67]*f[69])/(2*U[0] - U[1]) + (8*cos2th*f_6_2*f[18]*f[20]*f[66]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_7_2*f[18]*f[20]*f[66]*f[68])/(3*U[0] - U[1]) - (8*f_6_2*sin2th*f[19]*f[20]*f[66]*f[68])/(3*U[0] - U[1]) - (8*f_7_2*sin2th*f[19]*f[20]*f[66]*f[68])/(3*U[0] - U[1]) + (8*f_6_2*sin2th*f[18]*f[21]*f[66]*f[68])/(3*U[0] - U[1]) + (8*f_7_2*sin2th*f[18]*f[21]*f[66]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_6_2*f[19]*f[21]*f[66]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_7_2*f[19]*f[21]*f[66]*f[68])/(3*U[0] - U[1]) + (8*f_6_2*sin2th*f[18]*f[20]*f[67]*f[68])/(3*U[0] - U[1]) + (8*f_7_2*sin2th*f[18]*f[20]*f[67]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_6_2*f[19]*f[20]*f[67]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_7_2*f[19]*f[20]*f[67]*f[68])/(3*U[0] - U[1]) - (8*cos2th*f_6_2*f[18]*f[21]*f[67]*f[68])/(3*U[0] - U[1]) - (8*cos2th*f_7_2*f[18]*f[21]*f[67]*f[68])/(3*U[0] - U[1]) + (8*f_6_2*sin2th*f[19]*f[21]*f[67]*f[68])/(3*U[0] - U[1]) + (8*f_7_2*sin2th*f[19]*f[21]*f[67]*f[68])/(3*U[0] - U[1]) - (8*f_6_2*sin2th*f[18]*f[20]*f[66]*f[69])/(3*U[0] - U[1]) - (8*f_7_2*sin2th*f[18]*f[20]*f[66]*f[69])/(3*U[0] - U[1]) - (8*cos2th*f_6_2*f[19]*f[20]*f[66]*f[69])/(3*U[0] - U[1]) - (8*cos2th*f_7_2*f[19]*f[20]*f[66]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_6_2*f[18]*f[21]*f[66]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_7_2*f[18]*f[21]*f[66]*f[69])/(3*U[0] - U[1]) - (8*f_6_2*sin2th*f[19]*f[21]*f[66]*f[69])/(3*U[0] - U[1]) - (8*f_7_2*sin2th*f[19]*f[21]*f[66]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_6_2*f[18]*f[20]*f[67]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_7_2*f[18]*f[20]*f[67]*f[69])/(3*U[0] - U[1]) - (8*f_6_2*sin2th*f[19]*f[20]*f[67]*f[69])/(3*U[0] - U[1]) - (8*f_7_2*sin2th*f[19]*f[20]*f[67]*f[69])/(3*U[0] - U[1]) + (8*f_6_2*sin2th*f[18]*f[21]*f[67]*f[69])/(3*U[0] - U[1]) + (8*f_7_2*sin2th*f[18]*f[21]*f[67]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_6_2*f[19]*f[21]*f[67]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_7_2*f[19]*f[21]*f[67]*f[69])/(3*U[0] - U[1]) + (10*cos2th*f_8_2*f[18]*f[20]*f[66]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_9_2*f[18]*f[20]*f[66]*f[68])/(4*U[0] - U[1]) - (10*f_8_2*sin2th*f[19]*f[20]*f[66]*f[68])/(4*U[0] - U[1]) - (10*f_9_2*sin2th*f[19]*f[20]*f[66]*f[68])/(4*U[0] - U[1]) + (10*f_8_2*sin2th*f[18]*f[21]*f[66]*f[68])/(4*U[0] - U[1]) + (10*f_9_2*sin2th*f[18]*f[21]*f[66]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_8_2*f[19]*f[21]*f[66]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_9_2*f[19]*f[21]*f[66]*f[68])/(4*U[0] - U[1]) + (10*f_8_2*sin2th*f[18]*f[20]*f[67]*f[68])/(4*U[0] - U[1]) + (10*f_9_2*sin2th*f[18]*f[20]*f[67]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_8_2*f[19]*f[20]*f[67]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_9_2*f[19]*f[20]*f[67]*f[68])/(4*U[0] - U[1]) - (10*cos2th*f_8_2*f[18]*f[21]*f[67]*f[68])/(4*U[0] - U[1]) - (10*cos2th*f_9_2*f[18]*f[21]*f[67]*f[68])/(4*U[0] - U[1]) + (10*f_8_2*sin2th*f[19]*f[21]*f[67]*f[68])/(4*U[0] - U[1]) + (10*f_9_2*sin2th*f[19]*f[21]*f[67]*f[68])/(4*U[0] - U[1]) - (10*f_8_2*sin2th*f[18]*f[20]*f[66]*f[69])/(4*U[0] - U[1]) - (10*f_9_2*sin2th*f[18]*f[20]*f[66]*f[69])/(4*U[0] - U[1]) - (10*cos2th*f_8_2*f[19]*f[20]*f[66]*f[69])/(4*U[0] - U[1]) - (10*cos2th*f_9_2*f[19]*f[20]*f[66]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_8_2*f[18]*f[21]*f[66]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_9_2*f[18]*f[21]*f[66]*f[69])/(4*U[0] - U[1]) - (10*f_8_2*sin2th*f[19]*f[21]*f[66]*f[69])/(4*U[0] - U[1]) - (10*f_9_2*sin2th*f[19]*f[21]*f[66]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_8_2*f[18]*f[20]*f[67]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_9_2*f[18]*f[20]*f[67]*f[69])/(4*U[0] - U[1]) - (10*f_8_2*sin2th*f[19]*f[20]*f[67]*f[69])/(4*U[0] - U[1]) - (10*f_9_2*sin2th*f[19]*f[20]*f[67]*f[69])/(4*U[0] - U[1]) + (10*f_8_2*sin2th*f[18]*f[21]*f[67]*f[69])/(4*U[0] - U[1]) + (10*f_9_2*sin2th*f[18]*f[21]*f[67]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_8_2*f[19]*f[21]*f[67]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_9_2*f[19]*f[21]*f[67]*f[69])/(4*U[0] - U[1]) + (12*cos2th*f_10_2*f[18]*f[20]*f[66]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_11_2*f[18]*f[20]*f[66]*f[68])/(5*U[0] - U[1]) - (12*f_10_2*sin2th*f[19]*f[20]*f[66]*f[68])/(5*U[0] - U[1]) - (12*f_11_2*sin2th*f[19]*f[20]*f[66]*f[68])/(5*U[0] - U[1]) + (12*f_10_2*sin2th*f[18]*f[21]*f[66]*f[68])/(5*U[0] - U[1]) + (12*f_11_2*sin2th*f[18]*f[21]*f[66]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_10_2*f[19]*f[21]*f[66]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_11_2*f[19]*f[21]*f[66]*f[68])/(5*U[0] - U[1]) + (12*f_10_2*sin2th*f[18]*f[20]*f[67]*f[68])/(5*U[0] - U[1]) + (12*f_11_2*sin2th*f[18]*f[20]*f[67]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_10_2*f[19]*f[20]*f[67]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_11_2*f[19]*f[20]*f[67]*f[68])/(5*U[0] - U[1]) - (12*cos2th*f_10_2*f[18]*f[21]*f[67]*f[68])/(5*U[0] - U[1]) - (12*cos2th*f_11_2*f[18]*f[21]*f[67]*f[68])/(5*U[0] - U[1]) + (12*f_10_2*sin2th*f[19]*f[21]*f[67]*f[68])/(5*U[0] - U[1]) + (12*f_11_2*sin2th*f[19]*f[21]*f[67]*f[68])/(5*U[0] - U[1]) - (12*f_10_2*sin2th*f[18]*f[20]*f[66]*f[69])/(5*U[0] - U[1]) - (12*f_11_2*sin2th*f[18]*f[20]*f[66]*f[69])/(5*U[0] - U[1]) - (12*cos2th*f_10_2*f[19]*f[20]*f[66]*f[69])/(5*U[0] - U[1]) - (12*cos2th*f_11_2*f[19]*f[20]*f[66]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_10_2*f[18]*f[21]*f[66]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_11_2*f[18]*f[21]*f[66]*f[69])/(5*U[0] - U[1]) - (12*f_10_2*sin2th*f[19]*f[21]*f[66]*f[69])/(5*U[0] - U[1]) - (12*f_11_2*sin2th*f[19]*f[21]*f[66]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_10_2*f[18]*f[20]*f[67]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_11_2*f[18]*f[20]*f[67]*f[69])/(5*U[0] - U[1]) - (12*f_10_2*sin2th*f[19]*f[20]*f[67]*f[69])/(5*U[0] - U[1]) - (12*f_11_2*sin2th*f[19]*f[20]*f[67]*f[69])/(5*U[0] - U[1]) + (12*f_10_2*sin2th*f[18]*f[21]*f[67]*f[69])/(5*U[0] - U[1]) + (12*f_11_2*sin2th*f[18]*f[21]*f[67]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_10_2*f[19]*f[21]*f[67]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_11_2*f[19]*f[21]*f[67]*f[69])/(5*U[0] - U[1]) + (14*cos2th*f_12_2*f[18]*f[20]*f[66]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_13_2*f[18]*f[20]*f[66]*f[68])/(6*U[0] - U[1]) - (14*f_12_2*sin2th*f[19]*f[20]*f[66]*f[68])/(6*U[0] - U[1]) - (14*f_13_2*sin2th*f[19]*f[20]*f[66]*f[68])/(6*U[0] - U[1]) + (14*f_12_2*sin2th*f[18]*f[21]*f[66]*f[68])/(6*U[0] - U[1]) + (14*f_13_2*sin2th*f[18]*f[21]*f[66]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_12_2*f[19]*f[21]*f[66]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_13_2*f[19]*f[21]*f[66]*f[68])/(6*U[0] - U[1]) + (14*f_12_2*sin2th*f[18]*f[20]*f[67]*f[68])/(6*U[0] - U[1]) + (14*f_13_2*sin2th*f[18]*f[20]*f[67]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_12_2*f[19]*f[20]*f[67]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_13_2*f[19]*f[20]*f[67]*f[68])/(6*U[0] - U[1]) - (14*cos2th*f_12_2*f[18]*f[21]*f[67]*f[68])/(6*U[0] - U[1]) - (14*cos2th*f_13_2*f[18]*f[21]*f[67]*f[68])/(6*U[0] - U[1]) + (14*f_12_2*sin2th*f[19]*f[21]*f[67]*f[68])/(6*U[0] - U[1]) + (14*f_13_2*sin2th*f[19]*f[21]*f[67]*f[68])/(6*U[0] - U[1]) - (14*f_12_2*sin2th*f[18]*f[20]*f[66]*f[69])/(6*U[0] - U[1]) - (14*f_13_2*sin2th*f[18]*f[20]*f[66]*f[69])/(6*U[0] - U[1]) - (14*cos2th*f_12_2*f[19]*f[20]*f[66]*f[69])/(6*U[0] - U[1]) - (14*cos2th*f_13_2*f[19]*f[20]*f[66]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_12_2*f[18]*f[21]*f[66]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_13_2*f[18]*f[21]*f[66]*f[69])/(6*U[0] - U[1]) - (14*f_12_2*sin2th*f[19]*f[21]*f[66]*f[69])/(6*U[0] - U[1]) - (14*f_13_2*sin2th*f[19]*f[21]*f[66]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_12_2*f[18]*f[20]*f[67]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_13_2*f[18]*f[20]*f[67]*f[69])/(6*U[0] - U[1]) - (14*f_12_2*sin2th*f[19]*f[20]*f[67]*f[69])/(6*U[0] - U[1]) - (14*f_13_2*sin2th*f[19]*f[20]*f[67]*f[69])/(6*U[0] - U[1]) + (14*f_12_2*sin2th*f[18]*f[21]*f[67]*f[69])/(6*U[0] - U[1]) + (14*f_13_2*sin2th*f[18]*f[21]*f[67]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_12_2*f[19]*f[21]*f[67]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_13_2*f[19]*f[21]*f[67]*f[69])/(6*U[0] - U[1]) - (2*cos2th*f_0_2*f[18]*f[20]*f[66]*f[68])/U[1] - (2*cos2th*f_1_2*f[18]*f[20]*f[66]*f[68])/U[1] + (2*f_0_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[1] + (2*f_1_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[1] - (2*f_0_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[1] - (2*f_1_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[1] - (2*cos2th*f_0_2*f[19]*f[21]*f[66]*f[68])/U[1] - (2*cos2th*f_1_2*f[19]*f[21]*f[66]*f[68])/U[1] - (2*f_0_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[1] - (2*f_1_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[1] - (2*cos2th*f_0_2*f[19]*f[20]*f[67]*f[68])/U[1] - (2*cos2th*f_1_2*f[19]*f[20]*f[67]*f[68])/U[1] + (2*cos2th*f_0_2*f[18]*f[21]*f[67]*f[68])/U[1] + (2*cos2th*f_1_2*f[18]*f[21]*f[67]*f[68])/U[1] - (2*f_0_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[1] - (2*f_1_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[1] + (2*f_0_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[1] + (2*f_1_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[1] + (2*cos2th*f_0_2*f[19]*f[20]*f[66]*f[69])/U[1] + (2*cos2th*f_1_2*f[19]*f[20]*f[66]*f[69])/U[1] - (2*cos2th*f_0_2*f[18]*f[21]*f[66]*f[69])/U[1] - (2*cos2th*f_1_2*f[18]*f[21]*f[66]*f[69])/U[1] + (2*f_0_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[1] + (2*f_1_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[1] - (2*cos2th*f_0_2*f[18]*f[20]*f[67]*f[69])/U[1] - (2*cos2th*f_1_2*f[18]*f[20]*f[67]*f[69])/U[1] + (2*f_0_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[1] + (2*f_1_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[1] - (2*f_0_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[1] - (2*f_1_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[1] - (2*cos2th*f_0_2*f[19]*f[21]*f[67]*f[69])/U[1] - (2*cos2th*f_1_2*f[19]*f[21]*f[67]*f[69])/U[1] - (3*cos2th*f_0_2*f[20]*f[22]*f[68]*f[70])/(2.*U[1]) - (3*cos2th*f_1_2*f[20]*f[22]*f[68]*f[70])/(2.*U[1]) + (3*f_0_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[1]) + (3*f_1_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[1]) - (3*f_0_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[1]) - (3*f_1_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[1]) - (3*cos2th*f_0_2*f[21]*f[23]*f[68]*f[70])/(2.*U[1]) - (3*cos2th*f_1_2*f[21]*f[23]*f[68]*f[70])/(2.*U[1]) - (3*f_0_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[1]) - (3*f_1_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[1]) - (3*cos2th*f_0_2*f[21]*f[22]*f[69]*f[70])/(2.*U[1]) - (3*cos2th*f_1_2*f[21]*f[22]*f[69]*f[70])/(2.*U[1]) + (3*cos2th*f_0_2*f[20]*f[23]*f[69]*f[70])/(2.*U[1]) + (3*cos2th*f_1_2*f[20]*f[23]*f[69]*f[70])/(2.*U[1]) - (3*f_0_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[1]) - (3*f_1_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[1]) + (3*f_0_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[1]) + (3*f_1_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_0_2*f[21]*f[22]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_1_2*f[21]*f[22]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_0_2*f[20]*f[23]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_1_2*f[20]*f[23]*f[68]*f[71])/(2.*U[1]) + (3*f_0_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[1]) + (3*f_1_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_0_2*f[20]*f[22]*f[69]*f[71])/(2.*U[1]) - (3*cos2th*f_1_2*f[20]*f[22]*f[69]*f[71])/(2.*U[1]) + (3*f_0_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[1]) + (3*f_1_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[1]) - (3*f_0_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[1]) - (3*f_1_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[1]) - (3*cos2th*f_0_2*f[21]*f[23]*f[69]*f[71])/(2.*U[1]) - (3*cos2th*f_1_2*f[21]*f[23]*f[69]*f[71])/(2.*U[1]) - (4*cos2th*f_0_2*f[22]*f[24]*f[70]*f[72])/(3.*U[1]) - (4*cos2th*f_1_2*f[22]*f[24]*f[70]*f[72])/(3.*U[1]) + (4*f_0_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[1]) + (4*f_1_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[1]) - (4*f_0_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[1]) - (4*f_1_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[1]) - (4*cos2th*f_0_2*f[23]*f[25]*f[70]*f[72])/(3.*U[1]) - (4*cos2th*f_1_2*f[23]*f[25]*f[70]*f[72])/(3.*U[1]) - (4*f_0_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[1]) - (4*f_1_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[1]) - (4*cos2th*f_0_2*f[23]*f[24]*f[71]*f[72])/(3.*U[1]) - (4*cos2th*f_1_2*f[23]*f[24]*f[71]*f[72])/(3.*U[1]) + (4*cos2th*f_0_2*f[22]*f[25]*f[71]*f[72])/(3.*U[1]) + (4*cos2th*f_1_2*f[22]*f[25]*f[71]*f[72])/(3.*U[1]) - (4*f_0_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[1]) - (4*f_1_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[1]) + (4*f_0_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[1]) + (4*f_1_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_0_2*f[23]*f[24]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_1_2*f[23]*f[24]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_0_2*f[22]*f[25]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_1_2*f[22]*f[25]*f[70]*f[73])/(3.*U[1]) + (4*f_0_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[1]) + (4*f_1_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_0_2*f[22]*f[24]*f[71]*f[73])/(3.*U[1]) - (4*cos2th*f_1_2*f[22]*f[24]*f[71]*f[73])/(3.*U[1]) + (4*f_0_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[1]) + (4*f_1_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[1]) - (4*f_0_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[1]) - (4*f_1_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[1]) - (4*cos2th*f_0_2*f[23]*f[25]*f[71]*f[73])/(3.*U[1]) - (4*cos2th*f_1_2*f[23]*f[25]*f[71]*f[73])/(3.*U[1]) - (5*cos2th*f_0_2*f[24]*f[26]*f[72]*f[74])/(4.*U[1]) - (5*cos2th*f_1_2*f[24]*f[26]*f[72]*f[74])/(4.*U[1]) + (5*f_0_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[1]) + (5*f_1_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[1]) - (5*f_0_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[1]) - (5*f_1_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[1]) - (5*cos2th*f_0_2*f[25]*f[27]*f[72]*f[74])/(4.*U[1]) - (5*cos2th*f_1_2*f[25]*f[27]*f[72]*f[74])/(4.*U[1]) - (5*f_0_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[1]) - (5*f_1_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[1]) - (5*cos2th*f_0_2*f[25]*f[26]*f[73]*f[74])/(4.*U[1]) - (5*cos2th*f_1_2*f[25]*f[26]*f[73]*f[74])/(4.*U[1]) + (5*cos2th*f_0_2*f[24]*f[27]*f[73]*f[74])/(4.*U[1]) + (5*cos2th*f_1_2*f[24]*f[27]*f[73]*f[74])/(4.*U[1]) - (5*f_0_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[1]) - (5*f_1_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[1]) + (5*f_0_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[1]) + (5*f_1_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_0_2*f[25]*f[26]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_1_2*f[25]*f[26]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_0_2*f[24]*f[27]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_1_2*f[24]*f[27]*f[72]*f[75])/(4.*U[1]) + (5*f_0_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[1]) + (5*f_1_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_0_2*f[24]*f[26]*f[73]*f[75])/(4.*U[1]) - (5*cos2th*f_1_2*f[24]*f[26]*f[73]*f[75])/(4.*U[1]) + (5*f_0_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[1]) + (5*f_1_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[1]) - (5*f_0_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[1]) - (5*f_1_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[1]) - (5*cos2th*f_0_2*f[25]*f[27]*f[73]*f[75])/(4.*U[1]) - (5*cos2th*f_1_2*f[25]*f[27]*f[73]*f[75])/(4.*U[1]) - (6*cos2th*f_0_2*f[26]*f[28]*f[74]*f[76])/(5.*U[1]) - (6*cos2th*f_1_2*f[26]*f[28]*f[74]*f[76])/(5.*U[1]) + (6*f_0_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[1]) + (6*f_1_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[1]) - (6*f_0_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[1]) - (6*f_1_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[1]) - (6*cos2th*f_0_2*f[27]*f[29]*f[74]*f[76])/(5.*U[1]) - (6*cos2th*f_1_2*f[27]*f[29]*f[74]*f[76])/(5.*U[1]) - (6*f_0_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[1]) - (6*f_1_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[1]) - (6*cos2th*f_0_2*f[27]*f[28]*f[75]*f[76])/(5.*U[1]) - (6*cos2th*f_1_2*f[27]*f[28]*f[75]*f[76])/(5.*U[1]) + (6*cos2th*f_0_2*f[26]*f[29]*f[75]*f[76])/(5.*U[1]) + (6*cos2th*f_1_2*f[26]*f[29]*f[75]*f[76])/(5.*U[1]) - (6*f_0_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[1]) - (6*f_1_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[1]) + (6*f_0_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[1]) + (6*f_1_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_0_2*f[27]*f[28]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_1_2*f[27]*f[28]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_0_2*f[26]*f[29]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_1_2*f[26]*f[29]*f[74]*f[77])/(5.*U[1]) + (6*f_0_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[1]) + (6*f_1_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_0_2*f[26]*f[28]*f[75]*f[77])/(5.*U[1]) - (6*cos2th*f_1_2*f[26]*f[28]*f[75]*f[77])/(5.*U[1]) + (6*f_0_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[1]) + (6*f_1_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[1]) - (6*f_0_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[1]) - (6*f_1_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[1]) - (6*cos2th*f_0_2*f[27]*f[29]*f[75]*f[77])/(5.*U[1]) - (6*cos2th*f_1_2*f[27]*f[29]*f[75]*f[77])/(5.*U[1]) - (7*cos2th*f_0_2*f[28]*f[30]*f[76]*f[78])/(6.*U[1]) - (7*cos2th*f_1_2*f[28]*f[30]*f[76]*f[78])/(6.*U[1]) + (7*f_0_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[1]) + (7*f_1_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[1]) - (7*f_0_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[1]) - (7*f_1_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[1]) - (7*cos2th*f_0_2*f[29]*f[31]*f[76]*f[78])/(6.*U[1]) - (7*cos2th*f_1_2*f[29]*f[31]*f[76]*f[78])/(6.*U[1]) - (7*f_0_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[1]) - (7*f_1_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[1]) - (7*cos2th*f_0_2*f[29]*f[30]*f[77]*f[78])/(6.*U[1]) - (7*cos2th*f_1_2*f[29]*f[30]*f[77]*f[78])/(6.*U[1]) + (7*cos2th*f_0_2*f[28]*f[31]*f[77]*f[78])/(6.*U[1]) + (7*cos2th*f_1_2*f[28]*f[31]*f[77]*f[78])/(6.*U[1]) - (7*f_0_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[1]) - (7*f_1_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[1]) + (7*f_0_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[1]) + (7*f_1_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_0_2*f[29]*f[30]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_1_2*f[29]*f[30]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_0_2*f[28]*f[31]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_1_2*f[28]*f[31]*f[76]*f[79])/(6.*U[1]) + (7*f_0_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[1]) + (7*f_1_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_0_2*f[28]*f[30]*f[77]*f[79])/(6.*U[1]) - (7*cos2th*f_1_2*f[28]*f[30]*f[77]*f[79])/(6.*U[1]) + (7*f_0_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[1]) + (7*f_1_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[1]) - (7*f_0_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[1]) - (7*f_1_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[1]) - (7*cos2th*f_0_2*f[29]*f[31]*f[77]*f[79])/(6.*U[1]) - (7*cos2th*f_1_2*f[29]*f[31]*f[77]*f[79])/(6.*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[0]*J[4]*((5*cos2th*f_10_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) + (5*cos2th*f_11_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) + (6*cos2th*f_12_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) + (6*cos2th*f_13_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) + (7*cos2th*f_14_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) + (7*cos2th*f_15_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) + (2*cos2th*f_4_2*f[16]*f[18]*f[64]*f[66])/U[0] + (2*cos2th*f_5_2*f[16]*f[18]*f[64]*f[66])/U[0] + (3*cos2th*f_6_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) + (3*cos2th*f_7_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) + (4*cos2th*f_8_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) + (4*cos2th*f_9_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) - (5*f_11_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) - (6*f_12_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) - (6*f_13_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) - (7*f_14_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) - (7*f_15_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) - (2*f_4_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] - (2*f_5_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] - (3*f_6_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) - (3*f_7_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) - (4*f_8_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) - (4*f_9_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) + (5*f_11_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) + (6*f_12_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) + (6*f_13_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) + (7*f_14_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) + (7*f_15_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) + (2*f_4_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] + (2*f_5_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] + (3*f_6_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) + (3*f_7_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) + (4*f_8_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) + (4*f_9_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) + (5*cos2th*f_10_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) + (5*cos2th*f_11_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) + (6*cos2th*f_12_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) + (6*cos2th*f_13_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) + (7*cos2th*f_14_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) + (7*cos2th*f_15_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) + (2*cos2th*f_4_2*f[17]*f[19]*f[64]*f[66])/U[0] + (2*cos2th*f_5_2*f[17]*f[19]*f[64]*f[66])/U[0] + (3*cos2th*f_6_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) + (3*cos2th*f_7_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) + (4*cos2th*f_8_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) + (4*cos2th*f_9_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) + (5*f_11_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) + (6*f_12_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) + (6*f_13_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) + (7*f_14_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) + (7*f_15_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) + (2*f_4_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] + (2*f_5_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] + (3*f_6_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) + (3*f_7_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) + (4*f_8_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) + (4*f_9_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) + (5*cos2th*f_10_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) + (5*cos2th*f_11_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) + (6*cos2th*f_12_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) + (6*cos2th*f_13_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) + (7*cos2th*f_14_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) + (7*cos2th*f_15_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) + (2*cos2th*f_4_2*f[17]*f[18]*f[65]*f[66])/U[0] + (2*cos2th*f_5_2*f[17]*f[18]*f[65]*f[66])/U[0] + (3*cos2th*f_6_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) + (3*cos2th*f_7_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) + (4*cos2th*f_8_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) + (4*cos2th*f_9_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) - (5*cos2th*f_10_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) - (5*cos2th*f_11_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) - (6*cos2th*f_12_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) - (6*cos2th*f_13_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) - (7*cos2th*f_14_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) - (7*cos2th*f_15_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) - (2*cos2th*f_4_2*f[16]*f[19]*f[65]*f[66])/U[0] - (2*cos2th*f_5_2*f[16]*f[19]*f[65]*f[66])/U[0] - (3*cos2th*f_6_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) - (3*cos2th*f_7_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) - (4*cos2th*f_8_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) - (4*cos2th*f_9_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) + (5*f_11_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) + (6*f_12_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) + (6*f_13_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) + (7*f_14_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) + (7*f_15_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) + (2*f_4_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] + (2*f_5_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] + (3*f_6_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) + (3*f_7_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) + (4*f_8_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) + (4*f_9_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) - (5*f_11_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) - (6*f_12_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) - (6*f_13_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) - (7*f_14_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) - (7*f_15_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) - (2*f_4_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] - (2*f_5_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] - (3*f_6_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) - (3*f_7_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) - (4*f_8_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) - (4*f_9_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_10_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) - (5*cos2th*f_11_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_12_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) - (6*cos2th*f_13_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) - (7*cos2th*f_14_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) - (7*cos2th*f_15_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) - (2*cos2th*f_4_2*f[17]*f[18]*f[64]*f[67])/U[0] - (2*cos2th*f_5_2*f[17]*f[18]*f[64]*f[67])/U[0] - (3*cos2th*f_6_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) - (3*cos2th*f_7_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) - (4*cos2th*f_8_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) - (4*cos2th*f_9_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_10_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) + (5*cos2th*f_11_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_12_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) + (6*cos2th*f_13_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) + (7*cos2th*f_14_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) + (7*cos2th*f_15_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) + (2*cos2th*f_4_2*f[16]*f[19]*f[64]*f[67])/U[0] + (2*cos2th*f_5_2*f[16]*f[19]*f[64]*f[67])/U[0] + (3*cos2th*f_6_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) + (3*cos2th*f_7_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) + (4*cos2th*f_8_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) + (4*cos2th*f_9_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) - (5*f_10_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) - (5*f_11_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) - (6*f_12_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) - (6*f_13_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) - (7*f_14_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) - (7*f_15_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) - (2*f_4_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] - (2*f_5_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] - (3*f_6_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) - (3*f_7_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) - (4*f_8_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) - (4*f_9_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_10_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) + (5*cos2th*f_11_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) + (6*cos2th*f_12_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) + (6*cos2th*f_13_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) + (7*cos2th*f_14_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) + (7*cos2th*f_15_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) + (2*cos2th*f_4_2*f[16]*f[18]*f[65]*f[67])/U[0] + (2*cos2th*f_5_2*f[16]*f[18]*f[65]*f[67])/U[0] + (3*cos2th*f_6_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) + (3*cos2th*f_7_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) + (4*cos2th*f_8_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) + (4*cos2th*f_9_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) - (5*f_10_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) - (5*f_11_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) - (6*f_12_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) - (6*f_13_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) - (7*f_14_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) - (7*f_15_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) - (2*f_4_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] - (2*f_5_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] - (3*f_6_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) - (3*f_7_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) - (4*f_8_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) - (4*f_9_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) + (5*f_10_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) + (5*f_11_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) + (6*f_12_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) + (6*f_13_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) + (7*f_14_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) + (7*f_15_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) + (2*f_4_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] + (2*f_5_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] + (3*f_6_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) + (3*f_7_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) + (4*f_8_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) + (4*f_9_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) + (5*cos2th*f_10_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (5*cos2th*f_11_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (6*cos2th*f_12_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) + (6*cos2th*f_13_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) + (7*cos2th*f_14_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) + (7*cos2th*f_15_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) + (2*cos2th*f_4_2*f[17]*f[19]*f[65]*f[67])/U[0] + (2*cos2th*f_5_2*f[17]*f[19]*f[65]*f[67])/U[0] + (3*cos2th*f_6_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) + (3*cos2th*f_7_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) + (4*cos2th*f_8_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (4*cos2th*f_9_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (14*cos2th*f_4_2*f[28]*f[30]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_5_2*f[28]*f[30]*f[76]*f[78])/(U[0] - 6*U[1]) - (14*f_4_2*sin2th*f[29]*f[30]*f[76]*f[78])/(U[0] - 6*U[1]) - (14*f_5_2*sin2th*f[29]*f[30]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*f_4_2*sin2th*f[28]*f[31]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*f_5_2*sin2th*f[28]*f[31]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_4_2*f[29]*f[31]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_5_2*f[29]*f[31]*f[76]*f[78])/(U[0] - 6*U[1]) + (14*f_4_2*sin2th*f[28]*f[30]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*f_5_2*sin2th*f[28]*f[30]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_4_2*f[29]*f[30]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*cos2th*f_5_2*f[29]*f[30]*f[77]*f[78])/(U[0] - 6*U[1]) - (14*cos2th*f_4_2*f[28]*f[31]*f[77]*f[78])/(U[0] - 6*U[1]) - (14*cos2th*f_5_2*f[28]*f[31]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*f_4_2*sin2th*f[29]*f[31]*f[77]*f[78])/(U[0] - 6*U[1]) + (14*f_5_2*sin2th*f[29]*f[31]*f[77]*f[78])/(U[0] - 6*U[1]) - (14*f_4_2*sin2th*f[28]*f[30]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*f_5_2*sin2th*f[28]*f[30]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*cos2th*f_4_2*f[29]*f[30]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*cos2th*f_5_2*f[29]*f[30]*f[76]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_4_2*f[28]*f[31]*f[76]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_5_2*f[28]*f[31]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*f_4_2*sin2th*f[29]*f[31]*f[76]*f[79])/(U[0] - 6*U[1]) - (14*f_5_2*sin2th*f[29]*f[31]*f[76]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_4_2*f[28]*f[30]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_5_2*f[28]*f[30]*f[77]*f[79])/(U[0] - 6*U[1]) - (14*f_4_2*sin2th*f[29]*f[30]*f[77]*f[79])/(U[0] - 6*U[1]) - (14*f_5_2*sin2th*f[29]*f[30]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*f_4_2*sin2th*f[28]*f[31]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*f_5_2*sin2th*f[28]*f[31]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_4_2*f[29]*f[31]*f[77]*f[79])/(U[0] - 6*U[1]) + (14*cos2th*f_5_2*f[29]*f[31]*f[77]*f[79])/(U[0] - 6*U[1]) + (21*cos2th*f_6_2*f[28]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_7_2*f[28]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[1]) - (21*f_6_2*sin2th*f[29]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[1]) - (21*f_7_2*sin2th*f[29]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*f_6_2*sin2th*f[28]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*f_7_2*sin2th*f[28]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_6_2*f[29]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_7_2*f[29]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[1]) + (21*f_6_2*sin2th*f[28]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*f_7_2*sin2th*f[28]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_6_2*f[29]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*cos2th*f_7_2*f[29]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[1]) - (21*cos2th*f_6_2*f[28]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[1]) - (21*cos2th*f_7_2*f[28]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*f_6_2*sin2th*f[29]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[1]) + (21*f_7_2*sin2th*f[29]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[1]) - (21*f_6_2*sin2th*f[28]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*f_7_2*sin2th*f[28]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*cos2th*f_6_2*f[29]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*cos2th*f_7_2*f[29]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_6_2*f[28]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_7_2*f[28]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*f_6_2*sin2th*f[29]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[1]) - (21*f_7_2*sin2th*f[29]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_6_2*f[28]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_7_2*f[28]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[1]) - (21*f_6_2*sin2th*f[29]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[1]) - (21*f_7_2*sin2th*f[29]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*f_6_2*sin2th*f[28]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*f_7_2*sin2th*f[28]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_6_2*f[29]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (21*cos2th*f_7_2*f[29]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[1]) + (28*cos2th*f_8_2*f[28]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_9_2*f[28]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[1]) - (28*f_8_2*sin2th*f[29]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[1]) - (28*f_9_2*sin2th*f[29]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*f_8_2*sin2th*f[28]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*f_9_2*sin2th*f[28]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_8_2*f[29]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_9_2*f[29]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[1]) + (28*f_8_2*sin2th*f[28]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*f_9_2*sin2th*f[28]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_8_2*f[29]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*cos2th*f_9_2*f[29]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[1]) - (28*cos2th*f_8_2*f[28]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[1]) - (28*cos2th*f_9_2*f[28]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*f_8_2*sin2th*f[29]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[1]) + (28*f_9_2*sin2th*f[29]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[1]) - (28*f_8_2*sin2th*f[28]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*f_9_2*sin2th*f[28]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*cos2th*f_8_2*f[29]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*cos2th*f_9_2*f[29]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_8_2*f[28]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_9_2*f[28]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*f_8_2*sin2th*f[29]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[1]) - (28*f_9_2*sin2th*f[29]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_8_2*f[28]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_9_2*f[28]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[1]) - (28*f_8_2*sin2th*f[29]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[1]) - (28*f_9_2*sin2th*f[29]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*f_8_2*sin2th*f[28]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*f_9_2*sin2th*f[28]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_8_2*f[29]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (28*cos2th*f_9_2*f[29]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[1]) + (35*cos2th*f_10_2*f[28]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_11_2*f[28]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[1]) - (35*f_10_2*sin2th*f[29]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[1]) - (35*f_11_2*sin2th*f[29]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*f_10_2*sin2th*f[28]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*f_11_2*sin2th*f[28]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_10_2*f[29]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_11_2*f[29]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[1]) + (35*f_10_2*sin2th*f[28]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*f_11_2*sin2th*f[28]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_10_2*f[29]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*cos2th*f_11_2*f[29]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[1]) - (35*cos2th*f_10_2*f[28]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[1]) - (35*cos2th*f_11_2*f[28]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*f_10_2*sin2th*f[29]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[1]) + (35*f_11_2*sin2th*f[29]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[1]) - (35*f_10_2*sin2th*f[28]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*f_11_2*sin2th*f[28]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*cos2th*f_10_2*f[29]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*cos2th*f_11_2*f[29]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_10_2*f[28]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_11_2*f[28]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*f_10_2*sin2th*f[29]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[1]) - (35*f_11_2*sin2th*f[29]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_10_2*f[28]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_11_2*f[28]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[1]) - (35*f_10_2*sin2th*f[29]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[1]) - (35*f_11_2*sin2th*f[29]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*f_10_2*sin2th*f[28]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*f_11_2*sin2th*f[28]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_10_2*f[29]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (35*cos2th*f_11_2*f[29]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[1]) + (42*cos2th*f_12_2*f[28]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_13_2*f[28]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[1]) - (42*f_12_2*sin2th*f[29]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[1]) - (42*f_13_2*sin2th*f[29]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*f_12_2*sin2th*f[28]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*f_13_2*sin2th*f[28]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_12_2*f[29]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_13_2*f[29]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[1]) + (42*f_12_2*sin2th*f[28]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*f_13_2*sin2th*f[28]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_12_2*f[29]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*cos2th*f_13_2*f[29]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[1]) - (42*cos2th*f_12_2*f[28]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[1]) - (42*cos2th*f_13_2*f[28]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*f_12_2*sin2th*f[29]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[1]) + (42*f_13_2*sin2th*f[29]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[1]) - (42*f_12_2*sin2th*f[28]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*f_13_2*sin2th*f[28]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*cos2th*f_12_2*f[29]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*cos2th*f_13_2*f[29]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_12_2*f[28]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_13_2*f[28]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*f_12_2*sin2th*f[29]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[1]) - (42*f_13_2*sin2th*f[29]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_12_2*f[28]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_13_2*f[28]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[1]) - (42*f_12_2*sin2th*f[29]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[1]) - (42*f_13_2*sin2th*f[29]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*f_12_2*sin2th*f[28]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*f_13_2*sin2th*f[28]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_12_2*f[29]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (42*cos2th*f_13_2*f[29]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[1]) + (12*cos2th*f_4_2*f[26]*f[28]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_5_2*f[26]*f[28]*f[74]*f[76])/(U[0] - 5*U[1]) - (12*f_4_2*sin2th*f[27]*f[28]*f[74]*f[76])/(U[0] - 5*U[1]) - (12*f_5_2*sin2th*f[27]*f[28]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*f_4_2*sin2th*f[26]*f[29]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*f_5_2*sin2th*f[26]*f[29]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_4_2*f[27]*f[29]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_5_2*f[27]*f[29]*f[74]*f[76])/(U[0] - 5*U[1]) + (12*f_4_2*sin2th*f[26]*f[28]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*f_5_2*sin2th*f[26]*f[28]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_4_2*f[27]*f[28]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*cos2th*f_5_2*f[27]*f[28]*f[75]*f[76])/(U[0] - 5*U[1]) - (12*cos2th*f_4_2*f[26]*f[29]*f[75]*f[76])/(U[0] - 5*U[1]) - (12*cos2th*f_5_2*f[26]*f[29]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*f_4_2*sin2th*f[27]*f[29]*f[75]*f[76])/(U[0] - 5*U[1]) + (12*f_5_2*sin2th*f[27]*f[29]*f[75]*f[76])/(U[0] - 5*U[1]) - (12*f_4_2*sin2th*f[26]*f[28]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*f_5_2*sin2th*f[26]*f[28]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*cos2th*f_4_2*f[27]*f[28]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*cos2th*f_5_2*f[27]*f[28]*f[74]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_4_2*f[26]*f[29]*f[74]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_5_2*f[26]*f[29]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*f_4_2*sin2th*f[27]*f[29]*f[74]*f[77])/(U[0] - 5*U[1]) - (12*f_5_2*sin2th*f[27]*f[29]*f[74]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_4_2*f[26]*f[28]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_5_2*f[26]*f[28]*f[75]*f[77])/(U[0] - 5*U[1]) - (12*f_4_2*sin2th*f[27]*f[28]*f[75]*f[77])/(U[0] - 5*U[1]) - (12*f_5_2*sin2th*f[27]*f[28]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*f_4_2*sin2th*f[26]*f[29]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*f_5_2*sin2th*f[26]*f[29]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_4_2*f[27]*f[29]*f[75]*f[77])/(U[0] - 5*U[1]) + (12*cos2th*f_5_2*f[27]*f[29]*f[75]*f[77])/(U[0] - 5*U[1]) + (18*cos2th*f_6_2*f[26]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_7_2*f[26]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[1]) - (18*f_6_2*sin2th*f[27]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[1]) - (18*f_7_2*sin2th*f[27]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*f_6_2*sin2th*f[26]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*f_7_2*sin2th*f[26]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_6_2*f[27]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_7_2*f[27]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[1]) + (18*f_6_2*sin2th*f[26]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*f_7_2*sin2th*f[26]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_6_2*f[27]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*cos2th*f_7_2*f[27]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[1]) - (18*cos2th*f_6_2*f[26]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[1]) - (18*cos2th*f_7_2*f[26]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*f_6_2*sin2th*f[27]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[1]) + (18*f_7_2*sin2th*f[27]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[1]) - (18*f_6_2*sin2th*f[26]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*f_7_2*sin2th*f[26]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*cos2th*f_6_2*f[27]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*cos2th*f_7_2*f[27]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_6_2*f[26]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_7_2*f[26]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*f_6_2*sin2th*f[27]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[1]) - (18*f_7_2*sin2th*f[27]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_6_2*f[26]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_7_2*f[26]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[1]) - (18*f_6_2*sin2th*f[27]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[1]) - (18*f_7_2*sin2th*f[27]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*f_6_2*sin2th*f[26]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*f_7_2*sin2th*f[26]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_6_2*f[27]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (18*cos2th*f_7_2*f[27]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[1]) + (24*cos2th*f_8_2*f[26]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_9_2*f[26]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[1]) - (24*f_8_2*sin2th*f[27]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[1]) - (24*f_9_2*sin2th*f[27]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*f_8_2*sin2th*f[26]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*f_9_2*sin2th*f[26]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_8_2*f[27]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_9_2*f[27]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[1]) + (24*f_8_2*sin2th*f[26]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*f_9_2*sin2th*f[26]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_8_2*f[27]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*cos2th*f_9_2*f[27]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[1]) - (24*cos2th*f_8_2*f[26]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[1]) - (24*cos2th*f_9_2*f[26]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*f_8_2*sin2th*f[27]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[1]) + (24*f_9_2*sin2th*f[27]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[1]) - (24*f_8_2*sin2th*f[26]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*f_9_2*sin2th*f[26]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*cos2th*f_8_2*f[27]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*cos2th*f_9_2*f[27]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_8_2*f[26]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_9_2*f[26]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*f_8_2*sin2th*f[27]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[1]) - (24*f_9_2*sin2th*f[27]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_8_2*f[26]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_9_2*f[26]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[1]) - (24*f_8_2*sin2th*f[27]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[1]) - (24*f_9_2*sin2th*f[27]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*f_8_2*sin2th*f[26]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*f_9_2*sin2th*f[26]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_8_2*f[27]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (24*cos2th*f_9_2*f[27]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[1]) + (30*cos2th*f_10_2*f[26]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_11_2*f[26]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[1]) - (30*f_10_2*sin2th*f[27]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[1]) - (30*f_11_2*sin2th*f[27]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*f_10_2*sin2th*f[26]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*f_11_2*sin2th*f[26]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_10_2*f[27]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_11_2*f[27]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[1]) + (30*f_10_2*sin2th*f[26]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*f_11_2*sin2th*f[26]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_10_2*f[27]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*cos2th*f_11_2*f[27]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[1]) - (30*cos2th*f_10_2*f[26]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[1]) - (30*cos2th*f_11_2*f[26]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*f_10_2*sin2th*f[27]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[1]) + (30*f_11_2*sin2th*f[27]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[1]) - (30*f_10_2*sin2th*f[26]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*f_11_2*sin2th*f[26]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*cos2th*f_10_2*f[27]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*cos2th*f_11_2*f[27]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_10_2*f[26]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_11_2*f[26]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*f_10_2*sin2th*f[27]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[1]) - (30*f_11_2*sin2th*f[27]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_10_2*f[26]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_11_2*f[26]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[1]) - (30*f_10_2*sin2th*f[27]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[1]) - (30*f_11_2*sin2th*f[27]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*f_10_2*sin2th*f[26]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*f_11_2*sin2th*f[26]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_10_2*f[27]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (30*cos2th*f_11_2*f[27]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[1]) + (42*cos2th*f_14_2*f[26]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_15_2*f[26]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[1]) - (42*f_14_2*sin2th*f[27]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[1]) - (42*f_15_2*sin2th*f[27]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*f_14_2*sin2th*f[26]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*f_15_2*sin2th*f[26]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_14_2*f[27]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_15_2*f[27]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[1]) + (42*f_14_2*sin2th*f[26]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*f_15_2*sin2th*f[26]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_14_2*f[27]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*cos2th*f_15_2*f[27]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[1]) - (42*cos2th*f_14_2*f[26]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[1]) - (42*cos2th*f_15_2*f[26]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*f_14_2*sin2th*f[27]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[1]) + (42*f_15_2*sin2th*f[27]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[1]) - (42*f_14_2*sin2th*f[26]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*f_15_2*sin2th*f[26]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*cos2th*f_14_2*f[27]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*cos2th*f_15_2*f[27]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_14_2*f[26]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_15_2*f[26]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*f_14_2*sin2th*f[27]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[1]) - (42*f_15_2*sin2th*f[27]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_14_2*f[26]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_15_2*f[26]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[1]) - (42*f_14_2*sin2th*f[27]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[1]) - (42*f_15_2*sin2th*f[27]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*f_14_2*sin2th*f[26]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*f_15_2*sin2th*f[26]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_14_2*f[27]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (42*cos2th*f_15_2*f[27]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[1]) + (10*cos2th*f_4_2*f[24]*f[26]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_5_2*f[24]*f[26]*f[72]*f[74])/(U[0] - 4*U[1]) - (10*f_4_2*sin2th*f[25]*f[26]*f[72]*f[74])/(U[0] - 4*U[1]) - (10*f_5_2*sin2th*f[25]*f[26]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*f_4_2*sin2th*f[24]*f[27]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*f_5_2*sin2th*f[24]*f[27]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_4_2*f[25]*f[27]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_5_2*f[25]*f[27]*f[72]*f[74])/(U[0] - 4*U[1]) + (10*f_4_2*sin2th*f[24]*f[26]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*f_5_2*sin2th*f[24]*f[26]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_4_2*f[25]*f[26]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*cos2th*f_5_2*f[25]*f[26]*f[73]*f[74])/(U[0] - 4*U[1]) - (10*cos2th*f_4_2*f[24]*f[27]*f[73]*f[74])/(U[0] - 4*U[1]) - (10*cos2th*f_5_2*f[24]*f[27]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*f_4_2*sin2th*f[25]*f[27]*f[73]*f[74])/(U[0] - 4*U[1]) + (10*f_5_2*sin2th*f[25]*f[27]*f[73]*f[74])/(U[0] - 4*U[1]) - (10*f_4_2*sin2th*f[24]*f[26]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*f_5_2*sin2th*f[24]*f[26]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*cos2th*f_4_2*f[25]*f[26]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*cos2th*f_5_2*f[25]*f[26]*f[72]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_4_2*f[24]*f[27]*f[72]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_5_2*f[24]*f[27]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*f_4_2*sin2th*f[25]*f[27]*f[72]*f[75])/(U[0] - 4*U[1]) - (10*f_5_2*sin2th*f[25]*f[27]*f[72]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_4_2*f[24]*f[26]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_5_2*f[24]*f[26]*f[73]*f[75])/(U[0] - 4*U[1]) - (10*f_4_2*sin2th*f[25]*f[26]*f[73]*f[75])/(U[0] - 4*U[1]) - (10*f_5_2*sin2th*f[25]*f[26]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*f_4_2*sin2th*f[24]*f[27]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*f_5_2*sin2th*f[24]*f[27]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_4_2*f[25]*f[27]*f[73]*f[75])/(U[0] - 4*U[1]) + (10*cos2th*f_5_2*f[25]*f[27]*f[73]*f[75])/(U[0] - 4*U[1]) + (15*cos2th*f_6_2*f[24]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_7_2*f[24]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[1]) - (15*f_6_2*sin2th*f[25]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[1]) - (15*f_7_2*sin2th*f[25]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*f_6_2*sin2th*f[24]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*f_7_2*sin2th*f[24]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_6_2*f[25]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_7_2*f[25]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[1]) + (15*f_6_2*sin2th*f[24]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*f_7_2*sin2th*f[24]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_6_2*f[25]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*cos2th*f_7_2*f[25]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[1]) - (15*cos2th*f_6_2*f[24]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[1]) - (15*cos2th*f_7_2*f[24]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*f_6_2*sin2th*f[25]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[1]) + (15*f_7_2*sin2th*f[25]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[1]) - (15*f_6_2*sin2th*f[24]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*f_7_2*sin2th*f[24]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*cos2th*f_6_2*f[25]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*cos2th*f_7_2*f[25]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_6_2*f[24]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_7_2*f[24]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*f_6_2*sin2th*f[25]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[1]) - (15*f_7_2*sin2th*f[25]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_6_2*f[24]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_7_2*f[24]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[1]) - (15*f_6_2*sin2th*f[25]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[1]) - (15*f_7_2*sin2th*f[25]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*f_6_2*sin2th*f[24]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*f_7_2*sin2th*f[24]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_6_2*f[25]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (15*cos2th*f_7_2*f[25]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[1]) + (20*cos2th*f_8_2*f[24]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_9_2*f[24]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[1]) - (20*f_8_2*sin2th*f[25]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[1]) - (20*f_9_2*sin2th*f[25]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*f_8_2*sin2th*f[24]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*f_9_2*sin2th*f[24]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_8_2*f[25]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_9_2*f[25]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[1]) + (20*f_8_2*sin2th*f[24]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*f_9_2*sin2th*f[24]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_8_2*f[25]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*cos2th*f_9_2*f[25]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[1]) - (20*cos2th*f_8_2*f[24]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[1]) - (20*cos2th*f_9_2*f[24]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*f_8_2*sin2th*f[25]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[1]) + (20*f_9_2*sin2th*f[25]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[1]) - (20*f_8_2*sin2th*f[24]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*f_9_2*sin2th*f[24]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*cos2th*f_8_2*f[25]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*cos2th*f_9_2*f[25]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_8_2*f[24]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_9_2*f[24]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*f_8_2*sin2th*f[25]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[1]) - (20*f_9_2*sin2th*f[25]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_8_2*f[24]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_9_2*f[24]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[1]) - (20*f_8_2*sin2th*f[25]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[1]) - (20*f_9_2*sin2th*f[25]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*f_8_2*sin2th*f[24]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*f_9_2*sin2th*f[24]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_8_2*f[25]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (20*cos2th*f_9_2*f[25]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[1]) + (30*cos2th*f_12_2*f[24]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_13_2*f[24]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[1]) - (30*f_12_2*sin2th*f[25]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[1]) - (30*f_13_2*sin2th*f[25]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*f_12_2*sin2th*f[24]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*f_13_2*sin2th*f[24]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_12_2*f[25]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_13_2*f[25]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[1]) + (30*f_12_2*sin2th*f[24]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*f_13_2*sin2th*f[24]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_12_2*f[25]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*cos2th*f_13_2*f[25]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[1]) - (30*cos2th*f_12_2*f[24]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[1]) - (30*cos2th*f_13_2*f[24]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*f_12_2*sin2th*f[25]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[1]) + (30*f_13_2*sin2th*f[25]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[1]) - (30*f_12_2*sin2th*f[24]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*f_13_2*sin2th*f[24]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*cos2th*f_12_2*f[25]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*cos2th*f_13_2*f[25]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_12_2*f[24]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_13_2*f[24]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*f_12_2*sin2th*f[25]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[1]) - (30*f_13_2*sin2th*f[25]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_12_2*f[24]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_13_2*f[24]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[1]) - (30*f_12_2*sin2th*f[25]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[1]) - (30*f_13_2*sin2th*f[25]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*f_12_2*sin2th*f[24]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*f_13_2*sin2th*f[24]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_12_2*f[25]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (30*cos2th*f_13_2*f[25]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[1]) + (35*cos2th*f_14_2*f[24]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_15_2*f[24]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[1]) - (35*f_14_2*sin2th*f[25]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[1]) - (35*f_15_2*sin2th*f[25]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*f_14_2*sin2th*f[24]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*f_15_2*sin2th*f[24]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_14_2*f[25]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_15_2*f[25]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[1]) + (35*f_14_2*sin2th*f[24]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*f_15_2*sin2th*f[24]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_14_2*f[25]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*cos2th*f_15_2*f[25]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[1]) - (35*cos2th*f_14_2*f[24]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[1]) - (35*cos2th*f_15_2*f[24]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*f_14_2*sin2th*f[25]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[1]) + (35*f_15_2*sin2th*f[25]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[1]) - (35*f_14_2*sin2th*f[24]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*f_15_2*sin2th*f[24]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*cos2th*f_14_2*f[25]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*cos2th*f_15_2*f[25]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_14_2*f[24]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_15_2*f[24]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*f_14_2*sin2th*f[25]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[1]) - (35*f_15_2*sin2th*f[25]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_14_2*f[24]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_15_2*f[24]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[1]) - (35*f_14_2*sin2th*f[25]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[1]) - (35*f_15_2*sin2th*f[25]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*f_14_2*sin2th*f[24]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*f_15_2*sin2th*f[24]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_14_2*f[25]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (35*cos2th*f_15_2*f[25]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[1]) + (8*cos2th*f_4_2*f[22]*f[24]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_5_2*f[22]*f[24]*f[70]*f[72])/(U[0] - 3*U[1]) - (8*f_4_2*sin2th*f[23]*f[24]*f[70]*f[72])/(U[0] - 3*U[1]) - (8*f_5_2*sin2th*f[23]*f[24]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*f_4_2*sin2th*f[22]*f[25]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*f_5_2*sin2th*f[22]*f[25]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_4_2*f[23]*f[25]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_5_2*f[23]*f[25]*f[70]*f[72])/(U[0] - 3*U[1]) + (8*f_4_2*sin2th*f[22]*f[24]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*f_5_2*sin2th*f[22]*f[24]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_4_2*f[23]*f[24]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*cos2th*f_5_2*f[23]*f[24]*f[71]*f[72])/(U[0] - 3*U[1]) - (8*cos2th*f_4_2*f[22]*f[25]*f[71]*f[72])/(U[0] - 3*U[1]) - (8*cos2th*f_5_2*f[22]*f[25]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*f_4_2*sin2th*f[23]*f[25]*f[71]*f[72])/(U[0] - 3*U[1]) + (8*f_5_2*sin2th*f[23]*f[25]*f[71]*f[72])/(U[0] - 3*U[1]) - (8*f_4_2*sin2th*f[22]*f[24]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*f_5_2*sin2th*f[22]*f[24]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*cos2th*f_4_2*f[23]*f[24]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*cos2th*f_5_2*f[23]*f[24]*f[70]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_4_2*f[22]*f[25]*f[70]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_5_2*f[22]*f[25]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*f_4_2*sin2th*f[23]*f[25]*f[70]*f[73])/(U[0] - 3*U[1]) - (8*f_5_2*sin2th*f[23]*f[25]*f[70]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_4_2*f[22]*f[24]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_5_2*f[22]*f[24]*f[71]*f[73])/(U[0] - 3*U[1]) - (8*f_4_2*sin2th*f[23]*f[24]*f[71]*f[73])/(U[0] - 3*U[1]) - (8*f_5_2*sin2th*f[23]*f[24]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*f_4_2*sin2th*f[22]*f[25]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*f_5_2*sin2th*f[22]*f[25]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_4_2*f[23]*f[25]*f[71]*f[73])/(U[0] - 3*U[1]) + (8*cos2th*f_5_2*f[23]*f[25]*f[71]*f[73])/(U[0] - 3*U[1]) + (12*cos2th*f_6_2*f[22]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_7_2*f[22]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[1]) - (12*f_6_2*sin2th*f[23]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[1]) - (12*f_7_2*sin2th*f[23]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*f_6_2*sin2th*f[22]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*f_7_2*sin2th*f[22]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_6_2*f[23]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_7_2*f[23]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[1]) + (12*f_6_2*sin2th*f[22]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*f_7_2*sin2th*f[22]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_6_2*f[23]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*cos2th*f_7_2*f[23]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[1]) - (12*cos2th*f_6_2*f[22]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[1]) - (12*cos2th*f_7_2*f[22]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*f_6_2*sin2th*f[23]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[1]) + (12*f_7_2*sin2th*f[23]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[1]) - (12*f_6_2*sin2th*f[22]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*f_7_2*sin2th*f[22]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*cos2th*f_6_2*f[23]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*cos2th*f_7_2*f[23]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_6_2*f[22]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_7_2*f[22]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*f_6_2*sin2th*f[23]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[1]) - (12*f_7_2*sin2th*f[23]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_6_2*f[22]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_7_2*f[22]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[1]) - (12*f_6_2*sin2th*f[23]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[1]) - (12*f_7_2*sin2th*f[23]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*f_6_2*sin2th*f[22]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*f_7_2*sin2th*f[22]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_6_2*f[23]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (12*cos2th*f_7_2*f[23]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[1]) + (20*cos2th*f_10_2*f[22]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_11_2*f[22]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[1]) - (20*f_10_2*sin2th*f[23]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[1]) - (20*f_11_2*sin2th*f[23]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*f_10_2*sin2th*f[22]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*f_11_2*sin2th*f[22]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_10_2*f[23]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_11_2*f[23]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[1]) + (20*f_10_2*sin2th*f[22]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*f_11_2*sin2th*f[22]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_10_2*f[23]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*cos2th*f_11_2*f[23]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[1]) - (20*cos2th*f_10_2*f[22]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[1]) - (20*cos2th*f_11_2*f[22]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*f_10_2*sin2th*f[23]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[1]) + (20*f_11_2*sin2th*f[23]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[1]) - (20*f_10_2*sin2th*f[22]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*f_11_2*sin2th*f[22]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*cos2th*f_10_2*f[23]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*cos2th*f_11_2*f[23]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_10_2*f[22]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_11_2*f[22]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*f_10_2*sin2th*f[23]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[1]) - (20*f_11_2*sin2th*f[23]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_10_2*f[22]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_11_2*f[22]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[1]) - (20*f_10_2*sin2th*f[23]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[1]) - (20*f_11_2*sin2th*f[23]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*f_10_2*sin2th*f[22]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*f_11_2*sin2th*f[22]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_10_2*f[23]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (20*cos2th*f_11_2*f[23]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[1]) + (24*cos2th*f_12_2*f[22]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_13_2*f[22]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[1]) - (24*f_12_2*sin2th*f[23]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[1]) - (24*f_13_2*sin2th*f[23]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*f_12_2*sin2th*f[22]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*f_13_2*sin2th*f[22]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_12_2*f[23]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_13_2*f[23]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[1]) + (24*f_12_2*sin2th*f[22]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*f_13_2*sin2th*f[22]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_12_2*f[23]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*cos2th*f_13_2*f[23]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[1]) - (24*cos2th*f_12_2*f[22]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[1]) - (24*cos2th*f_13_2*f[22]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*f_12_2*sin2th*f[23]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[1]) + (24*f_13_2*sin2th*f[23]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[1]) - (24*f_12_2*sin2th*f[22]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*f_13_2*sin2th*f[22]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*cos2th*f_12_2*f[23]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*cos2th*f_13_2*f[23]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_12_2*f[22]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_13_2*f[22]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*f_12_2*sin2th*f[23]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[1]) - (24*f_13_2*sin2th*f[23]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_12_2*f[22]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_13_2*f[22]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[1]) - (24*f_12_2*sin2th*f[23]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[1]) - (24*f_13_2*sin2th*f[23]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*f_12_2*sin2th*f[22]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*f_13_2*sin2th*f[22]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_12_2*f[23]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (24*cos2th*f_13_2*f[23]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[1]) + (28*cos2th*f_14_2*f[22]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_15_2*f[22]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[1]) - (28*f_14_2*sin2th*f[23]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[1]) - (28*f_15_2*sin2th*f[23]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*f_14_2*sin2th*f[22]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*f_15_2*sin2th*f[22]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_14_2*f[23]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_15_2*f[23]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[1]) + (28*f_14_2*sin2th*f[22]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*f_15_2*sin2th*f[22]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_14_2*f[23]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*cos2th*f_15_2*f[23]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[1]) - (28*cos2th*f_14_2*f[22]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[1]) - (28*cos2th*f_15_2*f[22]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*f_14_2*sin2th*f[23]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[1]) + (28*f_15_2*sin2th*f[23]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[1]) - (28*f_14_2*sin2th*f[22]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*f_15_2*sin2th*f[22]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*cos2th*f_14_2*f[23]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*cos2th*f_15_2*f[23]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_14_2*f[22]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_15_2*f[22]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*f_14_2*sin2th*f[23]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[1]) - (28*f_15_2*sin2th*f[23]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_14_2*f[22]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_15_2*f[22]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[1]) - (28*f_14_2*sin2th*f[23]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[1]) - (28*f_15_2*sin2th*f[23]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*f_14_2*sin2th*f[22]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*f_15_2*sin2th*f[22]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_14_2*f[23]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (28*cos2th*f_15_2*f[23]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[1]) + (6*cos2th*f_4_2*f[20]*f[22]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_5_2*f[20]*f[22]*f[68]*f[70])/(U[0] - 2*U[1]) - (6*f_4_2*sin2th*f[21]*f[22]*f[68]*f[70])/(U[0] - 2*U[1]) - (6*f_5_2*sin2th*f[21]*f[22]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*f_4_2*sin2th*f[20]*f[23]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*f_5_2*sin2th*f[20]*f[23]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_4_2*f[21]*f[23]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_5_2*f[21]*f[23]*f[68]*f[70])/(U[0] - 2*U[1]) + (6*f_4_2*sin2th*f[20]*f[22]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*f_5_2*sin2th*f[20]*f[22]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_4_2*f[21]*f[22]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*cos2th*f_5_2*f[21]*f[22]*f[69]*f[70])/(U[0] - 2*U[1]) - (6*cos2th*f_4_2*f[20]*f[23]*f[69]*f[70])/(U[0] - 2*U[1]) - (6*cos2th*f_5_2*f[20]*f[23]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*f_4_2*sin2th*f[21]*f[23]*f[69]*f[70])/(U[0] - 2*U[1]) + (6*f_5_2*sin2th*f[21]*f[23]*f[69]*f[70])/(U[0] - 2*U[1]) - (6*f_4_2*sin2th*f[20]*f[22]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*f_5_2*sin2th*f[20]*f[22]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*cos2th*f_4_2*f[21]*f[22]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*cos2th*f_5_2*f[21]*f[22]*f[68]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_4_2*f[20]*f[23]*f[68]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_5_2*f[20]*f[23]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*f_4_2*sin2th*f[21]*f[23]*f[68]*f[71])/(U[0] - 2*U[1]) - (6*f_5_2*sin2th*f[21]*f[23]*f[68]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_4_2*f[20]*f[22]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_5_2*f[20]*f[22]*f[69]*f[71])/(U[0] - 2*U[1]) - (6*f_4_2*sin2th*f[21]*f[22]*f[69]*f[71])/(U[0] - 2*U[1]) - (6*f_5_2*sin2th*f[21]*f[22]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*f_4_2*sin2th*f[20]*f[23]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*f_5_2*sin2th*f[20]*f[23]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_4_2*f[21]*f[23]*f[69]*f[71])/(U[0] - 2*U[1]) + (6*cos2th*f_5_2*f[21]*f[23]*f[69]*f[71])/(U[0] - 2*U[1]) + (12*cos2th*f_8_2*f[20]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_9_2*f[20]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[1]) - (12*f_8_2*sin2th*f[21]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[1]) - (12*f_9_2*sin2th*f[21]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*f_8_2*sin2th*f[20]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*f_9_2*sin2th*f[20]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_8_2*f[21]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_9_2*f[21]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[1]) + (12*f_8_2*sin2th*f[20]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*f_9_2*sin2th*f[20]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_8_2*f[21]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*cos2th*f_9_2*f[21]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[1]) - (12*cos2th*f_8_2*f[20]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[1]) - (12*cos2th*f_9_2*f[20]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*f_8_2*sin2th*f[21]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[1]) + (12*f_9_2*sin2th*f[21]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[1]) - (12*f_8_2*sin2th*f[20]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*f_9_2*sin2th*f[20]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*cos2th*f_8_2*f[21]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*cos2th*f_9_2*f[21]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_8_2*f[20]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_9_2*f[20]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*f_8_2*sin2th*f[21]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[1]) - (12*f_9_2*sin2th*f[21]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_8_2*f[20]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_9_2*f[20]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[1]) - (12*f_8_2*sin2th*f[21]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[1]) - (12*f_9_2*sin2th*f[21]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*f_8_2*sin2th*f[20]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*f_9_2*sin2th*f[20]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_8_2*f[21]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (12*cos2th*f_9_2*f[21]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[1]) + (15*cos2th*f_10_2*f[20]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_11_2*f[20]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[1]) - (15*f_10_2*sin2th*f[21]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[1]) - (15*f_11_2*sin2th*f[21]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*f_10_2*sin2th*f[20]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*f_11_2*sin2th*f[20]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_10_2*f[21]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_11_2*f[21]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[1]) + (15*f_10_2*sin2th*f[20]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*f_11_2*sin2th*f[20]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_10_2*f[21]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*cos2th*f_11_2*f[21]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[1]) - (15*cos2th*f_10_2*f[20]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[1]) - (15*cos2th*f_11_2*f[20]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*f_10_2*sin2th*f[21]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[1]) + (15*f_11_2*sin2th*f[21]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[1]) - (15*f_10_2*sin2th*f[20]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*f_11_2*sin2th*f[20]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*cos2th*f_10_2*f[21]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*cos2th*f_11_2*f[21]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_10_2*f[20]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_11_2*f[20]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*f_10_2*sin2th*f[21]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[1]) - (15*f_11_2*sin2th*f[21]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_10_2*f[20]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_11_2*f[20]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[1]) - (15*f_10_2*sin2th*f[21]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[1]) - (15*f_11_2*sin2th*f[21]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*f_10_2*sin2th*f[20]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*f_11_2*sin2th*f[20]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_10_2*f[21]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (15*cos2th*f_11_2*f[21]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[1]) + (18*cos2th*f_12_2*f[20]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_13_2*f[20]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[1]) - (18*f_12_2*sin2th*f[21]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[1]) - (18*f_13_2*sin2th*f[21]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*f_12_2*sin2th*f[20]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*f_13_2*sin2th*f[20]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_12_2*f[21]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_13_2*f[21]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[1]) + (18*f_12_2*sin2th*f[20]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*f_13_2*sin2th*f[20]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_12_2*f[21]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*cos2th*f_13_2*f[21]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[1]) - (18*cos2th*f_12_2*f[20]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[1]) - (18*cos2th*f_13_2*f[20]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*f_12_2*sin2th*f[21]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[1]) + (18*f_13_2*sin2th*f[21]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[1]) - (18*f_12_2*sin2th*f[20]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*f_13_2*sin2th*f[20]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*cos2th*f_12_2*f[21]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*cos2th*f_13_2*f[21]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_12_2*f[20]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_13_2*f[20]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*f_12_2*sin2th*f[21]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[1]) - (18*f_13_2*sin2th*f[21]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_12_2*f[20]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_13_2*f[20]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[1]) - (18*f_12_2*sin2th*f[21]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[1]) - (18*f_13_2*sin2th*f[21]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*f_12_2*sin2th*f[20]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*f_13_2*sin2th*f[20]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_12_2*f[21]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (18*cos2th*f_13_2*f[21]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[1]) + (21*cos2th*f_14_2*f[20]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_15_2*f[20]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[1]) - (21*f_14_2*sin2th*f[21]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[1]) - (21*f_15_2*sin2th*f[21]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*f_14_2*sin2th*f[20]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*f_15_2*sin2th*f[20]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_14_2*f[21]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_15_2*f[21]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[1]) + (21*f_14_2*sin2th*f[20]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*f_15_2*sin2th*f[20]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_14_2*f[21]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*cos2th*f_15_2*f[21]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[1]) - (21*cos2th*f_14_2*f[20]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[1]) - (21*cos2th*f_15_2*f[20]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*f_14_2*sin2th*f[21]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[1]) + (21*f_15_2*sin2th*f[21]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[1]) - (21*f_14_2*sin2th*f[20]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*f_15_2*sin2th*f[20]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*cos2th*f_14_2*f[21]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*cos2th*f_15_2*f[21]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_14_2*f[20]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_15_2*f[20]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*f_14_2*sin2th*f[21]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[1]) - (21*f_15_2*sin2th*f[21]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_14_2*f[20]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_15_2*f[20]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[1]) - (21*f_14_2*sin2th*f[21]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[1]) - (21*f_15_2*sin2th*f[21]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*f_14_2*sin2th*f[20]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*f_15_2*sin2th*f[20]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_14_2*f[21]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (21*cos2th*f_15_2*f[21]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[1]) + (6*cos2th*f_6_2*f[18]*f[20]*f[66]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_7_2*f[18]*f[20]*f[66]*f[68])/(2*U[0] - U[1]) - (6*f_6_2*sin2th*f[19]*f[20]*f[66]*f[68])/(2*U[0] - U[1]) - (6*f_7_2*sin2th*f[19]*f[20]*f[66]*f[68])/(2*U[0] - U[1]) + (6*f_6_2*sin2th*f[18]*f[21]*f[66]*f[68])/(2*U[0] - U[1]) + (6*f_7_2*sin2th*f[18]*f[21]*f[66]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_6_2*f[19]*f[21]*f[66]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_7_2*f[19]*f[21]*f[66]*f[68])/(2*U[0] - U[1]) + (6*f_6_2*sin2th*f[18]*f[20]*f[67]*f[68])/(2*U[0] - U[1]) + (6*f_7_2*sin2th*f[18]*f[20]*f[67]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_6_2*f[19]*f[20]*f[67]*f[68])/(2*U[0] - U[1]) + (6*cos2th*f_7_2*f[19]*f[20]*f[67]*f[68])/(2*U[0] - U[1]) - (6*cos2th*f_6_2*f[18]*f[21]*f[67]*f[68])/(2*U[0] - U[1]) - (6*cos2th*f_7_2*f[18]*f[21]*f[67]*f[68])/(2*U[0] - U[1]) + (6*f_6_2*sin2th*f[19]*f[21]*f[67]*f[68])/(2*U[0] - U[1]) + (6*f_7_2*sin2th*f[19]*f[21]*f[67]*f[68])/(2*U[0] - U[1]) - (6*f_6_2*sin2th*f[18]*f[20]*f[66]*f[69])/(2*U[0] - U[1]) - (6*f_7_2*sin2th*f[18]*f[20]*f[66]*f[69])/(2*U[0] - U[1]) - (6*cos2th*f_6_2*f[19]*f[20]*f[66]*f[69])/(2*U[0] - U[1]) - (6*cos2th*f_7_2*f[19]*f[20]*f[66]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_6_2*f[18]*f[21]*f[66]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_7_2*f[18]*f[21]*f[66]*f[69])/(2*U[0] - U[1]) - (6*f_6_2*sin2th*f[19]*f[21]*f[66]*f[69])/(2*U[0] - U[1]) - (6*f_7_2*sin2th*f[19]*f[21]*f[66]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_6_2*f[18]*f[20]*f[67]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_7_2*f[18]*f[20]*f[67]*f[69])/(2*U[0] - U[1]) - (6*f_6_2*sin2th*f[19]*f[20]*f[67]*f[69])/(2*U[0] - U[1]) - (6*f_7_2*sin2th*f[19]*f[20]*f[67]*f[69])/(2*U[0] - U[1]) + (6*f_6_2*sin2th*f[18]*f[21]*f[67]*f[69])/(2*U[0] - U[1]) + (6*f_7_2*sin2th*f[18]*f[21]*f[67]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_6_2*f[19]*f[21]*f[67]*f[69])/(2*U[0] - U[1]) + (6*cos2th*f_7_2*f[19]*f[21]*f[67]*f[69])/(2*U[0] - U[1]) + (8*cos2th*f_8_2*f[18]*f[20]*f[66]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_9_2*f[18]*f[20]*f[66]*f[68])/(3*U[0] - U[1]) - (8*f_8_2*sin2th*f[19]*f[20]*f[66]*f[68])/(3*U[0] - U[1]) - (8*f_9_2*sin2th*f[19]*f[20]*f[66]*f[68])/(3*U[0] - U[1]) + (8*f_8_2*sin2th*f[18]*f[21]*f[66]*f[68])/(3*U[0] - U[1]) + (8*f_9_2*sin2th*f[18]*f[21]*f[66]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_8_2*f[19]*f[21]*f[66]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_9_2*f[19]*f[21]*f[66]*f[68])/(3*U[0] - U[1]) + (8*f_8_2*sin2th*f[18]*f[20]*f[67]*f[68])/(3*U[0] - U[1]) + (8*f_9_2*sin2th*f[18]*f[20]*f[67]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_8_2*f[19]*f[20]*f[67]*f[68])/(3*U[0] - U[1]) + (8*cos2th*f_9_2*f[19]*f[20]*f[67]*f[68])/(3*U[0] - U[1]) - (8*cos2th*f_8_2*f[18]*f[21]*f[67]*f[68])/(3*U[0] - U[1]) - (8*cos2th*f_9_2*f[18]*f[21]*f[67]*f[68])/(3*U[0] - U[1]) + (8*f_8_2*sin2th*f[19]*f[21]*f[67]*f[68])/(3*U[0] - U[1]) + (8*f_9_2*sin2th*f[19]*f[21]*f[67]*f[68])/(3*U[0] - U[1]) - (8*f_8_2*sin2th*f[18]*f[20]*f[66]*f[69])/(3*U[0] - U[1]) - (8*f_9_2*sin2th*f[18]*f[20]*f[66]*f[69])/(3*U[0] - U[1]) - (8*cos2th*f_8_2*f[19]*f[20]*f[66]*f[69])/(3*U[0] - U[1]) - (8*cos2th*f_9_2*f[19]*f[20]*f[66]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_8_2*f[18]*f[21]*f[66]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_9_2*f[18]*f[21]*f[66]*f[69])/(3*U[0] - U[1]) - (8*f_8_2*sin2th*f[19]*f[21]*f[66]*f[69])/(3*U[0] - U[1]) - (8*f_9_2*sin2th*f[19]*f[21]*f[66]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_8_2*f[18]*f[20]*f[67]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_9_2*f[18]*f[20]*f[67]*f[69])/(3*U[0] - U[1]) - (8*f_8_2*sin2th*f[19]*f[20]*f[67]*f[69])/(3*U[0] - U[1]) - (8*f_9_2*sin2th*f[19]*f[20]*f[67]*f[69])/(3*U[0] - U[1]) + (8*f_8_2*sin2th*f[18]*f[21]*f[67]*f[69])/(3*U[0] - U[1]) + (8*f_9_2*sin2th*f[18]*f[21]*f[67]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_8_2*f[19]*f[21]*f[67]*f[69])/(3*U[0] - U[1]) + (8*cos2th*f_9_2*f[19]*f[21]*f[67]*f[69])/(3*U[0] - U[1]) + (10*cos2th*f_10_2*f[18]*f[20]*f[66]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_11_2*f[18]*f[20]*f[66]*f[68])/(4*U[0] - U[1]) - (10*f_10_2*sin2th*f[19]*f[20]*f[66]*f[68])/(4*U[0] - U[1]) - (10*f_11_2*sin2th*f[19]*f[20]*f[66]*f[68])/(4*U[0] - U[1]) + (10*f_10_2*sin2th*f[18]*f[21]*f[66]*f[68])/(4*U[0] - U[1]) + (10*f_11_2*sin2th*f[18]*f[21]*f[66]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_10_2*f[19]*f[21]*f[66]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_11_2*f[19]*f[21]*f[66]*f[68])/(4*U[0] - U[1]) + (10*f_10_2*sin2th*f[18]*f[20]*f[67]*f[68])/(4*U[0] - U[1]) + (10*f_11_2*sin2th*f[18]*f[20]*f[67]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_10_2*f[19]*f[20]*f[67]*f[68])/(4*U[0] - U[1]) + (10*cos2th*f_11_2*f[19]*f[20]*f[67]*f[68])/(4*U[0] - U[1]) - (10*cos2th*f_10_2*f[18]*f[21]*f[67]*f[68])/(4*U[0] - U[1]) - (10*cos2th*f_11_2*f[18]*f[21]*f[67]*f[68])/(4*U[0] - U[1]) + (10*f_10_2*sin2th*f[19]*f[21]*f[67]*f[68])/(4*U[0] - U[1]) + (10*f_11_2*sin2th*f[19]*f[21]*f[67]*f[68])/(4*U[0] - U[1]) - (10*f_10_2*sin2th*f[18]*f[20]*f[66]*f[69])/(4*U[0] - U[1]) - (10*f_11_2*sin2th*f[18]*f[20]*f[66]*f[69])/(4*U[0] - U[1]) - (10*cos2th*f_10_2*f[19]*f[20]*f[66]*f[69])/(4*U[0] - U[1]) - (10*cos2th*f_11_2*f[19]*f[20]*f[66]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_10_2*f[18]*f[21]*f[66]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_11_2*f[18]*f[21]*f[66]*f[69])/(4*U[0] - U[1]) - (10*f_10_2*sin2th*f[19]*f[21]*f[66]*f[69])/(4*U[0] - U[1]) - (10*f_11_2*sin2th*f[19]*f[21]*f[66]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_10_2*f[18]*f[20]*f[67]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_11_2*f[18]*f[20]*f[67]*f[69])/(4*U[0] - U[1]) - (10*f_10_2*sin2th*f[19]*f[20]*f[67]*f[69])/(4*U[0] - U[1]) - (10*f_11_2*sin2th*f[19]*f[20]*f[67]*f[69])/(4*U[0] - U[1]) + (10*f_10_2*sin2th*f[18]*f[21]*f[67]*f[69])/(4*U[0] - U[1]) + (10*f_11_2*sin2th*f[18]*f[21]*f[67]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_10_2*f[19]*f[21]*f[67]*f[69])/(4*U[0] - U[1]) + (10*cos2th*f_11_2*f[19]*f[21]*f[67]*f[69])/(4*U[0] - U[1]) + (12*cos2th*f_12_2*f[18]*f[20]*f[66]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_13_2*f[18]*f[20]*f[66]*f[68])/(5*U[0] - U[1]) - (12*f_12_2*sin2th*f[19]*f[20]*f[66]*f[68])/(5*U[0] - U[1]) - (12*f_13_2*sin2th*f[19]*f[20]*f[66]*f[68])/(5*U[0] - U[1]) + (12*f_12_2*sin2th*f[18]*f[21]*f[66]*f[68])/(5*U[0] - U[1]) + (12*f_13_2*sin2th*f[18]*f[21]*f[66]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_12_2*f[19]*f[21]*f[66]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_13_2*f[19]*f[21]*f[66]*f[68])/(5*U[0] - U[1]) + (12*f_12_2*sin2th*f[18]*f[20]*f[67]*f[68])/(5*U[0] - U[1]) + (12*f_13_2*sin2th*f[18]*f[20]*f[67]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_12_2*f[19]*f[20]*f[67]*f[68])/(5*U[0] - U[1]) + (12*cos2th*f_13_2*f[19]*f[20]*f[67]*f[68])/(5*U[0] - U[1]) - (12*cos2th*f_12_2*f[18]*f[21]*f[67]*f[68])/(5*U[0] - U[1]) - (12*cos2th*f_13_2*f[18]*f[21]*f[67]*f[68])/(5*U[0] - U[1]) + (12*f_12_2*sin2th*f[19]*f[21]*f[67]*f[68])/(5*U[0] - U[1]) + (12*f_13_2*sin2th*f[19]*f[21]*f[67]*f[68])/(5*U[0] - U[1]) - (12*f_12_2*sin2th*f[18]*f[20]*f[66]*f[69])/(5*U[0] - U[1]) - (12*f_13_2*sin2th*f[18]*f[20]*f[66]*f[69])/(5*U[0] - U[1]) - (12*cos2th*f_12_2*f[19]*f[20]*f[66]*f[69])/(5*U[0] - U[1]) - (12*cos2th*f_13_2*f[19]*f[20]*f[66]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_12_2*f[18]*f[21]*f[66]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_13_2*f[18]*f[21]*f[66]*f[69])/(5*U[0] - U[1]) - (12*f_12_2*sin2th*f[19]*f[21]*f[66]*f[69])/(5*U[0] - U[1]) - (12*f_13_2*sin2th*f[19]*f[21]*f[66]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_12_2*f[18]*f[20]*f[67]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_13_2*f[18]*f[20]*f[67]*f[69])/(5*U[0] - U[1]) - (12*f_12_2*sin2th*f[19]*f[20]*f[67]*f[69])/(5*U[0] - U[1]) - (12*f_13_2*sin2th*f[19]*f[20]*f[67]*f[69])/(5*U[0] - U[1]) + (12*f_12_2*sin2th*f[18]*f[21]*f[67]*f[69])/(5*U[0] - U[1]) + (12*f_13_2*sin2th*f[18]*f[21]*f[67]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_12_2*f[19]*f[21]*f[67]*f[69])/(5*U[0] - U[1]) + (12*cos2th*f_13_2*f[19]*f[21]*f[67]*f[69])/(5*U[0] - U[1]) + (14*cos2th*f_14_2*f[18]*f[20]*f[66]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_15_2*f[18]*f[20]*f[66]*f[68])/(6*U[0] - U[1]) - (14*f_14_2*sin2th*f[19]*f[20]*f[66]*f[68])/(6*U[0] - U[1]) - (14*f_15_2*sin2th*f[19]*f[20]*f[66]*f[68])/(6*U[0] - U[1]) + (14*f_14_2*sin2th*f[18]*f[21]*f[66]*f[68])/(6*U[0] - U[1]) + (14*f_15_2*sin2th*f[18]*f[21]*f[66]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_14_2*f[19]*f[21]*f[66]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_15_2*f[19]*f[21]*f[66]*f[68])/(6*U[0] - U[1]) + (14*f_14_2*sin2th*f[18]*f[20]*f[67]*f[68])/(6*U[0] - U[1]) + (14*f_15_2*sin2th*f[18]*f[20]*f[67]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_14_2*f[19]*f[20]*f[67]*f[68])/(6*U[0] - U[1]) + (14*cos2th*f_15_2*f[19]*f[20]*f[67]*f[68])/(6*U[0] - U[1]) - (14*cos2th*f_14_2*f[18]*f[21]*f[67]*f[68])/(6*U[0] - U[1]) - (14*cos2th*f_15_2*f[18]*f[21]*f[67]*f[68])/(6*U[0] - U[1]) + (14*f_14_2*sin2th*f[19]*f[21]*f[67]*f[68])/(6*U[0] - U[1]) + (14*f_15_2*sin2th*f[19]*f[21]*f[67]*f[68])/(6*U[0] - U[1]) - (14*f_14_2*sin2th*f[18]*f[20]*f[66]*f[69])/(6*U[0] - U[1]) - (14*f_15_2*sin2th*f[18]*f[20]*f[66]*f[69])/(6*U[0] - U[1]) - (14*cos2th*f_14_2*f[19]*f[20]*f[66]*f[69])/(6*U[0] - U[1]) - (14*cos2th*f_15_2*f[19]*f[20]*f[66]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_14_2*f[18]*f[21]*f[66]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_15_2*f[18]*f[21]*f[66]*f[69])/(6*U[0] - U[1]) - (14*f_14_2*sin2th*f[19]*f[21]*f[66]*f[69])/(6*U[0] - U[1]) - (14*f_15_2*sin2th*f[19]*f[21]*f[66]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_14_2*f[18]*f[20]*f[67]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_15_2*f[18]*f[20]*f[67]*f[69])/(6*U[0] - U[1]) - (14*f_14_2*sin2th*f[19]*f[20]*f[67]*f[69])/(6*U[0] - U[1]) - (14*f_15_2*sin2th*f[19]*f[20]*f[67]*f[69])/(6*U[0] - U[1]) + (14*f_14_2*sin2th*f[18]*f[21]*f[67]*f[69])/(6*U[0] - U[1]) + (14*f_15_2*sin2th*f[18]*f[21]*f[67]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_14_2*f[19]*f[21]*f[67]*f[69])/(6*U[0] - U[1]) + (14*cos2th*f_15_2*f[19]*f[21]*f[67]*f[69])/(6*U[0] - U[1]) - (2*cos2th*f_2_2*f[18]*f[20]*f[66]*f[68])/U[1] - (2*cos2th*f_3_2*f[18]*f[20]*f[66]*f[68])/U[1] + (2*f_2_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[1] + (2*f_3_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[1] - (2*f_2_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[1] - (2*f_3_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[1] - (2*cos2th*f_2_2*f[19]*f[21]*f[66]*f[68])/U[1] - (2*cos2th*f_3_2*f[19]*f[21]*f[66]*f[68])/U[1] - (2*f_2_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[1] - (2*f_3_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[1] - (2*cos2th*f_2_2*f[19]*f[20]*f[67]*f[68])/U[1] - (2*cos2th*f_3_2*f[19]*f[20]*f[67]*f[68])/U[1] + (2*cos2th*f_2_2*f[18]*f[21]*f[67]*f[68])/U[1] + (2*cos2th*f_3_2*f[18]*f[21]*f[67]*f[68])/U[1] - (2*f_2_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[1] - (2*f_3_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[1] + (2*f_2_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[1] + (2*f_3_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[1] + (2*cos2th*f_2_2*f[19]*f[20]*f[66]*f[69])/U[1] + (2*cos2th*f_3_2*f[19]*f[20]*f[66]*f[69])/U[1] - (2*cos2th*f_2_2*f[18]*f[21]*f[66]*f[69])/U[1] - (2*cos2th*f_3_2*f[18]*f[21]*f[66]*f[69])/U[1] + (2*f_2_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[1] + (2*f_3_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[1] - (2*cos2th*f_2_2*f[18]*f[20]*f[67]*f[69])/U[1] - (2*cos2th*f_3_2*f[18]*f[20]*f[67]*f[69])/U[1] + (2*f_2_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[1] + (2*f_3_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[1] - (2*f_2_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[1] - (2*f_3_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[1] - (2*cos2th*f_2_2*f[19]*f[21]*f[67]*f[69])/U[1] - (2*cos2th*f_3_2*f[19]*f[21]*f[67]*f[69])/U[1] - (3*cos2th*f_2_2*f[20]*f[22]*f[68]*f[70])/(2.*U[1]) - (3*cos2th*f_3_2*f[20]*f[22]*f[68]*f[70])/(2.*U[1]) + (3*f_2_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[1]) + (3*f_3_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[1]) - (3*f_2_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[1]) - (3*f_3_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[1]) - (3*cos2th*f_2_2*f[21]*f[23]*f[68]*f[70])/(2.*U[1]) - (3*cos2th*f_3_2*f[21]*f[23]*f[68]*f[70])/(2.*U[1]) - (3*f_2_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[1]) - (3*f_3_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[1]) - (3*cos2th*f_2_2*f[21]*f[22]*f[69]*f[70])/(2.*U[1]) - (3*cos2th*f_3_2*f[21]*f[22]*f[69]*f[70])/(2.*U[1]) + (3*cos2th*f_2_2*f[20]*f[23]*f[69]*f[70])/(2.*U[1]) + (3*cos2th*f_3_2*f[20]*f[23]*f[69]*f[70])/(2.*U[1]) - (3*f_2_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[1]) - (3*f_3_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[1]) + (3*f_2_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[1]) + (3*f_3_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_2_2*f[21]*f[22]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_3_2*f[21]*f[22]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_2_2*f[20]*f[23]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_3_2*f[20]*f[23]*f[68]*f[71])/(2.*U[1]) + (3*f_2_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[1]) + (3*f_3_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_2_2*f[20]*f[22]*f[69]*f[71])/(2.*U[1]) - (3*cos2th*f_3_2*f[20]*f[22]*f[69]*f[71])/(2.*U[1]) + (3*f_2_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[1]) + (3*f_3_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[1]) - (3*f_2_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[1]) - (3*f_3_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[1]) - (3*cos2th*f_2_2*f[21]*f[23]*f[69]*f[71])/(2.*U[1]) - (3*cos2th*f_3_2*f[21]*f[23]*f[69]*f[71])/(2.*U[1]) - (4*cos2th*f_2_2*f[22]*f[24]*f[70]*f[72])/(3.*U[1]) - (4*cos2th*f_3_2*f[22]*f[24]*f[70]*f[72])/(3.*U[1]) + (4*f_2_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[1]) + (4*f_3_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[1]) - (4*f_2_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[1]) - (4*f_3_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[1]) - (4*cos2th*f_2_2*f[23]*f[25]*f[70]*f[72])/(3.*U[1]) - (4*cos2th*f_3_2*f[23]*f[25]*f[70]*f[72])/(3.*U[1]) - (4*f_2_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[1]) - (4*f_3_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[1]) - (4*cos2th*f_2_2*f[23]*f[24]*f[71]*f[72])/(3.*U[1]) - (4*cos2th*f_3_2*f[23]*f[24]*f[71]*f[72])/(3.*U[1]) + (4*cos2th*f_2_2*f[22]*f[25]*f[71]*f[72])/(3.*U[1]) + (4*cos2th*f_3_2*f[22]*f[25]*f[71]*f[72])/(3.*U[1]) - (4*f_2_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[1]) - (4*f_3_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[1]) + (4*f_2_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[1]) + (4*f_3_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_2_2*f[23]*f[24]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_3_2*f[23]*f[24]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_2_2*f[22]*f[25]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_3_2*f[22]*f[25]*f[70]*f[73])/(3.*U[1]) + (4*f_2_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[1]) + (4*f_3_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_2_2*f[22]*f[24]*f[71]*f[73])/(3.*U[1]) - (4*cos2th*f_3_2*f[22]*f[24]*f[71]*f[73])/(3.*U[1]) + (4*f_2_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[1]) + (4*f_3_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[1]) - (4*f_2_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[1]) - (4*f_3_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[1]) - (4*cos2th*f_2_2*f[23]*f[25]*f[71]*f[73])/(3.*U[1]) - (4*cos2th*f_3_2*f[23]*f[25]*f[71]*f[73])/(3.*U[1]) - (5*cos2th*f_2_2*f[24]*f[26]*f[72]*f[74])/(4.*U[1]) - (5*cos2th*f_3_2*f[24]*f[26]*f[72]*f[74])/(4.*U[1]) + (5*f_2_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[1]) + (5*f_3_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[1]) - (5*f_2_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[1]) - (5*f_3_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[1]) - (5*cos2th*f_2_2*f[25]*f[27]*f[72]*f[74])/(4.*U[1]) - (5*cos2th*f_3_2*f[25]*f[27]*f[72]*f[74])/(4.*U[1]) - (5*f_2_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[1]) - (5*f_3_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[1]) - (5*cos2th*f_2_2*f[25]*f[26]*f[73]*f[74])/(4.*U[1]) - (5*cos2th*f_3_2*f[25]*f[26]*f[73]*f[74])/(4.*U[1]) + (5*cos2th*f_2_2*f[24]*f[27]*f[73]*f[74])/(4.*U[1]) + (5*cos2th*f_3_2*f[24]*f[27]*f[73]*f[74])/(4.*U[1]) - (5*f_2_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[1]) - (5*f_3_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[1]) + (5*f_2_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[1]) + (5*f_3_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_2_2*f[25]*f[26]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_3_2*f[25]*f[26]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_2_2*f[24]*f[27]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_3_2*f[24]*f[27]*f[72]*f[75])/(4.*U[1]) + (5*f_2_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[1]) + (5*f_3_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_2_2*f[24]*f[26]*f[73]*f[75])/(4.*U[1]) - (5*cos2th*f_3_2*f[24]*f[26]*f[73]*f[75])/(4.*U[1]) + (5*f_2_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[1]) + (5*f_3_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[1]) - (5*f_2_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[1]) - (5*f_3_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[1]) - (5*cos2th*f_2_2*f[25]*f[27]*f[73]*f[75])/(4.*U[1]) - (5*cos2th*f_3_2*f[25]*f[27]*f[73]*f[75])/(4.*U[1]) - (6*cos2th*f_2_2*f[26]*f[28]*f[74]*f[76])/(5.*U[1]) - (6*cos2th*f_3_2*f[26]*f[28]*f[74]*f[76])/(5.*U[1]) + (6*f_2_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[1]) + (6*f_3_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[1]) - (6*f_2_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[1]) - (6*f_3_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[1]) - (6*cos2th*f_2_2*f[27]*f[29]*f[74]*f[76])/(5.*U[1]) - (6*cos2th*f_3_2*f[27]*f[29]*f[74]*f[76])/(5.*U[1]) - (6*f_2_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[1]) - (6*f_3_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[1]) - (6*cos2th*f_2_2*f[27]*f[28]*f[75]*f[76])/(5.*U[1]) - (6*cos2th*f_3_2*f[27]*f[28]*f[75]*f[76])/(5.*U[1]) + (6*cos2th*f_2_2*f[26]*f[29]*f[75]*f[76])/(5.*U[1]) + (6*cos2th*f_3_2*f[26]*f[29]*f[75]*f[76])/(5.*U[1]) - (6*f_2_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[1]) - (6*f_3_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[1]) + (6*f_2_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[1]) + (6*f_3_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_2_2*f[27]*f[28]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_3_2*f[27]*f[28]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_2_2*f[26]*f[29]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_3_2*f[26]*f[29]*f[74]*f[77])/(5.*U[1]) + (6*f_2_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[1]) + (6*f_3_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_2_2*f[26]*f[28]*f[75]*f[77])/(5.*U[1]) - (6*cos2th*f_3_2*f[26]*f[28]*f[75]*f[77])/(5.*U[1]) + (6*f_2_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[1]) + (6*f_3_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[1]) - (6*f_2_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[1]) - (6*f_3_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[1]) - (6*cos2th*f_2_2*f[27]*f[29]*f[75]*f[77])/(5.*U[1]) - (6*cos2th*f_3_2*f[27]*f[29]*f[75]*f[77])/(5.*U[1]) - (7*cos2th*f_2_2*f[28]*f[30]*f[76]*f[78])/(6.*U[1]) - (7*cos2th*f_3_2*f[28]*f[30]*f[76]*f[78])/(6.*U[1]) + (7*f_2_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[1]) + (7*f_3_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[1]) - (7*f_2_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[1]) - (7*f_3_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[1]) - (7*cos2th*f_2_2*f[29]*f[31]*f[76]*f[78])/(6.*U[1]) - (7*cos2th*f_3_2*f[29]*f[31]*f[76]*f[78])/(6.*U[1]) - (7*f_2_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[1]) - (7*f_3_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[1]) - (7*cos2th*f_2_2*f[29]*f[30]*f[77]*f[78])/(6.*U[1]) - (7*cos2th*f_3_2*f[29]*f[30]*f[77]*f[78])/(6.*U[1]) + (7*cos2th*f_2_2*f[28]*f[31]*f[77]*f[78])/(6.*U[1]) + (7*cos2th*f_3_2*f[28]*f[31]*f[77]*f[78])/(6.*U[1]) - (7*f_2_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[1]) - (7*f_3_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[1]) + (7*f_2_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[1]) + (7*f_3_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_2_2*f[29]*f[30]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_3_2*f[29]*f[30]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_2_2*f[28]*f[31]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_3_2*f[28]*f[31]*f[76]*f[79])/(6.*U[1]) + (7*f_2_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[1]) + (7*f_3_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_2_2*f[28]*f[30]*f[77]*f[79])/(6.*U[1]) - (7*cos2th*f_3_2*f[28]*f[30]*f[77]*f[79])/(6.*U[1]) + (7*f_2_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[1]) + (7*f_3_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[1]) - (7*f_2_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[1]) - (7*f_3_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[1]) - (7*cos2th*f_2_2*f[29]*f[31]*f[77]*f[79])/(6.*U[1]) - (7*cos2th*f_3_2*f[29]*f[31]*f[77]*f[79])/(6.*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[0]*J[1]*((-2*cos2th*f_16_2*f[2]*f[4]*f[34]*f[36])/U[0] - (2*cos2th*f_17_2*f[2]*f[4]*f[34]*f[36])/U[0] - (2*f_16_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[0] - (2*f_17_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[0] + (2*f_16_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[0] + (2*f_17_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[0] - (2*cos2th*f_16_2*f[3]*f[5]*f[34]*f[36])/U[0] - (2*cos2th*f_17_2*f[3]*f[5]*f[34]*f[36])/U[0] + (2*f_16_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[0] + (2*f_17_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[0] - (2*cos2th*f_16_2*f[3]*f[4]*f[35]*f[36])/U[0] - (2*cos2th*f_17_2*f[3]*f[4]*f[35]*f[36])/U[0] + (2*cos2th*f_16_2*f[2]*f[5]*f[35]*f[36])/U[0] + (2*cos2th*f_17_2*f[2]*f[5]*f[35]*f[36])/U[0] + (2*f_16_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[0] + (2*f_17_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[0] - (2*f_16_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[0] - (2*f_17_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[0] + (2*cos2th*f_16_2*f[3]*f[4]*f[34]*f[37])/U[0] + (2*cos2th*f_17_2*f[3]*f[4]*f[34]*f[37])/U[0] - (2*cos2th*f_16_2*f[2]*f[5]*f[34]*f[37])/U[0] - (2*cos2th*f_17_2*f[2]*f[5]*f[34]*f[37])/U[0] - (2*f_16_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[0] - (2*f_17_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[0] - (2*cos2th*f_16_2*f[2]*f[4]*f[35]*f[37])/U[0] - (2*cos2th*f_17_2*f[2]*f[4]*f[35]*f[37])/U[0] - (2*f_16_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[0] - (2*f_17_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[0] + (2*f_16_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[0] + (2*f_17_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[0] - (2*cos2th*f_16_2*f[3]*f[5]*f[35]*f[37])/U[0] - (2*cos2th*f_17_2*f[3]*f[5]*f[35]*f[37])/U[0] - (3*cos2th*f_16_2*f[4]*f[6]*f[36]*f[38])/(2.*U[0]) - (3*cos2th*f_17_2*f[4]*f[6]*f[36]*f[38])/(2.*U[0]) - (3*f_16_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[0]) - (3*f_17_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[0]) + (3*f_16_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[0]) + (3*f_17_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[0]) - (3*cos2th*f_16_2*f[5]*f[7]*f[36]*f[38])/(2.*U[0]) - (3*cos2th*f_17_2*f[5]*f[7]*f[36]*f[38])/(2.*U[0]) + (3*f_16_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[0]) + (3*f_17_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[0]) - (3*cos2th*f_16_2*f[5]*f[6]*f[37]*f[38])/(2.*U[0]) - (3*cos2th*f_17_2*f[5]*f[6]*f[37]*f[38])/(2.*U[0]) + (3*cos2th*f_16_2*f[4]*f[7]*f[37]*f[38])/(2.*U[0]) + (3*cos2th*f_17_2*f[4]*f[7]*f[37]*f[38])/(2.*U[0]) + (3*f_16_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[0]) + (3*f_17_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[0]) - (3*f_16_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[0]) - (3*f_17_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_16_2*f[5]*f[6]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_17_2*f[5]*f[6]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_16_2*f[4]*f[7]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_17_2*f[4]*f[7]*f[36]*f[39])/(2.*U[0]) - (3*f_16_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[0]) - (3*f_17_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_16_2*f[4]*f[6]*f[37]*f[39])/(2.*U[0]) - (3*cos2th*f_17_2*f[4]*f[6]*f[37]*f[39])/(2.*U[0]) - (3*f_16_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[0]) - (3*f_17_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[0]) + (3*f_16_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[0]) + (3*f_17_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[0]) - (3*cos2th*f_16_2*f[5]*f[7]*f[37]*f[39])/(2.*U[0]) - (3*cos2th*f_17_2*f[5]*f[7]*f[37]*f[39])/(2.*U[0]) - (4*cos2th*f_16_2*f[6]*f[8]*f[38]*f[40])/(3.*U[0]) - (4*cos2th*f_17_2*f[6]*f[8]*f[38]*f[40])/(3.*U[0]) - (4*f_16_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[0]) - (4*f_17_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[0]) + (4*f_16_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[0]) + (4*f_17_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[0]) - (4*cos2th*f_16_2*f[7]*f[9]*f[38]*f[40])/(3.*U[0]) - (4*cos2th*f_17_2*f[7]*f[9]*f[38]*f[40])/(3.*U[0]) + (4*f_16_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[0]) + (4*f_17_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[0]) - (4*cos2th*f_16_2*f[7]*f[8]*f[39]*f[40])/(3.*U[0]) - (4*cos2th*f_17_2*f[7]*f[8]*f[39]*f[40])/(3.*U[0]) + (4*cos2th*f_16_2*f[6]*f[9]*f[39]*f[40])/(3.*U[0]) + (4*cos2th*f_17_2*f[6]*f[9]*f[39]*f[40])/(3.*U[0]) + (4*f_16_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[0]) + (4*f_17_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[0]) - (4*f_16_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[0]) - (4*f_17_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_16_2*f[7]*f[8]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_17_2*f[7]*f[8]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_16_2*f[6]*f[9]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_17_2*f[6]*f[9]*f[38]*f[41])/(3.*U[0]) - (4*f_16_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[0]) - (4*f_17_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_16_2*f[6]*f[8]*f[39]*f[41])/(3.*U[0]) - (4*cos2th*f_17_2*f[6]*f[8]*f[39]*f[41])/(3.*U[0]) - (4*f_16_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[0]) - (4*f_17_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[0]) + (4*f_16_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[0]) + (4*f_17_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[0]) - (4*cos2th*f_16_2*f[7]*f[9]*f[39]*f[41])/(3.*U[0]) - (4*cos2th*f_17_2*f[7]*f[9]*f[39]*f[41])/(3.*U[0]) - (5*cos2th*f_16_2*f[8]*f[10]*f[40]*f[42])/(4.*U[0]) - (5*cos2th*f_17_2*f[8]*f[10]*f[40]*f[42])/(4.*U[0]) - (5*f_16_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[0]) - (5*f_17_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[0]) + (5*f_16_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[0]) + (5*f_17_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[0]) - (5*cos2th*f_16_2*f[9]*f[11]*f[40]*f[42])/(4.*U[0]) - (5*cos2th*f_17_2*f[9]*f[11]*f[40]*f[42])/(4.*U[0]) + (5*f_16_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[0]) + (5*f_17_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[0]) - (5*cos2th*f_16_2*f[9]*f[10]*f[41]*f[42])/(4.*U[0]) - (5*cos2th*f_17_2*f[9]*f[10]*f[41]*f[42])/(4.*U[0]) + (5*cos2th*f_16_2*f[8]*f[11]*f[41]*f[42])/(4.*U[0]) + (5*cos2th*f_17_2*f[8]*f[11]*f[41]*f[42])/(4.*U[0]) + (5*f_16_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[0]) + (5*f_17_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[0]) - (5*f_16_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[0]) - (5*f_17_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_16_2*f[9]*f[10]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_17_2*f[9]*f[10]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_16_2*f[8]*f[11]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_17_2*f[8]*f[11]*f[40]*f[43])/(4.*U[0]) - (5*f_16_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[0]) - (5*f_17_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_16_2*f[8]*f[10]*f[41]*f[43])/(4.*U[0]) - (5*cos2th*f_17_2*f[8]*f[10]*f[41]*f[43])/(4.*U[0]) - (5*f_16_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[0]) - (5*f_17_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[0]) + (5*f_16_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[0]) + (5*f_17_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[0]) - (5*cos2th*f_16_2*f[9]*f[11]*f[41]*f[43])/(4.*U[0]) - (5*cos2th*f_17_2*f[9]*f[11]*f[41]*f[43])/(4.*U[0]) - (6*cos2th*f_16_2*f[10]*f[12]*f[42]*f[44])/(5.*U[0]) - (6*cos2th*f_17_2*f[10]*f[12]*f[42]*f[44])/(5.*U[0]) - (6*f_16_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[0]) - (6*f_17_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[0]) + (6*f_16_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[0]) + (6*f_17_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[0]) - (6*cos2th*f_16_2*f[11]*f[13]*f[42]*f[44])/(5.*U[0]) - (6*cos2th*f_17_2*f[11]*f[13]*f[42]*f[44])/(5.*U[0]) + (6*f_16_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[0]) + (6*f_17_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[0]) - (6*cos2th*f_16_2*f[11]*f[12]*f[43]*f[44])/(5.*U[0]) - (6*cos2th*f_17_2*f[11]*f[12]*f[43]*f[44])/(5.*U[0]) + (6*cos2th*f_16_2*f[10]*f[13]*f[43]*f[44])/(5.*U[0]) + (6*cos2th*f_17_2*f[10]*f[13]*f[43]*f[44])/(5.*U[0]) + (6*f_16_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[0]) + (6*f_17_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[0]) - (6*f_16_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[0]) - (6*f_17_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_16_2*f[11]*f[12]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_17_2*f[11]*f[12]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_16_2*f[10]*f[13]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_17_2*f[10]*f[13]*f[42]*f[45])/(5.*U[0]) - (6*f_16_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[0]) - (6*f_17_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_16_2*f[10]*f[12]*f[43]*f[45])/(5.*U[0]) - (6*cos2th*f_17_2*f[10]*f[12]*f[43]*f[45])/(5.*U[0]) - (6*f_16_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[0]) - (6*f_17_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[0]) + (6*f_16_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[0]) + (6*f_17_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[0]) - (6*cos2th*f_16_2*f[11]*f[13]*f[43]*f[45])/(5.*U[0]) - (6*cos2th*f_17_2*f[11]*f[13]*f[43]*f[45])/(5.*U[0]) - (7*cos2th*f_16_2*f[12]*f[14]*f[44]*f[46])/(6.*U[0]) - (7*cos2th*f_17_2*f[12]*f[14]*f[44]*f[46])/(6.*U[0]) - (7*f_16_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[0]) - (7*f_17_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[0]) + (7*f_16_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[0]) + (7*f_17_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[0]) - (7*cos2th*f_16_2*f[13]*f[15]*f[44]*f[46])/(6.*U[0]) - (7*cos2th*f_17_2*f[13]*f[15]*f[44]*f[46])/(6.*U[0]) + (7*f_16_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[0]) + (7*f_17_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[0]) - (7*cos2th*f_16_2*f[13]*f[14]*f[45]*f[46])/(6.*U[0]) - (7*cos2th*f_17_2*f[13]*f[14]*f[45]*f[46])/(6.*U[0]) + (7*cos2th*f_16_2*f[12]*f[15]*f[45]*f[46])/(6.*U[0]) + (7*cos2th*f_17_2*f[12]*f[15]*f[45]*f[46])/(6.*U[0]) + (7*f_16_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[0]) + (7*f_17_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[0]) - (7*f_16_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[0]) - (7*f_17_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_16_2*f[13]*f[14]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_17_2*f[13]*f[14]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_16_2*f[12]*f[15]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_17_2*f[12]*f[15]*f[44]*f[47])/(6.*U[0]) - (7*f_16_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[0]) - (7*f_17_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_16_2*f[12]*f[14]*f[45]*f[47])/(6.*U[0]) - (7*cos2th*f_17_2*f[12]*f[14]*f[45]*f[47])/(6.*U[0]) - (7*f_16_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[0]) - (7*f_17_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[0]) + (7*f_16_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[0]) + (7*f_17_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[0]) - (7*cos2th*f_16_2*f[13]*f[15]*f[45]*f[47])/(6.*U[0]) - (7*cos2th*f_17_2*f[13]*f[15]*f[45]*f[47])/(6.*U[0]) + (2*cos2th*f_18_2*f[0]*f[2]*f[32]*f[34])/U[1] + (2*cos2th*f_19_2*f[0]*f[2]*f[32]*f[34])/U[1] + (3*cos2th*f_20_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) + (3*cos2th*f_21_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) + (4*cos2th*f_22_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) + (4*cos2th*f_23_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) + (5*cos2th*f_24_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) + (5*cos2th*f_25_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) + (6*cos2th*f_26_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) + (6*cos2th*f_27_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) + (7*cos2th*f_28_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) + (7*cos2th*f_29_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] + (2*f_19_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] + (3*f_20_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) + (3*f_21_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) + (4*f_22_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) + (4*f_23_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) + (5*f_24_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) + (5*f_25_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) + (6*f_26_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) + (6*f_27_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) + (7*f_28_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) + (7*f_29_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] - (2*f_19_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] - (3*f_20_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) - (3*f_21_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) - (4*f_22_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) - (4*f_23_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) - (5*f_24_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) - (5*f_25_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) - (6*f_26_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) - (6*f_27_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) - (7*f_28_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) - (7*f_29_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) + (2*cos2th*f_18_2*f[1]*f[3]*f[32]*f[34])/U[1] + (2*cos2th*f_19_2*f[1]*f[3]*f[32]*f[34])/U[1] + (3*cos2th*f_20_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) + (3*cos2th*f_21_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) + (4*cos2th*f_22_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) + (4*cos2th*f_23_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) + (5*cos2th*f_24_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) + (5*cos2th*f_25_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) + (6*cos2th*f_26_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) + (6*cos2th*f_27_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) + (7*cos2th*f_28_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) + (7*cos2th*f_29_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] - (2*f_19_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] - (3*f_20_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) - (3*f_21_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) - (4*f_22_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) - (4*f_23_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) - (5*f_24_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) - (5*f_25_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) - (6*f_26_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) - (6*f_27_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) - (7*f_28_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) - (7*f_29_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) + (2*cos2th*f_18_2*f[1]*f[2]*f[33]*f[34])/U[1] + (2*cos2th*f_19_2*f[1]*f[2]*f[33]*f[34])/U[1] + (3*cos2th*f_20_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) + (3*cos2th*f_21_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) + (4*cos2th*f_22_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) + (4*cos2th*f_23_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) + (5*cos2th*f_24_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) + (5*cos2th*f_25_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) + (6*cos2th*f_26_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) + (6*cos2th*f_27_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) + (7*cos2th*f_28_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) + (7*cos2th*f_29_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) - (2*cos2th*f_18_2*f[0]*f[3]*f[33]*f[34])/U[1] - (2*cos2th*f_19_2*f[0]*f[3]*f[33]*f[34])/U[1] - (3*cos2th*f_20_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) - (3*cos2th*f_21_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) - (4*cos2th*f_22_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) - (4*cos2th*f_23_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) - (5*cos2th*f_24_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) - (5*cos2th*f_25_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) - (6*cos2th*f_26_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) - (6*cos2th*f_27_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) - (7*cos2th*f_28_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) - (7*cos2th*f_29_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] - (2*f_19_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] - (3*f_20_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) - (3*f_21_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) - (4*f_22_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) - (4*f_23_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) - (5*f_24_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) - (5*f_25_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) - (6*f_26_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) - (6*f_27_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) - (7*f_28_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) - (7*f_29_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] + (2*f_19_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] + (3*f_20_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) + (3*f_21_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) + (4*f_22_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) + (4*f_23_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) + (5*f_24_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) + (5*f_25_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) + (6*f_26_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) + (6*f_27_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) + (7*f_28_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) + (7*f_29_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_18_2*f[1]*f[2]*f[32]*f[35])/U[1] - (2*cos2th*f_19_2*f[1]*f[2]*f[32]*f[35])/U[1] - (3*cos2th*f_20_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) - (3*cos2th*f_21_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) - (4*cos2th*f_22_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) - (4*cos2th*f_23_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) - (5*cos2th*f_24_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) - (5*cos2th*f_25_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) - (6*cos2th*f_26_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) - (6*cos2th*f_27_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) - (7*cos2th*f_28_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) - (7*cos2th*f_29_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[0]*f[3]*f[32]*f[35])/U[1] + (2*cos2th*f_19_2*f[0]*f[3]*f[32]*f[35])/U[1] + (3*cos2th*f_20_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) + (3*cos2th*f_21_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) + (4*cos2th*f_22_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) + (4*cos2th*f_23_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) + (5*cos2th*f_24_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) + (5*cos2th*f_25_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) + (6*cos2th*f_26_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) + (6*cos2th*f_27_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) + (7*cos2th*f_28_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) + (7*cos2th*f_29_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) + (2*f_18_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] + (2*f_19_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] + (3*f_20_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) + (3*f_21_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) + (4*f_22_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) + (4*f_23_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) + (5*f_24_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) + (5*f_25_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) + (6*f_26_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) + (6*f_27_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) + (7*f_28_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) + (7*f_29_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[0]*f[2]*f[33]*f[35])/U[1] + (2*cos2th*f_19_2*f[0]*f[2]*f[33]*f[35])/U[1] + (3*cos2th*f_20_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) + (3*cos2th*f_21_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) + (4*cos2th*f_22_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) + (4*cos2th*f_23_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) + (5*cos2th*f_24_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) + (5*cos2th*f_25_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) + (6*cos2th*f_26_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) + (6*cos2th*f_27_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) + (7*cos2th*f_28_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) + (7*cos2th*f_29_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) + (2*f_18_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] + (2*f_19_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] + (3*f_20_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) + (3*f_21_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) + (4*f_22_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) + (4*f_23_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) + (5*f_24_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) + (5*f_25_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) + (6*f_26_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) + (6*f_27_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) + (7*f_28_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) + (7*f_29_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) - (2*f_18_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] - (2*f_19_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] - (3*f_20_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) - (3*f_21_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) - (4*f_22_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) - (4*f_23_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) - (5*f_24_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) - (5*f_25_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) - (6*f_26_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) - (6*f_27_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) - (7*f_28_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) - (7*f_29_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[1]*f[3]*f[33]*f[35])/U[1] + (2*cos2th*f_19_2*f[1]*f[3]*f[33]*f[35])/U[1] + (3*cos2th*f_20_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) + (3*cos2th*f_21_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) + (4*cos2th*f_22_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) + (4*cos2th*f_23_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) + (5*cos2th*f_24_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) + (5*cos2th*f_25_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) + (6*cos2th*f_26_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) + (6*cos2th*f_27_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) + (7*cos2th*f_28_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (7*cos2th*f_29_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (14*cos2th*f_18_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_19_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*f_18_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*f_19_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + U[1]) - (14*f_18_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + U[1]) - (14*f_19_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_18_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_19_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + U[1]) - (14*f_18_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*f_19_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_18_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_19_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*cos2th*f_18_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*cos2th*f_19_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*f_18_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*f_19_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + U[1]) + (14*f_18_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*f_19_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + U[1]) - (14*cos2th*f_18_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + U[1]) - (14*cos2th*f_19_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_18_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_19_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*f_18_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*f_19_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_18_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_19_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*f_18_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*f_19_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + U[1]) - (14*f_18_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + U[1]) - (14*f_19_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_18_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_19_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + U[1]) + (12*cos2th*f_18_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_19_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*f_18_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*f_19_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + U[1]) - (12*f_18_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + U[1]) - (12*f_19_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_18_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_19_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + U[1]) - (12*f_18_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*f_19_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_18_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_19_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*cos2th*f_18_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*cos2th*f_19_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*f_18_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*f_19_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + U[1]) + (12*f_18_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*f_19_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + U[1]) - (12*cos2th*f_18_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + U[1]) - (12*cos2th*f_19_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_18_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_19_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*f_18_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*f_19_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_18_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_19_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*f_18_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*f_19_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + U[1]) - (12*f_18_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + U[1]) - (12*f_19_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_18_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_19_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + U[1]) + (10*cos2th*f_18_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_19_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*f_18_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*f_19_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + U[1]) - (10*f_18_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + U[1]) - (10*f_19_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_18_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_19_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + U[1]) - (10*f_18_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*f_19_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_18_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_19_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*cos2th*f_18_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*cos2th*f_19_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*f_18_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*f_19_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + U[1]) + (10*f_18_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*f_19_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + U[1]) - (10*cos2th*f_18_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + U[1]) - (10*cos2th*f_19_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_18_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_19_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*f_18_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*f_19_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_18_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_19_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*f_18_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*f_19_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + U[1]) - (10*f_18_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + U[1]) - (10*f_19_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_18_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_19_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + U[1]) + (8*cos2th*f_18_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_19_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*f_18_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*f_19_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + U[1]) - (8*f_18_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + U[1]) - (8*f_19_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_18_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_19_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + U[1]) - (8*f_18_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*f_19_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_18_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_19_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*cos2th*f_18_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*cos2th*f_19_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*f_18_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*f_19_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + U[1]) + (8*f_18_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*f_19_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + U[1]) - (8*cos2th*f_18_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + U[1]) - (8*cos2th*f_19_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_18_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_19_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*f_18_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*f_19_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_18_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_19_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*f_18_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*f_19_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + U[1]) - (8*f_18_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + U[1]) - (8*f_19_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_18_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_19_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + U[1]) + (6*cos2th*f_18_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_19_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*f_18_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*f_19_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + U[1]) - (6*f_18_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + U[1]) - (6*f_19_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_18_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_19_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + U[1]) - (6*f_18_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*f_19_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_18_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_19_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*cos2th*f_18_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*cos2th*f_19_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*f_18_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*f_19_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + U[1]) + (6*f_18_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*f_19_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + U[1]) - (6*cos2th*f_18_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + U[1]) - (6*cos2th*f_19_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_18_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_19_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*f_18_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*f_19_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_18_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_19_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*f_18_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*f_19_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + U[1]) - (6*f_18_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + U[1]) - (6*f_19_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_18_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_19_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + U[1]) + (21*cos2th*f_20_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_21_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*f_20_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*f_21_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_20_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_21_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_20_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_21_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_20_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_21_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_20_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_21_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_20_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_21_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_20_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_21_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 2*U[1]) + (21*f_20_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_21_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_20_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_21_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_20_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_21_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_20_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_21_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_20_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_21_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_20_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_21_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 2*U[1]) - (21*f_20_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 2*U[1]) - (21*f_21_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_20_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_21_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (18*cos2th*f_20_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_21_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*f_20_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*f_21_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_20_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_21_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_20_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_21_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_20_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_21_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_20_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_21_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_20_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_21_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_20_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_21_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 2*U[1]) + (18*f_20_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_21_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_20_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_21_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_20_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_21_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_20_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_21_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_20_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_21_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_20_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_21_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 2*U[1]) - (18*f_20_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 2*U[1]) - (18*f_21_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_20_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_21_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (15*cos2th*f_20_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_21_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*f_20_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*f_21_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_20_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_21_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_20_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_21_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_20_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_21_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_20_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_21_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_20_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_21_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_20_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_21_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 2*U[1]) + (15*f_20_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_21_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_20_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_21_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_20_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_21_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_20_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_21_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_20_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_21_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_20_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_21_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 2*U[1]) - (15*f_20_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 2*U[1]) - (15*f_21_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_20_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_21_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (12*cos2th*f_20_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_21_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*f_20_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*f_21_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_20_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_21_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_20_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_21_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_20_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_21_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_20_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_21_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_20_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_21_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_20_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_21_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 2*U[1]) + (12*f_20_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_21_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_20_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_21_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_20_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_21_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_20_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_21_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_20_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_21_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_20_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_21_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 2*U[1]) - (12*f_20_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 2*U[1]) - (12*f_21_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_20_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_21_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (6*cos2th*f_20_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_21_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*f_20_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*f_21_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 2*U[1]) - (6*f_20_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 2*U[1]) - (6*f_21_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_20_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_21_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 2*U[1]) - (6*f_20_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*f_21_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_20_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_21_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*cos2th*f_20_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*cos2th*f_21_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*f_20_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*f_21_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 2*U[1]) + (6*f_20_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*f_21_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 2*U[1]) - (6*cos2th*f_20_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 2*U[1]) - (6*cos2th*f_21_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_20_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_21_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*f_20_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*f_21_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_20_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_21_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*f_20_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*f_21_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 2*U[1]) - (6*f_20_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 2*U[1]) - (6*f_21_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_20_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_21_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 2*U[1]) + (28*cos2th*f_22_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_23_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*f_22_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*f_23_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_22_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_23_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_22_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_23_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_22_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_23_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_22_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_23_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_22_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_23_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_22_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_23_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 3*U[1]) + (28*f_22_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_23_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_22_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_23_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_22_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_23_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_22_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_23_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_22_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_23_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_22_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_23_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 3*U[1]) - (28*f_22_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 3*U[1]) - (28*f_23_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_22_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_23_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (24*cos2th*f_22_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_23_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*f_22_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*f_23_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_22_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_23_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_22_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_23_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_22_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_23_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_22_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_23_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_22_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_23_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_22_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_23_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 3*U[1]) + (24*f_22_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_23_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_22_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_23_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_22_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_23_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_22_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_23_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_22_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_23_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_22_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_23_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 3*U[1]) - (24*f_22_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 3*U[1]) - (24*f_23_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_22_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_23_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (20*cos2th*f_22_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_23_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*f_22_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*f_23_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_22_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_23_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_22_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_23_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_22_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_23_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_22_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_23_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_22_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_23_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_22_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_23_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 3*U[1]) + (20*f_22_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_23_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_22_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_23_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_22_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_23_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_22_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_23_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_22_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_23_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_22_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_23_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 3*U[1]) - (20*f_22_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 3*U[1]) - (20*f_23_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_22_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_23_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (12*cos2th*f_22_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_23_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*f_22_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*f_23_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_22_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_23_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_22_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_23_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_22_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_23_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_22_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_23_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_22_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_23_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_22_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_23_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 3*U[1]) + (12*f_22_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_23_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_22_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_23_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_22_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_23_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_22_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_23_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_22_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_23_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_22_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_23_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 3*U[1]) - (12*f_22_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 3*U[1]) - (12*f_23_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_22_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_23_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (8*cos2th*f_22_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_23_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*f_22_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*f_23_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 3*U[1]) - (8*f_22_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 3*U[1]) - (8*f_23_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_22_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_23_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 3*U[1]) - (8*f_22_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*f_23_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_22_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_23_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*cos2th*f_22_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*cos2th*f_23_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*f_22_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*f_23_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 3*U[1]) + (8*f_22_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*f_23_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 3*U[1]) - (8*cos2th*f_22_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 3*U[1]) - (8*cos2th*f_23_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_22_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_23_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*f_22_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*f_23_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_22_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_23_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*f_22_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*f_23_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 3*U[1]) - (8*f_22_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 3*U[1]) - (8*f_23_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_22_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_23_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 3*U[1]) + (35*cos2th*f_24_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_25_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*f_24_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*f_25_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_24_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_25_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_24_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_25_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_24_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_25_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_24_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_25_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_24_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_25_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_24_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_25_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 4*U[1]) + (35*f_24_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_25_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_24_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_25_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_24_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_25_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_24_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_25_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_24_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_25_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_24_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_25_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 4*U[1]) - (35*f_24_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 4*U[1]) - (35*f_25_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_24_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_25_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (30*cos2th*f_24_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_25_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*f_24_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*f_25_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_24_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_25_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_24_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_25_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_24_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_25_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_24_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_25_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_24_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_25_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_24_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_25_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 4*U[1]) + (30*f_24_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_25_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_24_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_25_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_24_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_25_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_24_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_25_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_24_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_25_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_24_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_25_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 4*U[1]) - (30*f_24_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 4*U[1]) - (30*f_25_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_24_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_25_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (20*cos2th*f_24_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_25_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*f_24_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*f_25_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_24_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_25_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_24_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_25_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_24_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_25_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_24_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_25_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_24_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_25_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_24_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_25_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 4*U[1]) + (20*f_24_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_25_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_24_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_25_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_24_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_25_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_24_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_25_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_24_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_25_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_24_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_25_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 4*U[1]) - (20*f_24_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 4*U[1]) - (20*f_25_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_24_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_25_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (15*cos2th*f_24_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_25_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*f_24_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*f_25_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_24_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_25_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_24_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_25_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_24_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_25_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_24_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_25_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_24_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_25_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_24_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_25_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 4*U[1]) + (15*f_24_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_25_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_24_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_25_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_24_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_25_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_24_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_25_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_24_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_25_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_24_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_25_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 4*U[1]) - (15*f_24_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 4*U[1]) - (15*f_25_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_24_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_25_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (10*cos2th*f_24_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_25_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*f_24_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*f_25_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 4*U[1]) - (10*f_24_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 4*U[1]) - (10*f_25_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_24_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_25_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 4*U[1]) - (10*f_24_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*f_25_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_24_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_25_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*cos2th*f_24_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*cos2th*f_25_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*f_24_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*f_25_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 4*U[1]) + (10*f_24_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*f_25_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 4*U[1]) - (10*cos2th*f_24_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 4*U[1]) - (10*cos2th*f_25_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_24_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_25_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*f_24_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*f_25_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_24_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_25_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*f_24_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*f_25_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 4*U[1]) - (10*f_24_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 4*U[1]) - (10*f_25_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_24_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_25_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 4*U[1]) + (42*cos2th*f_26_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_27_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*f_26_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*f_27_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_26_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_27_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_26_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_27_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_26_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_27_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_26_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_27_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_26_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_27_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_26_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_27_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 5*U[1]) + (42*f_26_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_27_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_26_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_27_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_26_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_27_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_26_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_27_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_26_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_27_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_26_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_27_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 5*U[1]) - (42*f_26_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 5*U[1]) - (42*f_27_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_26_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_27_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (30*cos2th*f_26_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_27_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*f_26_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*f_27_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_26_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_27_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_26_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_27_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_26_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_27_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_26_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_27_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_26_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_27_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_26_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_27_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 5*U[1]) + (30*f_26_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_27_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_26_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_27_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_26_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_27_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_26_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_27_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_26_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_27_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_26_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_27_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 5*U[1]) - (30*f_26_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 5*U[1]) - (30*f_27_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_26_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_27_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (24*cos2th*f_26_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_27_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*f_26_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*f_27_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_26_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_27_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_26_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_27_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_26_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_27_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_26_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_27_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_26_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_27_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_26_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_27_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 5*U[1]) + (24*f_26_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_27_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_26_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_27_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_26_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_27_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_26_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_27_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_26_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_27_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_26_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_27_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 5*U[1]) - (24*f_26_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 5*U[1]) - (24*f_27_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_26_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_27_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (18*cos2th*f_26_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_27_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*f_26_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*f_27_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_26_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_27_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_26_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_27_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_26_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_27_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_26_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_27_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_26_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_27_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_26_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_27_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 5*U[1]) + (18*f_26_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_27_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_26_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_27_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_26_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_27_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_26_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_27_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_26_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_27_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_26_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_27_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 5*U[1]) - (18*f_26_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 5*U[1]) - (18*f_27_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_26_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_27_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (12*cos2th*f_26_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_27_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*f_26_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*f_27_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 5*U[1]) - (12*f_26_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 5*U[1]) - (12*f_27_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_26_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_27_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 5*U[1]) - (12*f_26_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*f_27_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_26_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_27_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*cos2th*f_26_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*cos2th*f_27_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*f_26_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*f_27_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 5*U[1]) + (12*f_26_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*f_27_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 5*U[1]) - (12*cos2th*f_26_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 5*U[1]) - (12*cos2th*f_27_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_26_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_27_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*f_26_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*f_27_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_26_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_27_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*f_26_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*f_27_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 5*U[1]) - (12*f_26_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 5*U[1]) - (12*f_27_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_26_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_27_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 5*U[1]) + (42*cos2th*f_28_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_29_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*f_28_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*f_29_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_28_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_29_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_28_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_29_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_28_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_29_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_28_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_29_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_28_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_29_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_28_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_29_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 6*U[1]) + (42*f_28_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_29_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_28_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_29_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_28_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_29_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_28_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_29_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_28_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_29_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_28_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_29_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 6*U[1]) - (42*f_28_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 6*U[1]) - (42*f_29_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_28_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_29_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (35*cos2th*f_28_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_29_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*f_28_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*f_29_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_28_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_29_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_28_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_29_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_28_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_29_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_28_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_29_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_28_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_29_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_28_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_29_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 6*U[1]) + (35*f_28_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_29_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_28_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_29_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_28_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_29_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_28_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_29_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_28_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_29_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_28_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_29_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 6*U[1]) - (35*f_28_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 6*U[1]) - (35*f_29_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_28_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_29_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (28*cos2th*f_28_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_29_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*f_28_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*f_29_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_28_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_29_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_28_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_29_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_28_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_29_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_28_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_29_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_28_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_29_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_28_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_29_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 6*U[1]) + (28*f_28_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_29_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_28_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_29_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_28_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_29_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_28_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_29_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_28_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_29_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_28_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_29_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 6*U[1]) - (28*f_28_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 6*U[1]) - (28*f_29_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_28_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_29_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (21*cos2th*f_28_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_29_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*f_28_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*f_29_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_28_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_29_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_28_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_29_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_28_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_29_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_28_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_29_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_28_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_29_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_28_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_29_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 6*U[1]) + (21*f_28_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_29_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_28_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_29_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_28_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_29_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_28_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_29_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_28_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_29_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_28_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_29_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 6*U[1]) - (21*f_28_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 6*U[1]) - (21*f_29_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_28_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_29_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (14*cos2th*f_28_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_29_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*f_28_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*f_29_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 6*U[1]) - (14*f_28_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 6*U[1]) - (14*f_29_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_28_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_29_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 6*U[1]) - (14*f_28_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*f_29_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_28_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_29_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*cos2th*f_28_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*cos2th*f_29_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*f_28_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*f_29_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 6*U[1]) + (14*f_28_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*f_29_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 6*U[1]) - (14*cos2th*f_28_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 6*U[1]) - (14*cos2th*f_29_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_28_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_29_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*f_28_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*f_29_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_28_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_29_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*f_28_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*f_29_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 6*U[1]) - (14*f_28_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 6*U[1]) - (14*f_29_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_28_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_29_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 6*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[0]*J[1]*((-2*cos2th*f_18_2*f[2]*f[4]*f[34]*f[36])/U[0] - (2*cos2th*f_19_2*f[2]*f[4]*f[34]*f[36])/U[0] - (2*f_18_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[0] - (2*f_19_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[0] + (2*f_18_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[0] + (2*f_19_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[0] - (2*cos2th*f_18_2*f[3]*f[5]*f[34]*f[36])/U[0] - (2*cos2th*f_19_2*f[3]*f[5]*f[34]*f[36])/U[0] + (2*f_18_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[0] + (2*f_19_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[0] - (2*cos2th*f_18_2*f[3]*f[4]*f[35]*f[36])/U[0] - (2*cos2th*f_19_2*f[3]*f[4]*f[35]*f[36])/U[0] + (2*cos2th*f_18_2*f[2]*f[5]*f[35]*f[36])/U[0] + (2*cos2th*f_19_2*f[2]*f[5]*f[35]*f[36])/U[0] + (2*f_18_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[0] + (2*f_19_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[0] - (2*f_18_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[0] - (2*f_19_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[0] + (2*cos2th*f_18_2*f[3]*f[4]*f[34]*f[37])/U[0] + (2*cos2th*f_19_2*f[3]*f[4]*f[34]*f[37])/U[0] - (2*cos2th*f_18_2*f[2]*f[5]*f[34]*f[37])/U[0] - (2*cos2th*f_19_2*f[2]*f[5]*f[34]*f[37])/U[0] - (2*f_18_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[0] - (2*f_19_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[0] - (2*cos2th*f_18_2*f[2]*f[4]*f[35]*f[37])/U[0] - (2*cos2th*f_19_2*f[2]*f[4]*f[35]*f[37])/U[0] - (2*f_18_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[0] - (2*f_19_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[0] + (2*f_18_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[0] + (2*f_19_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[0] - (2*cos2th*f_18_2*f[3]*f[5]*f[35]*f[37])/U[0] - (2*cos2th*f_19_2*f[3]*f[5]*f[35]*f[37])/U[0] - (3*cos2th*f_18_2*f[4]*f[6]*f[36]*f[38])/(2.*U[0]) - (3*cos2th*f_19_2*f[4]*f[6]*f[36]*f[38])/(2.*U[0]) - (3*f_18_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[0]) - (3*f_19_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[0]) + (3*f_18_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[0]) + (3*f_19_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[0]) - (3*cos2th*f_18_2*f[5]*f[7]*f[36]*f[38])/(2.*U[0]) - (3*cos2th*f_19_2*f[5]*f[7]*f[36]*f[38])/(2.*U[0]) + (3*f_18_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[0]) + (3*f_19_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[0]) - (3*cos2th*f_18_2*f[5]*f[6]*f[37]*f[38])/(2.*U[0]) - (3*cos2th*f_19_2*f[5]*f[6]*f[37]*f[38])/(2.*U[0]) + (3*cos2th*f_18_2*f[4]*f[7]*f[37]*f[38])/(2.*U[0]) + (3*cos2th*f_19_2*f[4]*f[7]*f[37]*f[38])/(2.*U[0]) + (3*f_18_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[0]) + (3*f_19_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[0]) - (3*f_18_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[0]) - (3*f_19_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_18_2*f[5]*f[6]*f[36]*f[39])/(2.*U[0]) + (3*cos2th*f_19_2*f[5]*f[6]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_18_2*f[4]*f[7]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_19_2*f[4]*f[7]*f[36]*f[39])/(2.*U[0]) - (3*f_18_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[0]) - (3*f_19_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[0]) - (3*cos2th*f_18_2*f[4]*f[6]*f[37]*f[39])/(2.*U[0]) - (3*cos2th*f_19_2*f[4]*f[6]*f[37]*f[39])/(2.*U[0]) - (3*f_18_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[0]) - (3*f_19_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[0]) + (3*f_18_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[0]) + (3*f_19_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[0]) - (3*cos2th*f_18_2*f[5]*f[7]*f[37]*f[39])/(2.*U[0]) - (3*cos2th*f_19_2*f[5]*f[7]*f[37]*f[39])/(2.*U[0]) - (4*cos2th*f_18_2*f[6]*f[8]*f[38]*f[40])/(3.*U[0]) - (4*cos2th*f_19_2*f[6]*f[8]*f[38]*f[40])/(3.*U[0]) - (4*f_18_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[0]) - (4*f_19_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[0]) + (4*f_18_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[0]) + (4*f_19_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[0]) - (4*cos2th*f_18_2*f[7]*f[9]*f[38]*f[40])/(3.*U[0]) - (4*cos2th*f_19_2*f[7]*f[9]*f[38]*f[40])/(3.*U[0]) + (4*f_18_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[0]) + (4*f_19_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[0]) - (4*cos2th*f_18_2*f[7]*f[8]*f[39]*f[40])/(3.*U[0]) - (4*cos2th*f_19_2*f[7]*f[8]*f[39]*f[40])/(3.*U[0]) + (4*cos2th*f_18_2*f[6]*f[9]*f[39]*f[40])/(3.*U[0]) + (4*cos2th*f_19_2*f[6]*f[9]*f[39]*f[40])/(3.*U[0]) + (4*f_18_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[0]) + (4*f_19_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[0]) - (4*f_18_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[0]) - (4*f_19_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_18_2*f[7]*f[8]*f[38]*f[41])/(3.*U[0]) + (4*cos2th*f_19_2*f[7]*f[8]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_18_2*f[6]*f[9]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_19_2*f[6]*f[9]*f[38]*f[41])/(3.*U[0]) - (4*f_18_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[0]) - (4*f_19_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[0]) - (4*cos2th*f_18_2*f[6]*f[8]*f[39]*f[41])/(3.*U[0]) - (4*cos2th*f_19_2*f[6]*f[8]*f[39]*f[41])/(3.*U[0]) - (4*f_18_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[0]) - (4*f_19_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[0]) + (4*f_18_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[0]) + (4*f_19_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[0]) - (4*cos2th*f_18_2*f[7]*f[9]*f[39]*f[41])/(3.*U[0]) - (4*cos2th*f_19_2*f[7]*f[9]*f[39]*f[41])/(3.*U[0]) - (5*cos2th*f_18_2*f[8]*f[10]*f[40]*f[42])/(4.*U[0]) - (5*cos2th*f_19_2*f[8]*f[10]*f[40]*f[42])/(4.*U[0]) - (5*f_18_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[0]) - (5*f_19_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[0]) + (5*f_18_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[0]) + (5*f_19_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[0]) - (5*cos2th*f_18_2*f[9]*f[11]*f[40]*f[42])/(4.*U[0]) - (5*cos2th*f_19_2*f[9]*f[11]*f[40]*f[42])/(4.*U[0]) + (5*f_18_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[0]) + (5*f_19_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[0]) - (5*cos2th*f_18_2*f[9]*f[10]*f[41]*f[42])/(4.*U[0]) - (5*cos2th*f_19_2*f[9]*f[10]*f[41]*f[42])/(4.*U[0]) + (5*cos2th*f_18_2*f[8]*f[11]*f[41]*f[42])/(4.*U[0]) + (5*cos2th*f_19_2*f[8]*f[11]*f[41]*f[42])/(4.*U[0]) + (5*f_18_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[0]) + (5*f_19_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[0]) - (5*f_18_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[0]) - (5*f_19_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_18_2*f[9]*f[10]*f[40]*f[43])/(4.*U[0]) + (5*cos2th*f_19_2*f[9]*f[10]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_18_2*f[8]*f[11]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_19_2*f[8]*f[11]*f[40]*f[43])/(4.*U[0]) - (5*f_18_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[0]) - (5*f_19_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[0]) - (5*cos2th*f_18_2*f[8]*f[10]*f[41]*f[43])/(4.*U[0]) - (5*cos2th*f_19_2*f[8]*f[10]*f[41]*f[43])/(4.*U[0]) - (5*f_18_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[0]) - (5*f_19_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[0]) + (5*f_18_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[0]) + (5*f_19_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[0]) - (5*cos2th*f_18_2*f[9]*f[11]*f[41]*f[43])/(4.*U[0]) - (5*cos2th*f_19_2*f[9]*f[11]*f[41]*f[43])/(4.*U[0]) - (6*cos2th*f_18_2*f[10]*f[12]*f[42]*f[44])/(5.*U[0]) - (6*cos2th*f_19_2*f[10]*f[12]*f[42]*f[44])/(5.*U[0]) - (6*f_18_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[0]) - (6*f_19_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[0]) + (6*f_18_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[0]) + (6*f_19_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[0]) - (6*cos2th*f_18_2*f[11]*f[13]*f[42]*f[44])/(5.*U[0]) - (6*cos2th*f_19_2*f[11]*f[13]*f[42]*f[44])/(5.*U[0]) + (6*f_18_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[0]) + (6*f_19_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[0]) - (6*cos2th*f_18_2*f[11]*f[12]*f[43]*f[44])/(5.*U[0]) - (6*cos2th*f_19_2*f[11]*f[12]*f[43]*f[44])/(5.*U[0]) + (6*cos2th*f_18_2*f[10]*f[13]*f[43]*f[44])/(5.*U[0]) + (6*cos2th*f_19_2*f[10]*f[13]*f[43]*f[44])/(5.*U[0]) + (6*f_18_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[0]) + (6*f_19_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[0]) - (6*f_18_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[0]) - (6*f_19_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_18_2*f[11]*f[12]*f[42]*f[45])/(5.*U[0]) + (6*cos2th*f_19_2*f[11]*f[12]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_18_2*f[10]*f[13]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_19_2*f[10]*f[13]*f[42]*f[45])/(5.*U[0]) - (6*f_18_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[0]) - (6*f_19_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[0]) - (6*cos2th*f_18_2*f[10]*f[12]*f[43]*f[45])/(5.*U[0]) - (6*cos2th*f_19_2*f[10]*f[12]*f[43]*f[45])/(5.*U[0]) - (6*f_18_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[0]) - (6*f_19_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[0]) + (6*f_18_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[0]) + (6*f_19_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[0]) - (6*cos2th*f_18_2*f[11]*f[13]*f[43]*f[45])/(5.*U[0]) - (6*cos2th*f_19_2*f[11]*f[13]*f[43]*f[45])/(5.*U[0]) - (7*cos2th*f_18_2*f[12]*f[14]*f[44]*f[46])/(6.*U[0]) - (7*cos2th*f_19_2*f[12]*f[14]*f[44]*f[46])/(6.*U[0]) - (7*f_18_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[0]) - (7*f_19_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[0]) + (7*f_18_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[0]) + (7*f_19_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[0]) - (7*cos2th*f_18_2*f[13]*f[15]*f[44]*f[46])/(6.*U[0]) - (7*cos2th*f_19_2*f[13]*f[15]*f[44]*f[46])/(6.*U[0]) + (7*f_18_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[0]) + (7*f_19_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[0]) - (7*cos2th*f_18_2*f[13]*f[14]*f[45]*f[46])/(6.*U[0]) - (7*cos2th*f_19_2*f[13]*f[14]*f[45]*f[46])/(6.*U[0]) + (7*cos2th*f_18_2*f[12]*f[15]*f[45]*f[46])/(6.*U[0]) + (7*cos2th*f_19_2*f[12]*f[15]*f[45]*f[46])/(6.*U[0]) + (7*f_18_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[0]) + (7*f_19_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[0]) - (7*f_18_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[0]) - (7*f_19_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_18_2*f[13]*f[14]*f[44]*f[47])/(6.*U[0]) + (7*cos2th*f_19_2*f[13]*f[14]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_18_2*f[12]*f[15]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_19_2*f[12]*f[15]*f[44]*f[47])/(6.*U[0]) - (7*f_18_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[0]) - (7*f_19_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[0]) - (7*cos2th*f_18_2*f[12]*f[14]*f[45]*f[47])/(6.*U[0]) - (7*cos2th*f_19_2*f[12]*f[14]*f[45]*f[47])/(6.*U[0]) - (7*f_18_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[0]) - (7*f_19_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[0]) + (7*f_18_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[0]) + (7*f_19_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[0]) - (7*cos2th*f_18_2*f[13]*f[15]*f[45]*f[47])/(6.*U[0]) - (7*cos2th*f_19_2*f[13]*f[15]*f[45]*f[47])/(6.*U[0]) + (2*cos2th*f_20_2*f[0]*f[2]*f[32]*f[34])/U[1] + (2*cos2th*f_21_2*f[0]*f[2]*f[32]*f[34])/U[1] + (3*cos2th*f_22_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) + (3*cos2th*f_23_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) + (4*cos2th*f_24_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) + (4*cos2th*f_25_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) + (5*cos2th*f_26_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) + (5*cos2th*f_27_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) + (6*cos2th*f_28_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) + (6*cos2th*f_29_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) + (7*cos2th*f_30_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) + (7*cos2th*f_31_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] + (2*f_21_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] + (3*f_22_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) + (3*f_23_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) + (4*f_24_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) + (4*f_25_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) + (5*f_26_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) + (5*f_27_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) + (6*f_28_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) + (6*f_29_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) + (7*f_30_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) + (7*f_31_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] - (2*f_21_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] - (3*f_22_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) - (3*f_23_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) - (4*f_24_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) - (4*f_25_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) - (5*f_26_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) - (5*f_27_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) - (6*f_28_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) - (6*f_29_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) - (7*f_30_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) - (7*f_31_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) + (2*cos2th*f_20_2*f[1]*f[3]*f[32]*f[34])/U[1] + (2*cos2th*f_21_2*f[1]*f[3]*f[32]*f[34])/U[1] + (3*cos2th*f_22_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) + (3*cos2th*f_23_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) + (4*cos2th*f_24_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) + (4*cos2th*f_25_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) + (5*cos2th*f_26_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) + (5*cos2th*f_27_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) + (6*cos2th*f_28_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) + (6*cos2th*f_29_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) + (7*cos2th*f_30_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) + (7*cos2th*f_31_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] - (2*f_21_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] - (3*f_22_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) - (3*f_23_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) - (4*f_24_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) - (4*f_25_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) - (5*f_26_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) - (5*f_27_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) - (6*f_28_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) - (6*f_29_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) - (7*f_30_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) - (7*f_31_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) + (2*cos2th*f_20_2*f[1]*f[2]*f[33]*f[34])/U[1] + (2*cos2th*f_21_2*f[1]*f[2]*f[33]*f[34])/U[1] + (3*cos2th*f_22_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) + (3*cos2th*f_23_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) + (4*cos2th*f_24_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) + (4*cos2th*f_25_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) + (5*cos2th*f_26_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) + (5*cos2th*f_27_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) + (6*cos2th*f_28_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) + (6*cos2th*f_29_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) + (7*cos2th*f_30_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) + (7*cos2th*f_31_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) - (2*cos2th*f_20_2*f[0]*f[3]*f[33]*f[34])/U[1] - (2*cos2th*f_21_2*f[0]*f[3]*f[33]*f[34])/U[1] - (3*cos2th*f_22_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) - (3*cos2th*f_23_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) - (4*cos2th*f_24_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) - (4*cos2th*f_25_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) - (5*cos2th*f_26_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) - (5*cos2th*f_27_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) - (6*cos2th*f_28_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) - (6*cos2th*f_29_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) - (7*cos2th*f_30_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) - (7*cos2th*f_31_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] - (2*f_21_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] - (3*f_22_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) - (3*f_23_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) - (4*f_24_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) - (4*f_25_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) - (5*f_26_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) - (5*f_27_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) - (6*f_28_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) - (6*f_29_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) - (7*f_30_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) - (7*f_31_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] + (2*f_21_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] + (3*f_22_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) + (3*f_23_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) + (4*f_24_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) + (4*f_25_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) + (5*f_26_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) + (5*f_27_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) + (6*f_28_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) + (6*f_29_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) + (7*f_30_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) + (7*f_31_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_20_2*f[1]*f[2]*f[32]*f[35])/U[1] - (2*cos2th*f_21_2*f[1]*f[2]*f[32]*f[35])/U[1] - (3*cos2th*f_22_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) - (3*cos2th*f_23_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) - (4*cos2th*f_24_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) - (4*cos2th*f_25_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) - (5*cos2th*f_26_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) - (5*cos2th*f_27_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) - (6*cos2th*f_28_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) - (6*cos2th*f_29_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) - (7*cos2th*f_30_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) - (7*cos2th*f_31_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_20_2*f[0]*f[3]*f[32]*f[35])/U[1] + (2*cos2th*f_21_2*f[0]*f[3]*f[32]*f[35])/U[1] + (3*cos2th*f_22_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) + (3*cos2th*f_23_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) + (4*cos2th*f_24_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) + (4*cos2th*f_25_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) + (5*cos2th*f_26_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) + (5*cos2th*f_27_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) + (6*cos2th*f_28_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) + (6*cos2th*f_29_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) + (7*cos2th*f_30_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) + (7*cos2th*f_31_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) + (2*f_20_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] + (2*f_21_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] + (3*f_22_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) + (3*f_23_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) + (4*f_24_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) + (4*f_25_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) + (5*f_26_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) + (5*f_27_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) + (6*f_28_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) + (6*f_29_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) + (7*f_30_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) + (7*f_31_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_20_2*f[0]*f[2]*f[33]*f[35])/U[1] + (2*cos2th*f_21_2*f[0]*f[2]*f[33]*f[35])/U[1] + (3*cos2th*f_22_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) + (3*cos2th*f_23_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) + (4*cos2th*f_24_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) + (4*cos2th*f_25_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) + (5*cos2th*f_26_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) + (5*cos2th*f_27_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) + (6*cos2th*f_28_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) + (6*cos2th*f_29_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) + (7*cos2th*f_30_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) + (7*cos2th*f_31_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) + (2*f_20_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] + (2*f_21_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] + (3*f_22_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) + (3*f_23_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) + (4*f_24_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) + (4*f_25_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) + (5*f_26_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) + (5*f_27_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) + (6*f_28_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) + (6*f_29_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) + (7*f_30_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) + (7*f_31_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) - (2*f_20_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] - (2*f_21_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] - (3*f_22_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) - (3*f_23_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) - (4*f_24_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) - (4*f_25_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) - (5*f_26_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) - (5*f_27_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) - (6*f_28_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) - (6*f_29_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) - (7*f_30_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) - (7*f_31_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) + (2*cos2th*f_20_2*f[1]*f[3]*f[33]*f[35])/U[1] + (2*cos2th*f_21_2*f[1]*f[3]*f[33]*f[35])/U[1] + (3*cos2th*f_22_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) + (3*cos2th*f_23_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) + (4*cos2th*f_24_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) + (4*cos2th*f_25_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) + (5*cos2th*f_26_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) + (5*cos2th*f_27_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) + (6*cos2th*f_28_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) + (6*cos2th*f_29_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) + (7*cos2th*f_30_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (7*cos2th*f_31_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (14*cos2th*f_20_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_21_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*f_20_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*f_21_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + U[1]) - (14*f_20_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + U[1]) - (14*f_21_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_20_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_21_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + U[1]) - (14*f_20_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*f_21_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_20_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + U[1]) + (14*cos2th*f_21_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*cos2th*f_20_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*cos2th*f_21_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*f_20_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + U[1]) - (14*f_21_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + U[1]) + (14*f_20_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*f_21_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + U[1]) - (14*cos2th*f_20_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + U[1]) - (14*cos2th*f_21_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_20_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_21_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*f_20_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*f_21_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_20_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_21_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*f_20_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*f_21_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + U[1]) - (14*f_20_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + U[1]) - (14*f_21_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_20_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + U[1]) + (14*cos2th*f_21_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + U[1]) + (12*cos2th*f_20_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_21_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*f_20_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*f_21_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + U[1]) - (12*f_20_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + U[1]) - (12*f_21_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_20_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_21_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + U[1]) - (12*f_20_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*f_21_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_20_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + U[1]) + (12*cos2th*f_21_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*cos2th*f_20_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*cos2th*f_21_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*f_20_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + U[1]) - (12*f_21_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + U[1]) + (12*f_20_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*f_21_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + U[1]) - (12*cos2th*f_20_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + U[1]) - (12*cos2th*f_21_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_20_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_21_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*f_20_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*f_21_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_20_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_21_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*f_20_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*f_21_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + U[1]) - (12*f_20_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + U[1]) - (12*f_21_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_20_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + U[1]) + (12*cos2th*f_21_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + U[1]) + (10*cos2th*f_20_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_21_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*f_20_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*f_21_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + U[1]) - (10*f_20_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + U[1]) - (10*f_21_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_20_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_21_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + U[1]) - (10*f_20_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*f_21_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_20_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + U[1]) + (10*cos2th*f_21_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*cos2th*f_20_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*cos2th*f_21_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*f_20_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + U[1]) - (10*f_21_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + U[1]) + (10*f_20_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*f_21_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + U[1]) - (10*cos2th*f_20_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + U[1]) - (10*cos2th*f_21_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_20_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_21_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*f_20_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*f_21_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_20_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_21_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*f_20_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*f_21_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + U[1]) - (10*f_20_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + U[1]) - (10*f_21_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_20_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + U[1]) + (10*cos2th*f_21_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + U[1]) + (8*cos2th*f_20_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_21_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*f_20_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*f_21_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + U[1]) - (8*f_20_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + U[1]) - (8*f_21_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_20_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_21_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + U[1]) - (8*f_20_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*f_21_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_20_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + U[1]) + (8*cos2th*f_21_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*cos2th*f_20_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*cos2th*f_21_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*f_20_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + U[1]) - (8*f_21_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + U[1]) + (8*f_20_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*f_21_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + U[1]) - (8*cos2th*f_20_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + U[1]) - (8*cos2th*f_21_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_20_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_21_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*f_20_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*f_21_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_20_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_21_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*f_20_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*f_21_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + U[1]) - (8*f_20_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + U[1]) - (8*f_21_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_20_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + U[1]) + (8*cos2th*f_21_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + U[1]) + (6*cos2th*f_20_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_21_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*f_20_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*f_21_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + U[1]) - (6*f_20_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + U[1]) - (6*f_21_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_20_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_21_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + U[1]) - (6*f_20_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*f_21_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_20_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + U[1]) + (6*cos2th*f_21_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*cos2th*f_20_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*cos2th*f_21_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*f_20_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + U[1]) - (6*f_21_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + U[1]) + (6*f_20_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*f_21_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + U[1]) - (6*cos2th*f_20_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + U[1]) - (6*cos2th*f_21_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_20_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_21_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*f_20_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*f_21_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_20_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_21_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*f_20_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*f_21_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + U[1]) - (6*f_20_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + U[1]) - (6*f_21_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_20_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + U[1]) + (6*cos2th*f_21_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + U[1]) + (21*cos2th*f_22_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_23_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*f_22_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*f_23_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_22_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_23_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_22_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_23_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_22_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_23_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_22_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_23_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_22_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_23_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_22_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 2*U[1]) - (21*f_23_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 2*U[1]) + (21*f_22_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_23_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_22_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_23_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_22_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_23_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_22_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_23_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_22_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_23_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_22_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*f_23_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 2*U[1]) - (21*f_22_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 2*U[1]) - (21*f_23_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_22_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_23_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 2*U[1]) + (18*cos2th*f_22_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_23_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*f_22_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*f_23_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_22_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_23_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_22_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_23_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_22_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_23_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_22_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_23_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_22_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_23_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_22_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 2*U[1]) - (18*f_23_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 2*U[1]) + (18*f_22_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_23_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_22_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_23_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_22_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_23_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_22_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_23_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_22_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_23_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_22_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*f_23_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 2*U[1]) - (18*f_22_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 2*U[1]) - (18*f_23_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_22_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_23_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 2*U[1]) + (15*cos2th*f_22_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_23_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*f_22_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*f_23_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_22_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_23_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_22_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_23_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_22_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_23_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_22_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_23_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_22_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_23_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_22_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 2*U[1]) - (15*f_23_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 2*U[1]) + (15*f_22_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_23_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_22_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_23_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_22_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_23_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_22_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_23_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_22_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_23_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_22_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*f_23_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 2*U[1]) - (15*f_22_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 2*U[1]) - (15*f_23_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_22_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_23_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 2*U[1]) + (12*cos2th*f_22_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_23_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*f_22_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*f_23_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_22_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_23_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_22_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_23_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_22_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_23_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_22_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_23_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_22_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_23_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_22_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 2*U[1]) - (12*f_23_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 2*U[1]) + (12*f_22_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_23_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_22_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_23_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_22_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_23_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_22_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_23_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_22_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_23_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_22_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*f_23_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 2*U[1]) - (12*f_22_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 2*U[1]) - (12*f_23_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_22_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_23_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 2*U[1]) + (6*cos2th*f_22_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_23_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*f_22_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*f_23_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 2*U[1]) - (6*f_22_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 2*U[1]) - (6*f_23_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_22_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_23_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 2*U[1]) - (6*f_22_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*f_23_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_22_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 2*U[1]) + (6*cos2th*f_23_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*cos2th*f_22_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*cos2th*f_23_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*f_22_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 2*U[1]) - (6*f_23_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 2*U[1]) + (6*f_22_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*f_23_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 2*U[1]) - (6*cos2th*f_22_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 2*U[1]) - (6*cos2th*f_23_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_22_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_23_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*f_22_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*f_23_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_22_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_23_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*f_22_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*f_23_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 2*U[1]) - (6*f_22_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 2*U[1]) - (6*f_23_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_22_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 2*U[1]) + (6*cos2th*f_23_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 2*U[1]) + (28*cos2th*f_24_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_25_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*f_24_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*f_25_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_24_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_25_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_24_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_25_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_24_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_25_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_24_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_25_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_24_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_25_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_24_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 3*U[1]) - (28*f_25_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 3*U[1]) + (28*f_24_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_25_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_24_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_25_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_24_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_25_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_24_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_25_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_24_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_25_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_24_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*f_25_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 3*U[1]) - (28*f_24_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 3*U[1]) - (28*f_25_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_24_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_25_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 3*U[1]) + (24*cos2th*f_24_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_25_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*f_24_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*f_25_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_24_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_25_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_24_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_25_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_24_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_25_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_24_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_25_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_24_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_25_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_24_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 3*U[1]) - (24*f_25_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 3*U[1]) + (24*f_24_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_25_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_24_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_25_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_24_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_25_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_24_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_25_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_24_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_25_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_24_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*f_25_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 3*U[1]) - (24*f_24_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 3*U[1]) - (24*f_25_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_24_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_25_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 3*U[1]) + (20*cos2th*f_24_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_25_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*f_24_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*f_25_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_24_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_25_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_24_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_25_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_24_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_25_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_24_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_25_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_24_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_25_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_24_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 3*U[1]) - (20*f_25_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 3*U[1]) + (20*f_24_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_25_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_24_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_25_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_24_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_25_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_24_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_25_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_24_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_25_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_24_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*f_25_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 3*U[1]) - (20*f_24_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 3*U[1]) - (20*f_25_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_24_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_25_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 3*U[1]) + (12*cos2th*f_24_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_25_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*f_24_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*f_25_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_24_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_25_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_24_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_25_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_24_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_25_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_24_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_25_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_24_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_25_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_24_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 3*U[1]) - (12*f_25_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 3*U[1]) + (12*f_24_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_25_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_24_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_25_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_24_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_25_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_24_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_25_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_24_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_25_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_24_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*f_25_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 3*U[1]) - (12*f_24_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 3*U[1]) - (12*f_25_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_24_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_25_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 3*U[1]) + (8*cos2th*f_24_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_25_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*f_24_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*f_25_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 3*U[1]) - (8*f_24_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 3*U[1]) - (8*f_25_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_24_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_25_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 3*U[1]) - (8*f_24_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*f_25_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_24_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 3*U[1]) + (8*cos2th*f_25_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*cos2th*f_24_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*cos2th*f_25_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*f_24_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 3*U[1]) - (8*f_25_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 3*U[1]) + (8*f_24_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*f_25_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 3*U[1]) - (8*cos2th*f_24_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 3*U[1]) - (8*cos2th*f_25_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_24_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_25_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*f_24_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*f_25_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_24_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_25_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*f_24_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*f_25_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 3*U[1]) - (8*f_24_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 3*U[1]) - (8*f_25_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_24_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 3*U[1]) + (8*cos2th*f_25_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 3*U[1]) + (35*cos2th*f_26_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_27_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*f_26_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*f_27_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_26_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_27_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_26_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_27_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_26_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_27_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_26_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_27_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_26_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_27_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_26_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 4*U[1]) - (35*f_27_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 4*U[1]) + (35*f_26_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_27_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_26_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_27_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_26_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_27_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_26_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_27_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_26_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_27_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_26_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*f_27_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 4*U[1]) - (35*f_26_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 4*U[1]) - (35*f_27_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_26_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_27_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 4*U[1]) + (30*cos2th*f_26_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_27_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*f_26_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*f_27_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_26_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_27_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_26_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_27_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_26_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_27_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_26_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_27_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_26_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_27_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_26_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 4*U[1]) - (30*f_27_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 4*U[1]) + (30*f_26_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_27_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_26_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_27_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_26_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_27_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_26_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_27_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_26_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_27_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_26_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*f_27_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 4*U[1]) - (30*f_26_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 4*U[1]) - (30*f_27_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_26_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_27_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 4*U[1]) + (20*cos2th*f_26_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_27_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*f_26_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*f_27_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_26_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_27_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_26_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_27_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_26_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_27_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_26_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_27_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_26_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_27_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_26_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 4*U[1]) - (20*f_27_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 4*U[1]) + (20*f_26_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_27_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_26_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_27_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_26_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_27_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_26_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_27_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_26_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_27_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_26_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*f_27_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 4*U[1]) - (20*f_26_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 4*U[1]) - (20*f_27_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_26_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_27_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 4*U[1]) + (15*cos2th*f_26_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_27_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*f_26_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*f_27_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_26_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_27_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_26_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_27_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_26_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_27_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_26_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_27_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_26_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_27_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_26_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 4*U[1]) - (15*f_27_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 4*U[1]) + (15*f_26_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_27_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_26_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_27_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_26_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_27_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_26_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_27_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_26_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_27_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_26_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*f_27_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 4*U[1]) - (15*f_26_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 4*U[1]) - (15*f_27_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_26_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_27_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 4*U[1]) + (10*cos2th*f_26_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_27_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*f_26_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*f_27_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 4*U[1]) - (10*f_26_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 4*U[1]) - (10*f_27_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_26_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_27_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 4*U[1]) - (10*f_26_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*f_27_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_26_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 4*U[1]) + (10*cos2th*f_27_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*cos2th*f_26_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*cos2th*f_27_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*f_26_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 4*U[1]) - (10*f_27_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 4*U[1]) + (10*f_26_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*f_27_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 4*U[1]) - (10*cos2th*f_26_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 4*U[1]) - (10*cos2th*f_27_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_26_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_27_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*f_26_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*f_27_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_26_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_27_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*f_26_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*f_27_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 4*U[1]) - (10*f_26_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 4*U[1]) - (10*f_27_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_26_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 4*U[1]) + (10*cos2th*f_27_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 4*U[1]) + (42*cos2th*f_28_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_29_2*f[12]*f[14]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*f_28_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*f_29_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_28_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_29_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_28_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_29_2*f[13]*f[15]*f[44]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_28_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_29_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_28_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_29_2*f[13]*f[14]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_28_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_29_2*f[12]*f[15]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_28_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 5*U[1]) - (42*f_29_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-6*U[0] + 5*U[1]) + (42*f_28_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_29_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_28_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_29_2*f[13]*f[14]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_28_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_29_2*f[12]*f[15]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_28_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_29_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_28_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_29_2*f[12]*f[14]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_28_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*f_29_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-6*U[0] + 5*U[1]) - (42*f_28_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 5*U[1]) - (42*f_29_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_28_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_29_2*f[13]*f[15]*f[45]*f[47])/(-6*U[0] + 5*U[1]) + (30*cos2th*f_28_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_29_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*f_28_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*f_29_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_28_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_29_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_28_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_29_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_28_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_29_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_28_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_29_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_28_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_29_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_28_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 5*U[1]) - (30*f_29_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 5*U[1]) + (30*f_28_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_29_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_28_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_29_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_28_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_29_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_28_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_29_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_28_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_29_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_28_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*f_29_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 5*U[1]) - (30*f_28_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 5*U[1]) - (30*f_29_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_28_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_29_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 5*U[1]) + (24*cos2th*f_28_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_29_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*f_28_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*f_29_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_28_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_29_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_28_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_29_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_28_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_29_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_28_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_29_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_28_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_29_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_28_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 5*U[1]) - (24*f_29_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 5*U[1]) + (24*f_28_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_29_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_28_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_29_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_28_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_29_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_28_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_29_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_28_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_29_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_28_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*f_29_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 5*U[1]) - (24*f_28_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 5*U[1]) - (24*f_29_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_28_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_29_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 5*U[1]) + (18*cos2th*f_28_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_29_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*f_28_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*f_29_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_28_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_29_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_28_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_29_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_28_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_29_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_28_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_29_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_28_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_29_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_28_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 5*U[1]) - (18*f_29_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 5*U[1]) + (18*f_28_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_29_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_28_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_29_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_28_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_29_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_28_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_29_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_28_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_29_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_28_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*f_29_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 5*U[1]) - (18*f_28_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 5*U[1]) - (18*f_29_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_28_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_29_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 5*U[1]) + (12*cos2th*f_28_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_29_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*f_28_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*f_29_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 5*U[1]) - (12*f_28_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 5*U[1]) - (12*f_29_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_28_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_29_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 5*U[1]) - (12*f_28_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*f_29_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_28_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 5*U[1]) + (12*cos2th*f_29_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*cos2th*f_28_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*cos2th*f_29_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*f_28_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 5*U[1]) - (12*f_29_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 5*U[1]) + (12*f_28_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*f_29_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 5*U[1]) - (12*cos2th*f_28_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 5*U[1]) - (12*cos2th*f_29_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_28_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_29_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*f_28_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*f_29_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_28_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_29_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*f_28_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*f_29_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 5*U[1]) - (12*f_28_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 5*U[1]) - (12*f_29_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_28_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 5*U[1]) + (12*cos2th*f_29_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 5*U[1]) + (42*cos2th*f_30_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_31_2*f[10]*f[12]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*f_30_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*f_31_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_30_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_31_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_30_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_31_2*f[11]*f[13]*f[42]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_30_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_31_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_30_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_31_2*f[11]*f[12]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_30_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_31_2*f[10]*f[13]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_30_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 6*U[1]) - (42*f_31_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-5*U[0] + 6*U[1]) + (42*f_30_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_31_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_30_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_31_2*f[11]*f[12]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_30_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_31_2*f[10]*f[13]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_30_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_31_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_30_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_31_2*f[10]*f[12]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_30_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*f_31_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-5*U[0] + 6*U[1]) - (42*f_30_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 6*U[1]) - (42*f_31_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_30_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_31_2*f[11]*f[13]*f[43]*f[45])/(-5*U[0] + 6*U[1]) + (35*cos2th*f_30_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_31_2*f[8]*f[10]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*f_30_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*f_31_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_30_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_31_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_30_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_31_2*f[9]*f[11]*f[40]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_30_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_31_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_30_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_31_2*f[9]*f[10]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_30_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_31_2*f[8]*f[11]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_30_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 6*U[1]) - (35*f_31_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-4*U[0] + 6*U[1]) + (35*f_30_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_31_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_30_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_31_2*f[9]*f[10]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_30_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_31_2*f[8]*f[11]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_30_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_31_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_30_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_31_2*f[8]*f[10]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_30_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*f_31_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-4*U[0] + 6*U[1]) - (35*f_30_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 6*U[1]) - (35*f_31_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_30_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_31_2*f[9]*f[11]*f[41]*f[43])/(-4*U[0] + 6*U[1]) + (28*cos2th*f_30_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_31_2*f[6]*f[8]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*f_30_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*f_31_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_30_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_31_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_30_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_31_2*f[7]*f[9]*f[38]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_30_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_31_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_30_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_31_2*f[7]*f[8]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_30_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_31_2*f[6]*f[9]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_30_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 6*U[1]) - (28*f_31_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-3*U[0] + 6*U[1]) + (28*f_30_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_31_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_30_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_31_2*f[7]*f[8]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_30_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_31_2*f[6]*f[9]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_30_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_31_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_30_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_31_2*f[6]*f[8]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_30_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*f_31_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-3*U[0] + 6*U[1]) - (28*f_30_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 6*U[1]) - (28*f_31_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_30_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_31_2*f[7]*f[9]*f[39]*f[41])/(-3*U[0] + 6*U[1]) + (21*cos2th*f_30_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_31_2*f[4]*f[6]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*f_30_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*f_31_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_30_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_31_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_30_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_31_2*f[5]*f[7]*f[36]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_30_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_31_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_30_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_31_2*f[5]*f[6]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_30_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_31_2*f[4]*f[7]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_30_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 6*U[1]) - (21*f_31_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-2*U[0] + 6*U[1]) + (21*f_30_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_31_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_30_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_31_2*f[5]*f[6]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_30_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_31_2*f[4]*f[7]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_30_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_31_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_30_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_31_2*f[4]*f[6]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_30_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*f_31_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-2*U[0] + 6*U[1]) - (21*f_30_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 6*U[1]) - (21*f_31_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_30_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_31_2*f[5]*f[7]*f[37]*f[39])/(-2*U[0] + 6*U[1]) + (14*cos2th*f_30_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_31_2*f[2]*f[4]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*f_30_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*f_31_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-U[0] + 6*U[1]) - (14*f_30_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 6*U[1]) - (14*f_31_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_30_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_31_2*f[3]*f[5]*f[34]*f[36])/(-U[0] + 6*U[1]) - (14*f_30_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*f_31_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_30_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 6*U[1]) + (14*cos2th*f_31_2*f[3]*f[4]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*cos2th*f_30_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*cos2th*f_31_2*f[2]*f[5]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*f_30_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 6*U[1]) - (14*f_31_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-U[0] + 6*U[1]) + (14*f_30_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*f_31_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-U[0] + 6*U[1]) - (14*cos2th*f_30_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 6*U[1]) - (14*cos2th*f_31_2*f[3]*f[4]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_30_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_31_2*f[2]*f[5]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*f_30_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*f_31_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_30_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_31_2*f[2]*f[4]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*f_30_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*f_31_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-U[0] + 6*U[1]) - (14*f_30_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 6*U[1]) - (14*f_31_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_30_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 6*U[1]) + (14*cos2th*f_31_2*f[3]*f[5]*f[35]*f[37])/(-U[0] + 6*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[0]*J[4]*((-6*cos2th*f_10_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) - (6*cos2th*f_11_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) - (7*cos2th*f_12_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) - (7*cos2th*f_13_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) - (2*cos2th*f_2_2*f[16]*f[18]*f[64]*f[66])/U[0] - (2*cos2th*f_3_2*f[16]*f[18]*f[64]*f[66])/U[0] - (3*cos2th*f_4_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) - (3*cos2th*f_5_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) - (4*cos2th*f_6_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) - (4*cos2th*f_7_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) - (5*cos2th*f_8_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) - (5*cos2th*f_9_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) + (6*f_11_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) + (7*f_12_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) + (7*f_13_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) + (2*f_2_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] + (2*f_3_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] + (3*f_4_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) + (3*f_5_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) + (4*f_6_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) + (4*f_7_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) + (5*f_8_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) + (5*f_9_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) - (6*f_11_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) - (7*f_12_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) - (7*f_13_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) - (2*f_2_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] - (2*f_3_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] - (3*f_4_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) - (3*f_5_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) - (4*f_6_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) - (4*f_7_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) - (5*f_8_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) - (5*f_9_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) - (6*cos2th*f_10_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) - (6*cos2th*f_11_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) - (7*cos2th*f_12_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) - (7*cos2th*f_13_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) - (2*cos2th*f_2_2*f[17]*f[19]*f[64]*f[66])/U[0] - (2*cos2th*f_3_2*f[17]*f[19]*f[64]*f[66])/U[0] - (3*cos2th*f_4_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) - (3*cos2th*f_5_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) - (4*cos2th*f_6_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) - (4*cos2th*f_7_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) - (5*cos2th*f_8_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) - (5*cos2th*f_9_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) - (6*f_11_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) - (7*f_12_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) - (7*f_13_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) - (2*f_2_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] - (2*f_3_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] - (3*f_4_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) - (3*f_5_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) - (4*f_6_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) - (4*f_7_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) - (5*f_8_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) - (5*f_9_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) - (6*cos2th*f_10_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) - (6*cos2th*f_11_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) - (7*cos2th*f_12_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) - (7*cos2th*f_13_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) - (2*cos2th*f_2_2*f[17]*f[18]*f[65]*f[66])/U[0] - (2*cos2th*f_3_2*f[17]*f[18]*f[65]*f[66])/U[0] - (3*cos2th*f_4_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) - (3*cos2th*f_5_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) - (4*cos2th*f_6_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) - (4*cos2th*f_7_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) - (5*cos2th*f_8_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) - (5*cos2th*f_9_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) + (6*cos2th*f_10_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) + (6*cos2th*f_11_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) + (7*cos2th*f_12_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) + (7*cos2th*f_13_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) + (2*cos2th*f_2_2*f[16]*f[19]*f[65]*f[66])/U[0] + (2*cos2th*f_3_2*f[16]*f[19]*f[65]*f[66])/U[0] + (3*cos2th*f_4_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) + (3*cos2th*f_5_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) + (4*cos2th*f_6_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) + (4*cos2th*f_7_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) + (5*cos2th*f_8_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) + (5*cos2th*f_9_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) - (6*f_11_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) - (7*f_12_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) - (7*f_13_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) - (2*f_2_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] - (2*f_3_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] - (3*f_4_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) - (3*f_5_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) - (4*f_6_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) - (4*f_7_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) - (5*f_8_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) - (5*f_9_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) + (6*f_11_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) + (7*f_12_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) + (7*f_13_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) + (2*f_2_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] + (2*f_3_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] + (3*f_4_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) + (3*f_5_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) + (4*f_6_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) + (4*f_7_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) + (5*f_8_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) + (5*f_9_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_10_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) + (6*cos2th*f_11_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) + (7*cos2th*f_12_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) + (7*cos2th*f_13_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) + (2*cos2th*f_2_2*f[17]*f[18]*f[64]*f[67])/U[0] + (2*cos2th*f_3_2*f[17]*f[18]*f[64]*f[67])/U[0] + (3*cos2th*f_4_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) + (3*cos2th*f_5_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) + (4*cos2th*f_6_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) + (4*cos2th*f_7_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_8_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) + (5*cos2th*f_9_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_10_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) - (6*cos2th*f_11_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) - (7*cos2th*f_12_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) - (7*cos2th*f_13_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) - (2*cos2th*f_2_2*f[16]*f[19]*f[64]*f[67])/U[0] - (2*cos2th*f_3_2*f[16]*f[19]*f[64]*f[67])/U[0] - (3*cos2th*f_4_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) - (3*cos2th*f_5_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) - (4*cos2th*f_6_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) - (4*cos2th*f_7_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_8_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) - (5*cos2th*f_9_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) + (6*f_10_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) + (6*f_11_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) + (7*f_12_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) + (7*f_13_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) + (2*f_2_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] + (2*f_3_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] + (3*f_4_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) + (3*f_5_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) + (4*f_6_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) + (4*f_7_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) + (5*f_8_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) + (5*f_9_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_10_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) - (6*cos2th*f_11_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) - (7*cos2th*f_12_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) - (7*cos2th*f_13_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) - (2*cos2th*f_2_2*f[16]*f[18]*f[65]*f[67])/U[0] - (2*cos2th*f_3_2*f[16]*f[18]*f[65]*f[67])/U[0] - (3*cos2th*f_4_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) - (3*cos2th*f_5_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) - (4*cos2th*f_6_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) - (4*cos2th*f_7_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) - (5*cos2th*f_8_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) - (5*cos2th*f_9_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) + (6*f_10_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) + (6*f_11_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) + (7*f_12_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) + (7*f_13_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) + (2*f_2_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] + (2*f_3_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] + (3*f_4_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) + (3*f_5_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) + (4*f_6_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) + (4*f_7_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) + (5*f_8_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) + (5*f_9_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) - (6*f_10_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) - (6*f_11_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) - (7*f_12_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) - (7*f_13_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) - (2*f_2_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] - (2*f_3_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] - (3*f_4_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) - (3*f_5_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) - (4*f_6_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) - (4*f_7_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) - (5*f_8_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) - (5*f_9_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) - (6*cos2th*f_10_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) - (6*cos2th*f_11_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) - (7*cos2th*f_12_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) - (7*cos2th*f_13_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) - (2*cos2th*f_2_2*f[17]*f[19]*f[65]*f[67])/U[0] - (2*cos2th*f_3_2*f[17]*f[19]*f[65]*f[67])/U[0] - (3*cos2th*f_4_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) - (3*cos2th*f_5_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) - (4*cos2th*f_6_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) - (4*cos2th*f_7_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) - (5*cos2th*f_8_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) - (5*cos2th*f_9_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (2*cos2th*f_0_2*f[18]*f[20]*f[66]*f[68])/U[1] + (2*cos2th*f_1_2*f[18]*f[20]*f[66]*f[68])/U[1] - (2*f_0_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[1] - (2*f_1_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[1] + (2*f_0_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[1] + (2*f_1_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[1] + (2*cos2th*f_0_2*f[19]*f[21]*f[66]*f[68])/U[1] + (2*cos2th*f_1_2*f[19]*f[21]*f[66]*f[68])/U[1] + (2*f_0_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[1] + (2*f_1_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[1] + (2*cos2th*f_0_2*f[19]*f[20]*f[67]*f[68])/U[1] + (2*cos2th*f_1_2*f[19]*f[20]*f[67]*f[68])/U[1] - (2*cos2th*f_0_2*f[18]*f[21]*f[67]*f[68])/U[1] - (2*cos2th*f_1_2*f[18]*f[21]*f[67]*f[68])/U[1] + (2*f_0_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[1] + (2*f_1_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[1] - (2*f_0_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[1] - (2*f_1_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[1] - (2*cos2th*f_0_2*f[19]*f[20]*f[66]*f[69])/U[1] - (2*cos2th*f_1_2*f[19]*f[20]*f[66]*f[69])/U[1] + (2*cos2th*f_0_2*f[18]*f[21]*f[66]*f[69])/U[1] + (2*cos2th*f_1_2*f[18]*f[21]*f[66]*f[69])/U[1] - (2*f_0_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[1] - (2*f_1_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[1] + (2*cos2th*f_0_2*f[18]*f[20]*f[67]*f[69])/U[1] + (2*cos2th*f_1_2*f[18]*f[20]*f[67]*f[69])/U[1] - (2*f_0_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[1] - (2*f_1_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[1] + (2*f_0_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[1] + (2*f_1_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[1] + (2*cos2th*f_0_2*f[19]*f[21]*f[67]*f[69])/U[1] + (2*cos2th*f_1_2*f[19]*f[21]*f[67]*f[69])/U[1] + (3*cos2th*f_0_2*f[20]*f[22]*f[68]*f[70])/(2.*U[1]) + (3*cos2th*f_1_2*f[20]*f[22]*f[68]*f[70])/(2.*U[1]) - (3*f_0_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[1]) - (3*f_1_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[1]) + (3*f_0_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[1]) + (3*f_1_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[1]) + (3*cos2th*f_0_2*f[21]*f[23]*f[68]*f[70])/(2.*U[1]) + (3*cos2th*f_1_2*f[21]*f[23]*f[68]*f[70])/(2.*U[1]) + (3*f_0_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[1]) + (3*f_1_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[1]) + (3*cos2th*f_0_2*f[21]*f[22]*f[69]*f[70])/(2.*U[1]) + (3*cos2th*f_1_2*f[21]*f[22]*f[69]*f[70])/(2.*U[1]) - (3*cos2th*f_0_2*f[20]*f[23]*f[69]*f[70])/(2.*U[1]) - (3*cos2th*f_1_2*f[20]*f[23]*f[69]*f[70])/(2.*U[1]) + (3*f_0_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[1]) + (3*f_1_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[1]) - (3*f_0_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[1]) - (3*f_1_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_0_2*f[21]*f[22]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_1_2*f[21]*f[22]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_0_2*f[20]*f[23]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_1_2*f[20]*f[23]*f[68]*f[71])/(2.*U[1]) - (3*f_0_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[1]) - (3*f_1_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_0_2*f[20]*f[22]*f[69]*f[71])/(2.*U[1]) + (3*cos2th*f_1_2*f[20]*f[22]*f[69]*f[71])/(2.*U[1]) - (3*f_0_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[1]) - (3*f_1_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[1]) + (3*f_0_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[1]) + (3*f_1_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[1]) + (3*cos2th*f_0_2*f[21]*f[23]*f[69]*f[71])/(2.*U[1]) + (3*cos2th*f_1_2*f[21]*f[23]*f[69]*f[71])/(2.*U[1]) + (4*cos2th*f_0_2*f[22]*f[24]*f[70]*f[72])/(3.*U[1]) + (4*cos2th*f_1_2*f[22]*f[24]*f[70]*f[72])/(3.*U[1]) - (4*f_0_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[1]) - (4*f_1_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[1]) + (4*f_0_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[1]) + (4*f_1_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[1]) + (4*cos2th*f_0_2*f[23]*f[25]*f[70]*f[72])/(3.*U[1]) + (4*cos2th*f_1_2*f[23]*f[25]*f[70]*f[72])/(3.*U[1]) + (4*f_0_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[1]) + (4*f_1_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[1]) + (4*cos2th*f_0_2*f[23]*f[24]*f[71]*f[72])/(3.*U[1]) + (4*cos2th*f_1_2*f[23]*f[24]*f[71]*f[72])/(3.*U[1]) - (4*cos2th*f_0_2*f[22]*f[25]*f[71]*f[72])/(3.*U[1]) - (4*cos2th*f_1_2*f[22]*f[25]*f[71]*f[72])/(3.*U[1]) + (4*f_0_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[1]) + (4*f_1_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[1]) - (4*f_0_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[1]) - (4*f_1_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_0_2*f[23]*f[24]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_1_2*f[23]*f[24]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_0_2*f[22]*f[25]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_1_2*f[22]*f[25]*f[70]*f[73])/(3.*U[1]) - (4*f_0_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[1]) - (4*f_1_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_0_2*f[22]*f[24]*f[71]*f[73])/(3.*U[1]) + (4*cos2th*f_1_2*f[22]*f[24]*f[71]*f[73])/(3.*U[1]) - (4*f_0_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[1]) - (4*f_1_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[1]) + (4*f_0_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[1]) + (4*f_1_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[1]) + (4*cos2th*f_0_2*f[23]*f[25]*f[71]*f[73])/(3.*U[1]) + (4*cos2th*f_1_2*f[23]*f[25]*f[71]*f[73])/(3.*U[1]) + (5*cos2th*f_0_2*f[24]*f[26]*f[72]*f[74])/(4.*U[1]) + (5*cos2th*f_1_2*f[24]*f[26]*f[72]*f[74])/(4.*U[1]) - (5*f_0_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[1]) - (5*f_1_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[1]) + (5*f_0_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[1]) + (5*f_1_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[1]) + (5*cos2th*f_0_2*f[25]*f[27]*f[72]*f[74])/(4.*U[1]) + (5*cos2th*f_1_2*f[25]*f[27]*f[72]*f[74])/(4.*U[1]) + (5*f_0_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[1]) + (5*f_1_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[1]) + (5*cos2th*f_0_2*f[25]*f[26]*f[73]*f[74])/(4.*U[1]) + (5*cos2th*f_1_2*f[25]*f[26]*f[73]*f[74])/(4.*U[1]) - (5*cos2th*f_0_2*f[24]*f[27]*f[73]*f[74])/(4.*U[1]) - (5*cos2th*f_1_2*f[24]*f[27]*f[73]*f[74])/(4.*U[1]) + (5*f_0_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[1]) + (5*f_1_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[1]) - (5*f_0_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[1]) - (5*f_1_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_0_2*f[25]*f[26]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_1_2*f[25]*f[26]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_0_2*f[24]*f[27]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_1_2*f[24]*f[27]*f[72]*f[75])/(4.*U[1]) - (5*f_0_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[1]) - (5*f_1_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_0_2*f[24]*f[26]*f[73]*f[75])/(4.*U[1]) + (5*cos2th*f_1_2*f[24]*f[26]*f[73]*f[75])/(4.*U[1]) - (5*f_0_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[1]) - (5*f_1_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[1]) + (5*f_0_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[1]) + (5*f_1_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[1]) + (5*cos2th*f_0_2*f[25]*f[27]*f[73]*f[75])/(4.*U[1]) + (5*cos2th*f_1_2*f[25]*f[27]*f[73]*f[75])/(4.*U[1]) + (6*cos2th*f_0_2*f[26]*f[28]*f[74]*f[76])/(5.*U[1]) + (6*cos2th*f_1_2*f[26]*f[28]*f[74]*f[76])/(5.*U[1]) - (6*f_0_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[1]) - (6*f_1_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[1]) + (6*f_0_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[1]) + (6*f_1_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[1]) + (6*cos2th*f_0_2*f[27]*f[29]*f[74]*f[76])/(5.*U[1]) + (6*cos2th*f_1_2*f[27]*f[29]*f[74]*f[76])/(5.*U[1]) + (6*f_0_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[1]) + (6*f_1_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[1]) + (6*cos2th*f_0_2*f[27]*f[28]*f[75]*f[76])/(5.*U[1]) + (6*cos2th*f_1_2*f[27]*f[28]*f[75]*f[76])/(5.*U[1]) - (6*cos2th*f_0_2*f[26]*f[29]*f[75]*f[76])/(5.*U[1]) - (6*cos2th*f_1_2*f[26]*f[29]*f[75]*f[76])/(5.*U[1]) + (6*f_0_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[1]) + (6*f_1_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[1]) - (6*f_0_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[1]) - (6*f_1_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_0_2*f[27]*f[28]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_1_2*f[27]*f[28]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_0_2*f[26]*f[29]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_1_2*f[26]*f[29]*f[74]*f[77])/(5.*U[1]) - (6*f_0_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[1]) - (6*f_1_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_0_2*f[26]*f[28]*f[75]*f[77])/(5.*U[1]) + (6*cos2th*f_1_2*f[26]*f[28]*f[75]*f[77])/(5.*U[1]) - (6*f_0_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[1]) - (6*f_1_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[1]) + (6*f_0_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[1]) + (6*f_1_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[1]) + (6*cos2th*f_0_2*f[27]*f[29]*f[75]*f[77])/(5.*U[1]) + (6*cos2th*f_1_2*f[27]*f[29]*f[75]*f[77])/(5.*U[1]) + (7*cos2th*f_0_2*f[28]*f[30]*f[76]*f[78])/(6.*U[1]) + (7*cos2th*f_1_2*f[28]*f[30]*f[76]*f[78])/(6.*U[1]) - (7*f_0_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[1]) - (7*f_1_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[1]) + (7*f_0_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[1]) + (7*f_1_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[1]) + (7*cos2th*f_0_2*f[29]*f[31]*f[76]*f[78])/(6.*U[1]) + (7*cos2th*f_1_2*f[29]*f[31]*f[76]*f[78])/(6.*U[1]) + (7*f_0_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[1]) + (7*f_1_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[1]) + (7*cos2th*f_0_2*f[29]*f[30]*f[77]*f[78])/(6.*U[1]) + (7*cos2th*f_1_2*f[29]*f[30]*f[77]*f[78])/(6.*U[1]) - (7*cos2th*f_0_2*f[28]*f[31]*f[77]*f[78])/(6.*U[1]) - (7*cos2th*f_1_2*f[28]*f[31]*f[77]*f[78])/(6.*U[1]) + (7*f_0_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[1]) + (7*f_1_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[1]) - (7*f_0_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[1]) - (7*f_1_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_0_2*f[29]*f[30]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_1_2*f[29]*f[30]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_0_2*f[28]*f[31]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_1_2*f[28]*f[31]*f[76]*f[79])/(6.*U[1]) - (7*f_0_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[1]) - (7*f_1_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_0_2*f[28]*f[30]*f[77]*f[79])/(6.*U[1]) + (7*cos2th*f_1_2*f[28]*f[30]*f[77]*f[79])/(6.*U[1]) - (7*f_0_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[1]) - (7*f_1_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[1]) + (7*f_0_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[1]) + (7*f_1_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[1]) + (7*cos2th*f_0_2*f[29]*f[31]*f[77]*f[79])/(6.*U[1]) + (7*cos2th*f_1_2*f[29]*f[31]*f[77]*f[79])/(6.*U[1]) + (14*cos2th*f_12_2*f[18]*f[20]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_13_2*f[18]*f[20]*f[66]*f[68])/(-6*U[0] + U[1]) - (14*f_12_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-6*U[0] + U[1]) - (14*f_13_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*f_12_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*f_13_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_12_2*f[19]*f[21]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_13_2*f[19]*f[21]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*f_12_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*f_13_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_12_2*f[19]*f[20]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_13_2*f[19]*f[20]*f[67]*f[68])/(-6*U[0] + U[1]) - (14*cos2th*f_12_2*f[18]*f[21]*f[67]*f[68])/(-6*U[0] + U[1]) - (14*cos2th*f_13_2*f[18]*f[21]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*f_12_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*f_13_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-6*U[0] + U[1]) - (14*f_12_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*f_13_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*cos2th*f_12_2*f[19]*f[20]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*cos2th*f_13_2*f[19]*f[20]*f[66]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_12_2*f[18]*f[21]*f[66]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_13_2*f[18]*f[21]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*f_12_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*f_13_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_12_2*f[18]*f[20]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_13_2*f[18]*f[20]*f[67]*f[69])/(-6*U[0] + U[1]) - (14*f_12_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-6*U[0] + U[1]) - (14*f_13_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*f_12_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*f_13_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_12_2*f[19]*f[21]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_13_2*f[19]*f[21]*f[67]*f[69])/(-6*U[0] + U[1]) + (12*cos2th*f_10_2*f[18]*f[20]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_11_2*f[18]*f[20]*f[66]*f[68])/(-5*U[0] + U[1]) - (12*f_10_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-5*U[0] + U[1]) - (12*f_11_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*f_10_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*f_11_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_10_2*f[19]*f[21]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_11_2*f[19]*f[21]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*f_10_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*f_11_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_10_2*f[19]*f[20]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_11_2*f[19]*f[20]*f[67]*f[68])/(-5*U[0] + U[1]) - (12*cos2th*f_10_2*f[18]*f[21]*f[67]*f[68])/(-5*U[0] + U[1]) - (12*cos2th*f_11_2*f[18]*f[21]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*f_10_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*f_11_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-5*U[0] + U[1]) - (12*f_10_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*f_11_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*cos2th*f_10_2*f[19]*f[20]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*cos2th*f_11_2*f[19]*f[20]*f[66]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_10_2*f[18]*f[21]*f[66]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_11_2*f[18]*f[21]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*f_10_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*f_11_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_10_2*f[18]*f[20]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_11_2*f[18]*f[20]*f[67]*f[69])/(-5*U[0] + U[1]) - (12*f_10_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-5*U[0] + U[1]) - (12*f_11_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*f_10_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*f_11_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_10_2*f[19]*f[21]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_11_2*f[19]*f[21]*f[67]*f[69])/(-5*U[0] + U[1]) + (10*cos2th*f_8_2*f[18]*f[20]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_9_2*f[18]*f[20]*f[66]*f[68])/(-4*U[0] + U[1]) - (10*f_8_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-4*U[0] + U[1]) - (10*f_9_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*f_8_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*f_9_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_8_2*f[19]*f[21]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_9_2*f[19]*f[21]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*f_8_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*f_9_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_8_2*f[19]*f[20]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_9_2*f[19]*f[20]*f[67]*f[68])/(-4*U[0] + U[1]) - (10*cos2th*f_8_2*f[18]*f[21]*f[67]*f[68])/(-4*U[0] + U[1]) - (10*cos2th*f_9_2*f[18]*f[21]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*f_8_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*f_9_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-4*U[0] + U[1]) - (10*f_8_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*f_9_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*cos2th*f_8_2*f[19]*f[20]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*cos2th*f_9_2*f[19]*f[20]*f[66]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_8_2*f[18]*f[21]*f[66]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_9_2*f[18]*f[21]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*f_8_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*f_9_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_8_2*f[18]*f[20]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_9_2*f[18]*f[20]*f[67]*f[69])/(-4*U[0] + U[1]) - (10*f_8_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-4*U[0] + U[1]) - (10*f_9_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*f_8_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*f_9_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_8_2*f[19]*f[21]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_9_2*f[19]*f[21]*f[67]*f[69])/(-4*U[0] + U[1]) + (8*cos2th*f_6_2*f[18]*f[20]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_7_2*f[18]*f[20]*f[66]*f[68])/(-3*U[0] + U[1]) - (8*f_6_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-3*U[0] + U[1]) - (8*f_7_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*f_6_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*f_7_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_6_2*f[19]*f[21]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_7_2*f[19]*f[21]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*f_6_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*f_7_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_6_2*f[19]*f[20]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_7_2*f[19]*f[20]*f[67]*f[68])/(-3*U[0] + U[1]) - (8*cos2th*f_6_2*f[18]*f[21]*f[67]*f[68])/(-3*U[0] + U[1]) - (8*cos2th*f_7_2*f[18]*f[21]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*f_6_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*f_7_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-3*U[0] + U[1]) - (8*f_6_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*f_7_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*cos2th*f_6_2*f[19]*f[20]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*cos2th*f_7_2*f[19]*f[20]*f[66]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_6_2*f[18]*f[21]*f[66]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_7_2*f[18]*f[21]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*f_6_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*f_7_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_6_2*f[18]*f[20]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_7_2*f[18]*f[20]*f[67]*f[69])/(-3*U[0] + U[1]) - (8*f_6_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-3*U[0] + U[1]) - (8*f_7_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*f_6_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*f_7_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_6_2*f[19]*f[21]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_7_2*f[19]*f[21]*f[67]*f[69])/(-3*U[0] + U[1]) + (6*cos2th*f_4_2*f[18]*f[20]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_5_2*f[18]*f[20]*f[66]*f[68])/(-2*U[0] + U[1]) - (6*f_4_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-2*U[0] + U[1]) - (6*f_5_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*f_4_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*f_5_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_4_2*f[19]*f[21]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_5_2*f[19]*f[21]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*f_4_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*f_5_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_4_2*f[19]*f[20]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_5_2*f[19]*f[20]*f[67]*f[68])/(-2*U[0] + U[1]) - (6*cos2th*f_4_2*f[18]*f[21]*f[67]*f[68])/(-2*U[0] + U[1]) - (6*cos2th*f_5_2*f[18]*f[21]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*f_4_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*f_5_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-2*U[0] + U[1]) - (6*f_4_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*f_5_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*cos2th*f_4_2*f[19]*f[20]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*cos2th*f_5_2*f[19]*f[20]*f[66]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_4_2*f[18]*f[21]*f[66]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_5_2*f[18]*f[21]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*f_4_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*f_5_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_4_2*f[18]*f[20]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_5_2*f[18]*f[20]*f[67]*f[69])/(-2*U[0] + U[1]) - (6*f_4_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-2*U[0] + U[1]) - (6*f_5_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*f_4_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*f_5_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_4_2*f[19]*f[21]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_5_2*f[19]*f[21]*f[67]*f[69])/(-2*U[0] + U[1]) + (21*cos2th*f_12_2*f[20]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_13_2*f[20]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[1]) - (21*f_12_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[1]) - (21*f_13_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_12_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_13_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_12_2*f[21]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_13_2*f[21]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_12_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_13_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_12_2*f[21]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_13_2*f[21]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_12_2*f[20]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_13_2*f[20]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_12_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_13_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[1]) - (21*f_12_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_13_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_12_2*f[21]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_13_2*f[21]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_12_2*f[20]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_13_2*f[20]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_12_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_13_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_12_2*f[20]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_13_2*f[20]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_12_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_13_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*f_12_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*f_13_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_12_2*f[21]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_13_2*f[21]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (18*cos2th*f_10_2*f[20]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_11_2*f[20]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[1]) - (18*f_10_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[1]) - (18*f_11_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_10_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_11_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_10_2*f[21]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_11_2*f[21]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_10_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_11_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_10_2*f[21]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_11_2*f[21]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_10_2*f[20]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_11_2*f[20]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_10_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_11_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[1]) - (18*f_10_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_11_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_10_2*f[21]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_11_2*f[21]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_10_2*f[20]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_11_2*f[20]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_10_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_11_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_10_2*f[20]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_11_2*f[20]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_10_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_11_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*f_10_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*f_11_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_10_2*f[21]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_11_2*f[21]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (15*cos2th*f_8_2*f[20]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_9_2*f[20]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[1]) - (15*f_8_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[1]) - (15*f_9_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_8_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_9_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_8_2*f[21]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_9_2*f[21]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_8_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_9_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_8_2*f[21]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_9_2*f[21]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_8_2*f[20]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_9_2*f[20]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_8_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_9_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[1]) - (15*f_8_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_9_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_8_2*f[21]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_9_2*f[21]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_8_2*f[20]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_9_2*f[20]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_8_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_9_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_8_2*f[20]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_9_2*f[20]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_8_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_9_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*f_8_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*f_9_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_8_2*f[21]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_9_2*f[21]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (12*cos2th*f_6_2*f[20]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_7_2*f[20]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[1]) - (12*f_6_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[1]) - (12*f_7_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_6_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_7_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_6_2*f[21]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_7_2*f[21]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_6_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_7_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_6_2*f[21]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_7_2*f[21]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_6_2*f[20]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_7_2*f[20]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_6_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_7_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[1]) - (12*f_6_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_7_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_6_2*f[21]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_7_2*f[21]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_6_2*f[20]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_7_2*f[20]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_6_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_7_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_6_2*f[20]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_7_2*f[20]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_6_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_7_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*f_6_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*f_7_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_6_2*f[21]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_7_2*f[21]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (6*cos2th*f_2_2*f[20]*f[22]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_3_2*f[20]*f[22]*f[68]*f[70])/(-U[0] + 2*U[1]) - (6*f_2_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-U[0] + 2*U[1]) - (6*f_3_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*f_2_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*f_3_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_2_2*f[21]*f[23]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_3_2*f[21]*f[23]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*f_2_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*f_3_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_2_2*f[21]*f[22]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_3_2*f[21]*f[22]*f[69]*f[70])/(-U[0] + 2*U[1]) - (6*cos2th*f_2_2*f[20]*f[23]*f[69]*f[70])/(-U[0] + 2*U[1]) - (6*cos2th*f_3_2*f[20]*f[23]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*f_2_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*f_3_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-U[0] + 2*U[1]) - (6*f_2_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*f_3_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*cos2th*f_2_2*f[21]*f[22]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*cos2th*f_3_2*f[21]*f[22]*f[68]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_2_2*f[20]*f[23]*f[68]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_3_2*f[20]*f[23]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*f_2_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*f_3_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_2_2*f[20]*f[22]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_3_2*f[20]*f[22]*f[69]*f[71])/(-U[0] + 2*U[1]) - (6*f_2_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-U[0] + 2*U[1]) - (6*f_3_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*f_2_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*f_3_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_2_2*f[21]*f[23]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_3_2*f[21]*f[23]*f[69]*f[71])/(-U[0] + 2*U[1]) + (28*cos2th*f_12_2*f[22]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_13_2*f[22]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[1]) - (28*f_12_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[1]) - (28*f_13_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_12_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_13_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_12_2*f[23]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_13_2*f[23]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_12_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_13_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_12_2*f[23]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_13_2*f[23]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_12_2*f[22]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_13_2*f[22]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_12_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_13_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[1]) - (28*f_12_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_13_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_12_2*f[23]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_13_2*f[23]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_12_2*f[22]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_13_2*f[22]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_12_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_13_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_12_2*f[22]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_13_2*f[22]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_12_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_13_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*f_12_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*f_13_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_12_2*f[23]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_13_2*f[23]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (24*cos2th*f_10_2*f[22]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_11_2*f[22]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[1]) - (24*f_10_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[1]) - (24*f_11_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_10_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_11_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_10_2*f[23]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_11_2*f[23]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_10_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_11_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_10_2*f[23]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_11_2*f[23]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_10_2*f[22]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_11_2*f[22]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_10_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_11_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[1]) - (24*f_10_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_11_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_10_2*f[23]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_11_2*f[23]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_10_2*f[22]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_11_2*f[22]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_10_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_11_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_10_2*f[22]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_11_2*f[22]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_10_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_11_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*f_10_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*f_11_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_10_2*f[23]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_11_2*f[23]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (20*cos2th*f_8_2*f[22]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_9_2*f[22]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[1]) - (20*f_8_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[1]) - (20*f_9_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_8_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_9_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_8_2*f[23]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_9_2*f[23]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_8_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_9_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_8_2*f[23]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_9_2*f[23]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_8_2*f[22]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_9_2*f[22]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_8_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_9_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[1]) - (20*f_8_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_9_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_8_2*f[23]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_9_2*f[23]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_8_2*f[22]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_9_2*f[22]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_8_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_9_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_8_2*f[22]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_9_2*f[22]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_8_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_9_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*f_8_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*f_9_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_8_2*f[23]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_9_2*f[23]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (12*cos2th*f_4_2*f[22]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_5_2*f[22]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[1]) - (12*f_4_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[1]) - (12*f_5_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_4_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_5_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_4_2*f[23]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_5_2*f[23]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_4_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_5_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_4_2*f[23]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_5_2*f[23]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_4_2*f[22]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_5_2*f[22]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_4_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_5_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[1]) - (12*f_4_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_5_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_4_2*f[23]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_5_2*f[23]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_4_2*f[22]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_5_2*f[22]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_4_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_5_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_4_2*f[22]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_5_2*f[22]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_4_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_5_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*f_4_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*f_5_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_4_2*f[23]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_5_2*f[23]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (8*cos2th*f_2_2*f[22]*f[24]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_3_2*f[22]*f[24]*f[70]*f[72])/(-U[0] + 3*U[1]) - (8*f_2_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-U[0] + 3*U[1]) - (8*f_3_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*f_2_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*f_3_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_2_2*f[23]*f[25]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_3_2*f[23]*f[25]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*f_2_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*f_3_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_2_2*f[23]*f[24]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_3_2*f[23]*f[24]*f[71]*f[72])/(-U[0] + 3*U[1]) - (8*cos2th*f_2_2*f[22]*f[25]*f[71]*f[72])/(-U[0] + 3*U[1]) - (8*cos2th*f_3_2*f[22]*f[25]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*f_2_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*f_3_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-U[0] + 3*U[1]) - (8*f_2_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*f_3_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*cos2th*f_2_2*f[23]*f[24]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*cos2th*f_3_2*f[23]*f[24]*f[70]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_2_2*f[22]*f[25]*f[70]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_3_2*f[22]*f[25]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*f_2_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*f_3_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_2_2*f[22]*f[24]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_3_2*f[22]*f[24]*f[71]*f[73])/(-U[0] + 3*U[1]) - (8*f_2_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-U[0] + 3*U[1]) - (8*f_3_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*f_2_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*f_3_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_2_2*f[23]*f[25]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_3_2*f[23]*f[25]*f[71]*f[73])/(-U[0] + 3*U[1]) + (35*cos2th*f_12_2*f[24]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_13_2*f[24]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[1]) - (35*f_12_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[1]) - (35*f_13_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_12_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_13_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_12_2*f[25]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_13_2*f[25]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_12_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_13_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_12_2*f[25]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_13_2*f[25]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_12_2*f[24]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_13_2*f[24]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_12_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_13_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[1]) - (35*f_12_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_13_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_12_2*f[25]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_13_2*f[25]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_12_2*f[24]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_13_2*f[24]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_12_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_13_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_12_2*f[24]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_13_2*f[24]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_12_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_13_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*f_12_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*f_13_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_12_2*f[25]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_13_2*f[25]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (30*cos2th*f_10_2*f[24]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_11_2*f[24]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[1]) - (30*f_10_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[1]) - (30*f_11_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_10_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_11_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_10_2*f[25]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_11_2*f[25]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_10_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_11_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_10_2*f[25]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_11_2*f[25]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_10_2*f[24]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_11_2*f[24]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_10_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_11_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[1]) - (30*f_10_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_11_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_10_2*f[25]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_11_2*f[25]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_10_2*f[24]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_11_2*f[24]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_10_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_11_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_10_2*f[24]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_11_2*f[24]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_10_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_11_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*f_10_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*f_11_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_10_2*f[25]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_11_2*f[25]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (20*cos2th*f_6_2*f[24]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_7_2*f[24]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[1]) - (20*f_6_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[1]) - (20*f_7_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_6_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_7_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_6_2*f[25]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_7_2*f[25]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_6_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_7_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_6_2*f[25]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_7_2*f[25]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_6_2*f[24]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_7_2*f[24]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_6_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_7_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[1]) - (20*f_6_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_7_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_6_2*f[25]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_7_2*f[25]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_6_2*f[24]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_7_2*f[24]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_6_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_7_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_6_2*f[24]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_7_2*f[24]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_6_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_7_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*f_6_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*f_7_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_6_2*f[25]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_7_2*f[25]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (15*cos2th*f_4_2*f[24]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_5_2*f[24]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[1]) - (15*f_4_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[1]) - (15*f_5_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_4_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_5_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_4_2*f[25]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_5_2*f[25]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_4_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_5_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_4_2*f[25]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_5_2*f[25]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_4_2*f[24]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_5_2*f[24]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_4_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_5_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[1]) - (15*f_4_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_5_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_4_2*f[25]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_5_2*f[25]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_4_2*f[24]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_5_2*f[24]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_4_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_5_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_4_2*f[24]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_5_2*f[24]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_4_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_5_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*f_4_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*f_5_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_4_2*f[25]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_5_2*f[25]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (10*cos2th*f_2_2*f[24]*f[26]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_3_2*f[24]*f[26]*f[72]*f[74])/(-U[0] + 4*U[1]) - (10*f_2_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-U[0] + 4*U[1]) - (10*f_3_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*f_2_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*f_3_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_2_2*f[25]*f[27]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_3_2*f[25]*f[27]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*f_2_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*f_3_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_2_2*f[25]*f[26]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_3_2*f[25]*f[26]*f[73]*f[74])/(-U[0] + 4*U[1]) - (10*cos2th*f_2_2*f[24]*f[27]*f[73]*f[74])/(-U[0] + 4*U[1]) - (10*cos2th*f_3_2*f[24]*f[27]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*f_2_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*f_3_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-U[0] + 4*U[1]) - (10*f_2_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*f_3_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*cos2th*f_2_2*f[25]*f[26]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*cos2th*f_3_2*f[25]*f[26]*f[72]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_2_2*f[24]*f[27]*f[72]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_3_2*f[24]*f[27]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*f_2_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*f_3_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_2_2*f[24]*f[26]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_3_2*f[24]*f[26]*f[73]*f[75])/(-U[0] + 4*U[1]) - (10*f_2_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-U[0] + 4*U[1]) - (10*f_3_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*f_2_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*f_3_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_2_2*f[25]*f[27]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_3_2*f[25]*f[27]*f[73]*f[75])/(-U[0] + 4*U[1]) + (42*cos2th*f_12_2*f[26]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_13_2*f[26]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[1]) - (42*f_12_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[1]) - (42*f_13_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_12_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_13_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_12_2*f[27]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_13_2*f[27]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_12_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_13_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_12_2*f[27]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_13_2*f[27]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_12_2*f[26]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_13_2*f[26]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_12_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_13_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[1]) - (42*f_12_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_13_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_12_2*f[27]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_13_2*f[27]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_12_2*f[26]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_13_2*f[26]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_12_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_13_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_12_2*f[26]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_13_2*f[26]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_12_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_13_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*f_12_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*f_13_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_12_2*f[27]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_13_2*f[27]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (30*cos2th*f_8_2*f[26]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_9_2*f[26]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[1]) - (30*f_8_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[1]) - (30*f_9_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_8_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_9_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_8_2*f[27]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_9_2*f[27]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_8_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_9_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_8_2*f[27]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_9_2*f[27]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_8_2*f[26]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_9_2*f[26]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_8_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_9_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[1]) - (30*f_8_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_9_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_8_2*f[27]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_9_2*f[27]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_8_2*f[26]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_9_2*f[26]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_8_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_9_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_8_2*f[26]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_9_2*f[26]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_8_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_9_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*f_8_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*f_9_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_8_2*f[27]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_9_2*f[27]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (24*cos2th*f_6_2*f[26]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_7_2*f[26]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[1]) - (24*f_6_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[1]) - (24*f_7_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_6_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_7_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_6_2*f[27]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_7_2*f[27]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_6_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_7_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_6_2*f[27]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_7_2*f[27]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_6_2*f[26]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_7_2*f[26]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_6_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_7_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[1]) - (24*f_6_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_7_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_6_2*f[27]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_7_2*f[27]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_6_2*f[26]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_7_2*f[26]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_6_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_7_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_6_2*f[26]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_7_2*f[26]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_6_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_7_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*f_6_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*f_7_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_6_2*f[27]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_7_2*f[27]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (18*cos2th*f_4_2*f[26]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_5_2*f[26]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[1]) - (18*f_4_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[1]) - (18*f_5_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_4_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_5_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_4_2*f[27]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_5_2*f[27]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_4_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_5_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_4_2*f[27]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_5_2*f[27]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_4_2*f[26]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_5_2*f[26]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_4_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_5_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[1]) - (18*f_4_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_5_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_4_2*f[27]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_5_2*f[27]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_4_2*f[26]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_5_2*f[26]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_4_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_5_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_4_2*f[26]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_5_2*f[26]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_4_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_5_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*f_4_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*f_5_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_4_2*f[27]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_5_2*f[27]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (12*cos2th*f_2_2*f[26]*f[28]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_3_2*f[26]*f[28]*f[74]*f[76])/(-U[0] + 5*U[1]) - (12*f_2_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-U[0] + 5*U[1]) - (12*f_3_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*f_2_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*f_3_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_2_2*f[27]*f[29]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_3_2*f[27]*f[29]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*f_2_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*f_3_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_2_2*f[27]*f[28]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_3_2*f[27]*f[28]*f[75]*f[76])/(-U[0] + 5*U[1]) - (12*cos2th*f_2_2*f[26]*f[29]*f[75]*f[76])/(-U[0] + 5*U[1]) - (12*cos2th*f_3_2*f[26]*f[29]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*f_2_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*f_3_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-U[0] + 5*U[1]) - (12*f_2_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*f_3_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*cos2th*f_2_2*f[27]*f[28]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*cos2th*f_3_2*f[27]*f[28]*f[74]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_2_2*f[26]*f[29]*f[74]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_3_2*f[26]*f[29]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*f_2_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*f_3_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_2_2*f[26]*f[28]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_3_2*f[26]*f[28]*f[75]*f[77])/(-U[0] + 5*U[1]) - (12*f_2_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-U[0] + 5*U[1]) - (12*f_3_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*f_2_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*f_3_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_2_2*f[27]*f[29]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_3_2*f[27]*f[29]*f[75]*f[77])/(-U[0] + 5*U[1]) + (42*cos2th*f_10_2*f[28]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_11_2*f[28]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[1]) - (42*f_10_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[1]) - (42*f_11_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_10_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_11_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_10_2*f[29]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_11_2*f[29]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_10_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_11_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_10_2*f[29]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_11_2*f[29]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_10_2*f[28]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_11_2*f[28]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_10_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_11_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[1]) - (42*f_10_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_11_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_10_2*f[29]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_11_2*f[29]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_10_2*f[28]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_11_2*f[28]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_10_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_11_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_10_2*f[28]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_11_2*f[28]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_10_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_11_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*f_10_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*f_11_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_10_2*f[29]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_11_2*f[29]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (35*cos2th*f_8_2*f[28]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_9_2*f[28]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[1]) - (35*f_8_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[1]) - (35*f_9_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_8_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_9_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_8_2*f[29]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_9_2*f[29]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_8_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_9_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_8_2*f[29]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_9_2*f[29]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_8_2*f[28]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_9_2*f[28]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_8_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_9_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[1]) - (35*f_8_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_9_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_8_2*f[29]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_9_2*f[29]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_8_2*f[28]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_9_2*f[28]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_8_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_9_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_8_2*f[28]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_9_2*f[28]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_8_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_9_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*f_8_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*f_9_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_8_2*f[29]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_9_2*f[29]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (28*cos2th*f_6_2*f[28]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_7_2*f[28]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[1]) - (28*f_6_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[1]) - (28*f_7_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_6_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_7_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_6_2*f[29]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_7_2*f[29]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_6_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_7_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_6_2*f[29]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_7_2*f[29]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_6_2*f[28]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_7_2*f[28]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_6_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_7_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[1]) - (28*f_6_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_7_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_6_2*f[29]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_7_2*f[29]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_6_2*f[28]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_7_2*f[28]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_6_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_7_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_6_2*f[28]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_7_2*f[28]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_6_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_7_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*f_6_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*f_7_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_6_2*f[29]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_7_2*f[29]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (21*cos2th*f_4_2*f[28]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_5_2*f[28]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[1]) - (21*f_4_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[1]) - (21*f_5_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_4_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_5_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_4_2*f[29]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_5_2*f[29]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_4_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_5_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_4_2*f[29]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_5_2*f[29]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_4_2*f[28]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_5_2*f[28]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_4_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_5_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[1]) - (21*f_4_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_5_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_4_2*f[29]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_5_2*f[29]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_4_2*f[28]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_5_2*f[28]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_4_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_5_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_4_2*f[28]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_5_2*f[28]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_4_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_5_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*f_4_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*f_5_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_4_2*f[29]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_5_2*f[29]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (14*cos2th*f_2_2*f[28]*f[30]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_3_2*f[28]*f[30]*f[76]*f[78])/(-U[0] + 6*U[1]) - (14*f_2_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-U[0] + 6*U[1]) - (14*f_3_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*f_2_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*f_3_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_2_2*f[29]*f[31]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_3_2*f[29]*f[31]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*f_2_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*f_3_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_2_2*f[29]*f[30]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_3_2*f[29]*f[30]*f[77]*f[78])/(-U[0] + 6*U[1]) - (14*cos2th*f_2_2*f[28]*f[31]*f[77]*f[78])/(-U[0] + 6*U[1]) - (14*cos2th*f_3_2*f[28]*f[31]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*f_2_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*f_3_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-U[0] + 6*U[1]) - (14*f_2_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*f_3_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*cos2th*f_2_2*f[29]*f[30]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*cos2th*f_3_2*f[29]*f[30]*f[76]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_2_2*f[28]*f[31]*f[76]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_3_2*f[28]*f[31]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*f_2_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*f_3_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_2_2*f[28]*f[30]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_3_2*f[28]*f[30]*f[77]*f[79])/(-U[0] + 6*U[1]) - (14*f_2_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-U[0] + 6*U[1]) - (14*f_3_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*f_2_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*f_3_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_2_2*f[29]*f[31]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_3_2*f[29]*f[31]*f[77]*f[79])/(-U[0] + 6*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[0]*J[4]*((-5*cos2th*f_10_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) - (5*cos2th*f_11_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) - (6*cos2th*f_12_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) - (6*cos2th*f_13_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) - (7*cos2th*f_14_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) - (7*cos2th*f_15_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) - (2*cos2th*f_4_2*f[16]*f[18]*f[64]*f[66])/U[0] - (2*cos2th*f_5_2*f[16]*f[18]*f[64]*f[66])/U[0] - (3*cos2th*f_6_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) - (3*cos2th*f_7_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) - (4*cos2th*f_8_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) - (4*cos2th*f_9_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) + (5*f_11_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) + (6*f_12_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) + (6*f_13_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) + (7*f_14_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) + (7*f_15_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) + (2*f_4_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] + (2*f_5_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] + (3*f_6_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) + (3*f_7_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) + (4*f_8_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) + (4*f_9_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) - (5*f_11_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) - (6*f_12_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) - (6*f_13_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) - (7*f_14_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) - (7*f_15_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) - (2*f_4_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] - (2*f_5_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] - (3*f_6_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) - (3*f_7_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) - (4*f_8_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) - (4*f_9_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) - (5*cos2th*f_10_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) - (5*cos2th*f_11_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) - (6*cos2th*f_12_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) - (6*cos2th*f_13_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) - (7*cos2th*f_14_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) - (7*cos2th*f_15_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) - (2*cos2th*f_4_2*f[17]*f[19]*f[64]*f[66])/U[0] - (2*cos2th*f_5_2*f[17]*f[19]*f[64]*f[66])/U[0] - (3*cos2th*f_6_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) - (3*cos2th*f_7_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) - (4*cos2th*f_8_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) - (4*cos2th*f_9_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) - (5*f_11_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) - (6*f_12_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) - (6*f_13_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) - (7*f_14_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) - (7*f_15_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) - (2*f_4_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] - (2*f_5_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] - (3*f_6_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) - (3*f_7_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) - (4*f_8_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) - (4*f_9_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) - (5*cos2th*f_10_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) - (5*cos2th*f_11_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) - (6*cos2th*f_12_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) - (6*cos2th*f_13_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) - (7*cos2th*f_14_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) - (7*cos2th*f_15_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) - (2*cos2th*f_4_2*f[17]*f[18]*f[65]*f[66])/U[0] - (2*cos2th*f_5_2*f[17]*f[18]*f[65]*f[66])/U[0] - (3*cos2th*f_6_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) - (3*cos2th*f_7_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) - (4*cos2th*f_8_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) - (4*cos2th*f_9_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) + (5*cos2th*f_10_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) + (5*cos2th*f_11_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) + (6*cos2th*f_12_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) + (6*cos2th*f_13_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) + (7*cos2th*f_14_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) + (7*cos2th*f_15_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) + (2*cos2th*f_4_2*f[16]*f[19]*f[65]*f[66])/U[0] + (2*cos2th*f_5_2*f[16]*f[19]*f[65]*f[66])/U[0] + (3*cos2th*f_6_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) + (3*cos2th*f_7_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) + (4*cos2th*f_8_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) + (4*cos2th*f_9_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) - (5*f_11_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) - (6*f_12_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) - (6*f_13_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) - (7*f_14_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) - (7*f_15_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) - (2*f_4_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] - (2*f_5_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] - (3*f_6_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) - (3*f_7_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) - (4*f_8_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) - (4*f_9_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) + (5*f_11_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) + (6*f_12_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) + (6*f_13_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) + (7*f_14_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) + (7*f_15_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) + (2*f_4_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] + (2*f_5_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] + (3*f_6_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) + (3*f_7_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) + (4*f_8_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) + (4*f_9_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_10_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) + (5*cos2th*f_11_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_12_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) + (6*cos2th*f_13_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) + (7*cos2th*f_14_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) + (7*cos2th*f_15_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) + (2*cos2th*f_4_2*f[17]*f[18]*f[64]*f[67])/U[0] + (2*cos2th*f_5_2*f[17]*f[18]*f[64]*f[67])/U[0] + (3*cos2th*f_6_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) + (3*cos2th*f_7_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) + (4*cos2th*f_8_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) + (4*cos2th*f_9_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_10_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) - (5*cos2th*f_11_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_12_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) - (6*cos2th*f_13_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) - (7*cos2th*f_14_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) - (7*cos2th*f_15_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) - (2*cos2th*f_4_2*f[16]*f[19]*f[64]*f[67])/U[0] - (2*cos2th*f_5_2*f[16]*f[19]*f[64]*f[67])/U[0] - (3*cos2th*f_6_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) - (3*cos2th*f_7_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) - (4*cos2th*f_8_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) - (4*cos2th*f_9_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) + (5*f_10_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) + (5*f_11_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) + (6*f_12_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) + (6*f_13_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) + (7*f_14_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) + (7*f_15_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) + (2*f_4_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] + (2*f_5_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] + (3*f_6_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) + (3*f_7_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) + (4*f_8_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) + (4*f_9_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_10_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) - (5*cos2th*f_11_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) - (6*cos2th*f_12_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) - (6*cos2th*f_13_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) - (7*cos2th*f_14_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) - (7*cos2th*f_15_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) - (2*cos2th*f_4_2*f[16]*f[18]*f[65]*f[67])/U[0] - (2*cos2th*f_5_2*f[16]*f[18]*f[65]*f[67])/U[0] - (3*cos2th*f_6_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) - (3*cos2th*f_7_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) - (4*cos2th*f_8_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) - (4*cos2th*f_9_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) + (5*f_10_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) + (5*f_11_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) + (6*f_12_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) + (6*f_13_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) + (7*f_14_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) + (7*f_15_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) + (2*f_4_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] + (2*f_5_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] + (3*f_6_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) + (3*f_7_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) + (4*f_8_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) + (4*f_9_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) - (5*f_10_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) - (5*f_11_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) - (6*f_12_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) - (6*f_13_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) - (7*f_14_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) - (7*f_15_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) - (2*f_4_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] - (2*f_5_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] - (3*f_6_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) - (3*f_7_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) - (4*f_8_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) - (4*f_9_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) - (5*cos2th*f_10_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) - (5*cos2th*f_11_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) - (6*cos2th*f_12_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) - (6*cos2th*f_13_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) - (7*cos2th*f_14_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) - (7*cos2th*f_15_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) - (2*cos2th*f_4_2*f[17]*f[19]*f[65]*f[67])/U[0] - (2*cos2th*f_5_2*f[17]*f[19]*f[65]*f[67])/U[0] - (3*cos2th*f_6_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) - (3*cos2th*f_7_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) - (4*cos2th*f_8_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) - (4*cos2th*f_9_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (2*cos2th*f_2_2*f[18]*f[20]*f[66]*f[68])/U[1] + (2*cos2th*f_3_2*f[18]*f[20]*f[66]*f[68])/U[1] - (2*f_2_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[1] - (2*f_3_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[1] + (2*f_2_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[1] + (2*f_3_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[1] + (2*cos2th*f_2_2*f[19]*f[21]*f[66]*f[68])/U[1] + (2*cos2th*f_3_2*f[19]*f[21]*f[66]*f[68])/U[1] + (2*f_2_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[1] + (2*f_3_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[1] + (2*cos2th*f_2_2*f[19]*f[20]*f[67]*f[68])/U[1] + (2*cos2th*f_3_2*f[19]*f[20]*f[67]*f[68])/U[1] - (2*cos2th*f_2_2*f[18]*f[21]*f[67]*f[68])/U[1] - (2*cos2th*f_3_2*f[18]*f[21]*f[67]*f[68])/U[1] + (2*f_2_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[1] + (2*f_3_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[1] - (2*f_2_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[1] - (2*f_3_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[1] - (2*cos2th*f_2_2*f[19]*f[20]*f[66]*f[69])/U[1] - (2*cos2th*f_3_2*f[19]*f[20]*f[66]*f[69])/U[1] + (2*cos2th*f_2_2*f[18]*f[21]*f[66]*f[69])/U[1] + (2*cos2th*f_3_2*f[18]*f[21]*f[66]*f[69])/U[1] - (2*f_2_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[1] - (2*f_3_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[1] + (2*cos2th*f_2_2*f[18]*f[20]*f[67]*f[69])/U[1] + (2*cos2th*f_3_2*f[18]*f[20]*f[67]*f[69])/U[1] - (2*f_2_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[1] - (2*f_3_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[1] + (2*f_2_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[1] + (2*f_3_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[1] + (2*cos2th*f_2_2*f[19]*f[21]*f[67]*f[69])/U[1] + (2*cos2th*f_3_2*f[19]*f[21]*f[67]*f[69])/U[1] + (3*cos2th*f_2_2*f[20]*f[22]*f[68]*f[70])/(2.*U[1]) + (3*cos2th*f_3_2*f[20]*f[22]*f[68]*f[70])/(2.*U[1]) - (3*f_2_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[1]) - (3*f_3_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[1]) + (3*f_2_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[1]) + (3*f_3_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[1]) + (3*cos2th*f_2_2*f[21]*f[23]*f[68]*f[70])/(2.*U[1]) + (3*cos2th*f_3_2*f[21]*f[23]*f[68]*f[70])/(2.*U[1]) + (3*f_2_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[1]) + (3*f_3_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[1]) + (3*cos2th*f_2_2*f[21]*f[22]*f[69]*f[70])/(2.*U[1]) + (3*cos2th*f_3_2*f[21]*f[22]*f[69]*f[70])/(2.*U[1]) - (3*cos2th*f_2_2*f[20]*f[23]*f[69]*f[70])/(2.*U[1]) - (3*cos2th*f_3_2*f[20]*f[23]*f[69]*f[70])/(2.*U[1]) + (3*f_2_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[1]) + (3*f_3_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[1]) - (3*f_2_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[1]) - (3*f_3_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_2_2*f[21]*f[22]*f[68]*f[71])/(2.*U[1]) - (3*cos2th*f_3_2*f[21]*f[22]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_2_2*f[20]*f[23]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_3_2*f[20]*f[23]*f[68]*f[71])/(2.*U[1]) - (3*f_2_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[1]) - (3*f_3_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[1]) + (3*cos2th*f_2_2*f[20]*f[22]*f[69]*f[71])/(2.*U[1]) + (3*cos2th*f_3_2*f[20]*f[22]*f[69]*f[71])/(2.*U[1]) - (3*f_2_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[1]) - (3*f_3_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[1]) + (3*f_2_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[1]) + (3*f_3_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[1]) + (3*cos2th*f_2_2*f[21]*f[23]*f[69]*f[71])/(2.*U[1]) + (3*cos2th*f_3_2*f[21]*f[23]*f[69]*f[71])/(2.*U[1]) + (4*cos2th*f_2_2*f[22]*f[24]*f[70]*f[72])/(3.*U[1]) + (4*cos2th*f_3_2*f[22]*f[24]*f[70]*f[72])/(3.*U[1]) - (4*f_2_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[1]) - (4*f_3_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[1]) + (4*f_2_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[1]) + (4*f_3_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[1]) + (4*cos2th*f_2_2*f[23]*f[25]*f[70]*f[72])/(3.*U[1]) + (4*cos2th*f_3_2*f[23]*f[25]*f[70]*f[72])/(3.*U[1]) + (4*f_2_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[1]) + (4*f_3_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[1]) + (4*cos2th*f_2_2*f[23]*f[24]*f[71]*f[72])/(3.*U[1]) + (4*cos2th*f_3_2*f[23]*f[24]*f[71]*f[72])/(3.*U[1]) - (4*cos2th*f_2_2*f[22]*f[25]*f[71]*f[72])/(3.*U[1]) - (4*cos2th*f_3_2*f[22]*f[25]*f[71]*f[72])/(3.*U[1]) + (4*f_2_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[1]) + (4*f_3_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[1]) - (4*f_2_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[1]) - (4*f_3_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_2_2*f[23]*f[24]*f[70]*f[73])/(3.*U[1]) - (4*cos2th*f_3_2*f[23]*f[24]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_2_2*f[22]*f[25]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_3_2*f[22]*f[25]*f[70]*f[73])/(3.*U[1]) - (4*f_2_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[1]) - (4*f_3_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[1]) + (4*cos2th*f_2_2*f[22]*f[24]*f[71]*f[73])/(3.*U[1]) + (4*cos2th*f_3_2*f[22]*f[24]*f[71]*f[73])/(3.*U[1]) - (4*f_2_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[1]) - (4*f_3_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[1]) + (4*f_2_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[1]) + (4*f_3_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[1]) + (4*cos2th*f_2_2*f[23]*f[25]*f[71]*f[73])/(3.*U[1]) + (4*cos2th*f_3_2*f[23]*f[25]*f[71]*f[73])/(3.*U[1]) + (5*cos2th*f_2_2*f[24]*f[26]*f[72]*f[74])/(4.*U[1]) + (5*cos2th*f_3_2*f[24]*f[26]*f[72]*f[74])/(4.*U[1]) - (5*f_2_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[1]) - (5*f_3_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[1]) + (5*f_2_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[1]) + (5*f_3_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[1]) + (5*cos2th*f_2_2*f[25]*f[27]*f[72]*f[74])/(4.*U[1]) + (5*cos2th*f_3_2*f[25]*f[27]*f[72]*f[74])/(4.*U[1]) + (5*f_2_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[1]) + (5*f_3_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[1]) + (5*cos2th*f_2_2*f[25]*f[26]*f[73]*f[74])/(4.*U[1]) + (5*cos2th*f_3_2*f[25]*f[26]*f[73]*f[74])/(4.*U[1]) - (5*cos2th*f_2_2*f[24]*f[27]*f[73]*f[74])/(4.*U[1]) - (5*cos2th*f_3_2*f[24]*f[27]*f[73]*f[74])/(4.*U[1]) + (5*f_2_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[1]) + (5*f_3_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[1]) - (5*f_2_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[1]) - (5*f_3_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_2_2*f[25]*f[26]*f[72]*f[75])/(4.*U[1]) - (5*cos2th*f_3_2*f[25]*f[26]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_2_2*f[24]*f[27]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_3_2*f[24]*f[27]*f[72]*f[75])/(4.*U[1]) - (5*f_2_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[1]) - (5*f_3_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[1]) + (5*cos2th*f_2_2*f[24]*f[26]*f[73]*f[75])/(4.*U[1]) + (5*cos2th*f_3_2*f[24]*f[26]*f[73]*f[75])/(4.*U[1]) - (5*f_2_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[1]) - (5*f_3_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[1]) + (5*f_2_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[1]) + (5*f_3_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[1]) + (5*cos2th*f_2_2*f[25]*f[27]*f[73]*f[75])/(4.*U[1]) + (5*cos2th*f_3_2*f[25]*f[27]*f[73]*f[75])/(4.*U[1]) + (6*cos2th*f_2_2*f[26]*f[28]*f[74]*f[76])/(5.*U[1]) + (6*cos2th*f_3_2*f[26]*f[28]*f[74]*f[76])/(5.*U[1]) - (6*f_2_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[1]) - (6*f_3_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[1]) + (6*f_2_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[1]) + (6*f_3_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[1]) + (6*cos2th*f_2_2*f[27]*f[29]*f[74]*f[76])/(5.*U[1]) + (6*cos2th*f_3_2*f[27]*f[29]*f[74]*f[76])/(5.*U[1]) + (6*f_2_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[1]) + (6*f_3_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[1]) + (6*cos2th*f_2_2*f[27]*f[28]*f[75]*f[76])/(5.*U[1]) + (6*cos2th*f_3_2*f[27]*f[28]*f[75]*f[76])/(5.*U[1]) - (6*cos2th*f_2_2*f[26]*f[29]*f[75]*f[76])/(5.*U[1]) - (6*cos2th*f_3_2*f[26]*f[29]*f[75]*f[76])/(5.*U[1]) + (6*f_2_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[1]) + (6*f_3_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[1]) - (6*f_2_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[1]) - (6*f_3_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_2_2*f[27]*f[28]*f[74]*f[77])/(5.*U[1]) - (6*cos2th*f_3_2*f[27]*f[28]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_2_2*f[26]*f[29]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_3_2*f[26]*f[29]*f[74]*f[77])/(5.*U[1]) - (6*f_2_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[1]) - (6*f_3_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[1]) + (6*cos2th*f_2_2*f[26]*f[28]*f[75]*f[77])/(5.*U[1]) + (6*cos2th*f_3_2*f[26]*f[28]*f[75]*f[77])/(5.*U[1]) - (6*f_2_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[1]) - (6*f_3_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[1]) + (6*f_2_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[1]) + (6*f_3_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[1]) + (6*cos2th*f_2_2*f[27]*f[29]*f[75]*f[77])/(5.*U[1]) + (6*cos2th*f_3_2*f[27]*f[29]*f[75]*f[77])/(5.*U[1]) + (7*cos2th*f_2_2*f[28]*f[30]*f[76]*f[78])/(6.*U[1]) + (7*cos2th*f_3_2*f[28]*f[30]*f[76]*f[78])/(6.*U[1]) - (7*f_2_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[1]) - (7*f_3_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[1]) + (7*f_2_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[1]) + (7*f_3_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[1]) + (7*cos2th*f_2_2*f[29]*f[31]*f[76]*f[78])/(6.*U[1]) + (7*cos2th*f_3_2*f[29]*f[31]*f[76]*f[78])/(6.*U[1]) + (7*f_2_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[1]) + (7*f_3_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[1]) + (7*cos2th*f_2_2*f[29]*f[30]*f[77]*f[78])/(6.*U[1]) + (7*cos2th*f_3_2*f[29]*f[30]*f[77]*f[78])/(6.*U[1]) - (7*cos2th*f_2_2*f[28]*f[31]*f[77]*f[78])/(6.*U[1]) - (7*cos2th*f_3_2*f[28]*f[31]*f[77]*f[78])/(6.*U[1]) + (7*f_2_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[1]) + (7*f_3_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[1]) - (7*f_2_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[1]) - (7*f_3_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_2_2*f[29]*f[30]*f[76]*f[79])/(6.*U[1]) - (7*cos2th*f_3_2*f[29]*f[30]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_2_2*f[28]*f[31]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_3_2*f[28]*f[31]*f[76]*f[79])/(6.*U[1]) - (7*f_2_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[1]) - (7*f_3_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[1]) + (7*cos2th*f_2_2*f[28]*f[30]*f[77]*f[79])/(6.*U[1]) + (7*cos2th*f_3_2*f[28]*f[30]*f[77]*f[79])/(6.*U[1]) - (7*f_2_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[1]) - (7*f_3_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[1]) + (7*f_2_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[1]) + (7*f_3_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[1]) + (7*cos2th*f_2_2*f[29]*f[31]*f[77]*f[79])/(6.*U[1]) + (7*cos2th*f_3_2*f[29]*f[31]*f[77]*f[79])/(6.*U[1]) + (14*cos2th*f_14_2*f[18]*f[20]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_15_2*f[18]*f[20]*f[66]*f[68])/(-6*U[0] + U[1]) - (14*f_14_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-6*U[0] + U[1]) - (14*f_15_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*f_14_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*f_15_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_14_2*f[19]*f[21]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_15_2*f[19]*f[21]*f[66]*f[68])/(-6*U[0] + U[1]) + (14*f_14_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*f_15_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_14_2*f[19]*f[20]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*cos2th*f_15_2*f[19]*f[20]*f[67]*f[68])/(-6*U[0] + U[1]) - (14*cos2th*f_14_2*f[18]*f[21]*f[67]*f[68])/(-6*U[0] + U[1]) - (14*cos2th*f_15_2*f[18]*f[21]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*f_14_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-6*U[0] + U[1]) + (14*f_15_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-6*U[0] + U[1]) - (14*f_14_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*f_15_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*cos2th*f_14_2*f[19]*f[20]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*cos2th*f_15_2*f[19]*f[20]*f[66]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_14_2*f[18]*f[21]*f[66]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_15_2*f[18]*f[21]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*f_14_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-6*U[0] + U[1]) - (14*f_15_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_14_2*f[18]*f[20]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_15_2*f[18]*f[20]*f[67]*f[69])/(-6*U[0] + U[1]) - (14*f_14_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-6*U[0] + U[1]) - (14*f_15_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*f_14_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*f_15_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_14_2*f[19]*f[21]*f[67]*f[69])/(-6*U[0] + U[1]) + (14*cos2th*f_15_2*f[19]*f[21]*f[67]*f[69])/(-6*U[0] + U[1]) + (12*cos2th*f_12_2*f[18]*f[20]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_13_2*f[18]*f[20]*f[66]*f[68])/(-5*U[0] + U[1]) - (12*f_12_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-5*U[0] + U[1]) - (12*f_13_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*f_12_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*f_13_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_12_2*f[19]*f[21]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_13_2*f[19]*f[21]*f[66]*f[68])/(-5*U[0] + U[1]) + (12*f_12_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*f_13_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_12_2*f[19]*f[20]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*cos2th*f_13_2*f[19]*f[20]*f[67]*f[68])/(-5*U[0] + U[1]) - (12*cos2th*f_12_2*f[18]*f[21]*f[67]*f[68])/(-5*U[0] + U[1]) - (12*cos2th*f_13_2*f[18]*f[21]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*f_12_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-5*U[0] + U[1]) + (12*f_13_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-5*U[0] + U[1]) - (12*f_12_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*f_13_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*cos2th*f_12_2*f[19]*f[20]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*cos2th*f_13_2*f[19]*f[20]*f[66]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_12_2*f[18]*f[21]*f[66]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_13_2*f[18]*f[21]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*f_12_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-5*U[0] + U[1]) - (12*f_13_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_12_2*f[18]*f[20]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_13_2*f[18]*f[20]*f[67]*f[69])/(-5*U[0] + U[1]) - (12*f_12_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-5*U[0] + U[1]) - (12*f_13_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*f_12_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*f_13_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_12_2*f[19]*f[21]*f[67]*f[69])/(-5*U[0] + U[1]) + (12*cos2th*f_13_2*f[19]*f[21]*f[67]*f[69])/(-5*U[0] + U[1]) + (10*cos2th*f_10_2*f[18]*f[20]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_11_2*f[18]*f[20]*f[66]*f[68])/(-4*U[0] + U[1]) - (10*f_10_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-4*U[0] + U[1]) - (10*f_11_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*f_10_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*f_11_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_10_2*f[19]*f[21]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_11_2*f[19]*f[21]*f[66]*f[68])/(-4*U[0] + U[1]) + (10*f_10_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*f_11_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_10_2*f[19]*f[20]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*cos2th*f_11_2*f[19]*f[20]*f[67]*f[68])/(-4*U[0] + U[1]) - (10*cos2th*f_10_2*f[18]*f[21]*f[67]*f[68])/(-4*U[0] + U[1]) - (10*cos2th*f_11_2*f[18]*f[21]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*f_10_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-4*U[0] + U[1]) + (10*f_11_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-4*U[0] + U[1]) - (10*f_10_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*f_11_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*cos2th*f_10_2*f[19]*f[20]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*cos2th*f_11_2*f[19]*f[20]*f[66]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_10_2*f[18]*f[21]*f[66]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_11_2*f[18]*f[21]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*f_10_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-4*U[0] + U[1]) - (10*f_11_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_10_2*f[18]*f[20]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_11_2*f[18]*f[20]*f[67]*f[69])/(-4*U[0] + U[1]) - (10*f_10_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-4*U[0] + U[1]) - (10*f_11_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*f_10_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*f_11_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_10_2*f[19]*f[21]*f[67]*f[69])/(-4*U[0] + U[1]) + (10*cos2th*f_11_2*f[19]*f[21]*f[67]*f[69])/(-4*U[0] + U[1]) + (8*cos2th*f_8_2*f[18]*f[20]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_9_2*f[18]*f[20]*f[66]*f[68])/(-3*U[0] + U[1]) - (8*f_8_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-3*U[0] + U[1]) - (8*f_9_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*f_8_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*f_9_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_8_2*f[19]*f[21]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_9_2*f[19]*f[21]*f[66]*f[68])/(-3*U[0] + U[1]) + (8*f_8_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*f_9_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_8_2*f[19]*f[20]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*cos2th*f_9_2*f[19]*f[20]*f[67]*f[68])/(-3*U[0] + U[1]) - (8*cos2th*f_8_2*f[18]*f[21]*f[67]*f[68])/(-3*U[0] + U[1]) - (8*cos2th*f_9_2*f[18]*f[21]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*f_8_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-3*U[0] + U[1]) + (8*f_9_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-3*U[0] + U[1]) - (8*f_8_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*f_9_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*cos2th*f_8_2*f[19]*f[20]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*cos2th*f_9_2*f[19]*f[20]*f[66]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_8_2*f[18]*f[21]*f[66]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_9_2*f[18]*f[21]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*f_8_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-3*U[0] + U[1]) - (8*f_9_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_8_2*f[18]*f[20]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_9_2*f[18]*f[20]*f[67]*f[69])/(-3*U[0] + U[1]) - (8*f_8_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-3*U[0] + U[1]) - (8*f_9_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*f_8_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*f_9_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_8_2*f[19]*f[21]*f[67]*f[69])/(-3*U[0] + U[1]) + (8*cos2th*f_9_2*f[19]*f[21]*f[67]*f[69])/(-3*U[0] + U[1]) + (6*cos2th*f_6_2*f[18]*f[20]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_7_2*f[18]*f[20]*f[66]*f[68])/(-2*U[0] + U[1]) - (6*f_6_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-2*U[0] + U[1]) - (6*f_7_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*f_6_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*f_7_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_6_2*f[19]*f[21]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_7_2*f[19]*f[21]*f[66]*f[68])/(-2*U[0] + U[1]) + (6*f_6_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*f_7_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_6_2*f[19]*f[20]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*cos2th*f_7_2*f[19]*f[20]*f[67]*f[68])/(-2*U[0] + U[1]) - (6*cos2th*f_6_2*f[18]*f[21]*f[67]*f[68])/(-2*U[0] + U[1]) - (6*cos2th*f_7_2*f[18]*f[21]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*f_6_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-2*U[0] + U[1]) + (6*f_7_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-2*U[0] + U[1]) - (6*f_6_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*f_7_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*cos2th*f_6_2*f[19]*f[20]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*cos2th*f_7_2*f[19]*f[20]*f[66]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_6_2*f[18]*f[21]*f[66]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_7_2*f[18]*f[21]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*f_6_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-2*U[0] + U[1]) - (6*f_7_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_6_2*f[18]*f[20]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_7_2*f[18]*f[20]*f[67]*f[69])/(-2*U[0] + U[1]) - (6*f_6_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-2*U[0] + U[1]) - (6*f_7_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*f_6_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*f_7_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_6_2*f[19]*f[21]*f[67]*f[69])/(-2*U[0] + U[1]) + (6*cos2th*f_7_2*f[19]*f[21]*f[67]*f[69])/(-2*U[0] + U[1]) + (21*cos2th*f_14_2*f[20]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_15_2*f[20]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[1]) - (21*f_14_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[1]) - (21*f_15_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_14_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_15_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_14_2*f[21]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_15_2*f[21]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_14_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_15_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_14_2*f[21]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_15_2*f[21]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_14_2*f[20]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_15_2*f[20]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_14_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[1]) + (21*f_15_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[1]) - (21*f_14_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_15_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_14_2*f[21]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*cos2th*f_15_2*f[21]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_14_2*f[20]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_15_2*f[20]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_14_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_15_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_14_2*f[20]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_15_2*f[20]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_14_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[1]) - (21*f_15_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*f_14_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*f_15_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_14_2*f[21]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (21*cos2th*f_15_2*f[21]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[1]) + (18*cos2th*f_12_2*f[20]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_13_2*f[20]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[1]) - (18*f_12_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[1]) - (18*f_13_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_12_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_13_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_12_2*f[21]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_13_2*f[21]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_12_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_13_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_12_2*f[21]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_13_2*f[21]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_12_2*f[20]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_13_2*f[20]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_12_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[1]) + (18*f_13_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[1]) - (18*f_12_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_13_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_12_2*f[21]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*cos2th*f_13_2*f[21]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_12_2*f[20]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_13_2*f[20]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_12_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_13_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_12_2*f[20]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_13_2*f[20]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_12_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[1]) - (18*f_13_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*f_12_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*f_13_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_12_2*f[21]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (18*cos2th*f_13_2*f[21]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[1]) + (15*cos2th*f_10_2*f[20]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_11_2*f[20]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[1]) - (15*f_10_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[1]) - (15*f_11_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_10_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_11_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_10_2*f[21]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_11_2*f[21]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_10_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_11_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_10_2*f[21]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_11_2*f[21]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_10_2*f[20]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_11_2*f[20]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_10_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[1]) + (15*f_11_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[1]) - (15*f_10_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_11_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_10_2*f[21]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*cos2th*f_11_2*f[21]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_10_2*f[20]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_11_2*f[20]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_10_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_11_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_10_2*f[20]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_11_2*f[20]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_10_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[1]) - (15*f_11_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*f_10_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*f_11_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_10_2*f[21]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (15*cos2th*f_11_2*f[21]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[1]) + (12*cos2th*f_8_2*f[20]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_9_2*f[20]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[1]) - (12*f_8_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[1]) - (12*f_9_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_8_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_9_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_8_2*f[21]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_9_2*f[21]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_8_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_9_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_8_2*f[21]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_9_2*f[21]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_8_2*f[20]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_9_2*f[20]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_8_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[1]) + (12*f_9_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[1]) - (12*f_8_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_9_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_8_2*f[21]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*cos2th*f_9_2*f[21]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_8_2*f[20]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_9_2*f[20]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_8_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_9_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_8_2*f[20]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_9_2*f[20]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_8_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[1]) - (12*f_9_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*f_8_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*f_9_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_8_2*f[21]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (12*cos2th*f_9_2*f[21]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[1]) + (6*cos2th*f_4_2*f[20]*f[22]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_5_2*f[20]*f[22]*f[68]*f[70])/(-U[0] + 2*U[1]) - (6*f_4_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-U[0] + 2*U[1]) - (6*f_5_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*f_4_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*f_5_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_4_2*f[21]*f[23]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_5_2*f[21]*f[23]*f[68]*f[70])/(-U[0] + 2*U[1]) + (6*f_4_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*f_5_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_4_2*f[21]*f[22]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*cos2th*f_5_2*f[21]*f[22]*f[69]*f[70])/(-U[0] + 2*U[1]) - (6*cos2th*f_4_2*f[20]*f[23]*f[69]*f[70])/(-U[0] + 2*U[1]) - (6*cos2th*f_5_2*f[20]*f[23]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*f_4_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-U[0] + 2*U[1]) + (6*f_5_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-U[0] + 2*U[1]) - (6*f_4_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*f_5_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*cos2th*f_4_2*f[21]*f[22]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*cos2th*f_5_2*f[21]*f[22]*f[68]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_4_2*f[20]*f[23]*f[68]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_5_2*f[20]*f[23]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*f_4_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-U[0] + 2*U[1]) - (6*f_5_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_4_2*f[20]*f[22]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_5_2*f[20]*f[22]*f[69]*f[71])/(-U[0] + 2*U[1]) - (6*f_4_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-U[0] + 2*U[1]) - (6*f_5_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*f_4_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*f_5_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_4_2*f[21]*f[23]*f[69]*f[71])/(-U[0] + 2*U[1]) + (6*cos2th*f_5_2*f[21]*f[23]*f[69]*f[71])/(-U[0] + 2*U[1]) + (28*cos2th*f_14_2*f[22]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_15_2*f[22]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[1]) - (28*f_14_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[1]) - (28*f_15_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_14_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_15_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_14_2*f[23]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_15_2*f[23]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_14_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_15_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_14_2*f[23]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_15_2*f[23]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_14_2*f[22]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_15_2*f[22]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_14_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[1]) + (28*f_15_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[1]) - (28*f_14_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_15_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_14_2*f[23]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*cos2th*f_15_2*f[23]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_14_2*f[22]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_15_2*f[22]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_14_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_15_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_14_2*f[22]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_15_2*f[22]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_14_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[1]) - (28*f_15_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*f_14_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*f_15_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_14_2*f[23]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (28*cos2th*f_15_2*f[23]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[1]) + (24*cos2th*f_12_2*f[22]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_13_2*f[22]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[1]) - (24*f_12_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[1]) - (24*f_13_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_12_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_13_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_12_2*f[23]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_13_2*f[23]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_12_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_13_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_12_2*f[23]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_13_2*f[23]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_12_2*f[22]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_13_2*f[22]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_12_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[1]) + (24*f_13_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[1]) - (24*f_12_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_13_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_12_2*f[23]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*cos2th*f_13_2*f[23]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_12_2*f[22]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_13_2*f[22]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_12_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_13_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_12_2*f[22]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_13_2*f[22]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_12_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[1]) - (24*f_13_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*f_12_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*f_13_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_12_2*f[23]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (24*cos2th*f_13_2*f[23]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[1]) + (20*cos2th*f_10_2*f[22]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_11_2*f[22]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[1]) - (20*f_10_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[1]) - (20*f_11_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_10_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_11_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_10_2*f[23]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_11_2*f[23]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_10_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_11_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_10_2*f[23]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_11_2*f[23]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_10_2*f[22]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_11_2*f[22]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_10_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[1]) + (20*f_11_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[1]) - (20*f_10_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_11_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_10_2*f[23]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*cos2th*f_11_2*f[23]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_10_2*f[22]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_11_2*f[22]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_10_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_11_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_10_2*f[22]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_11_2*f[22]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_10_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[1]) - (20*f_11_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*f_10_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*f_11_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_10_2*f[23]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (20*cos2th*f_11_2*f[23]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[1]) + (12*cos2th*f_6_2*f[22]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_7_2*f[22]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[1]) - (12*f_6_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[1]) - (12*f_7_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_6_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_7_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_6_2*f[23]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_7_2*f[23]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_6_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_7_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_6_2*f[23]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_7_2*f[23]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_6_2*f[22]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_7_2*f[22]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_6_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[1]) + (12*f_7_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[1]) - (12*f_6_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_7_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_6_2*f[23]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*cos2th*f_7_2*f[23]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_6_2*f[22]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_7_2*f[22]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_6_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_7_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_6_2*f[22]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_7_2*f[22]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_6_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[1]) - (12*f_7_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*f_6_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*f_7_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_6_2*f[23]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (12*cos2th*f_7_2*f[23]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[1]) + (8*cos2th*f_4_2*f[22]*f[24]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_5_2*f[22]*f[24]*f[70]*f[72])/(-U[0] + 3*U[1]) - (8*f_4_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-U[0] + 3*U[1]) - (8*f_5_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*f_4_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*f_5_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_4_2*f[23]*f[25]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_5_2*f[23]*f[25]*f[70]*f[72])/(-U[0] + 3*U[1]) + (8*f_4_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*f_5_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_4_2*f[23]*f[24]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*cos2th*f_5_2*f[23]*f[24]*f[71]*f[72])/(-U[0] + 3*U[1]) - (8*cos2th*f_4_2*f[22]*f[25]*f[71]*f[72])/(-U[0] + 3*U[1]) - (8*cos2th*f_5_2*f[22]*f[25]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*f_4_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-U[0] + 3*U[1]) + (8*f_5_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-U[0] + 3*U[1]) - (8*f_4_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*f_5_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*cos2th*f_4_2*f[23]*f[24]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*cos2th*f_5_2*f[23]*f[24]*f[70]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_4_2*f[22]*f[25]*f[70]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_5_2*f[22]*f[25]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*f_4_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-U[0] + 3*U[1]) - (8*f_5_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_4_2*f[22]*f[24]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_5_2*f[22]*f[24]*f[71]*f[73])/(-U[0] + 3*U[1]) - (8*f_4_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-U[0] + 3*U[1]) - (8*f_5_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*f_4_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*f_5_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_4_2*f[23]*f[25]*f[71]*f[73])/(-U[0] + 3*U[1]) + (8*cos2th*f_5_2*f[23]*f[25]*f[71]*f[73])/(-U[0] + 3*U[1]) + (35*cos2th*f_14_2*f[24]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_15_2*f[24]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[1]) - (35*f_14_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[1]) - (35*f_15_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_14_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_15_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_14_2*f[25]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_15_2*f[25]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_14_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_15_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_14_2*f[25]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_15_2*f[25]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_14_2*f[24]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_15_2*f[24]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_14_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[1]) + (35*f_15_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[1]) - (35*f_14_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_15_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_14_2*f[25]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*cos2th*f_15_2*f[25]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_14_2*f[24]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_15_2*f[24]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_14_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_15_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_14_2*f[24]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_15_2*f[24]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_14_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[1]) - (35*f_15_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*f_14_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*f_15_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_14_2*f[25]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (35*cos2th*f_15_2*f[25]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[1]) + (30*cos2th*f_12_2*f[24]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_13_2*f[24]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[1]) - (30*f_12_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[1]) - (30*f_13_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_12_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_13_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_12_2*f[25]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_13_2*f[25]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_12_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_13_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_12_2*f[25]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_13_2*f[25]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_12_2*f[24]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_13_2*f[24]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_12_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[1]) + (30*f_13_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[1]) - (30*f_12_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_13_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_12_2*f[25]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*cos2th*f_13_2*f[25]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_12_2*f[24]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_13_2*f[24]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_12_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_13_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_12_2*f[24]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_13_2*f[24]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_12_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[1]) - (30*f_13_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*f_12_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*f_13_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_12_2*f[25]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (30*cos2th*f_13_2*f[25]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[1]) + (20*cos2th*f_8_2*f[24]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_9_2*f[24]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[1]) - (20*f_8_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[1]) - (20*f_9_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_8_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_9_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_8_2*f[25]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_9_2*f[25]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_8_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_9_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_8_2*f[25]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_9_2*f[25]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_8_2*f[24]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_9_2*f[24]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_8_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[1]) + (20*f_9_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[1]) - (20*f_8_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_9_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_8_2*f[25]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*cos2th*f_9_2*f[25]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_8_2*f[24]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_9_2*f[24]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_8_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_9_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_8_2*f[24]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_9_2*f[24]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_8_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[1]) - (20*f_9_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*f_8_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*f_9_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_8_2*f[25]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (20*cos2th*f_9_2*f[25]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[1]) + (15*cos2th*f_6_2*f[24]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_7_2*f[24]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[1]) - (15*f_6_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[1]) - (15*f_7_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_6_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_7_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_6_2*f[25]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_7_2*f[25]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_6_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_7_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_6_2*f[25]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_7_2*f[25]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_6_2*f[24]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_7_2*f[24]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_6_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[1]) + (15*f_7_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[1]) - (15*f_6_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_7_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_6_2*f[25]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*cos2th*f_7_2*f[25]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_6_2*f[24]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_7_2*f[24]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_6_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_7_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_6_2*f[24]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_7_2*f[24]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_6_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[1]) - (15*f_7_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*f_6_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*f_7_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_6_2*f[25]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (15*cos2th*f_7_2*f[25]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[1]) + (10*cos2th*f_4_2*f[24]*f[26]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_5_2*f[24]*f[26]*f[72]*f[74])/(-U[0] + 4*U[1]) - (10*f_4_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-U[0] + 4*U[1]) - (10*f_5_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*f_4_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*f_5_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_4_2*f[25]*f[27]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_5_2*f[25]*f[27]*f[72]*f[74])/(-U[0] + 4*U[1]) + (10*f_4_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*f_5_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_4_2*f[25]*f[26]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*cos2th*f_5_2*f[25]*f[26]*f[73]*f[74])/(-U[0] + 4*U[1]) - (10*cos2th*f_4_2*f[24]*f[27]*f[73]*f[74])/(-U[0] + 4*U[1]) - (10*cos2th*f_5_2*f[24]*f[27]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*f_4_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-U[0] + 4*U[1]) + (10*f_5_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-U[0] + 4*U[1]) - (10*f_4_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*f_5_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*cos2th*f_4_2*f[25]*f[26]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*cos2th*f_5_2*f[25]*f[26]*f[72]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_4_2*f[24]*f[27]*f[72]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_5_2*f[24]*f[27]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*f_4_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-U[0] + 4*U[1]) - (10*f_5_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_4_2*f[24]*f[26]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_5_2*f[24]*f[26]*f[73]*f[75])/(-U[0] + 4*U[1]) - (10*f_4_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-U[0] + 4*U[1]) - (10*f_5_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*f_4_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*f_5_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_4_2*f[25]*f[27]*f[73]*f[75])/(-U[0] + 4*U[1]) + (10*cos2th*f_5_2*f[25]*f[27]*f[73]*f[75])/(-U[0] + 4*U[1]) + (42*cos2th*f_14_2*f[26]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_15_2*f[26]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[1]) - (42*f_14_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[1]) - (42*f_15_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_14_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_15_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_14_2*f[27]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_15_2*f[27]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_14_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_15_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_14_2*f[27]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_15_2*f[27]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_14_2*f[26]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_15_2*f[26]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_14_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[1]) + (42*f_15_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[1]) - (42*f_14_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_15_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_14_2*f[27]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*cos2th*f_15_2*f[27]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_14_2*f[26]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_15_2*f[26]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_14_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_15_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_14_2*f[26]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_15_2*f[26]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_14_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[1]) - (42*f_15_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*f_14_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*f_15_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_14_2*f[27]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (42*cos2th*f_15_2*f[27]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[1]) + (30*cos2th*f_10_2*f[26]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_11_2*f[26]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[1]) - (30*f_10_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[1]) - (30*f_11_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_10_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_11_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_10_2*f[27]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_11_2*f[27]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_10_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_11_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_10_2*f[27]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_11_2*f[27]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_10_2*f[26]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_11_2*f[26]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_10_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[1]) + (30*f_11_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[1]) - (30*f_10_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_11_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_10_2*f[27]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*cos2th*f_11_2*f[27]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_10_2*f[26]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_11_2*f[26]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_10_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_11_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_10_2*f[26]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_11_2*f[26]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_10_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[1]) - (30*f_11_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*f_10_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*f_11_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_10_2*f[27]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (30*cos2th*f_11_2*f[27]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[1]) + (24*cos2th*f_8_2*f[26]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_9_2*f[26]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[1]) - (24*f_8_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[1]) - (24*f_9_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_8_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_9_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_8_2*f[27]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_9_2*f[27]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_8_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_9_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_8_2*f[27]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_9_2*f[27]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_8_2*f[26]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_9_2*f[26]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_8_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[1]) + (24*f_9_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[1]) - (24*f_8_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_9_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_8_2*f[27]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*cos2th*f_9_2*f[27]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_8_2*f[26]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_9_2*f[26]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_8_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_9_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_8_2*f[26]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_9_2*f[26]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_8_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[1]) - (24*f_9_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*f_8_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*f_9_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_8_2*f[27]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (24*cos2th*f_9_2*f[27]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[1]) + (18*cos2th*f_6_2*f[26]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_7_2*f[26]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[1]) - (18*f_6_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[1]) - (18*f_7_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_6_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_7_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_6_2*f[27]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_7_2*f[27]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_6_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_7_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_6_2*f[27]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_7_2*f[27]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_6_2*f[26]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_7_2*f[26]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_6_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[1]) + (18*f_7_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[1]) - (18*f_6_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_7_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_6_2*f[27]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*cos2th*f_7_2*f[27]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_6_2*f[26]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_7_2*f[26]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_6_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_7_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_6_2*f[26]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_7_2*f[26]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_6_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[1]) - (18*f_7_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*f_6_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*f_7_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_6_2*f[27]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (18*cos2th*f_7_2*f[27]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[1]) + (12*cos2th*f_4_2*f[26]*f[28]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_5_2*f[26]*f[28]*f[74]*f[76])/(-U[0] + 5*U[1]) - (12*f_4_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-U[0] + 5*U[1]) - (12*f_5_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*f_4_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*f_5_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_4_2*f[27]*f[29]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_5_2*f[27]*f[29]*f[74]*f[76])/(-U[0] + 5*U[1]) + (12*f_4_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*f_5_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_4_2*f[27]*f[28]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*cos2th*f_5_2*f[27]*f[28]*f[75]*f[76])/(-U[0] + 5*U[1]) - (12*cos2th*f_4_2*f[26]*f[29]*f[75]*f[76])/(-U[0] + 5*U[1]) - (12*cos2th*f_5_2*f[26]*f[29]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*f_4_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-U[0] + 5*U[1]) + (12*f_5_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-U[0] + 5*U[1]) - (12*f_4_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*f_5_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*cos2th*f_4_2*f[27]*f[28]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*cos2th*f_5_2*f[27]*f[28]*f[74]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_4_2*f[26]*f[29]*f[74]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_5_2*f[26]*f[29]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*f_4_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-U[0] + 5*U[1]) - (12*f_5_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_4_2*f[26]*f[28]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_5_2*f[26]*f[28]*f[75]*f[77])/(-U[0] + 5*U[1]) - (12*f_4_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-U[0] + 5*U[1]) - (12*f_5_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*f_4_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*f_5_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_4_2*f[27]*f[29]*f[75]*f[77])/(-U[0] + 5*U[1]) + (12*cos2th*f_5_2*f[27]*f[29]*f[75]*f[77])/(-U[0] + 5*U[1]) + (42*cos2th*f_12_2*f[28]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_13_2*f[28]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[1]) - (42*f_12_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[1]) - (42*f_13_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_12_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_13_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_12_2*f[29]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_13_2*f[29]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_12_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_13_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_12_2*f[29]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_13_2*f[29]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_12_2*f[28]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_13_2*f[28]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_12_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[1]) + (42*f_13_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[1]) - (42*f_12_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_13_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_12_2*f[29]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*cos2th*f_13_2*f[29]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_12_2*f[28]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_13_2*f[28]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_12_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_13_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_12_2*f[28]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_13_2*f[28]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_12_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[1]) - (42*f_13_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*f_12_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*f_13_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_12_2*f[29]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (42*cos2th*f_13_2*f[29]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[1]) + (35*cos2th*f_10_2*f[28]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_11_2*f[28]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[1]) - (35*f_10_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[1]) - (35*f_11_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_10_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_11_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_10_2*f[29]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_11_2*f[29]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_10_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_11_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_10_2*f[29]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_11_2*f[29]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_10_2*f[28]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_11_2*f[28]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_10_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[1]) + (35*f_11_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[1]) - (35*f_10_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_11_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_10_2*f[29]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*cos2th*f_11_2*f[29]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_10_2*f[28]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_11_2*f[28]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_10_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_11_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_10_2*f[28]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_11_2*f[28]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_10_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[1]) - (35*f_11_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*f_10_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*f_11_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_10_2*f[29]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (35*cos2th*f_11_2*f[29]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[1]) + (28*cos2th*f_8_2*f[28]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_9_2*f[28]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[1]) - (28*f_8_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[1]) - (28*f_9_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_8_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_9_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_8_2*f[29]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_9_2*f[29]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_8_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_9_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_8_2*f[29]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_9_2*f[29]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_8_2*f[28]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_9_2*f[28]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_8_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[1]) + (28*f_9_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[1]) - (28*f_8_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_9_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_8_2*f[29]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*cos2th*f_9_2*f[29]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_8_2*f[28]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_9_2*f[28]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_8_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_9_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_8_2*f[28]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_9_2*f[28]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_8_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[1]) - (28*f_9_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*f_8_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*f_9_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_8_2*f[29]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (28*cos2th*f_9_2*f[29]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[1]) + (21*cos2th*f_6_2*f[28]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_7_2*f[28]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[1]) - (21*f_6_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[1]) - (21*f_7_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_6_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_7_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_6_2*f[29]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_7_2*f[29]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_6_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_7_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_6_2*f[29]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_7_2*f[29]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_6_2*f[28]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_7_2*f[28]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_6_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[1]) + (21*f_7_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[1]) - (21*f_6_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_7_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_6_2*f[29]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*cos2th*f_7_2*f[29]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_6_2*f[28]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_7_2*f[28]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_6_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_7_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_6_2*f[28]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_7_2*f[28]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_6_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[1]) - (21*f_7_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*f_6_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*f_7_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_6_2*f[29]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (21*cos2th*f_7_2*f[29]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[1]) + (14*cos2th*f_4_2*f[28]*f[30]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_5_2*f[28]*f[30]*f[76]*f[78])/(-U[0] + 6*U[1]) - (14*f_4_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-U[0] + 6*U[1]) - (14*f_5_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*f_4_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*f_5_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_4_2*f[29]*f[31]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_5_2*f[29]*f[31]*f[76]*f[78])/(-U[0] + 6*U[1]) + (14*f_4_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*f_5_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_4_2*f[29]*f[30]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*cos2th*f_5_2*f[29]*f[30]*f[77]*f[78])/(-U[0] + 6*U[1]) - (14*cos2th*f_4_2*f[28]*f[31]*f[77]*f[78])/(-U[0] + 6*U[1]) - (14*cos2th*f_5_2*f[28]*f[31]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*f_4_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-U[0] + 6*U[1]) + (14*f_5_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-U[0] + 6*U[1]) - (14*f_4_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*f_5_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*cos2th*f_4_2*f[29]*f[30]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*cos2th*f_5_2*f[29]*f[30]*f[76]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_4_2*f[28]*f[31]*f[76]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_5_2*f[28]*f[31]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*f_4_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-U[0] + 6*U[1]) - (14*f_5_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_4_2*f[28]*f[30]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_5_2*f[28]*f[30]*f[77]*f[79])/(-U[0] + 6*U[1]) - (14*f_4_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-U[0] + 6*U[1]) - (14*f_5_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*f_4_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*f_5_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_4_2*f[29]*f[31]*f[77]*f[79])/(-U[0] + 6*U[1]) + (14*cos2th*f_5_2*f[29]*f[31]*f[77]*f[79])/(-U[0] + 6*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[0]*J[1]*((2*cos2th*f_18_2*f[0]*f[2]*f[32]*f[34])/U[1] + (2*cos2th*f_19_2*f[0]*f[2]*f[32]*f[34])/U[1] + (3*cos2th*f_20_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) + (3*cos2th*f_21_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) + (4*cos2th*f_22_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) + (4*cos2th*f_23_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) + (5*cos2th*f_24_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) + (5*cos2th*f_25_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) + (6*cos2th*f_26_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) + (6*cos2th*f_27_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) + (7*cos2th*f_28_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) + (7*cos2th*f_29_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] + (2*f_19_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] + (3*f_20_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) + (3*f_21_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) + (4*f_22_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) + (4*f_23_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) + (5*f_24_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) + (5*f_25_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) + (6*f_26_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) + (6*f_27_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) + (7*f_28_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) + (7*f_29_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] - (2*f_19_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] - (3*f_20_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) - (3*f_21_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) - (4*f_22_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) - (4*f_23_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) - (5*f_24_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) - (5*f_25_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) - (6*f_26_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) - (6*f_27_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) - (7*f_28_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) - (7*f_29_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) + (2*cos2th*f_18_2*f[1]*f[3]*f[32]*f[34])/U[1] + (2*cos2th*f_19_2*f[1]*f[3]*f[32]*f[34])/U[1] + (3*cos2th*f_20_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) + (3*cos2th*f_21_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) + (4*cos2th*f_22_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) + (4*cos2th*f_23_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) + (5*cos2th*f_24_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) + (5*cos2th*f_25_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) + (6*cos2th*f_26_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) + (6*cos2th*f_27_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) + (7*cos2th*f_28_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) + (7*cos2th*f_29_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] - (2*f_19_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] - (3*f_20_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) - (3*f_21_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) - (4*f_22_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) - (4*f_23_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) - (5*f_24_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) - (5*f_25_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) - (6*f_26_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) - (6*f_27_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) - (7*f_28_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) - (7*f_29_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) + (2*cos2th*f_18_2*f[1]*f[2]*f[33]*f[34])/U[1] + (2*cos2th*f_19_2*f[1]*f[2]*f[33]*f[34])/U[1] + (3*cos2th*f_20_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) + (3*cos2th*f_21_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) + (4*cos2th*f_22_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) + (4*cos2th*f_23_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) + (5*cos2th*f_24_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) + (5*cos2th*f_25_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) + (6*cos2th*f_26_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) + (6*cos2th*f_27_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) + (7*cos2th*f_28_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) + (7*cos2th*f_29_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) - (2*cos2th*f_18_2*f[0]*f[3]*f[33]*f[34])/U[1] - (2*cos2th*f_19_2*f[0]*f[3]*f[33]*f[34])/U[1] - (3*cos2th*f_20_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) - (3*cos2th*f_21_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) - (4*cos2th*f_22_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) - (4*cos2th*f_23_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) - (5*cos2th*f_24_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) - (5*cos2th*f_25_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) - (6*cos2th*f_26_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) - (6*cos2th*f_27_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) - (7*cos2th*f_28_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) - (7*cos2th*f_29_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] - (2*f_19_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] - (3*f_20_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) - (3*f_21_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) - (4*f_22_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) - (4*f_23_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) - (5*f_24_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) - (5*f_25_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) - (6*f_26_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) - (6*f_27_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) - (7*f_28_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) - (7*f_29_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] + (2*f_19_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] + (3*f_20_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) + (3*f_21_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) + (4*f_22_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) + (4*f_23_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) + (5*f_24_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) + (5*f_25_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) + (6*f_26_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) + (6*f_27_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) + (7*f_28_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) + (7*f_29_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_18_2*f[1]*f[2]*f[32]*f[35])/U[1] - (2*cos2th*f_19_2*f[1]*f[2]*f[32]*f[35])/U[1] - (3*cos2th*f_20_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) - (3*cos2th*f_21_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) - (4*cos2th*f_22_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) - (4*cos2th*f_23_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) - (5*cos2th*f_24_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) - (5*cos2th*f_25_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) - (6*cos2th*f_26_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) - (6*cos2th*f_27_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) - (7*cos2th*f_28_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) - (7*cos2th*f_29_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[0]*f[3]*f[32]*f[35])/U[1] + (2*cos2th*f_19_2*f[0]*f[3]*f[32]*f[35])/U[1] + (3*cos2th*f_20_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) + (3*cos2th*f_21_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) + (4*cos2th*f_22_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) + (4*cos2th*f_23_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) + (5*cos2th*f_24_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) + (5*cos2th*f_25_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) + (6*cos2th*f_26_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) + (6*cos2th*f_27_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) + (7*cos2th*f_28_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) + (7*cos2th*f_29_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) + (2*f_18_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] + (2*f_19_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] + (3*f_20_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) + (3*f_21_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) + (4*f_22_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) + (4*f_23_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) + (5*f_24_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) + (5*f_25_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) + (6*f_26_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) + (6*f_27_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) + (7*f_28_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) + (7*f_29_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[0]*f[2]*f[33]*f[35])/U[1] + (2*cos2th*f_19_2*f[0]*f[2]*f[33]*f[35])/U[1] + (3*cos2th*f_20_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) + (3*cos2th*f_21_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) + (4*cos2th*f_22_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) + (4*cos2th*f_23_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) + (5*cos2th*f_24_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) + (5*cos2th*f_25_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) + (6*cos2th*f_26_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) + (6*cos2th*f_27_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) + (7*cos2th*f_28_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) + (7*cos2th*f_29_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) + (2*f_18_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] + (2*f_19_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] + (3*f_20_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) + (3*f_21_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) + (4*f_22_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) + (4*f_23_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) + (5*f_24_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) + (5*f_25_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) + (6*f_26_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) + (6*f_27_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) + (7*f_28_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) + (7*f_29_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) - (2*f_18_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] - (2*f_19_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] - (3*f_20_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) - (3*f_21_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) - (4*f_22_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) - (4*f_23_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) - (5*f_24_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) - (5*f_25_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) - (6*f_26_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) - (6*f_27_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) - (7*f_28_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) - (7*f_29_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[1]*f[3]*f[33]*f[35])/U[1] + (2*cos2th*f_19_2*f[1]*f[3]*f[33]*f[35])/U[1] + (3*cos2th*f_20_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) + (3*cos2th*f_21_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) + (4*cos2th*f_22_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) + (4*cos2th*f_23_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) + (5*cos2th*f_24_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) + (5*cos2th*f_25_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) + (6*cos2th*f_26_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) + (6*cos2th*f_27_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) + (7*cos2th*f_28_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (7*cos2th*f_29_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (14*cos2th*f_18_2*f[12]*f[14]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_19_2*f[12]*f[14]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*f_18_2*sin2th*f[13]*f[14]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*f_19_2*sin2th*f[13]*f[14]*f[44]*f[46])/(U[1] - 6*U[2]) - (14*f_18_2*sin2th*f[12]*f[15]*f[44]*f[46])/(U[1] - 6*U[2]) - (14*f_19_2*sin2th*f[12]*f[15]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_18_2*f[13]*f[15]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_19_2*f[13]*f[15]*f[44]*f[46])/(U[1] - 6*U[2]) - (14*f_18_2*sin2th*f[12]*f[14]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*f_19_2*sin2th*f[12]*f[14]*f[45]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_18_2*f[13]*f[14]*f[45]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_19_2*f[13]*f[14]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*cos2th*f_18_2*f[12]*f[15]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*cos2th*f_19_2*f[12]*f[15]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*f_18_2*sin2th*f[13]*f[15]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*f_19_2*sin2th*f[13]*f[15]*f[45]*f[46])/(U[1] - 6*U[2]) + (14*f_18_2*sin2th*f[12]*f[14]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*f_19_2*sin2th*f[12]*f[14]*f[44]*f[47])/(U[1] - 6*U[2]) - (14*cos2th*f_18_2*f[13]*f[14]*f[44]*f[47])/(U[1] - 6*U[2]) - (14*cos2th*f_19_2*f[13]*f[14]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_18_2*f[12]*f[15]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_19_2*f[12]*f[15]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*f_18_2*sin2th*f[13]*f[15]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*f_19_2*sin2th*f[13]*f[15]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_18_2*f[12]*f[14]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_19_2*f[12]*f[14]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*f_18_2*sin2th*f[13]*f[14]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*f_19_2*sin2th*f[13]*f[14]*f[45]*f[47])/(U[1] - 6*U[2]) - (14*f_18_2*sin2th*f[12]*f[15]*f[45]*f[47])/(U[1] - 6*U[2]) - (14*f_19_2*sin2th*f[12]*f[15]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_18_2*f[13]*f[15]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_19_2*f[13]*f[15]*f[45]*f[47])/(U[1] - 6*U[2]) + (21*cos2th*f_20_2*f[12]*f[14]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_21_2*f[12]*f[14]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*f_20_2*sin2th*f[13]*f[14]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*f_21_2*sin2th*f[13]*f[14]*f[44]*f[46])/(2*U[1] - 6*U[2]) - (21*f_20_2*sin2th*f[12]*f[15]*f[44]*f[46])/(2*U[1] - 6*U[2]) - (21*f_21_2*sin2th*f[12]*f[15]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_20_2*f[13]*f[15]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_21_2*f[13]*f[15]*f[44]*f[46])/(2*U[1] - 6*U[2]) - (21*f_20_2*sin2th*f[12]*f[14]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*f_21_2*sin2th*f[12]*f[14]*f[45]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_20_2*f[13]*f[14]*f[45]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_21_2*f[13]*f[14]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*cos2th*f_20_2*f[12]*f[15]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*cos2th*f_21_2*f[12]*f[15]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*f_20_2*sin2th*f[13]*f[15]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*f_21_2*sin2th*f[13]*f[15]*f[45]*f[46])/(2*U[1] - 6*U[2]) + (21*f_20_2*sin2th*f[12]*f[14]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*f_21_2*sin2th*f[12]*f[14]*f[44]*f[47])/(2*U[1] - 6*U[2]) - (21*cos2th*f_20_2*f[13]*f[14]*f[44]*f[47])/(2*U[1] - 6*U[2]) - (21*cos2th*f_21_2*f[13]*f[14]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_20_2*f[12]*f[15]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_21_2*f[12]*f[15]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*f_20_2*sin2th*f[13]*f[15]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*f_21_2*sin2th*f[13]*f[15]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_20_2*f[12]*f[14]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_21_2*f[12]*f[14]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*f_20_2*sin2th*f[13]*f[14]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*f_21_2*sin2th*f[13]*f[14]*f[45]*f[47])/(2*U[1] - 6*U[2]) - (21*f_20_2*sin2th*f[12]*f[15]*f[45]*f[47])/(2*U[1] - 6*U[2]) - (21*f_21_2*sin2th*f[12]*f[15]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_20_2*f[13]*f[15]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_21_2*f[13]*f[15]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (28*cos2th*f_22_2*f[12]*f[14]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_23_2*f[12]*f[14]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*f_22_2*sin2th*f[13]*f[14]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*f_23_2*sin2th*f[13]*f[14]*f[44]*f[46])/(3*U[1] - 6*U[2]) - (28*f_22_2*sin2th*f[12]*f[15]*f[44]*f[46])/(3*U[1] - 6*U[2]) - (28*f_23_2*sin2th*f[12]*f[15]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_22_2*f[13]*f[15]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_23_2*f[13]*f[15]*f[44]*f[46])/(3*U[1] - 6*U[2]) - (28*f_22_2*sin2th*f[12]*f[14]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*f_23_2*sin2th*f[12]*f[14]*f[45]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_22_2*f[13]*f[14]*f[45]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_23_2*f[13]*f[14]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*cos2th*f_22_2*f[12]*f[15]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*cos2th*f_23_2*f[12]*f[15]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*f_22_2*sin2th*f[13]*f[15]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*f_23_2*sin2th*f[13]*f[15]*f[45]*f[46])/(3*U[1] - 6*U[2]) + (28*f_22_2*sin2th*f[12]*f[14]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*f_23_2*sin2th*f[12]*f[14]*f[44]*f[47])/(3*U[1] - 6*U[2]) - (28*cos2th*f_22_2*f[13]*f[14]*f[44]*f[47])/(3*U[1] - 6*U[2]) - (28*cos2th*f_23_2*f[13]*f[14]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_22_2*f[12]*f[15]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_23_2*f[12]*f[15]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*f_22_2*sin2th*f[13]*f[15]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*f_23_2*sin2th*f[13]*f[15]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_22_2*f[12]*f[14]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_23_2*f[12]*f[14]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*f_22_2*sin2th*f[13]*f[14]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*f_23_2*sin2th*f[13]*f[14]*f[45]*f[47])/(3*U[1] - 6*U[2]) - (28*f_22_2*sin2th*f[12]*f[15]*f[45]*f[47])/(3*U[1] - 6*U[2]) - (28*f_23_2*sin2th*f[12]*f[15]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_22_2*f[13]*f[15]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_23_2*f[13]*f[15]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (35*cos2th*f_24_2*f[12]*f[14]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_25_2*f[12]*f[14]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*f_24_2*sin2th*f[13]*f[14]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*f_25_2*sin2th*f[13]*f[14]*f[44]*f[46])/(4*U[1] - 6*U[2]) - (35*f_24_2*sin2th*f[12]*f[15]*f[44]*f[46])/(4*U[1] - 6*U[2]) - (35*f_25_2*sin2th*f[12]*f[15]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_24_2*f[13]*f[15]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_25_2*f[13]*f[15]*f[44]*f[46])/(4*U[1] - 6*U[2]) - (35*f_24_2*sin2th*f[12]*f[14]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*f_25_2*sin2th*f[12]*f[14]*f[45]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_24_2*f[13]*f[14]*f[45]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_25_2*f[13]*f[14]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*cos2th*f_24_2*f[12]*f[15]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*cos2th*f_25_2*f[12]*f[15]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*f_24_2*sin2th*f[13]*f[15]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*f_25_2*sin2th*f[13]*f[15]*f[45]*f[46])/(4*U[1] - 6*U[2]) + (35*f_24_2*sin2th*f[12]*f[14]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*f_25_2*sin2th*f[12]*f[14]*f[44]*f[47])/(4*U[1] - 6*U[2]) - (35*cos2th*f_24_2*f[13]*f[14]*f[44]*f[47])/(4*U[1] - 6*U[2]) - (35*cos2th*f_25_2*f[13]*f[14]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_24_2*f[12]*f[15]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_25_2*f[12]*f[15]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*f_24_2*sin2th*f[13]*f[15]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*f_25_2*sin2th*f[13]*f[15]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_24_2*f[12]*f[14]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_25_2*f[12]*f[14]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*f_24_2*sin2th*f[13]*f[14]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*f_25_2*sin2th*f[13]*f[14]*f[45]*f[47])/(4*U[1] - 6*U[2]) - (35*f_24_2*sin2th*f[12]*f[15]*f[45]*f[47])/(4*U[1] - 6*U[2]) - (35*f_25_2*sin2th*f[12]*f[15]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_24_2*f[13]*f[15]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_25_2*f[13]*f[15]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (42*cos2th*f_26_2*f[12]*f[14]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_27_2*f[12]*f[14]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*f_26_2*sin2th*f[13]*f[14]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*f_27_2*sin2th*f[13]*f[14]*f[44]*f[46])/(5*U[1] - 6*U[2]) - (42*f_26_2*sin2th*f[12]*f[15]*f[44]*f[46])/(5*U[1] - 6*U[2]) - (42*f_27_2*sin2th*f[12]*f[15]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_26_2*f[13]*f[15]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_27_2*f[13]*f[15]*f[44]*f[46])/(5*U[1] - 6*U[2]) - (42*f_26_2*sin2th*f[12]*f[14]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*f_27_2*sin2th*f[12]*f[14]*f[45]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_26_2*f[13]*f[14]*f[45]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_27_2*f[13]*f[14]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*cos2th*f_26_2*f[12]*f[15]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*cos2th*f_27_2*f[12]*f[15]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*f_26_2*sin2th*f[13]*f[15]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*f_27_2*sin2th*f[13]*f[15]*f[45]*f[46])/(5*U[1] - 6*U[2]) + (42*f_26_2*sin2th*f[12]*f[14]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*f_27_2*sin2th*f[12]*f[14]*f[44]*f[47])/(5*U[1] - 6*U[2]) - (42*cos2th*f_26_2*f[13]*f[14]*f[44]*f[47])/(5*U[1] - 6*U[2]) - (42*cos2th*f_27_2*f[13]*f[14]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_26_2*f[12]*f[15]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_27_2*f[12]*f[15]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*f_26_2*sin2th*f[13]*f[15]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*f_27_2*sin2th*f[13]*f[15]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_26_2*f[12]*f[14]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_27_2*f[12]*f[14]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*f_26_2*sin2th*f[13]*f[14]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*f_27_2*sin2th*f[13]*f[14]*f[45]*f[47])/(5*U[1] - 6*U[2]) - (42*f_26_2*sin2th*f[12]*f[15]*f[45]*f[47])/(5*U[1] - 6*U[2]) - (42*f_27_2*sin2th*f[12]*f[15]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_26_2*f[13]*f[15]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_27_2*f[13]*f[15]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (12*cos2th*f_18_2*f[10]*f[12]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_19_2*f[10]*f[12]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*f_18_2*sin2th*f[11]*f[12]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*f_19_2*sin2th*f[11]*f[12]*f[42]*f[44])/(U[1] - 5*U[2]) - (12*f_18_2*sin2th*f[10]*f[13]*f[42]*f[44])/(U[1] - 5*U[2]) - (12*f_19_2*sin2th*f[10]*f[13]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_18_2*f[11]*f[13]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_19_2*f[11]*f[13]*f[42]*f[44])/(U[1] - 5*U[2]) - (12*f_18_2*sin2th*f[10]*f[12]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*f_19_2*sin2th*f[10]*f[12]*f[43]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_18_2*f[11]*f[12]*f[43]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_19_2*f[11]*f[12]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*cos2th*f_18_2*f[10]*f[13]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*cos2th*f_19_2*f[10]*f[13]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*f_18_2*sin2th*f[11]*f[13]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*f_19_2*sin2th*f[11]*f[13]*f[43]*f[44])/(U[1] - 5*U[2]) + (12*f_18_2*sin2th*f[10]*f[12]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*f_19_2*sin2th*f[10]*f[12]*f[42]*f[45])/(U[1] - 5*U[2]) - (12*cos2th*f_18_2*f[11]*f[12]*f[42]*f[45])/(U[1] - 5*U[2]) - (12*cos2th*f_19_2*f[11]*f[12]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_18_2*f[10]*f[13]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_19_2*f[10]*f[13]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*f_18_2*sin2th*f[11]*f[13]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*f_19_2*sin2th*f[11]*f[13]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_18_2*f[10]*f[12]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_19_2*f[10]*f[12]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*f_18_2*sin2th*f[11]*f[12]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*f_19_2*sin2th*f[11]*f[12]*f[43]*f[45])/(U[1] - 5*U[2]) - (12*f_18_2*sin2th*f[10]*f[13]*f[43]*f[45])/(U[1] - 5*U[2]) - (12*f_19_2*sin2th*f[10]*f[13]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_18_2*f[11]*f[13]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_19_2*f[11]*f[13]*f[43]*f[45])/(U[1] - 5*U[2]) + (18*cos2th*f_20_2*f[10]*f[12]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_21_2*f[10]*f[12]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*f_20_2*sin2th*f[11]*f[12]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*f_21_2*sin2th*f[11]*f[12]*f[42]*f[44])/(2*U[1] - 5*U[2]) - (18*f_20_2*sin2th*f[10]*f[13]*f[42]*f[44])/(2*U[1] - 5*U[2]) - (18*f_21_2*sin2th*f[10]*f[13]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_20_2*f[11]*f[13]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_21_2*f[11]*f[13]*f[42]*f[44])/(2*U[1] - 5*U[2]) - (18*f_20_2*sin2th*f[10]*f[12]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*f_21_2*sin2th*f[10]*f[12]*f[43]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_20_2*f[11]*f[12]*f[43]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_21_2*f[11]*f[12]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*cos2th*f_20_2*f[10]*f[13]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*cos2th*f_21_2*f[10]*f[13]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*f_20_2*sin2th*f[11]*f[13]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*f_21_2*sin2th*f[11]*f[13]*f[43]*f[44])/(2*U[1] - 5*U[2]) + (18*f_20_2*sin2th*f[10]*f[12]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*f_21_2*sin2th*f[10]*f[12]*f[42]*f[45])/(2*U[1] - 5*U[2]) - (18*cos2th*f_20_2*f[11]*f[12]*f[42]*f[45])/(2*U[1] - 5*U[2]) - (18*cos2th*f_21_2*f[11]*f[12]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_20_2*f[10]*f[13]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_21_2*f[10]*f[13]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*f_20_2*sin2th*f[11]*f[13]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*f_21_2*sin2th*f[11]*f[13]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_20_2*f[10]*f[12]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_21_2*f[10]*f[12]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*f_20_2*sin2th*f[11]*f[12]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*f_21_2*sin2th*f[11]*f[12]*f[43]*f[45])/(2*U[1] - 5*U[2]) - (18*f_20_2*sin2th*f[10]*f[13]*f[43]*f[45])/(2*U[1] - 5*U[2]) - (18*f_21_2*sin2th*f[10]*f[13]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_20_2*f[11]*f[13]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_21_2*f[11]*f[13]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (24*cos2th*f_22_2*f[10]*f[12]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_23_2*f[10]*f[12]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*f_22_2*sin2th*f[11]*f[12]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*f_23_2*sin2th*f[11]*f[12]*f[42]*f[44])/(3*U[1] - 5*U[2]) - (24*f_22_2*sin2th*f[10]*f[13]*f[42]*f[44])/(3*U[1] - 5*U[2]) - (24*f_23_2*sin2th*f[10]*f[13]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_22_2*f[11]*f[13]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_23_2*f[11]*f[13]*f[42]*f[44])/(3*U[1] - 5*U[2]) - (24*f_22_2*sin2th*f[10]*f[12]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*f_23_2*sin2th*f[10]*f[12]*f[43]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_22_2*f[11]*f[12]*f[43]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_23_2*f[11]*f[12]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*cos2th*f_22_2*f[10]*f[13]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*cos2th*f_23_2*f[10]*f[13]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*f_22_2*sin2th*f[11]*f[13]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*f_23_2*sin2th*f[11]*f[13]*f[43]*f[44])/(3*U[1] - 5*U[2]) + (24*f_22_2*sin2th*f[10]*f[12]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*f_23_2*sin2th*f[10]*f[12]*f[42]*f[45])/(3*U[1] - 5*U[2]) - (24*cos2th*f_22_2*f[11]*f[12]*f[42]*f[45])/(3*U[1] - 5*U[2]) - (24*cos2th*f_23_2*f[11]*f[12]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_22_2*f[10]*f[13]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_23_2*f[10]*f[13]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*f_22_2*sin2th*f[11]*f[13]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*f_23_2*sin2th*f[11]*f[13]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_22_2*f[10]*f[12]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_23_2*f[10]*f[12]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*f_22_2*sin2th*f[11]*f[12]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*f_23_2*sin2th*f[11]*f[12]*f[43]*f[45])/(3*U[1] - 5*U[2]) - (24*f_22_2*sin2th*f[10]*f[13]*f[43]*f[45])/(3*U[1] - 5*U[2]) - (24*f_23_2*sin2th*f[10]*f[13]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_22_2*f[11]*f[13]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_23_2*f[11]*f[13]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (30*cos2th*f_24_2*f[10]*f[12]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_25_2*f[10]*f[12]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*f_24_2*sin2th*f[11]*f[12]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*f_25_2*sin2th*f[11]*f[12]*f[42]*f[44])/(4*U[1] - 5*U[2]) - (30*f_24_2*sin2th*f[10]*f[13]*f[42]*f[44])/(4*U[1] - 5*U[2]) - (30*f_25_2*sin2th*f[10]*f[13]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_24_2*f[11]*f[13]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_25_2*f[11]*f[13]*f[42]*f[44])/(4*U[1] - 5*U[2]) - (30*f_24_2*sin2th*f[10]*f[12]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*f_25_2*sin2th*f[10]*f[12]*f[43]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_24_2*f[11]*f[12]*f[43]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_25_2*f[11]*f[12]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*cos2th*f_24_2*f[10]*f[13]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*cos2th*f_25_2*f[10]*f[13]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*f_24_2*sin2th*f[11]*f[13]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*f_25_2*sin2th*f[11]*f[13]*f[43]*f[44])/(4*U[1] - 5*U[2]) + (30*f_24_2*sin2th*f[10]*f[12]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*f_25_2*sin2th*f[10]*f[12]*f[42]*f[45])/(4*U[1] - 5*U[2]) - (30*cos2th*f_24_2*f[11]*f[12]*f[42]*f[45])/(4*U[1] - 5*U[2]) - (30*cos2th*f_25_2*f[11]*f[12]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_24_2*f[10]*f[13]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_25_2*f[10]*f[13]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*f_24_2*sin2th*f[11]*f[13]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*f_25_2*sin2th*f[11]*f[13]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_24_2*f[10]*f[12]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_25_2*f[10]*f[12]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*f_24_2*sin2th*f[11]*f[12]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*f_25_2*sin2th*f[11]*f[12]*f[43]*f[45])/(4*U[1] - 5*U[2]) - (30*f_24_2*sin2th*f[10]*f[13]*f[43]*f[45])/(4*U[1] - 5*U[2]) - (30*f_25_2*sin2th*f[10]*f[13]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_24_2*f[11]*f[13]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_25_2*f[11]*f[13]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (42*cos2th*f_28_2*f[10]*f[12]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_29_2*f[10]*f[12]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*f_28_2*sin2th*f[11]*f[12]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*f_29_2*sin2th*f[11]*f[12]*f[42]*f[44])/(6*U[1] - 5*U[2]) - (42*f_28_2*sin2th*f[10]*f[13]*f[42]*f[44])/(6*U[1] - 5*U[2]) - (42*f_29_2*sin2th*f[10]*f[13]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_28_2*f[11]*f[13]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_29_2*f[11]*f[13]*f[42]*f[44])/(6*U[1] - 5*U[2]) - (42*f_28_2*sin2th*f[10]*f[12]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*f_29_2*sin2th*f[10]*f[12]*f[43]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_28_2*f[11]*f[12]*f[43]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_29_2*f[11]*f[12]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*cos2th*f_28_2*f[10]*f[13]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*cos2th*f_29_2*f[10]*f[13]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*f_28_2*sin2th*f[11]*f[13]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*f_29_2*sin2th*f[11]*f[13]*f[43]*f[44])/(6*U[1] - 5*U[2]) + (42*f_28_2*sin2th*f[10]*f[12]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*f_29_2*sin2th*f[10]*f[12]*f[42]*f[45])/(6*U[1] - 5*U[2]) - (42*cos2th*f_28_2*f[11]*f[12]*f[42]*f[45])/(6*U[1] - 5*U[2]) - (42*cos2th*f_29_2*f[11]*f[12]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_28_2*f[10]*f[13]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_29_2*f[10]*f[13]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*f_28_2*sin2th*f[11]*f[13]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*f_29_2*sin2th*f[11]*f[13]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_28_2*f[10]*f[12]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_29_2*f[10]*f[12]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*f_28_2*sin2th*f[11]*f[12]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*f_29_2*sin2th*f[11]*f[12]*f[43]*f[45])/(6*U[1] - 5*U[2]) - (42*f_28_2*sin2th*f[10]*f[13]*f[43]*f[45])/(6*U[1] - 5*U[2]) - (42*f_29_2*sin2th*f[10]*f[13]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_28_2*f[11]*f[13]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_29_2*f[11]*f[13]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (10*cos2th*f_18_2*f[8]*f[10]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_19_2*f[8]*f[10]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*f_18_2*sin2th*f[9]*f[10]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*f_19_2*sin2th*f[9]*f[10]*f[40]*f[42])/(U[1] - 4*U[2]) - (10*f_18_2*sin2th*f[8]*f[11]*f[40]*f[42])/(U[1] - 4*U[2]) - (10*f_19_2*sin2th*f[8]*f[11]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_18_2*f[9]*f[11]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_19_2*f[9]*f[11]*f[40]*f[42])/(U[1] - 4*U[2]) - (10*f_18_2*sin2th*f[8]*f[10]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*f_19_2*sin2th*f[8]*f[10]*f[41]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_18_2*f[9]*f[10]*f[41]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_19_2*f[9]*f[10]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*cos2th*f_18_2*f[8]*f[11]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*cos2th*f_19_2*f[8]*f[11]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*f_18_2*sin2th*f[9]*f[11]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*f_19_2*sin2th*f[9]*f[11]*f[41]*f[42])/(U[1] - 4*U[2]) + (10*f_18_2*sin2th*f[8]*f[10]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*f_19_2*sin2th*f[8]*f[10]*f[40]*f[43])/(U[1] - 4*U[2]) - (10*cos2th*f_18_2*f[9]*f[10]*f[40]*f[43])/(U[1] - 4*U[2]) - (10*cos2th*f_19_2*f[9]*f[10]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_18_2*f[8]*f[11]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_19_2*f[8]*f[11]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*f_18_2*sin2th*f[9]*f[11]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*f_19_2*sin2th*f[9]*f[11]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_18_2*f[8]*f[10]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_19_2*f[8]*f[10]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*f_18_2*sin2th*f[9]*f[10]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*f_19_2*sin2th*f[9]*f[10]*f[41]*f[43])/(U[1] - 4*U[2]) - (10*f_18_2*sin2th*f[8]*f[11]*f[41]*f[43])/(U[1] - 4*U[2]) - (10*f_19_2*sin2th*f[8]*f[11]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_18_2*f[9]*f[11]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_19_2*f[9]*f[11]*f[41]*f[43])/(U[1] - 4*U[2]) + (15*cos2th*f_20_2*f[8]*f[10]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_21_2*f[8]*f[10]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*f_20_2*sin2th*f[9]*f[10]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*f_21_2*sin2th*f[9]*f[10]*f[40]*f[42])/(2*U[1] - 4*U[2]) - (15*f_20_2*sin2th*f[8]*f[11]*f[40]*f[42])/(2*U[1] - 4*U[2]) - (15*f_21_2*sin2th*f[8]*f[11]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_20_2*f[9]*f[11]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_21_2*f[9]*f[11]*f[40]*f[42])/(2*U[1] - 4*U[2]) - (15*f_20_2*sin2th*f[8]*f[10]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*f_21_2*sin2th*f[8]*f[10]*f[41]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_20_2*f[9]*f[10]*f[41]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_21_2*f[9]*f[10]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*cos2th*f_20_2*f[8]*f[11]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*cos2th*f_21_2*f[8]*f[11]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*f_20_2*sin2th*f[9]*f[11]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*f_21_2*sin2th*f[9]*f[11]*f[41]*f[42])/(2*U[1] - 4*U[2]) + (15*f_20_2*sin2th*f[8]*f[10]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*f_21_2*sin2th*f[8]*f[10]*f[40]*f[43])/(2*U[1] - 4*U[2]) - (15*cos2th*f_20_2*f[9]*f[10]*f[40]*f[43])/(2*U[1] - 4*U[2]) - (15*cos2th*f_21_2*f[9]*f[10]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_20_2*f[8]*f[11]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_21_2*f[8]*f[11]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*f_20_2*sin2th*f[9]*f[11]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*f_21_2*sin2th*f[9]*f[11]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_20_2*f[8]*f[10]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_21_2*f[8]*f[10]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*f_20_2*sin2th*f[9]*f[10]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*f_21_2*sin2th*f[9]*f[10]*f[41]*f[43])/(2*U[1] - 4*U[2]) - (15*f_20_2*sin2th*f[8]*f[11]*f[41]*f[43])/(2*U[1] - 4*U[2]) - (15*f_21_2*sin2th*f[8]*f[11]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_20_2*f[9]*f[11]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_21_2*f[9]*f[11]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (20*cos2th*f_22_2*f[8]*f[10]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_23_2*f[8]*f[10]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*f_22_2*sin2th*f[9]*f[10]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*f_23_2*sin2th*f[9]*f[10]*f[40]*f[42])/(3*U[1] - 4*U[2]) - (20*f_22_2*sin2th*f[8]*f[11]*f[40]*f[42])/(3*U[1] - 4*U[2]) - (20*f_23_2*sin2th*f[8]*f[11]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_22_2*f[9]*f[11]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_23_2*f[9]*f[11]*f[40]*f[42])/(3*U[1] - 4*U[2]) - (20*f_22_2*sin2th*f[8]*f[10]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*f_23_2*sin2th*f[8]*f[10]*f[41]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_22_2*f[9]*f[10]*f[41]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_23_2*f[9]*f[10]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*cos2th*f_22_2*f[8]*f[11]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*cos2th*f_23_2*f[8]*f[11]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*f_22_2*sin2th*f[9]*f[11]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*f_23_2*sin2th*f[9]*f[11]*f[41]*f[42])/(3*U[1] - 4*U[2]) + (20*f_22_2*sin2th*f[8]*f[10]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*f_23_2*sin2th*f[8]*f[10]*f[40]*f[43])/(3*U[1] - 4*U[2]) - (20*cos2th*f_22_2*f[9]*f[10]*f[40]*f[43])/(3*U[1] - 4*U[2]) - (20*cos2th*f_23_2*f[9]*f[10]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_22_2*f[8]*f[11]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_23_2*f[8]*f[11]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*f_22_2*sin2th*f[9]*f[11]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*f_23_2*sin2th*f[9]*f[11]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_22_2*f[8]*f[10]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_23_2*f[8]*f[10]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*f_22_2*sin2th*f[9]*f[10]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*f_23_2*sin2th*f[9]*f[10]*f[41]*f[43])/(3*U[1] - 4*U[2]) - (20*f_22_2*sin2th*f[8]*f[11]*f[41]*f[43])/(3*U[1] - 4*U[2]) - (20*f_23_2*sin2th*f[8]*f[11]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_22_2*f[9]*f[11]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_23_2*f[9]*f[11]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (30*cos2th*f_26_2*f[8]*f[10]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_27_2*f[8]*f[10]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*f_26_2*sin2th*f[9]*f[10]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*f_27_2*sin2th*f[9]*f[10]*f[40]*f[42])/(5*U[1] - 4*U[2]) - (30*f_26_2*sin2th*f[8]*f[11]*f[40]*f[42])/(5*U[1] - 4*U[2]) - (30*f_27_2*sin2th*f[8]*f[11]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_26_2*f[9]*f[11]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_27_2*f[9]*f[11]*f[40]*f[42])/(5*U[1] - 4*U[2]) - (30*f_26_2*sin2th*f[8]*f[10]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*f_27_2*sin2th*f[8]*f[10]*f[41]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_26_2*f[9]*f[10]*f[41]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_27_2*f[9]*f[10]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*cos2th*f_26_2*f[8]*f[11]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*cos2th*f_27_2*f[8]*f[11]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*f_26_2*sin2th*f[9]*f[11]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*f_27_2*sin2th*f[9]*f[11]*f[41]*f[42])/(5*U[1] - 4*U[2]) + (30*f_26_2*sin2th*f[8]*f[10]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*f_27_2*sin2th*f[8]*f[10]*f[40]*f[43])/(5*U[1] - 4*U[2]) - (30*cos2th*f_26_2*f[9]*f[10]*f[40]*f[43])/(5*U[1] - 4*U[2]) - (30*cos2th*f_27_2*f[9]*f[10]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_26_2*f[8]*f[11]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_27_2*f[8]*f[11]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*f_26_2*sin2th*f[9]*f[11]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*f_27_2*sin2th*f[9]*f[11]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_26_2*f[8]*f[10]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_27_2*f[8]*f[10]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*f_26_2*sin2th*f[9]*f[10]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*f_27_2*sin2th*f[9]*f[10]*f[41]*f[43])/(5*U[1] - 4*U[2]) - (30*f_26_2*sin2th*f[8]*f[11]*f[41]*f[43])/(5*U[1] - 4*U[2]) - (30*f_27_2*sin2th*f[8]*f[11]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_26_2*f[9]*f[11]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_27_2*f[9]*f[11]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (35*cos2th*f_28_2*f[8]*f[10]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_29_2*f[8]*f[10]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*f_28_2*sin2th*f[9]*f[10]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*f_29_2*sin2th*f[9]*f[10]*f[40]*f[42])/(6*U[1] - 4*U[2]) - (35*f_28_2*sin2th*f[8]*f[11]*f[40]*f[42])/(6*U[1] - 4*U[2]) - (35*f_29_2*sin2th*f[8]*f[11]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_28_2*f[9]*f[11]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_29_2*f[9]*f[11]*f[40]*f[42])/(6*U[1] - 4*U[2]) - (35*f_28_2*sin2th*f[8]*f[10]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*f_29_2*sin2th*f[8]*f[10]*f[41]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_28_2*f[9]*f[10]*f[41]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_29_2*f[9]*f[10]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*cos2th*f_28_2*f[8]*f[11]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*cos2th*f_29_2*f[8]*f[11]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*f_28_2*sin2th*f[9]*f[11]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*f_29_2*sin2th*f[9]*f[11]*f[41]*f[42])/(6*U[1] - 4*U[2]) + (35*f_28_2*sin2th*f[8]*f[10]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*f_29_2*sin2th*f[8]*f[10]*f[40]*f[43])/(6*U[1] - 4*U[2]) - (35*cos2th*f_28_2*f[9]*f[10]*f[40]*f[43])/(6*U[1] - 4*U[2]) - (35*cos2th*f_29_2*f[9]*f[10]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_28_2*f[8]*f[11]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_29_2*f[8]*f[11]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*f_28_2*sin2th*f[9]*f[11]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*f_29_2*sin2th*f[9]*f[11]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_28_2*f[8]*f[10]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_29_2*f[8]*f[10]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*f_28_2*sin2th*f[9]*f[10]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*f_29_2*sin2th*f[9]*f[10]*f[41]*f[43])/(6*U[1] - 4*U[2]) - (35*f_28_2*sin2th*f[8]*f[11]*f[41]*f[43])/(6*U[1] - 4*U[2]) - (35*f_29_2*sin2th*f[8]*f[11]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_28_2*f[9]*f[11]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_29_2*f[9]*f[11]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (8*cos2th*f_18_2*f[6]*f[8]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_19_2*f[6]*f[8]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*f_18_2*sin2th*f[7]*f[8]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*f_19_2*sin2th*f[7]*f[8]*f[38]*f[40])/(U[1] - 3*U[2]) - (8*f_18_2*sin2th*f[6]*f[9]*f[38]*f[40])/(U[1] - 3*U[2]) - (8*f_19_2*sin2th*f[6]*f[9]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_18_2*f[7]*f[9]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_19_2*f[7]*f[9]*f[38]*f[40])/(U[1] - 3*U[2]) - (8*f_18_2*sin2th*f[6]*f[8]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*f_19_2*sin2th*f[6]*f[8]*f[39]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_18_2*f[7]*f[8]*f[39]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_19_2*f[7]*f[8]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*cos2th*f_18_2*f[6]*f[9]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*cos2th*f_19_2*f[6]*f[9]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*f_18_2*sin2th*f[7]*f[9]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*f_19_2*sin2th*f[7]*f[9]*f[39]*f[40])/(U[1] - 3*U[2]) + (8*f_18_2*sin2th*f[6]*f[8]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*f_19_2*sin2th*f[6]*f[8]*f[38]*f[41])/(U[1] - 3*U[2]) - (8*cos2th*f_18_2*f[7]*f[8]*f[38]*f[41])/(U[1] - 3*U[2]) - (8*cos2th*f_19_2*f[7]*f[8]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_18_2*f[6]*f[9]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_19_2*f[6]*f[9]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*f_18_2*sin2th*f[7]*f[9]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*f_19_2*sin2th*f[7]*f[9]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_18_2*f[6]*f[8]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_19_2*f[6]*f[8]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*f_18_2*sin2th*f[7]*f[8]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*f_19_2*sin2th*f[7]*f[8]*f[39]*f[41])/(U[1] - 3*U[2]) - (8*f_18_2*sin2th*f[6]*f[9]*f[39]*f[41])/(U[1] - 3*U[2]) - (8*f_19_2*sin2th*f[6]*f[9]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_18_2*f[7]*f[9]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_19_2*f[7]*f[9]*f[39]*f[41])/(U[1] - 3*U[2]) + (12*cos2th*f_20_2*f[6]*f[8]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_21_2*f[6]*f[8]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*f_20_2*sin2th*f[7]*f[8]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*f_21_2*sin2th*f[7]*f[8]*f[38]*f[40])/(2*U[1] - 3*U[2]) - (12*f_20_2*sin2th*f[6]*f[9]*f[38]*f[40])/(2*U[1] - 3*U[2]) - (12*f_21_2*sin2th*f[6]*f[9]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_20_2*f[7]*f[9]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_21_2*f[7]*f[9]*f[38]*f[40])/(2*U[1] - 3*U[2]) - (12*f_20_2*sin2th*f[6]*f[8]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*f_21_2*sin2th*f[6]*f[8]*f[39]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_20_2*f[7]*f[8]*f[39]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_21_2*f[7]*f[8]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*cos2th*f_20_2*f[6]*f[9]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*cos2th*f_21_2*f[6]*f[9]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*f_20_2*sin2th*f[7]*f[9]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*f_21_2*sin2th*f[7]*f[9]*f[39]*f[40])/(2*U[1] - 3*U[2]) + (12*f_20_2*sin2th*f[6]*f[8]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*f_21_2*sin2th*f[6]*f[8]*f[38]*f[41])/(2*U[1] - 3*U[2]) - (12*cos2th*f_20_2*f[7]*f[8]*f[38]*f[41])/(2*U[1] - 3*U[2]) - (12*cos2th*f_21_2*f[7]*f[8]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_20_2*f[6]*f[9]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_21_2*f[6]*f[9]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*f_20_2*sin2th*f[7]*f[9]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*f_21_2*sin2th*f[7]*f[9]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_20_2*f[6]*f[8]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_21_2*f[6]*f[8]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*f_20_2*sin2th*f[7]*f[8]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*f_21_2*sin2th*f[7]*f[8]*f[39]*f[41])/(2*U[1] - 3*U[2]) - (12*f_20_2*sin2th*f[6]*f[9]*f[39]*f[41])/(2*U[1] - 3*U[2]) - (12*f_21_2*sin2th*f[6]*f[9]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_20_2*f[7]*f[9]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_21_2*f[7]*f[9]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (20*cos2th*f_24_2*f[6]*f[8]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_25_2*f[6]*f[8]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*f_24_2*sin2th*f[7]*f[8]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*f_25_2*sin2th*f[7]*f[8]*f[38]*f[40])/(4*U[1] - 3*U[2]) - (20*f_24_2*sin2th*f[6]*f[9]*f[38]*f[40])/(4*U[1] - 3*U[2]) - (20*f_25_2*sin2th*f[6]*f[9]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_24_2*f[7]*f[9]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_25_2*f[7]*f[9]*f[38]*f[40])/(4*U[1] - 3*U[2]) - (20*f_24_2*sin2th*f[6]*f[8]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*f_25_2*sin2th*f[6]*f[8]*f[39]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_24_2*f[7]*f[8]*f[39]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_25_2*f[7]*f[8]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*cos2th*f_24_2*f[6]*f[9]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*cos2th*f_25_2*f[6]*f[9]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*f_24_2*sin2th*f[7]*f[9]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*f_25_2*sin2th*f[7]*f[9]*f[39]*f[40])/(4*U[1] - 3*U[2]) + (20*f_24_2*sin2th*f[6]*f[8]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*f_25_2*sin2th*f[6]*f[8]*f[38]*f[41])/(4*U[1] - 3*U[2]) - (20*cos2th*f_24_2*f[7]*f[8]*f[38]*f[41])/(4*U[1] - 3*U[2]) - (20*cos2th*f_25_2*f[7]*f[8]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_24_2*f[6]*f[9]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_25_2*f[6]*f[9]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*f_24_2*sin2th*f[7]*f[9]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*f_25_2*sin2th*f[7]*f[9]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_24_2*f[6]*f[8]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_25_2*f[6]*f[8]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*f_24_2*sin2th*f[7]*f[8]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*f_25_2*sin2th*f[7]*f[8]*f[39]*f[41])/(4*U[1] - 3*U[2]) - (20*f_24_2*sin2th*f[6]*f[9]*f[39]*f[41])/(4*U[1] - 3*U[2]) - (20*f_25_2*sin2th*f[6]*f[9]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_24_2*f[7]*f[9]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_25_2*f[7]*f[9]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (24*cos2th*f_26_2*f[6]*f[8]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_27_2*f[6]*f[8]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*f_26_2*sin2th*f[7]*f[8]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*f_27_2*sin2th*f[7]*f[8]*f[38]*f[40])/(5*U[1] - 3*U[2]) - (24*f_26_2*sin2th*f[6]*f[9]*f[38]*f[40])/(5*U[1] - 3*U[2]) - (24*f_27_2*sin2th*f[6]*f[9]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_26_2*f[7]*f[9]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_27_2*f[7]*f[9]*f[38]*f[40])/(5*U[1] - 3*U[2]) - (24*f_26_2*sin2th*f[6]*f[8]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*f_27_2*sin2th*f[6]*f[8]*f[39]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_26_2*f[7]*f[8]*f[39]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_27_2*f[7]*f[8]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*cos2th*f_26_2*f[6]*f[9]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*cos2th*f_27_2*f[6]*f[9]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*f_26_2*sin2th*f[7]*f[9]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*f_27_2*sin2th*f[7]*f[9]*f[39]*f[40])/(5*U[1] - 3*U[2]) + (24*f_26_2*sin2th*f[6]*f[8]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*f_27_2*sin2th*f[6]*f[8]*f[38]*f[41])/(5*U[1] - 3*U[2]) - (24*cos2th*f_26_2*f[7]*f[8]*f[38]*f[41])/(5*U[1] - 3*U[2]) - (24*cos2th*f_27_2*f[7]*f[8]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_26_2*f[6]*f[9]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_27_2*f[6]*f[9]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*f_26_2*sin2th*f[7]*f[9]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*f_27_2*sin2th*f[7]*f[9]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_26_2*f[6]*f[8]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_27_2*f[6]*f[8]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*f_26_2*sin2th*f[7]*f[8]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*f_27_2*sin2th*f[7]*f[8]*f[39]*f[41])/(5*U[1] - 3*U[2]) - (24*f_26_2*sin2th*f[6]*f[9]*f[39]*f[41])/(5*U[1] - 3*U[2]) - (24*f_27_2*sin2th*f[6]*f[9]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_26_2*f[7]*f[9]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_27_2*f[7]*f[9]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (28*cos2th*f_28_2*f[6]*f[8]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_29_2*f[6]*f[8]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*f_28_2*sin2th*f[7]*f[8]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*f_29_2*sin2th*f[7]*f[8]*f[38]*f[40])/(6*U[1] - 3*U[2]) - (28*f_28_2*sin2th*f[6]*f[9]*f[38]*f[40])/(6*U[1] - 3*U[2]) - (28*f_29_2*sin2th*f[6]*f[9]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_28_2*f[7]*f[9]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_29_2*f[7]*f[9]*f[38]*f[40])/(6*U[1] - 3*U[2]) - (28*f_28_2*sin2th*f[6]*f[8]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*f_29_2*sin2th*f[6]*f[8]*f[39]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_28_2*f[7]*f[8]*f[39]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_29_2*f[7]*f[8]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*cos2th*f_28_2*f[6]*f[9]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*cos2th*f_29_2*f[6]*f[9]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*f_28_2*sin2th*f[7]*f[9]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*f_29_2*sin2th*f[7]*f[9]*f[39]*f[40])/(6*U[1] - 3*U[2]) + (28*f_28_2*sin2th*f[6]*f[8]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*f_29_2*sin2th*f[6]*f[8]*f[38]*f[41])/(6*U[1] - 3*U[2]) - (28*cos2th*f_28_2*f[7]*f[8]*f[38]*f[41])/(6*U[1] - 3*U[2]) - (28*cos2th*f_29_2*f[7]*f[8]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_28_2*f[6]*f[9]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_29_2*f[6]*f[9]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*f_28_2*sin2th*f[7]*f[9]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*f_29_2*sin2th*f[7]*f[9]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_28_2*f[6]*f[8]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_29_2*f[6]*f[8]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*f_28_2*sin2th*f[7]*f[8]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*f_29_2*sin2th*f[7]*f[8]*f[39]*f[41])/(6*U[1] - 3*U[2]) - (28*f_28_2*sin2th*f[6]*f[9]*f[39]*f[41])/(6*U[1] - 3*U[2]) - (28*f_29_2*sin2th*f[6]*f[9]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_28_2*f[7]*f[9]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_29_2*f[7]*f[9]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (6*cos2th*f_18_2*f[4]*f[6]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_19_2*f[4]*f[6]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*f_18_2*sin2th*f[5]*f[6]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*f_19_2*sin2th*f[5]*f[6]*f[36]*f[38])/(U[1] - 2*U[2]) - (6*f_18_2*sin2th*f[4]*f[7]*f[36]*f[38])/(U[1] - 2*U[2]) - (6*f_19_2*sin2th*f[4]*f[7]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_18_2*f[5]*f[7]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_19_2*f[5]*f[7]*f[36]*f[38])/(U[1] - 2*U[2]) - (6*f_18_2*sin2th*f[4]*f[6]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*f_19_2*sin2th*f[4]*f[6]*f[37]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_18_2*f[5]*f[6]*f[37]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_19_2*f[5]*f[6]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*cos2th*f_18_2*f[4]*f[7]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*cos2th*f_19_2*f[4]*f[7]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*f_18_2*sin2th*f[5]*f[7]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*f_19_2*sin2th*f[5]*f[7]*f[37]*f[38])/(U[1] - 2*U[2]) + (6*f_18_2*sin2th*f[4]*f[6]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*f_19_2*sin2th*f[4]*f[6]*f[36]*f[39])/(U[1] - 2*U[2]) - (6*cos2th*f_18_2*f[5]*f[6]*f[36]*f[39])/(U[1] - 2*U[2]) - (6*cos2th*f_19_2*f[5]*f[6]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_18_2*f[4]*f[7]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_19_2*f[4]*f[7]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*f_18_2*sin2th*f[5]*f[7]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*f_19_2*sin2th*f[5]*f[7]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_18_2*f[4]*f[6]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_19_2*f[4]*f[6]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*f_18_2*sin2th*f[5]*f[6]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*f_19_2*sin2th*f[5]*f[6]*f[37]*f[39])/(U[1] - 2*U[2]) - (6*f_18_2*sin2th*f[4]*f[7]*f[37]*f[39])/(U[1] - 2*U[2]) - (6*f_19_2*sin2th*f[4]*f[7]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_18_2*f[5]*f[7]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_19_2*f[5]*f[7]*f[37]*f[39])/(U[1] - 2*U[2]) + (12*cos2th*f_22_2*f[4]*f[6]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_23_2*f[4]*f[6]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*f_22_2*sin2th*f[5]*f[6]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*f_23_2*sin2th*f[5]*f[6]*f[36]*f[38])/(3*U[1] - 2*U[2]) - (12*f_22_2*sin2th*f[4]*f[7]*f[36]*f[38])/(3*U[1] - 2*U[2]) - (12*f_23_2*sin2th*f[4]*f[7]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_22_2*f[5]*f[7]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_23_2*f[5]*f[7]*f[36]*f[38])/(3*U[1] - 2*U[2]) - (12*f_22_2*sin2th*f[4]*f[6]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*f_23_2*sin2th*f[4]*f[6]*f[37]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_22_2*f[5]*f[6]*f[37]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_23_2*f[5]*f[6]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*cos2th*f_22_2*f[4]*f[7]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*cos2th*f_23_2*f[4]*f[7]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*f_22_2*sin2th*f[5]*f[7]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*f_23_2*sin2th*f[5]*f[7]*f[37]*f[38])/(3*U[1] - 2*U[2]) + (12*f_22_2*sin2th*f[4]*f[6]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*f_23_2*sin2th*f[4]*f[6]*f[36]*f[39])/(3*U[1] - 2*U[2]) - (12*cos2th*f_22_2*f[5]*f[6]*f[36]*f[39])/(3*U[1] - 2*U[2]) - (12*cos2th*f_23_2*f[5]*f[6]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_22_2*f[4]*f[7]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_23_2*f[4]*f[7]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*f_22_2*sin2th*f[5]*f[7]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*f_23_2*sin2th*f[5]*f[7]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_22_2*f[4]*f[6]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_23_2*f[4]*f[6]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*f_22_2*sin2th*f[5]*f[6]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*f_23_2*sin2th*f[5]*f[6]*f[37]*f[39])/(3*U[1] - 2*U[2]) - (12*f_22_2*sin2th*f[4]*f[7]*f[37]*f[39])/(3*U[1] - 2*U[2]) - (12*f_23_2*sin2th*f[4]*f[7]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_22_2*f[5]*f[7]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_23_2*f[5]*f[7]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (15*cos2th*f_24_2*f[4]*f[6]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_25_2*f[4]*f[6]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*f_24_2*sin2th*f[5]*f[6]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*f_25_2*sin2th*f[5]*f[6]*f[36]*f[38])/(4*U[1] - 2*U[2]) - (15*f_24_2*sin2th*f[4]*f[7]*f[36]*f[38])/(4*U[1] - 2*U[2]) - (15*f_25_2*sin2th*f[4]*f[7]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_24_2*f[5]*f[7]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_25_2*f[5]*f[7]*f[36]*f[38])/(4*U[1] - 2*U[2]) - (15*f_24_2*sin2th*f[4]*f[6]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*f_25_2*sin2th*f[4]*f[6]*f[37]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_24_2*f[5]*f[6]*f[37]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_25_2*f[5]*f[6]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*cos2th*f_24_2*f[4]*f[7]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*cos2th*f_25_2*f[4]*f[7]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*f_24_2*sin2th*f[5]*f[7]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*f_25_2*sin2th*f[5]*f[7]*f[37]*f[38])/(4*U[1] - 2*U[2]) + (15*f_24_2*sin2th*f[4]*f[6]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*f_25_2*sin2th*f[4]*f[6]*f[36]*f[39])/(4*U[1] - 2*U[2]) - (15*cos2th*f_24_2*f[5]*f[6]*f[36]*f[39])/(4*U[1] - 2*U[2]) - (15*cos2th*f_25_2*f[5]*f[6]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_24_2*f[4]*f[7]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_25_2*f[4]*f[7]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*f_24_2*sin2th*f[5]*f[7]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*f_25_2*sin2th*f[5]*f[7]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_24_2*f[4]*f[6]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_25_2*f[4]*f[6]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*f_24_2*sin2th*f[5]*f[6]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*f_25_2*sin2th*f[5]*f[6]*f[37]*f[39])/(4*U[1] - 2*U[2]) - (15*f_24_2*sin2th*f[4]*f[7]*f[37]*f[39])/(4*U[1] - 2*U[2]) - (15*f_25_2*sin2th*f[4]*f[7]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_24_2*f[5]*f[7]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_25_2*f[5]*f[7]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (18*cos2th*f_26_2*f[4]*f[6]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_27_2*f[4]*f[6]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*f_26_2*sin2th*f[5]*f[6]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*f_27_2*sin2th*f[5]*f[6]*f[36]*f[38])/(5*U[1] - 2*U[2]) - (18*f_26_2*sin2th*f[4]*f[7]*f[36]*f[38])/(5*U[1] - 2*U[2]) - (18*f_27_2*sin2th*f[4]*f[7]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_26_2*f[5]*f[7]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_27_2*f[5]*f[7]*f[36]*f[38])/(5*U[1] - 2*U[2]) - (18*f_26_2*sin2th*f[4]*f[6]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*f_27_2*sin2th*f[4]*f[6]*f[37]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_26_2*f[5]*f[6]*f[37]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_27_2*f[5]*f[6]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*cos2th*f_26_2*f[4]*f[7]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*cos2th*f_27_2*f[4]*f[7]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*f_26_2*sin2th*f[5]*f[7]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*f_27_2*sin2th*f[5]*f[7]*f[37]*f[38])/(5*U[1] - 2*U[2]) + (18*f_26_2*sin2th*f[4]*f[6]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*f_27_2*sin2th*f[4]*f[6]*f[36]*f[39])/(5*U[1] - 2*U[2]) - (18*cos2th*f_26_2*f[5]*f[6]*f[36]*f[39])/(5*U[1] - 2*U[2]) - (18*cos2th*f_27_2*f[5]*f[6]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_26_2*f[4]*f[7]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_27_2*f[4]*f[7]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*f_26_2*sin2th*f[5]*f[7]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*f_27_2*sin2th*f[5]*f[7]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_26_2*f[4]*f[6]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_27_2*f[4]*f[6]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*f_26_2*sin2th*f[5]*f[6]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*f_27_2*sin2th*f[5]*f[6]*f[37]*f[39])/(5*U[1] - 2*U[2]) - (18*f_26_2*sin2th*f[4]*f[7]*f[37]*f[39])/(5*U[1] - 2*U[2]) - (18*f_27_2*sin2th*f[4]*f[7]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_26_2*f[5]*f[7]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_27_2*f[5]*f[7]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (21*cos2th*f_28_2*f[4]*f[6]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_29_2*f[4]*f[6]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*f_28_2*sin2th*f[5]*f[6]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*f_29_2*sin2th*f[5]*f[6]*f[36]*f[38])/(6*U[1] - 2*U[2]) - (21*f_28_2*sin2th*f[4]*f[7]*f[36]*f[38])/(6*U[1] - 2*U[2]) - (21*f_29_2*sin2th*f[4]*f[7]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_28_2*f[5]*f[7]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_29_2*f[5]*f[7]*f[36]*f[38])/(6*U[1] - 2*U[2]) - (21*f_28_2*sin2th*f[4]*f[6]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*f_29_2*sin2th*f[4]*f[6]*f[37]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_28_2*f[5]*f[6]*f[37]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_29_2*f[5]*f[6]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*cos2th*f_28_2*f[4]*f[7]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*cos2th*f_29_2*f[4]*f[7]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*f_28_2*sin2th*f[5]*f[7]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*f_29_2*sin2th*f[5]*f[7]*f[37]*f[38])/(6*U[1] - 2*U[2]) + (21*f_28_2*sin2th*f[4]*f[6]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*f_29_2*sin2th*f[4]*f[6]*f[36]*f[39])/(6*U[1] - 2*U[2]) - (21*cos2th*f_28_2*f[5]*f[6]*f[36]*f[39])/(6*U[1] - 2*U[2]) - (21*cos2th*f_29_2*f[5]*f[6]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_28_2*f[4]*f[7]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_29_2*f[4]*f[7]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*f_28_2*sin2th*f[5]*f[7]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*f_29_2*sin2th*f[5]*f[7]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_28_2*f[4]*f[6]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_29_2*f[4]*f[6]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*f_28_2*sin2th*f[5]*f[6]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*f_29_2*sin2th*f[5]*f[6]*f[37]*f[39])/(6*U[1] - 2*U[2]) - (21*f_28_2*sin2th*f[4]*f[7]*f[37]*f[39])/(6*U[1] - 2*U[2]) - (21*f_29_2*sin2th*f[4]*f[7]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_28_2*f[5]*f[7]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_29_2*f[5]*f[7]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (6*cos2th*f_20_2*f[2]*f[4]*f[34]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_21_2*f[2]*f[4]*f[34]*f[36])/(2*U[1] - U[2]) + (6*f_20_2*sin2th*f[3]*f[4]*f[34]*f[36])/(2*U[1] - U[2]) + (6*f_21_2*sin2th*f[3]*f[4]*f[34]*f[36])/(2*U[1] - U[2]) - (6*f_20_2*sin2th*f[2]*f[5]*f[34]*f[36])/(2*U[1] - U[2]) - (6*f_21_2*sin2th*f[2]*f[5]*f[34]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_20_2*f[3]*f[5]*f[34]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_21_2*f[3]*f[5]*f[34]*f[36])/(2*U[1] - U[2]) - (6*f_20_2*sin2th*f[2]*f[4]*f[35]*f[36])/(2*U[1] - U[2]) - (6*f_21_2*sin2th*f[2]*f[4]*f[35]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_20_2*f[3]*f[4]*f[35]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_21_2*f[3]*f[4]*f[35]*f[36])/(2*U[1] - U[2]) - (6*cos2th*f_20_2*f[2]*f[5]*f[35]*f[36])/(2*U[1] - U[2]) - (6*cos2th*f_21_2*f[2]*f[5]*f[35]*f[36])/(2*U[1] - U[2]) - (6*f_20_2*sin2th*f[3]*f[5]*f[35]*f[36])/(2*U[1] - U[2]) - (6*f_21_2*sin2th*f[3]*f[5]*f[35]*f[36])/(2*U[1] - U[2]) + (6*f_20_2*sin2th*f[2]*f[4]*f[34]*f[37])/(2*U[1] - U[2]) + (6*f_21_2*sin2th*f[2]*f[4]*f[34]*f[37])/(2*U[1] - U[2]) - (6*cos2th*f_20_2*f[3]*f[4]*f[34]*f[37])/(2*U[1] - U[2]) - (6*cos2th*f_21_2*f[3]*f[4]*f[34]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_20_2*f[2]*f[5]*f[34]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_21_2*f[2]*f[5]*f[34]*f[37])/(2*U[1] - U[2]) + (6*f_20_2*sin2th*f[3]*f[5]*f[34]*f[37])/(2*U[1] - U[2]) + (6*f_21_2*sin2th*f[3]*f[5]*f[34]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_20_2*f[2]*f[4]*f[35]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_21_2*f[2]*f[4]*f[35]*f[37])/(2*U[1] - U[2]) + (6*f_20_2*sin2th*f[3]*f[4]*f[35]*f[37])/(2*U[1] - U[2]) + (6*f_21_2*sin2th*f[3]*f[4]*f[35]*f[37])/(2*U[1] - U[2]) - (6*f_20_2*sin2th*f[2]*f[5]*f[35]*f[37])/(2*U[1] - U[2]) - (6*f_21_2*sin2th*f[2]*f[5]*f[35]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_20_2*f[3]*f[5]*f[35]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_21_2*f[3]*f[5]*f[35]*f[37])/(2*U[1] - U[2]) + (8*cos2th*f_22_2*f[2]*f[4]*f[34]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_23_2*f[2]*f[4]*f[34]*f[36])/(3*U[1] - U[2]) + (8*f_22_2*sin2th*f[3]*f[4]*f[34]*f[36])/(3*U[1] - U[2]) + (8*f_23_2*sin2th*f[3]*f[4]*f[34]*f[36])/(3*U[1] - U[2]) - (8*f_22_2*sin2th*f[2]*f[5]*f[34]*f[36])/(3*U[1] - U[2]) - (8*f_23_2*sin2th*f[2]*f[5]*f[34]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_22_2*f[3]*f[5]*f[34]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_23_2*f[3]*f[5]*f[34]*f[36])/(3*U[1] - U[2]) - (8*f_22_2*sin2th*f[2]*f[4]*f[35]*f[36])/(3*U[1] - U[2]) - (8*f_23_2*sin2th*f[2]*f[4]*f[35]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_22_2*f[3]*f[4]*f[35]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_23_2*f[3]*f[4]*f[35]*f[36])/(3*U[1] - U[2]) - (8*cos2th*f_22_2*f[2]*f[5]*f[35]*f[36])/(3*U[1] - U[2]) - (8*cos2th*f_23_2*f[2]*f[5]*f[35]*f[36])/(3*U[1] - U[2]) - (8*f_22_2*sin2th*f[3]*f[5]*f[35]*f[36])/(3*U[1] - U[2]) - (8*f_23_2*sin2th*f[3]*f[5]*f[35]*f[36])/(3*U[1] - U[2]) + (8*f_22_2*sin2th*f[2]*f[4]*f[34]*f[37])/(3*U[1] - U[2]) + (8*f_23_2*sin2th*f[2]*f[4]*f[34]*f[37])/(3*U[1] - U[2]) - (8*cos2th*f_22_2*f[3]*f[4]*f[34]*f[37])/(3*U[1] - U[2]) - (8*cos2th*f_23_2*f[3]*f[4]*f[34]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_22_2*f[2]*f[5]*f[34]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_23_2*f[2]*f[5]*f[34]*f[37])/(3*U[1] - U[2]) + (8*f_22_2*sin2th*f[3]*f[5]*f[34]*f[37])/(3*U[1] - U[2]) + (8*f_23_2*sin2th*f[3]*f[5]*f[34]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_22_2*f[2]*f[4]*f[35]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_23_2*f[2]*f[4]*f[35]*f[37])/(3*U[1] - U[2]) + (8*f_22_2*sin2th*f[3]*f[4]*f[35]*f[37])/(3*U[1] - U[2]) + (8*f_23_2*sin2th*f[3]*f[4]*f[35]*f[37])/(3*U[1] - U[2]) - (8*f_22_2*sin2th*f[2]*f[5]*f[35]*f[37])/(3*U[1] - U[2]) - (8*f_23_2*sin2th*f[2]*f[5]*f[35]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_22_2*f[3]*f[5]*f[35]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_23_2*f[3]*f[5]*f[35]*f[37])/(3*U[1] - U[2]) + (10*cos2th*f_24_2*f[2]*f[4]*f[34]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_25_2*f[2]*f[4]*f[34]*f[36])/(4*U[1] - U[2]) + (10*f_24_2*sin2th*f[3]*f[4]*f[34]*f[36])/(4*U[1] - U[2]) + (10*f_25_2*sin2th*f[3]*f[4]*f[34]*f[36])/(4*U[1] - U[2]) - (10*f_24_2*sin2th*f[2]*f[5]*f[34]*f[36])/(4*U[1] - U[2]) - (10*f_25_2*sin2th*f[2]*f[5]*f[34]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_24_2*f[3]*f[5]*f[34]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_25_2*f[3]*f[5]*f[34]*f[36])/(4*U[1] - U[2]) - (10*f_24_2*sin2th*f[2]*f[4]*f[35]*f[36])/(4*U[1] - U[2]) - (10*f_25_2*sin2th*f[2]*f[4]*f[35]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_24_2*f[3]*f[4]*f[35]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_25_2*f[3]*f[4]*f[35]*f[36])/(4*U[1] - U[2]) - (10*cos2th*f_24_2*f[2]*f[5]*f[35]*f[36])/(4*U[1] - U[2]) - (10*cos2th*f_25_2*f[2]*f[5]*f[35]*f[36])/(4*U[1] - U[2]) - (10*f_24_2*sin2th*f[3]*f[5]*f[35]*f[36])/(4*U[1] - U[2]) - (10*f_25_2*sin2th*f[3]*f[5]*f[35]*f[36])/(4*U[1] - U[2]) + (10*f_24_2*sin2th*f[2]*f[4]*f[34]*f[37])/(4*U[1] - U[2]) + (10*f_25_2*sin2th*f[2]*f[4]*f[34]*f[37])/(4*U[1] - U[2]) - (10*cos2th*f_24_2*f[3]*f[4]*f[34]*f[37])/(4*U[1] - U[2]) - (10*cos2th*f_25_2*f[3]*f[4]*f[34]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_24_2*f[2]*f[5]*f[34]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_25_2*f[2]*f[5]*f[34]*f[37])/(4*U[1] - U[2]) + (10*f_24_2*sin2th*f[3]*f[5]*f[34]*f[37])/(4*U[1] - U[2]) + (10*f_25_2*sin2th*f[3]*f[5]*f[34]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_24_2*f[2]*f[4]*f[35]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_25_2*f[2]*f[4]*f[35]*f[37])/(4*U[1] - U[2]) + (10*f_24_2*sin2th*f[3]*f[4]*f[35]*f[37])/(4*U[1] - U[2]) + (10*f_25_2*sin2th*f[3]*f[4]*f[35]*f[37])/(4*U[1] - U[2]) - (10*f_24_2*sin2th*f[2]*f[5]*f[35]*f[37])/(4*U[1] - U[2]) - (10*f_25_2*sin2th*f[2]*f[5]*f[35]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_24_2*f[3]*f[5]*f[35]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_25_2*f[3]*f[5]*f[35]*f[37])/(4*U[1] - U[2]) + (12*cos2th*f_26_2*f[2]*f[4]*f[34]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_27_2*f[2]*f[4]*f[34]*f[36])/(5*U[1] - U[2]) + (12*f_26_2*sin2th*f[3]*f[4]*f[34]*f[36])/(5*U[1] - U[2]) + (12*f_27_2*sin2th*f[3]*f[4]*f[34]*f[36])/(5*U[1] - U[2]) - (12*f_26_2*sin2th*f[2]*f[5]*f[34]*f[36])/(5*U[1] - U[2]) - (12*f_27_2*sin2th*f[2]*f[5]*f[34]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_26_2*f[3]*f[5]*f[34]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_27_2*f[3]*f[5]*f[34]*f[36])/(5*U[1] - U[2]) - (12*f_26_2*sin2th*f[2]*f[4]*f[35]*f[36])/(5*U[1] - U[2]) - (12*f_27_2*sin2th*f[2]*f[4]*f[35]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_26_2*f[3]*f[4]*f[35]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_27_2*f[3]*f[4]*f[35]*f[36])/(5*U[1] - U[2]) - (12*cos2th*f_26_2*f[2]*f[5]*f[35]*f[36])/(5*U[1] - U[2]) - (12*cos2th*f_27_2*f[2]*f[5]*f[35]*f[36])/(5*U[1] - U[2]) - (12*f_26_2*sin2th*f[3]*f[5]*f[35]*f[36])/(5*U[1] - U[2]) - (12*f_27_2*sin2th*f[3]*f[5]*f[35]*f[36])/(5*U[1] - U[2]) + (12*f_26_2*sin2th*f[2]*f[4]*f[34]*f[37])/(5*U[1] - U[2]) + (12*f_27_2*sin2th*f[2]*f[4]*f[34]*f[37])/(5*U[1] - U[2]) - (12*cos2th*f_26_2*f[3]*f[4]*f[34]*f[37])/(5*U[1] - U[2]) - (12*cos2th*f_27_2*f[3]*f[4]*f[34]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_26_2*f[2]*f[5]*f[34]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_27_2*f[2]*f[5]*f[34]*f[37])/(5*U[1] - U[2]) + (12*f_26_2*sin2th*f[3]*f[5]*f[34]*f[37])/(5*U[1] - U[2]) + (12*f_27_2*sin2th*f[3]*f[5]*f[34]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_26_2*f[2]*f[4]*f[35]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_27_2*f[2]*f[4]*f[35]*f[37])/(5*U[1] - U[2]) + (12*f_26_2*sin2th*f[3]*f[4]*f[35]*f[37])/(5*U[1] - U[2]) + (12*f_27_2*sin2th*f[3]*f[4]*f[35]*f[37])/(5*U[1] - U[2]) - (12*f_26_2*sin2th*f[2]*f[5]*f[35]*f[37])/(5*U[1] - U[2]) - (12*f_27_2*sin2th*f[2]*f[5]*f[35]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_26_2*f[3]*f[5]*f[35]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_27_2*f[3]*f[5]*f[35]*f[37])/(5*U[1] - U[2]) + (14*cos2th*f_28_2*f[2]*f[4]*f[34]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_29_2*f[2]*f[4]*f[34]*f[36])/(6*U[1] - U[2]) + (14*f_28_2*sin2th*f[3]*f[4]*f[34]*f[36])/(6*U[1] - U[2]) + (14*f_29_2*sin2th*f[3]*f[4]*f[34]*f[36])/(6*U[1] - U[2]) - (14*f_28_2*sin2th*f[2]*f[5]*f[34]*f[36])/(6*U[1] - U[2]) - (14*f_29_2*sin2th*f[2]*f[5]*f[34]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_28_2*f[3]*f[5]*f[34]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_29_2*f[3]*f[5]*f[34]*f[36])/(6*U[1] - U[2]) - (14*f_28_2*sin2th*f[2]*f[4]*f[35]*f[36])/(6*U[1] - U[2]) - (14*f_29_2*sin2th*f[2]*f[4]*f[35]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_28_2*f[3]*f[4]*f[35]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_29_2*f[3]*f[4]*f[35]*f[36])/(6*U[1] - U[2]) - (14*cos2th*f_28_2*f[2]*f[5]*f[35]*f[36])/(6*U[1] - U[2]) - (14*cos2th*f_29_2*f[2]*f[5]*f[35]*f[36])/(6*U[1] - U[2]) - (14*f_28_2*sin2th*f[3]*f[5]*f[35]*f[36])/(6*U[1] - U[2]) - (14*f_29_2*sin2th*f[3]*f[5]*f[35]*f[36])/(6*U[1] - U[2]) + (14*f_28_2*sin2th*f[2]*f[4]*f[34]*f[37])/(6*U[1] - U[2]) + (14*f_29_2*sin2th*f[2]*f[4]*f[34]*f[37])/(6*U[1] - U[2]) - (14*cos2th*f_28_2*f[3]*f[4]*f[34]*f[37])/(6*U[1] - U[2]) - (14*cos2th*f_29_2*f[3]*f[4]*f[34]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_28_2*f[2]*f[5]*f[34]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_29_2*f[2]*f[5]*f[34]*f[37])/(6*U[1] - U[2]) + (14*f_28_2*sin2th*f[3]*f[5]*f[34]*f[37])/(6*U[1] - U[2]) + (14*f_29_2*sin2th*f[3]*f[5]*f[34]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_28_2*f[2]*f[4]*f[35]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_29_2*f[2]*f[4]*f[35]*f[37])/(6*U[1] - U[2]) + (14*f_28_2*sin2th*f[3]*f[4]*f[35]*f[37])/(6*U[1] - U[2]) + (14*f_29_2*sin2th*f[3]*f[4]*f[35]*f[37])/(6*U[1] - U[2]) - (14*f_28_2*sin2th*f[2]*f[5]*f[35]*f[37])/(6*U[1] - U[2]) - (14*f_29_2*sin2th*f[2]*f[5]*f[35]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_28_2*f[3]*f[5]*f[35]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_29_2*f[3]*f[5]*f[35]*f[37])/(6*U[1] - U[2]) - (2*cos2th*f_16_2*f[2]*f[4]*f[34]*f[36])/U[2] - (2*cos2th*f_17_2*f[2]*f[4]*f[34]*f[36])/U[2] - (2*f_16_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[2] - (2*f_17_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[2] + (2*f_16_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[2] + (2*f_17_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[2] - (2*cos2th*f_16_2*f[3]*f[5]*f[34]*f[36])/U[2] - (2*cos2th*f_17_2*f[3]*f[5]*f[34]*f[36])/U[2] + (2*f_16_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[2] + (2*f_17_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[2] - (2*cos2th*f_16_2*f[3]*f[4]*f[35]*f[36])/U[2] - (2*cos2th*f_17_2*f[3]*f[4]*f[35]*f[36])/U[2] + (2*cos2th*f_16_2*f[2]*f[5]*f[35]*f[36])/U[2] + (2*cos2th*f_17_2*f[2]*f[5]*f[35]*f[36])/U[2] + (2*f_16_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[2] + (2*f_17_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[2] - (2*f_16_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[2] - (2*f_17_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[2] + (2*cos2th*f_16_2*f[3]*f[4]*f[34]*f[37])/U[2] + (2*cos2th*f_17_2*f[3]*f[4]*f[34]*f[37])/U[2] - (2*cos2th*f_16_2*f[2]*f[5]*f[34]*f[37])/U[2] - (2*cos2th*f_17_2*f[2]*f[5]*f[34]*f[37])/U[2] - (2*f_16_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[2] - (2*f_17_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[2] - (2*cos2th*f_16_2*f[2]*f[4]*f[35]*f[37])/U[2] - (2*cos2th*f_17_2*f[2]*f[4]*f[35]*f[37])/U[2] - (2*f_16_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[2] - (2*f_17_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[2] + (2*f_16_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[2] + (2*f_17_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[2] - (2*cos2th*f_16_2*f[3]*f[5]*f[35]*f[37])/U[2] - (2*cos2th*f_17_2*f[3]*f[5]*f[35]*f[37])/U[2] - (3*cos2th*f_16_2*f[4]*f[6]*f[36]*f[38])/(2.*U[2]) - (3*cos2th*f_17_2*f[4]*f[6]*f[36]*f[38])/(2.*U[2]) - (3*f_16_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[2]) - (3*f_17_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[2]) + (3*f_16_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[2]) + (3*f_17_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[2]) - (3*cos2th*f_16_2*f[5]*f[7]*f[36]*f[38])/(2.*U[2]) - (3*cos2th*f_17_2*f[5]*f[7]*f[36]*f[38])/(2.*U[2]) + (3*f_16_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[2]) + (3*f_17_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[2]) - (3*cos2th*f_16_2*f[5]*f[6]*f[37]*f[38])/(2.*U[2]) - (3*cos2th*f_17_2*f[5]*f[6]*f[37]*f[38])/(2.*U[2]) + (3*cos2th*f_16_2*f[4]*f[7]*f[37]*f[38])/(2.*U[2]) + (3*cos2th*f_17_2*f[4]*f[7]*f[37]*f[38])/(2.*U[2]) + (3*f_16_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[2]) + (3*f_17_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[2]) - (3*f_16_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[2]) - (3*f_17_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_16_2*f[5]*f[6]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_17_2*f[5]*f[6]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_16_2*f[4]*f[7]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_17_2*f[4]*f[7]*f[36]*f[39])/(2.*U[2]) - (3*f_16_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[2]) - (3*f_17_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_16_2*f[4]*f[6]*f[37]*f[39])/(2.*U[2]) - (3*cos2th*f_17_2*f[4]*f[6]*f[37]*f[39])/(2.*U[2]) - (3*f_16_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[2]) - (3*f_17_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[2]) + (3*f_16_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[2]) + (3*f_17_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[2]) - (3*cos2th*f_16_2*f[5]*f[7]*f[37]*f[39])/(2.*U[2]) - (3*cos2th*f_17_2*f[5]*f[7]*f[37]*f[39])/(2.*U[2]) - (4*cos2th*f_16_2*f[6]*f[8]*f[38]*f[40])/(3.*U[2]) - (4*cos2th*f_17_2*f[6]*f[8]*f[38]*f[40])/(3.*U[2]) - (4*f_16_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[2]) - (4*f_17_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[2]) + (4*f_16_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[2]) + (4*f_17_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[2]) - (4*cos2th*f_16_2*f[7]*f[9]*f[38]*f[40])/(3.*U[2]) - (4*cos2th*f_17_2*f[7]*f[9]*f[38]*f[40])/(3.*U[2]) + (4*f_16_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[2]) + (4*f_17_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[2]) - (4*cos2th*f_16_2*f[7]*f[8]*f[39]*f[40])/(3.*U[2]) - (4*cos2th*f_17_2*f[7]*f[8]*f[39]*f[40])/(3.*U[2]) + (4*cos2th*f_16_2*f[6]*f[9]*f[39]*f[40])/(3.*U[2]) + (4*cos2th*f_17_2*f[6]*f[9]*f[39]*f[40])/(3.*U[2]) + (4*f_16_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[2]) + (4*f_17_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[2]) - (4*f_16_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[2]) - (4*f_17_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_16_2*f[7]*f[8]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_17_2*f[7]*f[8]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_16_2*f[6]*f[9]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_17_2*f[6]*f[9]*f[38]*f[41])/(3.*U[2]) - (4*f_16_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[2]) - (4*f_17_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_16_2*f[6]*f[8]*f[39]*f[41])/(3.*U[2]) - (4*cos2th*f_17_2*f[6]*f[8]*f[39]*f[41])/(3.*U[2]) - (4*f_16_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[2]) - (4*f_17_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[2]) + (4*f_16_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[2]) + (4*f_17_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[2]) - (4*cos2th*f_16_2*f[7]*f[9]*f[39]*f[41])/(3.*U[2]) - (4*cos2th*f_17_2*f[7]*f[9]*f[39]*f[41])/(3.*U[2]) - (5*cos2th*f_16_2*f[8]*f[10]*f[40]*f[42])/(4.*U[2]) - (5*cos2th*f_17_2*f[8]*f[10]*f[40]*f[42])/(4.*U[2]) - (5*f_16_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[2]) - (5*f_17_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[2]) + (5*f_16_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[2]) + (5*f_17_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[2]) - (5*cos2th*f_16_2*f[9]*f[11]*f[40]*f[42])/(4.*U[2]) - (5*cos2th*f_17_2*f[9]*f[11]*f[40]*f[42])/(4.*U[2]) + (5*f_16_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[2]) + (5*f_17_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[2]) - (5*cos2th*f_16_2*f[9]*f[10]*f[41]*f[42])/(4.*U[2]) - (5*cos2th*f_17_2*f[9]*f[10]*f[41]*f[42])/(4.*U[2]) + (5*cos2th*f_16_2*f[8]*f[11]*f[41]*f[42])/(4.*U[2]) + (5*cos2th*f_17_2*f[8]*f[11]*f[41]*f[42])/(4.*U[2]) + (5*f_16_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[2]) + (5*f_17_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[2]) - (5*f_16_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[2]) - (5*f_17_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_16_2*f[9]*f[10]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_17_2*f[9]*f[10]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_16_2*f[8]*f[11]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_17_2*f[8]*f[11]*f[40]*f[43])/(4.*U[2]) - (5*f_16_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[2]) - (5*f_17_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_16_2*f[8]*f[10]*f[41]*f[43])/(4.*U[2]) - (5*cos2th*f_17_2*f[8]*f[10]*f[41]*f[43])/(4.*U[2]) - (5*f_16_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[2]) - (5*f_17_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[2]) + (5*f_16_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[2]) + (5*f_17_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[2]) - (5*cos2th*f_16_2*f[9]*f[11]*f[41]*f[43])/(4.*U[2]) - (5*cos2th*f_17_2*f[9]*f[11]*f[41]*f[43])/(4.*U[2]) - (6*cos2th*f_16_2*f[10]*f[12]*f[42]*f[44])/(5.*U[2]) - (6*cos2th*f_17_2*f[10]*f[12]*f[42]*f[44])/(5.*U[2]) - (6*f_16_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[2]) - (6*f_17_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[2]) + (6*f_16_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[2]) + (6*f_17_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[2]) - (6*cos2th*f_16_2*f[11]*f[13]*f[42]*f[44])/(5.*U[2]) - (6*cos2th*f_17_2*f[11]*f[13]*f[42]*f[44])/(5.*U[2]) + (6*f_16_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[2]) + (6*f_17_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[2]) - (6*cos2th*f_16_2*f[11]*f[12]*f[43]*f[44])/(5.*U[2]) - (6*cos2th*f_17_2*f[11]*f[12]*f[43]*f[44])/(5.*U[2]) + (6*cos2th*f_16_2*f[10]*f[13]*f[43]*f[44])/(5.*U[2]) + (6*cos2th*f_17_2*f[10]*f[13]*f[43]*f[44])/(5.*U[2]) + (6*f_16_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[2]) + (6*f_17_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[2]) - (6*f_16_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[2]) - (6*f_17_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_16_2*f[11]*f[12]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_17_2*f[11]*f[12]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_16_2*f[10]*f[13]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_17_2*f[10]*f[13]*f[42]*f[45])/(5.*U[2]) - (6*f_16_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[2]) - (6*f_17_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_16_2*f[10]*f[12]*f[43]*f[45])/(5.*U[2]) - (6*cos2th*f_17_2*f[10]*f[12]*f[43]*f[45])/(5.*U[2]) - (6*f_16_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[2]) - (6*f_17_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[2]) + (6*f_16_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[2]) + (6*f_17_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[2]) - (6*cos2th*f_16_2*f[11]*f[13]*f[43]*f[45])/(5.*U[2]) - (6*cos2th*f_17_2*f[11]*f[13]*f[43]*f[45])/(5.*U[2]) - (7*cos2th*f_16_2*f[12]*f[14]*f[44]*f[46])/(6.*U[2]) - (7*cos2th*f_17_2*f[12]*f[14]*f[44]*f[46])/(6.*U[2]) - (7*f_16_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[2]) - (7*f_17_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[2]) + (7*f_16_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[2]) + (7*f_17_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[2]) - (7*cos2th*f_16_2*f[13]*f[15]*f[44]*f[46])/(6.*U[2]) - (7*cos2th*f_17_2*f[13]*f[15]*f[44]*f[46])/(6.*U[2]) + (7*f_16_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[2]) + (7*f_17_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[2]) - (7*cos2th*f_16_2*f[13]*f[14]*f[45]*f[46])/(6.*U[2]) - (7*cos2th*f_17_2*f[13]*f[14]*f[45]*f[46])/(6.*U[2]) + (7*cos2th*f_16_2*f[12]*f[15]*f[45]*f[46])/(6.*U[2]) + (7*cos2th*f_17_2*f[12]*f[15]*f[45]*f[46])/(6.*U[2]) + (7*f_16_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[2]) + (7*f_17_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[2]) - (7*f_16_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[2]) - (7*f_17_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_16_2*f[13]*f[14]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_17_2*f[13]*f[14]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_16_2*f[12]*f[15]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_17_2*f[12]*f[15]*f[44]*f[47])/(6.*U[2]) - (7*f_16_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[2]) - (7*f_17_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_16_2*f[12]*f[14]*f[45]*f[47])/(6.*U[2]) - (7*cos2th*f_17_2*f[12]*f[14]*f[45]*f[47])/(6.*U[2]) - (7*f_16_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[2]) - (7*f_17_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[2]) + (7*f_16_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[2]) + (7*f_17_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[2]) - (7*cos2th*f_16_2*f[13]*f[15]*f[45]*f[47])/(6.*U[2]) - (7*cos2th*f_17_2*f[13]*f[15]*f[45]*f[47])/(6.*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[0]*J[1]*((2*cos2th*f_20_2*f[0]*f[2]*f[32]*f[34])/U[1] + (2*cos2th*f_21_2*f[0]*f[2]*f[32]*f[34])/U[1] + (3*cos2th*f_22_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) + (3*cos2th*f_23_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) + (4*cos2th*f_24_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) + (4*cos2th*f_25_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) + (5*cos2th*f_26_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) + (5*cos2th*f_27_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) + (6*cos2th*f_28_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) + (6*cos2th*f_29_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) + (7*cos2th*f_30_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) + (7*cos2th*f_31_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] + (2*f_21_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] + (3*f_22_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) + (3*f_23_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) + (4*f_24_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) + (4*f_25_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) + (5*f_26_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) + (5*f_27_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) + (6*f_28_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) + (6*f_29_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) + (7*f_30_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) + (7*f_31_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] - (2*f_21_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] - (3*f_22_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) - (3*f_23_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) - (4*f_24_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) - (4*f_25_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) - (5*f_26_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) - (5*f_27_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) - (6*f_28_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) - (6*f_29_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) - (7*f_30_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) - (7*f_31_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) + (2*cos2th*f_20_2*f[1]*f[3]*f[32]*f[34])/U[1] + (2*cos2th*f_21_2*f[1]*f[3]*f[32]*f[34])/U[1] + (3*cos2th*f_22_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) + (3*cos2th*f_23_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) + (4*cos2th*f_24_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) + (4*cos2th*f_25_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) + (5*cos2th*f_26_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) + (5*cos2th*f_27_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) + (6*cos2th*f_28_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) + (6*cos2th*f_29_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) + (7*cos2th*f_30_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) + (7*cos2th*f_31_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] - (2*f_21_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] - (3*f_22_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) - (3*f_23_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) - (4*f_24_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) - (4*f_25_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) - (5*f_26_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) - (5*f_27_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) - (6*f_28_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) - (6*f_29_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) - (7*f_30_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) - (7*f_31_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) + (2*cos2th*f_20_2*f[1]*f[2]*f[33]*f[34])/U[1] + (2*cos2th*f_21_2*f[1]*f[2]*f[33]*f[34])/U[1] + (3*cos2th*f_22_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) + (3*cos2th*f_23_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) + (4*cos2th*f_24_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) + (4*cos2th*f_25_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) + (5*cos2th*f_26_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) + (5*cos2th*f_27_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) + (6*cos2th*f_28_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) + (6*cos2th*f_29_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) + (7*cos2th*f_30_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) + (7*cos2th*f_31_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) - (2*cos2th*f_20_2*f[0]*f[3]*f[33]*f[34])/U[1] - (2*cos2th*f_21_2*f[0]*f[3]*f[33]*f[34])/U[1] - (3*cos2th*f_22_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) - (3*cos2th*f_23_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) - (4*cos2th*f_24_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) - (4*cos2th*f_25_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) - (5*cos2th*f_26_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) - (5*cos2th*f_27_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) - (6*cos2th*f_28_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) - (6*cos2th*f_29_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) - (7*cos2th*f_30_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) - (7*cos2th*f_31_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] - (2*f_21_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] - (3*f_22_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) - (3*f_23_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) - (4*f_24_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) - (4*f_25_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) - (5*f_26_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) - (5*f_27_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) - (6*f_28_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) - (6*f_29_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) - (7*f_30_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) - (7*f_31_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] + (2*f_21_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] + (3*f_22_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) + (3*f_23_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) + (4*f_24_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) + (4*f_25_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) + (5*f_26_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) + (5*f_27_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) + (6*f_28_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) + (6*f_29_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) + (7*f_30_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) + (7*f_31_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_20_2*f[1]*f[2]*f[32]*f[35])/U[1] - (2*cos2th*f_21_2*f[1]*f[2]*f[32]*f[35])/U[1] - (3*cos2th*f_22_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) - (3*cos2th*f_23_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) - (4*cos2th*f_24_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) - (4*cos2th*f_25_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) - (5*cos2th*f_26_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) - (5*cos2th*f_27_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) - (6*cos2th*f_28_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) - (6*cos2th*f_29_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) - (7*cos2th*f_30_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) - (7*cos2th*f_31_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_20_2*f[0]*f[3]*f[32]*f[35])/U[1] + (2*cos2th*f_21_2*f[0]*f[3]*f[32]*f[35])/U[1] + (3*cos2th*f_22_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) + (3*cos2th*f_23_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) + (4*cos2th*f_24_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) + (4*cos2th*f_25_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) + (5*cos2th*f_26_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) + (5*cos2th*f_27_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) + (6*cos2th*f_28_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) + (6*cos2th*f_29_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) + (7*cos2th*f_30_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) + (7*cos2th*f_31_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) + (2*f_20_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] + (2*f_21_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] + (3*f_22_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) + (3*f_23_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) + (4*f_24_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) + (4*f_25_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) + (5*f_26_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) + (5*f_27_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) + (6*f_28_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) + (6*f_29_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) + (7*f_30_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) + (7*f_31_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_20_2*f[0]*f[2]*f[33]*f[35])/U[1] + (2*cos2th*f_21_2*f[0]*f[2]*f[33]*f[35])/U[1] + (3*cos2th*f_22_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) + (3*cos2th*f_23_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) + (4*cos2th*f_24_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) + (4*cos2th*f_25_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) + (5*cos2th*f_26_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) + (5*cos2th*f_27_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) + (6*cos2th*f_28_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) + (6*cos2th*f_29_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) + (7*cos2th*f_30_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) + (7*cos2th*f_31_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) + (2*f_20_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] + (2*f_21_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] + (3*f_22_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) + (3*f_23_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) + (4*f_24_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) + (4*f_25_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) + (5*f_26_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) + (5*f_27_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) + (6*f_28_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) + (6*f_29_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) + (7*f_30_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) + (7*f_31_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) - (2*f_20_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] - (2*f_21_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] - (3*f_22_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) - (3*f_23_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) - (4*f_24_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) - (4*f_25_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) - (5*f_26_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) - (5*f_27_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) - (6*f_28_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) - (6*f_29_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) - (7*f_30_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) - (7*f_31_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) + (2*cos2th*f_20_2*f[1]*f[3]*f[33]*f[35])/U[1] + (2*cos2th*f_21_2*f[1]*f[3]*f[33]*f[35])/U[1] + (3*cos2th*f_22_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) + (3*cos2th*f_23_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) + (4*cos2th*f_24_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) + (4*cos2th*f_25_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) + (5*cos2th*f_26_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) + (5*cos2th*f_27_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) + (6*cos2th*f_28_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) + (6*cos2th*f_29_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) + (7*cos2th*f_30_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (7*cos2th*f_31_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (14*cos2th*f_20_2*f[12]*f[14]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_21_2*f[12]*f[14]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*f_20_2*sin2th*f[13]*f[14]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*f_21_2*sin2th*f[13]*f[14]*f[44]*f[46])/(U[1] - 6*U[2]) - (14*f_20_2*sin2th*f[12]*f[15]*f[44]*f[46])/(U[1] - 6*U[2]) - (14*f_21_2*sin2th*f[12]*f[15]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_20_2*f[13]*f[15]*f[44]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_21_2*f[13]*f[15]*f[44]*f[46])/(U[1] - 6*U[2]) - (14*f_20_2*sin2th*f[12]*f[14]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*f_21_2*sin2th*f[12]*f[14]*f[45]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_20_2*f[13]*f[14]*f[45]*f[46])/(U[1] - 6*U[2]) + (14*cos2th*f_21_2*f[13]*f[14]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*cos2th*f_20_2*f[12]*f[15]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*cos2th*f_21_2*f[12]*f[15]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*f_20_2*sin2th*f[13]*f[15]*f[45]*f[46])/(U[1] - 6*U[2]) - (14*f_21_2*sin2th*f[13]*f[15]*f[45]*f[46])/(U[1] - 6*U[2]) + (14*f_20_2*sin2th*f[12]*f[14]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*f_21_2*sin2th*f[12]*f[14]*f[44]*f[47])/(U[1] - 6*U[2]) - (14*cos2th*f_20_2*f[13]*f[14]*f[44]*f[47])/(U[1] - 6*U[2]) - (14*cos2th*f_21_2*f[13]*f[14]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_20_2*f[12]*f[15]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_21_2*f[12]*f[15]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*f_20_2*sin2th*f[13]*f[15]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*f_21_2*sin2th*f[13]*f[15]*f[44]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_20_2*f[12]*f[14]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_21_2*f[12]*f[14]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*f_20_2*sin2th*f[13]*f[14]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*f_21_2*sin2th*f[13]*f[14]*f[45]*f[47])/(U[1] - 6*U[2]) - (14*f_20_2*sin2th*f[12]*f[15]*f[45]*f[47])/(U[1] - 6*U[2]) - (14*f_21_2*sin2th*f[12]*f[15]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_20_2*f[13]*f[15]*f[45]*f[47])/(U[1] - 6*U[2]) + (14*cos2th*f_21_2*f[13]*f[15]*f[45]*f[47])/(U[1] - 6*U[2]) + (21*cos2th*f_22_2*f[12]*f[14]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_23_2*f[12]*f[14]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*f_22_2*sin2th*f[13]*f[14]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*f_23_2*sin2th*f[13]*f[14]*f[44]*f[46])/(2*U[1] - 6*U[2]) - (21*f_22_2*sin2th*f[12]*f[15]*f[44]*f[46])/(2*U[1] - 6*U[2]) - (21*f_23_2*sin2th*f[12]*f[15]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_22_2*f[13]*f[15]*f[44]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_23_2*f[13]*f[15]*f[44]*f[46])/(2*U[1] - 6*U[2]) - (21*f_22_2*sin2th*f[12]*f[14]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*f_23_2*sin2th*f[12]*f[14]*f[45]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_22_2*f[13]*f[14]*f[45]*f[46])/(2*U[1] - 6*U[2]) + (21*cos2th*f_23_2*f[13]*f[14]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*cos2th*f_22_2*f[12]*f[15]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*cos2th*f_23_2*f[12]*f[15]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*f_22_2*sin2th*f[13]*f[15]*f[45]*f[46])/(2*U[1] - 6*U[2]) - (21*f_23_2*sin2th*f[13]*f[15]*f[45]*f[46])/(2*U[1] - 6*U[2]) + (21*f_22_2*sin2th*f[12]*f[14]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*f_23_2*sin2th*f[12]*f[14]*f[44]*f[47])/(2*U[1] - 6*U[2]) - (21*cos2th*f_22_2*f[13]*f[14]*f[44]*f[47])/(2*U[1] - 6*U[2]) - (21*cos2th*f_23_2*f[13]*f[14]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_22_2*f[12]*f[15]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_23_2*f[12]*f[15]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*f_22_2*sin2th*f[13]*f[15]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*f_23_2*sin2th*f[13]*f[15]*f[44]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_22_2*f[12]*f[14]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_23_2*f[12]*f[14]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*f_22_2*sin2th*f[13]*f[14]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*f_23_2*sin2th*f[13]*f[14]*f[45]*f[47])/(2*U[1] - 6*U[2]) - (21*f_22_2*sin2th*f[12]*f[15]*f[45]*f[47])/(2*U[1] - 6*U[2]) - (21*f_23_2*sin2th*f[12]*f[15]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_22_2*f[13]*f[15]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (21*cos2th*f_23_2*f[13]*f[15]*f[45]*f[47])/(2*U[1] - 6*U[2]) + (28*cos2th*f_24_2*f[12]*f[14]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_25_2*f[12]*f[14]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*f_24_2*sin2th*f[13]*f[14]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*f_25_2*sin2th*f[13]*f[14]*f[44]*f[46])/(3*U[1] - 6*U[2]) - (28*f_24_2*sin2th*f[12]*f[15]*f[44]*f[46])/(3*U[1] - 6*U[2]) - (28*f_25_2*sin2th*f[12]*f[15]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_24_2*f[13]*f[15]*f[44]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_25_2*f[13]*f[15]*f[44]*f[46])/(3*U[1] - 6*U[2]) - (28*f_24_2*sin2th*f[12]*f[14]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*f_25_2*sin2th*f[12]*f[14]*f[45]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_24_2*f[13]*f[14]*f[45]*f[46])/(3*U[1] - 6*U[2]) + (28*cos2th*f_25_2*f[13]*f[14]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*cos2th*f_24_2*f[12]*f[15]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*cos2th*f_25_2*f[12]*f[15]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*f_24_2*sin2th*f[13]*f[15]*f[45]*f[46])/(3*U[1] - 6*U[2]) - (28*f_25_2*sin2th*f[13]*f[15]*f[45]*f[46])/(3*U[1] - 6*U[2]) + (28*f_24_2*sin2th*f[12]*f[14]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*f_25_2*sin2th*f[12]*f[14]*f[44]*f[47])/(3*U[1] - 6*U[2]) - (28*cos2th*f_24_2*f[13]*f[14]*f[44]*f[47])/(3*U[1] - 6*U[2]) - (28*cos2th*f_25_2*f[13]*f[14]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_24_2*f[12]*f[15]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_25_2*f[12]*f[15]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*f_24_2*sin2th*f[13]*f[15]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*f_25_2*sin2th*f[13]*f[15]*f[44]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_24_2*f[12]*f[14]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_25_2*f[12]*f[14]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*f_24_2*sin2th*f[13]*f[14]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*f_25_2*sin2th*f[13]*f[14]*f[45]*f[47])/(3*U[1] - 6*U[2]) - (28*f_24_2*sin2th*f[12]*f[15]*f[45]*f[47])/(3*U[1] - 6*U[2]) - (28*f_25_2*sin2th*f[12]*f[15]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_24_2*f[13]*f[15]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (28*cos2th*f_25_2*f[13]*f[15]*f[45]*f[47])/(3*U[1] - 6*U[2]) + (35*cos2th*f_26_2*f[12]*f[14]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_27_2*f[12]*f[14]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*f_26_2*sin2th*f[13]*f[14]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*f_27_2*sin2th*f[13]*f[14]*f[44]*f[46])/(4*U[1] - 6*U[2]) - (35*f_26_2*sin2th*f[12]*f[15]*f[44]*f[46])/(4*U[1] - 6*U[2]) - (35*f_27_2*sin2th*f[12]*f[15]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_26_2*f[13]*f[15]*f[44]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_27_2*f[13]*f[15]*f[44]*f[46])/(4*U[1] - 6*U[2]) - (35*f_26_2*sin2th*f[12]*f[14]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*f_27_2*sin2th*f[12]*f[14]*f[45]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_26_2*f[13]*f[14]*f[45]*f[46])/(4*U[1] - 6*U[2]) + (35*cos2th*f_27_2*f[13]*f[14]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*cos2th*f_26_2*f[12]*f[15]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*cos2th*f_27_2*f[12]*f[15]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*f_26_2*sin2th*f[13]*f[15]*f[45]*f[46])/(4*U[1] - 6*U[2]) - (35*f_27_2*sin2th*f[13]*f[15]*f[45]*f[46])/(4*U[1] - 6*U[2]) + (35*f_26_2*sin2th*f[12]*f[14]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*f_27_2*sin2th*f[12]*f[14]*f[44]*f[47])/(4*U[1] - 6*U[2]) - (35*cos2th*f_26_2*f[13]*f[14]*f[44]*f[47])/(4*U[1] - 6*U[2]) - (35*cos2th*f_27_2*f[13]*f[14]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_26_2*f[12]*f[15]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_27_2*f[12]*f[15]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*f_26_2*sin2th*f[13]*f[15]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*f_27_2*sin2th*f[13]*f[15]*f[44]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_26_2*f[12]*f[14]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_27_2*f[12]*f[14]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*f_26_2*sin2th*f[13]*f[14]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*f_27_2*sin2th*f[13]*f[14]*f[45]*f[47])/(4*U[1] - 6*U[2]) - (35*f_26_2*sin2th*f[12]*f[15]*f[45]*f[47])/(4*U[1] - 6*U[2]) - (35*f_27_2*sin2th*f[12]*f[15]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_26_2*f[13]*f[15]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (35*cos2th*f_27_2*f[13]*f[15]*f[45]*f[47])/(4*U[1] - 6*U[2]) + (42*cos2th*f_28_2*f[12]*f[14]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_29_2*f[12]*f[14]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*f_28_2*sin2th*f[13]*f[14]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*f_29_2*sin2th*f[13]*f[14]*f[44]*f[46])/(5*U[1] - 6*U[2]) - (42*f_28_2*sin2th*f[12]*f[15]*f[44]*f[46])/(5*U[1] - 6*U[2]) - (42*f_29_2*sin2th*f[12]*f[15]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_28_2*f[13]*f[15]*f[44]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_29_2*f[13]*f[15]*f[44]*f[46])/(5*U[1] - 6*U[2]) - (42*f_28_2*sin2th*f[12]*f[14]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*f_29_2*sin2th*f[12]*f[14]*f[45]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_28_2*f[13]*f[14]*f[45]*f[46])/(5*U[1] - 6*U[2]) + (42*cos2th*f_29_2*f[13]*f[14]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*cos2th*f_28_2*f[12]*f[15]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*cos2th*f_29_2*f[12]*f[15]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*f_28_2*sin2th*f[13]*f[15]*f[45]*f[46])/(5*U[1] - 6*U[2]) - (42*f_29_2*sin2th*f[13]*f[15]*f[45]*f[46])/(5*U[1] - 6*U[2]) + (42*f_28_2*sin2th*f[12]*f[14]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*f_29_2*sin2th*f[12]*f[14]*f[44]*f[47])/(5*U[1] - 6*U[2]) - (42*cos2th*f_28_2*f[13]*f[14]*f[44]*f[47])/(5*U[1] - 6*U[2]) - (42*cos2th*f_29_2*f[13]*f[14]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_28_2*f[12]*f[15]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_29_2*f[12]*f[15]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*f_28_2*sin2th*f[13]*f[15]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*f_29_2*sin2th*f[13]*f[15]*f[44]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_28_2*f[12]*f[14]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_29_2*f[12]*f[14]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*f_28_2*sin2th*f[13]*f[14]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*f_29_2*sin2th*f[13]*f[14]*f[45]*f[47])/(5*U[1] - 6*U[2]) - (42*f_28_2*sin2th*f[12]*f[15]*f[45]*f[47])/(5*U[1] - 6*U[2]) - (42*f_29_2*sin2th*f[12]*f[15]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_28_2*f[13]*f[15]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (42*cos2th*f_29_2*f[13]*f[15]*f[45]*f[47])/(5*U[1] - 6*U[2]) + (12*cos2th*f_20_2*f[10]*f[12]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_21_2*f[10]*f[12]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*f_20_2*sin2th*f[11]*f[12]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*f_21_2*sin2th*f[11]*f[12]*f[42]*f[44])/(U[1] - 5*U[2]) - (12*f_20_2*sin2th*f[10]*f[13]*f[42]*f[44])/(U[1] - 5*U[2]) - (12*f_21_2*sin2th*f[10]*f[13]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_20_2*f[11]*f[13]*f[42]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_21_2*f[11]*f[13]*f[42]*f[44])/(U[1] - 5*U[2]) - (12*f_20_2*sin2th*f[10]*f[12]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*f_21_2*sin2th*f[10]*f[12]*f[43]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_20_2*f[11]*f[12]*f[43]*f[44])/(U[1] - 5*U[2]) + (12*cos2th*f_21_2*f[11]*f[12]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*cos2th*f_20_2*f[10]*f[13]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*cos2th*f_21_2*f[10]*f[13]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*f_20_2*sin2th*f[11]*f[13]*f[43]*f[44])/(U[1] - 5*U[2]) - (12*f_21_2*sin2th*f[11]*f[13]*f[43]*f[44])/(U[1] - 5*U[2]) + (12*f_20_2*sin2th*f[10]*f[12]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*f_21_2*sin2th*f[10]*f[12]*f[42]*f[45])/(U[1] - 5*U[2]) - (12*cos2th*f_20_2*f[11]*f[12]*f[42]*f[45])/(U[1] - 5*U[2]) - (12*cos2th*f_21_2*f[11]*f[12]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_20_2*f[10]*f[13]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_21_2*f[10]*f[13]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*f_20_2*sin2th*f[11]*f[13]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*f_21_2*sin2th*f[11]*f[13]*f[42]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_20_2*f[10]*f[12]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_21_2*f[10]*f[12]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*f_20_2*sin2th*f[11]*f[12]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*f_21_2*sin2th*f[11]*f[12]*f[43]*f[45])/(U[1] - 5*U[2]) - (12*f_20_2*sin2th*f[10]*f[13]*f[43]*f[45])/(U[1] - 5*U[2]) - (12*f_21_2*sin2th*f[10]*f[13]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_20_2*f[11]*f[13]*f[43]*f[45])/(U[1] - 5*U[2]) + (12*cos2th*f_21_2*f[11]*f[13]*f[43]*f[45])/(U[1] - 5*U[2]) + (18*cos2th*f_22_2*f[10]*f[12]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_23_2*f[10]*f[12]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*f_22_2*sin2th*f[11]*f[12]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*f_23_2*sin2th*f[11]*f[12]*f[42]*f[44])/(2*U[1] - 5*U[2]) - (18*f_22_2*sin2th*f[10]*f[13]*f[42]*f[44])/(2*U[1] - 5*U[2]) - (18*f_23_2*sin2th*f[10]*f[13]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_22_2*f[11]*f[13]*f[42]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_23_2*f[11]*f[13]*f[42]*f[44])/(2*U[1] - 5*U[2]) - (18*f_22_2*sin2th*f[10]*f[12]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*f_23_2*sin2th*f[10]*f[12]*f[43]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_22_2*f[11]*f[12]*f[43]*f[44])/(2*U[1] - 5*U[2]) + (18*cos2th*f_23_2*f[11]*f[12]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*cos2th*f_22_2*f[10]*f[13]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*cos2th*f_23_2*f[10]*f[13]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*f_22_2*sin2th*f[11]*f[13]*f[43]*f[44])/(2*U[1] - 5*U[2]) - (18*f_23_2*sin2th*f[11]*f[13]*f[43]*f[44])/(2*U[1] - 5*U[2]) + (18*f_22_2*sin2th*f[10]*f[12]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*f_23_2*sin2th*f[10]*f[12]*f[42]*f[45])/(2*U[1] - 5*U[2]) - (18*cos2th*f_22_2*f[11]*f[12]*f[42]*f[45])/(2*U[1] - 5*U[2]) - (18*cos2th*f_23_2*f[11]*f[12]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_22_2*f[10]*f[13]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_23_2*f[10]*f[13]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*f_22_2*sin2th*f[11]*f[13]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*f_23_2*sin2th*f[11]*f[13]*f[42]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_22_2*f[10]*f[12]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_23_2*f[10]*f[12]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*f_22_2*sin2th*f[11]*f[12]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*f_23_2*sin2th*f[11]*f[12]*f[43]*f[45])/(2*U[1] - 5*U[2]) - (18*f_22_2*sin2th*f[10]*f[13]*f[43]*f[45])/(2*U[1] - 5*U[2]) - (18*f_23_2*sin2th*f[10]*f[13]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_22_2*f[11]*f[13]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (18*cos2th*f_23_2*f[11]*f[13]*f[43]*f[45])/(2*U[1] - 5*U[2]) + (24*cos2th*f_24_2*f[10]*f[12]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_25_2*f[10]*f[12]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*f_24_2*sin2th*f[11]*f[12]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*f_25_2*sin2th*f[11]*f[12]*f[42]*f[44])/(3*U[1] - 5*U[2]) - (24*f_24_2*sin2th*f[10]*f[13]*f[42]*f[44])/(3*U[1] - 5*U[2]) - (24*f_25_2*sin2th*f[10]*f[13]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_24_2*f[11]*f[13]*f[42]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_25_2*f[11]*f[13]*f[42]*f[44])/(3*U[1] - 5*U[2]) - (24*f_24_2*sin2th*f[10]*f[12]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*f_25_2*sin2th*f[10]*f[12]*f[43]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_24_2*f[11]*f[12]*f[43]*f[44])/(3*U[1] - 5*U[2]) + (24*cos2th*f_25_2*f[11]*f[12]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*cos2th*f_24_2*f[10]*f[13]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*cos2th*f_25_2*f[10]*f[13]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*f_24_2*sin2th*f[11]*f[13]*f[43]*f[44])/(3*U[1] - 5*U[2]) - (24*f_25_2*sin2th*f[11]*f[13]*f[43]*f[44])/(3*U[1] - 5*U[2]) + (24*f_24_2*sin2th*f[10]*f[12]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*f_25_2*sin2th*f[10]*f[12]*f[42]*f[45])/(3*U[1] - 5*U[2]) - (24*cos2th*f_24_2*f[11]*f[12]*f[42]*f[45])/(3*U[1] - 5*U[2]) - (24*cos2th*f_25_2*f[11]*f[12]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_24_2*f[10]*f[13]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_25_2*f[10]*f[13]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*f_24_2*sin2th*f[11]*f[13]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*f_25_2*sin2th*f[11]*f[13]*f[42]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_24_2*f[10]*f[12]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_25_2*f[10]*f[12]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*f_24_2*sin2th*f[11]*f[12]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*f_25_2*sin2th*f[11]*f[12]*f[43]*f[45])/(3*U[1] - 5*U[2]) - (24*f_24_2*sin2th*f[10]*f[13]*f[43]*f[45])/(3*U[1] - 5*U[2]) - (24*f_25_2*sin2th*f[10]*f[13]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_24_2*f[11]*f[13]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (24*cos2th*f_25_2*f[11]*f[13]*f[43]*f[45])/(3*U[1] - 5*U[2]) + (30*cos2th*f_26_2*f[10]*f[12]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_27_2*f[10]*f[12]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*f_26_2*sin2th*f[11]*f[12]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*f_27_2*sin2th*f[11]*f[12]*f[42]*f[44])/(4*U[1] - 5*U[2]) - (30*f_26_2*sin2th*f[10]*f[13]*f[42]*f[44])/(4*U[1] - 5*U[2]) - (30*f_27_2*sin2th*f[10]*f[13]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_26_2*f[11]*f[13]*f[42]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_27_2*f[11]*f[13]*f[42]*f[44])/(4*U[1] - 5*U[2]) - (30*f_26_2*sin2th*f[10]*f[12]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*f_27_2*sin2th*f[10]*f[12]*f[43]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_26_2*f[11]*f[12]*f[43]*f[44])/(4*U[1] - 5*U[2]) + (30*cos2th*f_27_2*f[11]*f[12]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*cos2th*f_26_2*f[10]*f[13]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*cos2th*f_27_2*f[10]*f[13]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*f_26_2*sin2th*f[11]*f[13]*f[43]*f[44])/(4*U[1] - 5*U[2]) - (30*f_27_2*sin2th*f[11]*f[13]*f[43]*f[44])/(4*U[1] - 5*U[2]) + (30*f_26_2*sin2th*f[10]*f[12]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*f_27_2*sin2th*f[10]*f[12]*f[42]*f[45])/(4*U[1] - 5*U[2]) - (30*cos2th*f_26_2*f[11]*f[12]*f[42]*f[45])/(4*U[1] - 5*U[2]) - (30*cos2th*f_27_2*f[11]*f[12]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_26_2*f[10]*f[13]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_27_2*f[10]*f[13]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*f_26_2*sin2th*f[11]*f[13]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*f_27_2*sin2th*f[11]*f[13]*f[42]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_26_2*f[10]*f[12]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_27_2*f[10]*f[12]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*f_26_2*sin2th*f[11]*f[12]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*f_27_2*sin2th*f[11]*f[12]*f[43]*f[45])/(4*U[1] - 5*U[2]) - (30*f_26_2*sin2th*f[10]*f[13]*f[43]*f[45])/(4*U[1] - 5*U[2]) - (30*f_27_2*sin2th*f[10]*f[13]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_26_2*f[11]*f[13]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (30*cos2th*f_27_2*f[11]*f[13]*f[43]*f[45])/(4*U[1] - 5*U[2]) + (42*cos2th*f_30_2*f[10]*f[12]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_31_2*f[10]*f[12]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*f_30_2*sin2th*f[11]*f[12]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*f_31_2*sin2th*f[11]*f[12]*f[42]*f[44])/(6*U[1] - 5*U[2]) - (42*f_30_2*sin2th*f[10]*f[13]*f[42]*f[44])/(6*U[1] - 5*U[2]) - (42*f_31_2*sin2th*f[10]*f[13]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_30_2*f[11]*f[13]*f[42]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_31_2*f[11]*f[13]*f[42]*f[44])/(6*U[1] - 5*U[2]) - (42*f_30_2*sin2th*f[10]*f[12]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*f_31_2*sin2th*f[10]*f[12]*f[43]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_30_2*f[11]*f[12]*f[43]*f[44])/(6*U[1] - 5*U[2]) + (42*cos2th*f_31_2*f[11]*f[12]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*cos2th*f_30_2*f[10]*f[13]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*cos2th*f_31_2*f[10]*f[13]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*f_30_2*sin2th*f[11]*f[13]*f[43]*f[44])/(6*U[1] - 5*U[2]) - (42*f_31_2*sin2th*f[11]*f[13]*f[43]*f[44])/(6*U[1] - 5*U[2]) + (42*f_30_2*sin2th*f[10]*f[12]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*f_31_2*sin2th*f[10]*f[12]*f[42]*f[45])/(6*U[1] - 5*U[2]) - (42*cos2th*f_30_2*f[11]*f[12]*f[42]*f[45])/(6*U[1] - 5*U[2]) - (42*cos2th*f_31_2*f[11]*f[12]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_30_2*f[10]*f[13]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_31_2*f[10]*f[13]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*f_30_2*sin2th*f[11]*f[13]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*f_31_2*sin2th*f[11]*f[13]*f[42]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_30_2*f[10]*f[12]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_31_2*f[10]*f[12]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*f_30_2*sin2th*f[11]*f[12]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*f_31_2*sin2th*f[11]*f[12]*f[43]*f[45])/(6*U[1] - 5*U[2]) - (42*f_30_2*sin2th*f[10]*f[13]*f[43]*f[45])/(6*U[1] - 5*U[2]) - (42*f_31_2*sin2th*f[10]*f[13]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_30_2*f[11]*f[13]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (42*cos2th*f_31_2*f[11]*f[13]*f[43]*f[45])/(6*U[1] - 5*U[2]) + (10*cos2th*f_20_2*f[8]*f[10]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_21_2*f[8]*f[10]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*f_20_2*sin2th*f[9]*f[10]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*f_21_2*sin2th*f[9]*f[10]*f[40]*f[42])/(U[1] - 4*U[2]) - (10*f_20_2*sin2th*f[8]*f[11]*f[40]*f[42])/(U[1] - 4*U[2]) - (10*f_21_2*sin2th*f[8]*f[11]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_20_2*f[9]*f[11]*f[40]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_21_2*f[9]*f[11]*f[40]*f[42])/(U[1] - 4*U[2]) - (10*f_20_2*sin2th*f[8]*f[10]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*f_21_2*sin2th*f[8]*f[10]*f[41]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_20_2*f[9]*f[10]*f[41]*f[42])/(U[1] - 4*U[2]) + (10*cos2th*f_21_2*f[9]*f[10]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*cos2th*f_20_2*f[8]*f[11]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*cos2th*f_21_2*f[8]*f[11]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*f_20_2*sin2th*f[9]*f[11]*f[41]*f[42])/(U[1] - 4*U[2]) - (10*f_21_2*sin2th*f[9]*f[11]*f[41]*f[42])/(U[1] - 4*U[2]) + (10*f_20_2*sin2th*f[8]*f[10]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*f_21_2*sin2th*f[8]*f[10]*f[40]*f[43])/(U[1] - 4*U[2]) - (10*cos2th*f_20_2*f[9]*f[10]*f[40]*f[43])/(U[1] - 4*U[2]) - (10*cos2th*f_21_2*f[9]*f[10]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_20_2*f[8]*f[11]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_21_2*f[8]*f[11]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*f_20_2*sin2th*f[9]*f[11]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*f_21_2*sin2th*f[9]*f[11]*f[40]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_20_2*f[8]*f[10]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_21_2*f[8]*f[10]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*f_20_2*sin2th*f[9]*f[10]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*f_21_2*sin2th*f[9]*f[10]*f[41]*f[43])/(U[1] - 4*U[2]) - (10*f_20_2*sin2th*f[8]*f[11]*f[41]*f[43])/(U[1] - 4*U[2]) - (10*f_21_2*sin2th*f[8]*f[11]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_20_2*f[9]*f[11]*f[41]*f[43])/(U[1] - 4*U[2]) + (10*cos2th*f_21_2*f[9]*f[11]*f[41]*f[43])/(U[1] - 4*U[2]) + (15*cos2th*f_22_2*f[8]*f[10]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_23_2*f[8]*f[10]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*f_22_2*sin2th*f[9]*f[10]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*f_23_2*sin2th*f[9]*f[10]*f[40]*f[42])/(2*U[1] - 4*U[2]) - (15*f_22_2*sin2th*f[8]*f[11]*f[40]*f[42])/(2*U[1] - 4*U[2]) - (15*f_23_2*sin2th*f[8]*f[11]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_22_2*f[9]*f[11]*f[40]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_23_2*f[9]*f[11]*f[40]*f[42])/(2*U[1] - 4*U[2]) - (15*f_22_2*sin2th*f[8]*f[10]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*f_23_2*sin2th*f[8]*f[10]*f[41]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_22_2*f[9]*f[10]*f[41]*f[42])/(2*U[1] - 4*U[2]) + (15*cos2th*f_23_2*f[9]*f[10]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*cos2th*f_22_2*f[8]*f[11]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*cos2th*f_23_2*f[8]*f[11]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*f_22_2*sin2th*f[9]*f[11]*f[41]*f[42])/(2*U[1] - 4*U[2]) - (15*f_23_2*sin2th*f[9]*f[11]*f[41]*f[42])/(2*U[1] - 4*U[2]) + (15*f_22_2*sin2th*f[8]*f[10]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*f_23_2*sin2th*f[8]*f[10]*f[40]*f[43])/(2*U[1] - 4*U[2]) - (15*cos2th*f_22_2*f[9]*f[10]*f[40]*f[43])/(2*U[1] - 4*U[2]) - (15*cos2th*f_23_2*f[9]*f[10]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_22_2*f[8]*f[11]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_23_2*f[8]*f[11]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*f_22_2*sin2th*f[9]*f[11]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*f_23_2*sin2th*f[9]*f[11]*f[40]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_22_2*f[8]*f[10]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_23_2*f[8]*f[10]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*f_22_2*sin2th*f[9]*f[10]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*f_23_2*sin2th*f[9]*f[10]*f[41]*f[43])/(2*U[1] - 4*U[2]) - (15*f_22_2*sin2th*f[8]*f[11]*f[41]*f[43])/(2*U[1] - 4*U[2]) - (15*f_23_2*sin2th*f[8]*f[11]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_22_2*f[9]*f[11]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (15*cos2th*f_23_2*f[9]*f[11]*f[41]*f[43])/(2*U[1] - 4*U[2]) + (20*cos2th*f_24_2*f[8]*f[10]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_25_2*f[8]*f[10]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*f_24_2*sin2th*f[9]*f[10]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*f_25_2*sin2th*f[9]*f[10]*f[40]*f[42])/(3*U[1] - 4*U[2]) - (20*f_24_2*sin2th*f[8]*f[11]*f[40]*f[42])/(3*U[1] - 4*U[2]) - (20*f_25_2*sin2th*f[8]*f[11]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_24_2*f[9]*f[11]*f[40]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_25_2*f[9]*f[11]*f[40]*f[42])/(3*U[1] - 4*U[2]) - (20*f_24_2*sin2th*f[8]*f[10]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*f_25_2*sin2th*f[8]*f[10]*f[41]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_24_2*f[9]*f[10]*f[41]*f[42])/(3*U[1] - 4*U[2]) + (20*cos2th*f_25_2*f[9]*f[10]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*cos2th*f_24_2*f[8]*f[11]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*cos2th*f_25_2*f[8]*f[11]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*f_24_2*sin2th*f[9]*f[11]*f[41]*f[42])/(3*U[1] - 4*U[2]) - (20*f_25_2*sin2th*f[9]*f[11]*f[41]*f[42])/(3*U[1] - 4*U[2]) + (20*f_24_2*sin2th*f[8]*f[10]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*f_25_2*sin2th*f[8]*f[10]*f[40]*f[43])/(3*U[1] - 4*U[2]) - (20*cos2th*f_24_2*f[9]*f[10]*f[40]*f[43])/(3*U[1] - 4*U[2]) - (20*cos2th*f_25_2*f[9]*f[10]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_24_2*f[8]*f[11]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_25_2*f[8]*f[11]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*f_24_2*sin2th*f[9]*f[11]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*f_25_2*sin2th*f[9]*f[11]*f[40]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_24_2*f[8]*f[10]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_25_2*f[8]*f[10]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*f_24_2*sin2th*f[9]*f[10]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*f_25_2*sin2th*f[9]*f[10]*f[41]*f[43])/(3*U[1] - 4*U[2]) - (20*f_24_2*sin2th*f[8]*f[11]*f[41]*f[43])/(3*U[1] - 4*U[2]) - (20*f_25_2*sin2th*f[8]*f[11]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_24_2*f[9]*f[11]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (20*cos2th*f_25_2*f[9]*f[11]*f[41]*f[43])/(3*U[1] - 4*U[2]) + (30*cos2th*f_28_2*f[8]*f[10]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_29_2*f[8]*f[10]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*f_28_2*sin2th*f[9]*f[10]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*f_29_2*sin2th*f[9]*f[10]*f[40]*f[42])/(5*U[1] - 4*U[2]) - (30*f_28_2*sin2th*f[8]*f[11]*f[40]*f[42])/(5*U[1] - 4*U[2]) - (30*f_29_2*sin2th*f[8]*f[11]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_28_2*f[9]*f[11]*f[40]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_29_2*f[9]*f[11]*f[40]*f[42])/(5*U[1] - 4*U[2]) - (30*f_28_2*sin2th*f[8]*f[10]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*f_29_2*sin2th*f[8]*f[10]*f[41]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_28_2*f[9]*f[10]*f[41]*f[42])/(5*U[1] - 4*U[2]) + (30*cos2th*f_29_2*f[9]*f[10]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*cos2th*f_28_2*f[8]*f[11]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*cos2th*f_29_2*f[8]*f[11]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*f_28_2*sin2th*f[9]*f[11]*f[41]*f[42])/(5*U[1] - 4*U[2]) - (30*f_29_2*sin2th*f[9]*f[11]*f[41]*f[42])/(5*U[1] - 4*U[2]) + (30*f_28_2*sin2th*f[8]*f[10]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*f_29_2*sin2th*f[8]*f[10]*f[40]*f[43])/(5*U[1] - 4*U[2]) - (30*cos2th*f_28_2*f[9]*f[10]*f[40]*f[43])/(5*U[1] - 4*U[2]) - (30*cos2th*f_29_2*f[9]*f[10]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_28_2*f[8]*f[11]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_29_2*f[8]*f[11]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*f_28_2*sin2th*f[9]*f[11]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*f_29_2*sin2th*f[9]*f[11]*f[40]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_28_2*f[8]*f[10]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_29_2*f[8]*f[10]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*f_28_2*sin2th*f[9]*f[10]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*f_29_2*sin2th*f[9]*f[10]*f[41]*f[43])/(5*U[1] - 4*U[2]) - (30*f_28_2*sin2th*f[8]*f[11]*f[41]*f[43])/(5*U[1] - 4*U[2]) - (30*f_29_2*sin2th*f[8]*f[11]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_28_2*f[9]*f[11]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (30*cos2th*f_29_2*f[9]*f[11]*f[41]*f[43])/(5*U[1] - 4*U[2]) + (35*cos2th*f_30_2*f[8]*f[10]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_31_2*f[8]*f[10]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*f_30_2*sin2th*f[9]*f[10]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*f_31_2*sin2th*f[9]*f[10]*f[40]*f[42])/(6*U[1] - 4*U[2]) - (35*f_30_2*sin2th*f[8]*f[11]*f[40]*f[42])/(6*U[1] - 4*U[2]) - (35*f_31_2*sin2th*f[8]*f[11]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_30_2*f[9]*f[11]*f[40]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_31_2*f[9]*f[11]*f[40]*f[42])/(6*U[1] - 4*U[2]) - (35*f_30_2*sin2th*f[8]*f[10]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*f_31_2*sin2th*f[8]*f[10]*f[41]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_30_2*f[9]*f[10]*f[41]*f[42])/(6*U[1] - 4*U[2]) + (35*cos2th*f_31_2*f[9]*f[10]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*cos2th*f_30_2*f[8]*f[11]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*cos2th*f_31_2*f[8]*f[11]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*f_30_2*sin2th*f[9]*f[11]*f[41]*f[42])/(6*U[1] - 4*U[2]) - (35*f_31_2*sin2th*f[9]*f[11]*f[41]*f[42])/(6*U[1] - 4*U[2]) + (35*f_30_2*sin2th*f[8]*f[10]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*f_31_2*sin2th*f[8]*f[10]*f[40]*f[43])/(6*U[1] - 4*U[2]) - (35*cos2th*f_30_2*f[9]*f[10]*f[40]*f[43])/(6*U[1] - 4*U[2]) - (35*cos2th*f_31_2*f[9]*f[10]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_30_2*f[8]*f[11]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_31_2*f[8]*f[11]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*f_30_2*sin2th*f[9]*f[11]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*f_31_2*sin2th*f[9]*f[11]*f[40]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_30_2*f[8]*f[10]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_31_2*f[8]*f[10]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*f_30_2*sin2th*f[9]*f[10]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*f_31_2*sin2th*f[9]*f[10]*f[41]*f[43])/(6*U[1] - 4*U[2]) - (35*f_30_2*sin2th*f[8]*f[11]*f[41]*f[43])/(6*U[1] - 4*U[2]) - (35*f_31_2*sin2th*f[8]*f[11]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_30_2*f[9]*f[11]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (35*cos2th*f_31_2*f[9]*f[11]*f[41]*f[43])/(6*U[1] - 4*U[2]) + (8*cos2th*f_20_2*f[6]*f[8]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_21_2*f[6]*f[8]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*f_20_2*sin2th*f[7]*f[8]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*f_21_2*sin2th*f[7]*f[8]*f[38]*f[40])/(U[1] - 3*U[2]) - (8*f_20_2*sin2th*f[6]*f[9]*f[38]*f[40])/(U[1] - 3*U[2]) - (8*f_21_2*sin2th*f[6]*f[9]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_20_2*f[7]*f[9]*f[38]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_21_2*f[7]*f[9]*f[38]*f[40])/(U[1] - 3*U[2]) - (8*f_20_2*sin2th*f[6]*f[8]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*f_21_2*sin2th*f[6]*f[8]*f[39]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_20_2*f[7]*f[8]*f[39]*f[40])/(U[1] - 3*U[2]) + (8*cos2th*f_21_2*f[7]*f[8]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*cos2th*f_20_2*f[6]*f[9]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*cos2th*f_21_2*f[6]*f[9]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*f_20_2*sin2th*f[7]*f[9]*f[39]*f[40])/(U[1] - 3*U[2]) - (8*f_21_2*sin2th*f[7]*f[9]*f[39]*f[40])/(U[1] - 3*U[2]) + (8*f_20_2*sin2th*f[6]*f[8]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*f_21_2*sin2th*f[6]*f[8]*f[38]*f[41])/(U[1] - 3*U[2]) - (8*cos2th*f_20_2*f[7]*f[8]*f[38]*f[41])/(U[1] - 3*U[2]) - (8*cos2th*f_21_2*f[7]*f[8]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_20_2*f[6]*f[9]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_21_2*f[6]*f[9]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*f_20_2*sin2th*f[7]*f[9]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*f_21_2*sin2th*f[7]*f[9]*f[38]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_20_2*f[6]*f[8]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_21_2*f[6]*f[8]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*f_20_2*sin2th*f[7]*f[8]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*f_21_2*sin2th*f[7]*f[8]*f[39]*f[41])/(U[1] - 3*U[2]) - (8*f_20_2*sin2th*f[6]*f[9]*f[39]*f[41])/(U[1] - 3*U[2]) - (8*f_21_2*sin2th*f[6]*f[9]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_20_2*f[7]*f[9]*f[39]*f[41])/(U[1] - 3*U[2]) + (8*cos2th*f_21_2*f[7]*f[9]*f[39]*f[41])/(U[1] - 3*U[2]) + (12*cos2th*f_22_2*f[6]*f[8]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_23_2*f[6]*f[8]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*f_22_2*sin2th*f[7]*f[8]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*f_23_2*sin2th*f[7]*f[8]*f[38]*f[40])/(2*U[1] - 3*U[2]) - (12*f_22_2*sin2th*f[6]*f[9]*f[38]*f[40])/(2*U[1] - 3*U[2]) - (12*f_23_2*sin2th*f[6]*f[9]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_22_2*f[7]*f[9]*f[38]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_23_2*f[7]*f[9]*f[38]*f[40])/(2*U[1] - 3*U[2]) - (12*f_22_2*sin2th*f[6]*f[8]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*f_23_2*sin2th*f[6]*f[8]*f[39]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_22_2*f[7]*f[8]*f[39]*f[40])/(2*U[1] - 3*U[2]) + (12*cos2th*f_23_2*f[7]*f[8]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*cos2th*f_22_2*f[6]*f[9]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*cos2th*f_23_2*f[6]*f[9]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*f_22_2*sin2th*f[7]*f[9]*f[39]*f[40])/(2*U[1] - 3*U[2]) - (12*f_23_2*sin2th*f[7]*f[9]*f[39]*f[40])/(2*U[1] - 3*U[2]) + (12*f_22_2*sin2th*f[6]*f[8]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*f_23_2*sin2th*f[6]*f[8]*f[38]*f[41])/(2*U[1] - 3*U[2]) - (12*cos2th*f_22_2*f[7]*f[8]*f[38]*f[41])/(2*U[1] - 3*U[2]) - (12*cos2th*f_23_2*f[7]*f[8]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_22_2*f[6]*f[9]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_23_2*f[6]*f[9]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*f_22_2*sin2th*f[7]*f[9]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*f_23_2*sin2th*f[7]*f[9]*f[38]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_22_2*f[6]*f[8]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_23_2*f[6]*f[8]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*f_22_2*sin2th*f[7]*f[8]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*f_23_2*sin2th*f[7]*f[8]*f[39]*f[41])/(2*U[1] - 3*U[2]) - (12*f_22_2*sin2th*f[6]*f[9]*f[39]*f[41])/(2*U[1] - 3*U[2]) - (12*f_23_2*sin2th*f[6]*f[9]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_22_2*f[7]*f[9]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (12*cos2th*f_23_2*f[7]*f[9]*f[39]*f[41])/(2*U[1] - 3*U[2]) + (20*cos2th*f_26_2*f[6]*f[8]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_27_2*f[6]*f[8]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*f_26_2*sin2th*f[7]*f[8]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*f_27_2*sin2th*f[7]*f[8]*f[38]*f[40])/(4*U[1] - 3*U[2]) - (20*f_26_2*sin2th*f[6]*f[9]*f[38]*f[40])/(4*U[1] - 3*U[2]) - (20*f_27_2*sin2th*f[6]*f[9]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_26_2*f[7]*f[9]*f[38]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_27_2*f[7]*f[9]*f[38]*f[40])/(4*U[1] - 3*U[2]) - (20*f_26_2*sin2th*f[6]*f[8]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*f_27_2*sin2th*f[6]*f[8]*f[39]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_26_2*f[7]*f[8]*f[39]*f[40])/(4*U[1] - 3*U[2]) + (20*cos2th*f_27_2*f[7]*f[8]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*cos2th*f_26_2*f[6]*f[9]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*cos2th*f_27_2*f[6]*f[9]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*f_26_2*sin2th*f[7]*f[9]*f[39]*f[40])/(4*U[1] - 3*U[2]) - (20*f_27_2*sin2th*f[7]*f[9]*f[39]*f[40])/(4*U[1] - 3*U[2]) + (20*f_26_2*sin2th*f[6]*f[8]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*f_27_2*sin2th*f[6]*f[8]*f[38]*f[41])/(4*U[1] - 3*U[2]) - (20*cos2th*f_26_2*f[7]*f[8]*f[38]*f[41])/(4*U[1] - 3*U[2]) - (20*cos2th*f_27_2*f[7]*f[8]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_26_2*f[6]*f[9]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_27_2*f[6]*f[9]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*f_26_2*sin2th*f[7]*f[9]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*f_27_2*sin2th*f[7]*f[9]*f[38]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_26_2*f[6]*f[8]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_27_2*f[6]*f[8]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*f_26_2*sin2th*f[7]*f[8]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*f_27_2*sin2th*f[7]*f[8]*f[39]*f[41])/(4*U[1] - 3*U[2]) - (20*f_26_2*sin2th*f[6]*f[9]*f[39]*f[41])/(4*U[1] - 3*U[2]) - (20*f_27_2*sin2th*f[6]*f[9]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_26_2*f[7]*f[9]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (20*cos2th*f_27_2*f[7]*f[9]*f[39]*f[41])/(4*U[1] - 3*U[2]) + (24*cos2th*f_28_2*f[6]*f[8]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_29_2*f[6]*f[8]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*f_28_2*sin2th*f[7]*f[8]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*f_29_2*sin2th*f[7]*f[8]*f[38]*f[40])/(5*U[1] - 3*U[2]) - (24*f_28_2*sin2th*f[6]*f[9]*f[38]*f[40])/(5*U[1] - 3*U[2]) - (24*f_29_2*sin2th*f[6]*f[9]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_28_2*f[7]*f[9]*f[38]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_29_2*f[7]*f[9]*f[38]*f[40])/(5*U[1] - 3*U[2]) - (24*f_28_2*sin2th*f[6]*f[8]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*f_29_2*sin2th*f[6]*f[8]*f[39]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_28_2*f[7]*f[8]*f[39]*f[40])/(5*U[1] - 3*U[2]) + (24*cos2th*f_29_2*f[7]*f[8]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*cos2th*f_28_2*f[6]*f[9]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*cos2th*f_29_2*f[6]*f[9]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*f_28_2*sin2th*f[7]*f[9]*f[39]*f[40])/(5*U[1] - 3*U[2]) - (24*f_29_2*sin2th*f[7]*f[9]*f[39]*f[40])/(5*U[1] - 3*U[2]) + (24*f_28_2*sin2th*f[6]*f[8]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*f_29_2*sin2th*f[6]*f[8]*f[38]*f[41])/(5*U[1] - 3*U[2]) - (24*cos2th*f_28_2*f[7]*f[8]*f[38]*f[41])/(5*U[1] - 3*U[2]) - (24*cos2th*f_29_2*f[7]*f[8]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_28_2*f[6]*f[9]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_29_2*f[6]*f[9]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*f_28_2*sin2th*f[7]*f[9]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*f_29_2*sin2th*f[7]*f[9]*f[38]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_28_2*f[6]*f[8]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_29_2*f[6]*f[8]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*f_28_2*sin2th*f[7]*f[8]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*f_29_2*sin2th*f[7]*f[8]*f[39]*f[41])/(5*U[1] - 3*U[2]) - (24*f_28_2*sin2th*f[6]*f[9]*f[39]*f[41])/(5*U[1] - 3*U[2]) - (24*f_29_2*sin2th*f[6]*f[9]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_28_2*f[7]*f[9]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (24*cos2th*f_29_2*f[7]*f[9]*f[39]*f[41])/(5*U[1] - 3*U[2]) + (28*cos2th*f_30_2*f[6]*f[8]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_31_2*f[6]*f[8]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*f_30_2*sin2th*f[7]*f[8]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*f_31_2*sin2th*f[7]*f[8]*f[38]*f[40])/(6*U[1] - 3*U[2]) - (28*f_30_2*sin2th*f[6]*f[9]*f[38]*f[40])/(6*U[1] - 3*U[2]) - (28*f_31_2*sin2th*f[6]*f[9]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_30_2*f[7]*f[9]*f[38]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_31_2*f[7]*f[9]*f[38]*f[40])/(6*U[1] - 3*U[2]) - (28*f_30_2*sin2th*f[6]*f[8]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*f_31_2*sin2th*f[6]*f[8]*f[39]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_30_2*f[7]*f[8]*f[39]*f[40])/(6*U[1] - 3*U[2]) + (28*cos2th*f_31_2*f[7]*f[8]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*cos2th*f_30_2*f[6]*f[9]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*cos2th*f_31_2*f[6]*f[9]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*f_30_2*sin2th*f[7]*f[9]*f[39]*f[40])/(6*U[1] - 3*U[2]) - (28*f_31_2*sin2th*f[7]*f[9]*f[39]*f[40])/(6*U[1] - 3*U[2]) + (28*f_30_2*sin2th*f[6]*f[8]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*f_31_2*sin2th*f[6]*f[8]*f[38]*f[41])/(6*U[1] - 3*U[2]) - (28*cos2th*f_30_2*f[7]*f[8]*f[38]*f[41])/(6*U[1] - 3*U[2]) - (28*cos2th*f_31_2*f[7]*f[8]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_30_2*f[6]*f[9]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_31_2*f[6]*f[9]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*f_30_2*sin2th*f[7]*f[9]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*f_31_2*sin2th*f[7]*f[9]*f[38]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_30_2*f[6]*f[8]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_31_2*f[6]*f[8]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*f_30_2*sin2th*f[7]*f[8]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*f_31_2*sin2th*f[7]*f[8]*f[39]*f[41])/(6*U[1] - 3*U[2]) - (28*f_30_2*sin2th*f[6]*f[9]*f[39]*f[41])/(6*U[1] - 3*U[2]) - (28*f_31_2*sin2th*f[6]*f[9]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_30_2*f[7]*f[9]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (28*cos2th*f_31_2*f[7]*f[9]*f[39]*f[41])/(6*U[1] - 3*U[2]) + (6*cos2th*f_20_2*f[4]*f[6]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_21_2*f[4]*f[6]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*f_20_2*sin2th*f[5]*f[6]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*f_21_2*sin2th*f[5]*f[6]*f[36]*f[38])/(U[1] - 2*U[2]) - (6*f_20_2*sin2th*f[4]*f[7]*f[36]*f[38])/(U[1] - 2*U[2]) - (6*f_21_2*sin2th*f[4]*f[7]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_20_2*f[5]*f[7]*f[36]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_21_2*f[5]*f[7]*f[36]*f[38])/(U[1] - 2*U[2]) - (6*f_20_2*sin2th*f[4]*f[6]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*f_21_2*sin2th*f[4]*f[6]*f[37]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_20_2*f[5]*f[6]*f[37]*f[38])/(U[1] - 2*U[2]) + (6*cos2th*f_21_2*f[5]*f[6]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*cos2th*f_20_2*f[4]*f[7]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*cos2th*f_21_2*f[4]*f[7]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*f_20_2*sin2th*f[5]*f[7]*f[37]*f[38])/(U[1] - 2*U[2]) - (6*f_21_2*sin2th*f[5]*f[7]*f[37]*f[38])/(U[1] - 2*U[2]) + (6*f_20_2*sin2th*f[4]*f[6]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*f_21_2*sin2th*f[4]*f[6]*f[36]*f[39])/(U[1] - 2*U[2]) - (6*cos2th*f_20_2*f[5]*f[6]*f[36]*f[39])/(U[1] - 2*U[2]) - (6*cos2th*f_21_2*f[5]*f[6]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_20_2*f[4]*f[7]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_21_2*f[4]*f[7]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*f_20_2*sin2th*f[5]*f[7]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*f_21_2*sin2th*f[5]*f[7]*f[36]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_20_2*f[4]*f[6]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_21_2*f[4]*f[6]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*f_20_2*sin2th*f[5]*f[6]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*f_21_2*sin2th*f[5]*f[6]*f[37]*f[39])/(U[1] - 2*U[2]) - (6*f_20_2*sin2th*f[4]*f[7]*f[37]*f[39])/(U[1] - 2*U[2]) - (6*f_21_2*sin2th*f[4]*f[7]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_20_2*f[5]*f[7]*f[37]*f[39])/(U[1] - 2*U[2]) + (6*cos2th*f_21_2*f[5]*f[7]*f[37]*f[39])/(U[1] - 2*U[2]) + (12*cos2th*f_24_2*f[4]*f[6]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_25_2*f[4]*f[6]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*f_24_2*sin2th*f[5]*f[6]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*f_25_2*sin2th*f[5]*f[6]*f[36]*f[38])/(3*U[1] - 2*U[2]) - (12*f_24_2*sin2th*f[4]*f[7]*f[36]*f[38])/(3*U[1] - 2*U[2]) - (12*f_25_2*sin2th*f[4]*f[7]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_24_2*f[5]*f[7]*f[36]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_25_2*f[5]*f[7]*f[36]*f[38])/(3*U[1] - 2*U[2]) - (12*f_24_2*sin2th*f[4]*f[6]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*f_25_2*sin2th*f[4]*f[6]*f[37]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_24_2*f[5]*f[6]*f[37]*f[38])/(3*U[1] - 2*U[2]) + (12*cos2th*f_25_2*f[5]*f[6]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*cos2th*f_24_2*f[4]*f[7]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*cos2th*f_25_2*f[4]*f[7]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*f_24_2*sin2th*f[5]*f[7]*f[37]*f[38])/(3*U[1] - 2*U[2]) - (12*f_25_2*sin2th*f[5]*f[7]*f[37]*f[38])/(3*U[1] - 2*U[2]) + (12*f_24_2*sin2th*f[4]*f[6]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*f_25_2*sin2th*f[4]*f[6]*f[36]*f[39])/(3*U[1] - 2*U[2]) - (12*cos2th*f_24_2*f[5]*f[6]*f[36]*f[39])/(3*U[1] - 2*U[2]) - (12*cos2th*f_25_2*f[5]*f[6]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_24_2*f[4]*f[7]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_25_2*f[4]*f[7]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*f_24_2*sin2th*f[5]*f[7]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*f_25_2*sin2th*f[5]*f[7]*f[36]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_24_2*f[4]*f[6]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_25_2*f[4]*f[6]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*f_24_2*sin2th*f[5]*f[6]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*f_25_2*sin2th*f[5]*f[6]*f[37]*f[39])/(3*U[1] - 2*U[2]) - (12*f_24_2*sin2th*f[4]*f[7]*f[37]*f[39])/(3*U[1] - 2*U[2]) - (12*f_25_2*sin2th*f[4]*f[7]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_24_2*f[5]*f[7]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (12*cos2th*f_25_2*f[5]*f[7]*f[37]*f[39])/(3*U[1] - 2*U[2]) + (15*cos2th*f_26_2*f[4]*f[6]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_27_2*f[4]*f[6]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*f_26_2*sin2th*f[5]*f[6]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*f_27_2*sin2th*f[5]*f[6]*f[36]*f[38])/(4*U[1] - 2*U[2]) - (15*f_26_2*sin2th*f[4]*f[7]*f[36]*f[38])/(4*U[1] - 2*U[2]) - (15*f_27_2*sin2th*f[4]*f[7]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_26_2*f[5]*f[7]*f[36]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_27_2*f[5]*f[7]*f[36]*f[38])/(4*U[1] - 2*U[2]) - (15*f_26_2*sin2th*f[4]*f[6]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*f_27_2*sin2th*f[4]*f[6]*f[37]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_26_2*f[5]*f[6]*f[37]*f[38])/(4*U[1] - 2*U[2]) + (15*cos2th*f_27_2*f[5]*f[6]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*cos2th*f_26_2*f[4]*f[7]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*cos2th*f_27_2*f[4]*f[7]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*f_26_2*sin2th*f[5]*f[7]*f[37]*f[38])/(4*U[1] - 2*U[2]) - (15*f_27_2*sin2th*f[5]*f[7]*f[37]*f[38])/(4*U[1] - 2*U[2]) + (15*f_26_2*sin2th*f[4]*f[6]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*f_27_2*sin2th*f[4]*f[6]*f[36]*f[39])/(4*U[1] - 2*U[2]) - (15*cos2th*f_26_2*f[5]*f[6]*f[36]*f[39])/(4*U[1] - 2*U[2]) - (15*cos2th*f_27_2*f[5]*f[6]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_26_2*f[4]*f[7]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_27_2*f[4]*f[7]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*f_26_2*sin2th*f[5]*f[7]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*f_27_2*sin2th*f[5]*f[7]*f[36]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_26_2*f[4]*f[6]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_27_2*f[4]*f[6]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*f_26_2*sin2th*f[5]*f[6]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*f_27_2*sin2th*f[5]*f[6]*f[37]*f[39])/(4*U[1] - 2*U[2]) - (15*f_26_2*sin2th*f[4]*f[7]*f[37]*f[39])/(4*U[1] - 2*U[2]) - (15*f_27_2*sin2th*f[4]*f[7]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_26_2*f[5]*f[7]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (15*cos2th*f_27_2*f[5]*f[7]*f[37]*f[39])/(4*U[1] - 2*U[2]) + (18*cos2th*f_28_2*f[4]*f[6]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_29_2*f[4]*f[6]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*f_28_2*sin2th*f[5]*f[6]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*f_29_2*sin2th*f[5]*f[6]*f[36]*f[38])/(5*U[1] - 2*U[2]) - (18*f_28_2*sin2th*f[4]*f[7]*f[36]*f[38])/(5*U[1] - 2*U[2]) - (18*f_29_2*sin2th*f[4]*f[7]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_28_2*f[5]*f[7]*f[36]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_29_2*f[5]*f[7]*f[36]*f[38])/(5*U[1] - 2*U[2]) - (18*f_28_2*sin2th*f[4]*f[6]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*f_29_2*sin2th*f[4]*f[6]*f[37]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_28_2*f[5]*f[6]*f[37]*f[38])/(5*U[1] - 2*U[2]) + (18*cos2th*f_29_2*f[5]*f[6]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*cos2th*f_28_2*f[4]*f[7]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*cos2th*f_29_2*f[4]*f[7]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*f_28_2*sin2th*f[5]*f[7]*f[37]*f[38])/(5*U[1] - 2*U[2]) - (18*f_29_2*sin2th*f[5]*f[7]*f[37]*f[38])/(5*U[1] - 2*U[2]) + (18*f_28_2*sin2th*f[4]*f[6]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*f_29_2*sin2th*f[4]*f[6]*f[36]*f[39])/(5*U[1] - 2*U[2]) - (18*cos2th*f_28_2*f[5]*f[6]*f[36]*f[39])/(5*U[1] - 2*U[2]) - (18*cos2th*f_29_2*f[5]*f[6]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_28_2*f[4]*f[7]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_29_2*f[4]*f[7]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*f_28_2*sin2th*f[5]*f[7]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*f_29_2*sin2th*f[5]*f[7]*f[36]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_28_2*f[4]*f[6]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_29_2*f[4]*f[6]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*f_28_2*sin2th*f[5]*f[6]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*f_29_2*sin2th*f[5]*f[6]*f[37]*f[39])/(5*U[1] - 2*U[2]) - (18*f_28_2*sin2th*f[4]*f[7]*f[37]*f[39])/(5*U[1] - 2*U[2]) - (18*f_29_2*sin2th*f[4]*f[7]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_28_2*f[5]*f[7]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (18*cos2th*f_29_2*f[5]*f[7]*f[37]*f[39])/(5*U[1] - 2*U[2]) + (21*cos2th*f_30_2*f[4]*f[6]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_31_2*f[4]*f[6]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*f_30_2*sin2th*f[5]*f[6]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*f_31_2*sin2th*f[5]*f[6]*f[36]*f[38])/(6*U[1] - 2*U[2]) - (21*f_30_2*sin2th*f[4]*f[7]*f[36]*f[38])/(6*U[1] - 2*U[2]) - (21*f_31_2*sin2th*f[4]*f[7]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_30_2*f[5]*f[7]*f[36]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_31_2*f[5]*f[7]*f[36]*f[38])/(6*U[1] - 2*U[2]) - (21*f_30_2*sin2th*f[4]*f[6]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*f_31_2*sin2th*f[4]*f[6]*f[37]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_30_2*f[5]*f[6]*f[37]*f[38])/(6*U[1] - 2*U[2]) + (21*cos2th*f_31_2*f[5]*f[6]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*cos2th*f_30_2*f[4]*f[7]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*cos2th*f_31_2*f[4]*f[7]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*f_30_2*sin2th*f[5]*f[7]*f[37]*f[38])/(6*U[1] - 2*U[2]) - (21*f_31_2*sin2th*f[5]*f[7]*f[37]*f[38])/(6*U[1] - 2*U[2]) + (21*f_30_2*sin2th*f[4]*f[6]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*f_31_2*sin2th*f[4]*f[6]*f[36]*f[39])/(6*U[1] - 2*U[2]) - (21*cos2th*f_30_2*f[5]*f[6]*f[36]*f[39])/(6*U[1] - 2*U[2]) - (21*cos2th*f_31_2*f[5]*f[6]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_30_2*f[4]*f[7]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_31_2*f[4]*f[7]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*f_30_2*sin2th*f[5]*f[7]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*f_31_2*sin2th*f[5]*f[7]*f[36]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_30_2*f[4]*f[6]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_31_2*f[4]*f[6]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*f_30_2*sin2th*f[5]*f[6]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*f_31_2*sin2th*f[5]*f[6]*f[37]*f[39])/(6*U[1] - 2*U[2]) - (21*f_30_2*sin2th*f[4]*f[7]*f[37]*f[39])/(6*U[1] - 2*U[2]) - (21*f_31_2*sin2th*f[4]*f[7]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_30_2*f[5]*f[7]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (21*cos2th*f_31_2*f[5]*f[7]*f[37]*f[39])/(6*U[1] - 2*U[2]) + (6*cos2th*f_22_2*f[2]*f[4]*f[34]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_23_2*f[2]*f[4]*f[34]*f[36])/(2*U[1] - U[2]) + (6*f_22_2*sin2th*f[3]*f[4]*f[34]*f[36])/(2*U[1] - U[2]) + (6*f_23_2*sin2th*f[3]*f[4]*f[34]*f[36])/(2*U[1] - U[2]) - (6*f_22_2*sin2th*f[2]*f[5]*f[34]*f[36])/(2*U[1] - U[2]) - (6*f_23_2*sin2th*f[2]*f[5]*f[34]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_22_2*f[3]*f[5]*f[34]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_23_2*f[3]*f[5]*f[34]*f[36])/(2*U[1] - U[2]) - (6*f_22_2*sin2th*f[2]*f[4]*f[35]*f[36])/(2*U[1] - U[2]) - (6*f_23_2*sin2th*f[2]*f[4]*f[35]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_22_2*f[3]*f[4]*f[35]*f[36])/(2*U[1] - U[2]) + (6*cos2th*f_23_2*f[3]*f[4]*f[35]*f[36])/(2*U[1] - U[2]) - (6*cos2th*f_22_2*f[2]*f[5]*f[35]*f[36])/(2*U[1] - U[2]) - (6*cos2th*f_23_2*f[2]*f[5]*f[35]*f[36])/(2*U[1] - U[2]) - (6*f_22_2*sin2th*f[3]*f[5]*f[35]*f[36])/(2*U[1] - U[2]) - (6*f_23_2*sin2th*f[3]*f[5]*f[35]*f[36])/(2*U[1] - U[2]) + (6*f_22_2*sin2th*f[2]*f[4]*f[34]*f[37])/(2*U[1] - U[2]) + (6*f_23_2*sin2th*f[2]*f[4]*f[34]*f[37])/(2*U[1] - U[2]) - (6*cos2th*f_22_2*f[3]*f[4]*f[34]*f[37])/(2*U[1] - U[2]) - (6*cos2th*f_23_2*f[3]*f[4]*f[34]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_22_2*f[2]*f[5]*f[34]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_23_2*f[2]*f[5]*f[34]*f[37])/(2*U[1] - U[2]) + (6*f_22_2*sin2th*f[3]*f[5]*f[34]*f[37])/(2*U[1] - U[2]) + (6*f_23_2*sin2th*f[3]*f[5]*f[34]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_22_2*f[2]*f[4]*f[35]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_23_2*f[2]*f[4]*f[35]*f[37])/(2*U[1] - U[2]) + (6*f_22_2*sin2th*f[3]*f[4]*f[35]*f[37])/(2*U[1] - U[2]) + (6*f_23_2*sin2th*f[3]*f[4]*f[35]*f[37])/(2*U[1] - U[2]) - (6*f_22_2*sin2th*f[2]*f[5]*f[35]*f[37])/(2*U[1] - U[2]) - (6*f_23_2*sin2th*f[2]*f[5]*f[35]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_22_2*f[3]*f[5]*f[35]*f[37])/(2*U[1] - U[2]) + (6*cos2th*f_23_2*f[3]*f[5]*f[35]*f[37])/(2*U[1] - U[2]) + (8*cos2th*f_24_2*f[2]*f[4]*f[34]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_25_2*f[2]*f[4]*f[34]*f[36])/(3*U[1] - U[2]) + (8*f_24_2*sin2th*f[3]*f[4]*f[34]*f[36])/(3*U[1] - U[2]) + (8*f_25_2*sin2th*f[3]*f[4]*f[34]*f[36])/(3*U[1] - U[2]) - (8*f_24_2*sin2th*f[2]*f[5]*f[34]*f[36])/(3*U[1] - U[2]) - (8*f_25_2*sin2th*f[2]*f[5]*f[34]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_24_2*f[3]*f[5]*f[34]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_25_2*f[3]*f[5]*f[34]*f[36])/(3*U[1] - U[2]) - (8*f_24_2*sin2th*f[2]*f[4]*f[35]*f[36])/(3*U[1] - U[2]) - (8*f_25_2*sin2th*f[2]*f[4]*f[35]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_24_2*f[3]*f[4]*f[35]*f[36])/(3*U[1] - U[2]) + (8*cos2th*f_25_2*f[3]*f[4]*f[35]*f[36])/(3*U[1] - U[2]) - (8*cos2th*f_24_2*f[2]*f[5]*f[35]*f[36])/(3*U[1] - U[2]) - (8*cos2th*f_25_2*f[2]*f[5]*f[35]*f[36])/(3*U[1] - U[2]) - (8*f_24_2*sin2th*f[3]*f[5]*f[35]*f[36])/(3*U[1] - U[2]) - (8*f_25_2*sin2th*f[3]*f[5]*f[35]*f[36])/(3*U[1] - U[2]) + (8*f_24_2*sin2th*f[2]*f[4]*f[34]*f[37])/(3*U[1] - U[2]) + (8*f_25_2*sin2th*f[2]*f[4]*f[34]*f[37])/(3*U[1] - U[2]) - (8*cos2th*f_24_2*f[3]*f[4]*f[34]*f[37])/(3*U[1] - U[2]) - (8*cos2th*f_25_2*f[3]*f[4]*f[34]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_24_2*f[2]*f[5]*f[34]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_25_2*f[2]*f[5]*f[34]*f[37])/(3*U[1] - U[2]) + (8*f_24_2*sin2th*f[3]*f[5]*f[34]*f[37])/(3*U[1] - U[2]) + (8*f_25_2*sin2th*f[3]*f[5]*f[34]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_24_2*f[2]*f[4]*f[35]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_25_2*f[2]*f[4]*f[35]*f[37])/(3*U[1] - U[2]) + (8*f_24_2*sin2th*f[3]*f[4]*f[35]*f[37])/(3*U[1] - U[2]) + (8*f_25_2*sin2th*f[3]*f[4]*f[35]*f[37])/(3*U[1] - U[2]) - (8*f_24_2*sin2th*f[2]*f[5]*f[35]*f[37])/(3*U[1] - U[2]) - (8*f_25_2*sin2th*f[2]*f[5]*f[35]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_24_2*f[3]*f[5]*f[35]*f[37])/(3*U[1] - U[2]) + (8*cos2th*f_25_2*f[3]*f[5]*f[35]*f[37])/(3*U[1] - U[2]) + (10*cos2th*f_26_2*f[2]*f[4]*f[34]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_27_2*f[2]*f[4]*f[34]*f[36])/(4*U[1] - U[2]) + (10*f_26_2*sin2th*f[3]*f[4]*f[34]*f[36])/(4*U[1] - U[2]) + (10*f_27_2*sin2th*f[3]*f[4]*f[34]*f[36])/(4*U[1] - U[2]) - (10*f_26_2*sin2th*f[2]*f[5]*f[34]*f[36])/(4*U[1] - U[2]) - (10*f_27_2*sin2th*f[2]*f[5]*f[34]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_26_2*f[3]*f[5]*f[34]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_27_2*f[3]*f[5]*f[34]*f[36])/(4*U[1] - U[2]) - (10*f_26_2*sin2th*f[2]*f[4]*f[35]*f[36])/(4*U[1] - U[2]) - (10*f_27_2*sin2th*f[2]*f[4]*f[35]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_26_2*f[3]*f[4]*f[35]*f[36])/(4*U[1] - U[2]) + (10*cos2th*f_27_2*f[3]*f[4]*f[35]*f[36])/(4*U[1] - U[2]) - (10*cos2th*f_26_2*f[2]*f[5]*f[35]*f[36])/(4*U[1] - U[2]) - (10*cos2th*f_27_2*f[2]*f[5]*f[35]*f[36])/(4*U[1] - U[2]) - (10*f_26_2*sin2th*f[3]*f[5]*f[35]*f[36])/(4*U[1] - U[2]) - (10*f_27_2*sin2th*f[3]*f[5]*f[35]*f[36])/(4*U[1] - U[2]) + (10*f_26_2*sin2th*f[2]*f[4]*f[34]*f[37])/(4*U[1] - U[2]) + (10*f_27_2*sin2th*f[2]*f[4]*f[34]*f[37])/(4*U[1] - U[2]) - (10*cos2th*f_26_2*f[3]*f[4]*f[34]*f[37])/(4*U[1] - U[2]) - (10*cos2th*f_27_2*f[3]*f[4]*f[34]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_26_2*f[2]*f[5]*f[34]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_27_2*f[2]*f[5]*f[34]*f[37])/(4*U[1] - U[2]) + (10*f_26_2*sin2th*f[3]*f[5]*f[34]*f[37])/(4*U[1] - U[2]) + (10*f_27_2*sin2th*f[3]*f[5]*f[34]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_26_2*f[2]*f[4]*f[35]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_27_2*f[2]*f[4]*f[35]*f[37])/(4*U[1] - U[2]) + (10*f_26_2*sin2th*f[3]*f[4]*f[35]*f[37])/(4*U[1] - U[2]) + (10*f_27_2*sin2th*f[3]*f[4]*f[35]*f[37])/(4*U[1] - U[2]) - (10*f_26_2*sin2th*f[2]*f[5]*f[35]*f[37])/(4*U[1] - U[2]) - (10*f_27_2*sin2th*f[2]*f[5]*f[35]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_26_2*f[3]*f[5]*f[35]*f[37])/(4*U[1] - U[2]) + (10*cos2th*f_27_2*f[3]*f[5]*f[35]*f[37])/(4*U[1] - U[2]) + (12*cos2th*f_28_2*f[2]*f[4]*f[34]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_29_2*f[2]*f[4]*f[34]*f[36])/(5*U[1] - U[2]) + (12*f_28_2*sin2th*f[3]*f[4]*f[34]*f[36])/(5*U[1] - U[2]) + (12*f_29_2*sin2th*f[3]*f[4]*f[34]*f[36])/(5*U[1] - U[2]) - (12*f_28_2*sin2th*f[2]*f[5]*f[34]*f[36])/(5*U[1] - U[2]) - (12*f_29_2*sin2th*f[2]*f[5]*f[34]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_28_2*f[3]*f[5]*f[34]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_29_2*f[3]*f[5]*f[34]*f[36])/(5*U[1] - U[2]) - (12*f_28_2*sin2th*f[2]*f[4]*f[35]*f[36])/(5*U[1] - U[2]) - (12*f_29_2*sin2th*f[2]*f[4]*f[35]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_28_2*f[3]*f[4]*f[35]*f[36])/(5*U[1] - U[2]) + (12*cos2th*f_29_2*f[3]*f[4]*f[35]*f[36])/(5*U[1] - U[2]) - (12*cos2th*f_28_2*f[2]*f[5]*f[35]*f[36])/(5*U[1] - U[2]) - (12*cos2th*f_29_2*f[2]*f[5]*f[35]*f[36])/(5*U[1] - U[2]) - (12*f_28_2*sin2th*f[3]*f[5]*f[35]*f[36])/(5*U[1] - U[2]) - (12*f_29_2*sin2th*f[3]*f[5]*f[35]*f[36])/(5*U[1] - U[2]) + (12*f_28_2*sin2th*f[2]*f[4]*f[34]*f[37])/(5*U[1] - U[2]) + (12*f_29_2*sin2th*f[2]*f[4]*f[34]*f[37])/(5*U[1] - U[2]) - (12*cos2th*f_28_2*f[3]*f[4]*f[34]*f[37])/(5*U[1] - U[2]) - (12*cos2th*f_29_2*f[3]*f[4]*f[34]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_28_2*f[2]*f[5]*f[34]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_29_2*f[2]*f[5]*f[34]*f[37])/(5*U[1] - U[2]) + (12*f_28_2*sin2th*f[3]*f[5]*f[34]*f[37])/(5*U[1] - U[2]) + (12*f_29_2*sin2th*f[3]*f[5]*f[34]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_28_2*f[2]*f[4]*f[35]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_29_2*f[2]*f[4]*f[35]*f[37])/(5*U[1] - U[2]) + (12*f_28_2*sin2th*f[3]*f[4]*f[35]*f[37])/(5*U[1] - U[2]) + (12*f_29_2*sin2th*f[3]*f[4]*f[35]*f[37])/(5*U[1] - U[2]) - (12*f_28_2*sin2th*f[2]*f[5]*f[35]*f[37])/(5*U[1] - U[2]) - (12*f_29_2*sin2th*f[2]*f[5]*f[35]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_28_2*f[3]*f[5]*f[35]*f[37])/(5*U[1] - U[2]) + (12*cos2th*f_29_2*f[3]*f[5]*f[35]*f[37])/(5*U[1] - U[2]) + (14*cos2th*f_30_2*f[2]*f[4]*f[34]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_31_2*f[2]*f[4]*f[34]*f[36])/(6*U[1] - U[2]) + (14*f_30_2*sin2th*f[3]*f[4]*f[34]*f[36])/(6*U[1] - U[2]) + (14*f_31_2*sin2th*f[3]*f[4]*f[34]*f[36])/(6*U[1] - U[2]) - (14*f_30_2*sin2th*f[2]*f[5]*f[34]*f[36])/(6*U[1] - U[2]) - (14*f_31_2*sin2th*f[2]*f[5]*f[34]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_30_2*f[3]*f[5]*f[34]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_31_2*f[3]*f[5]*f[34]*f[36])/(6*U[1] - U[2]) - (14*f_30_2*sin2th*f[2]*f[4]*f[35]*f[36])/(6*U[1] - U[2]) - (14*f_31_2*sin2th*f[2]*f[4]*f[35]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_30_2*f[3]*f[4]*f[35]*f[36])/(6*U[1] - U[2]) + (14*cos2th*f_31_2*f[3]*f[4]*f[35]*f[36])/(6*U[1] - U[2]) - (14*cos2th*f_30_2*f[2]*f[5]*f[35]*f[36])/(6*U[1] - U[2]) - (14*cos2th*f_31_2*f[2]*f[5]*f[35]*f[36])/(6*U[1] - U[2]) - (14*f_30_2*sin2th*f[3]*f[5]*f[35]*f[36])/(6*U[1] - U[2]) - (14*f_31_2*sin2th*f[3]*f[5]*f[35]*f[36])/(6*U[1] - U[2]) + (14*f_30_2*sin2th*f[2]*f[4]*f[34]*f[37])/(6*U[1] - U[2]) + (14*f_31_2*sin2th*f[2]*f[4]*f[34]*f[37])/(6*U[1] - U[2]) - (14*cos2th*f_30_2*f[3]*f[4]*f[34]*f[37])/(6*U[1] - U[2]) - (14*cos2th*f_31_2*f[3]*f[4]*f[34]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_30_2*f[2]*f[5]*f[34]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_31_2*f[2]*f[5]*f[34]*f[37])/(6*U[1] - U[2]) + (14*f_30_2*sin2th*f[3]*f[5]*f[34]*f[37])/(6*U[1] - U[2]) + (14*f_31_2*sin2th*f[3]*f[5]*f[34]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_30_2*f[2]*f[4]*f[35]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_31_2*f[2]*f[4]*f[35]*f[37])/(6*U[1] - U[2]) + (14*f_30_2*sin2th*f[3]*f[4]*f[35]*f[37])/(6*U[1] - U[2]) + (14*f_31_2*sin2th*f[3]*f[4]*f[35]*f[37])/(6*U[1] - U[2]) - (14*f_30_2*sin2th*f[2]*f[5]*f[35]*f[37])/(6*U[1] - U[2]) - (14*f_31_2*sin2th*f[2]*f[5]*f[35]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_30_2*f[3]*f[5]*f[35]*f[37])/(6*U[1] - U[2]) + (14*cos2th*f_31_2*f[3]*f[5]*f[35]*f[37])/(6*U[1] - U[2]) - (2*cos2th*f_18_2*f[2]*f[4]*f[34]*f[36])/U[2] - (2*cos2th*f_19_2*f[2]*f[4]*f[34]*f[36])/U[2] - (2*f_18_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[2] - (2*f_19_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[2] + (2*f_18_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[2] + (2*f_19_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[2] - (2*cos2th*f_18_2*f[3]*f[5]*f[34]*f[36])/U[2] - (2*cos2th*f_19_2*f[3]*f[5]*f[34]*f[36])/U[2] + (2*f_18_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[2] + (2*f_19_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[2] - (2*cos2th*f_18_2*f[3]*f[4]*f[35]*f[36])/U[2] - (2*cos2th*f_19_2*f[3]*f[4]*f[35]*f[36])/U[2] + (2*cos2th*f_18_2*f[2]*f[5]*f[35]*f[36])/U[2] + (2*cos2th*f_19_2*f[2]*f[5]*f[35]*f[36])/U[2] + (2*f_18_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[2] + (2*f_19_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[2] - (2*f_18_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[2] - (2*f_19_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[2] + (2*cos2th*f_18_2*f[3]*f[4]*f[34]*f[37])/U[2] + (2*cos2th*f_19_2*f[3]*f[4]*f[34]*f[37])/U[2] - (2*cos2th*f_18_2*f[2]*f[5]*f[34]*f[37])/U[2] - (2*cos2th*f_19_2*f[2]*f[5]*f[34]*f[37])/U[2] - (2*f_18_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[2] - (2*f_19_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[2] - (2*cos2th*f_18_2*f[2]*f[4]*f[35]*f[37])/U[2] - (2*cos2th*f_19_2*f[2]*f[4]*f[35]*f[37])/U[2] - (2*f_18_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[2] - (2*f_19_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[2] + (2*f_18_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[2] + (2*f_19_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[2] - (2*cos2th*f_18_2*f[3]*f[5]*f[35]*f[37])/U[2] - (2*cos2th*f_19_2*f[3]*f[5]*f[35]*f[37])/U[2] - (3*cos2th*f_18_2*f[4]*f[6]*f[36]*f[38])/(2.*U[2]) - (3*cos2th*f_19_2*f[4]*f[6]*f[36]*f[38])/(2.*U[2]) - (3*f_18_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[2]) - (3*f_19_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[2]) + (3*f_18_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[2]) + (3*f_19_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[2]) - (3*cos2th*f_18_2*f[5]*f[7]*f[36]*f[38])/(2.*U[2]) - (3*cos2th*f_19_2*f[5]*f[7]*f[36]*f[38])/(2.*U[2]) + (3*f_18_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[2]) + (3*f_19_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[2]) - (3*cos2th*f_18_2*f[5]*f[6]*f[37]*f[38])/(2.*U[2]) - (3*cos2th*f_19_2*f[5]*f[6]*f[37]*f[38])/(2.*U[2]) + (3*cos2th*f_18_2*f[4]*f[7]*f[37]*f[38])/(2.*U[2]) + (3*cos2th*f_19_2*f[4]*f[7]*f[37]*f[38])/(2.*U[2]) + (3*f_18_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[2]) + (3*f_19_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[2]) - (3*f_18_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[2]) - (3*f_19_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_18_2*f[5]*f[6]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_19_2*f[5]*f[6]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_18_2*f[4]*f[7]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_19_2*f[4]*f[7]*f[36]*f[39])/(2.*U[2]) - (3*f_18_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[2]) - (3*f_19_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_18_2*f[4]*f[6]*f[37]*f[39])/(2.*U[2]) - (3*cos2th*f_19_2*f[4]*f[6]*f[37]*f[39])/(2.*U[2]) - (3*f_18_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[2]) - (3*f_19_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[2]) + (3*f_18_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[2]) + (3*f_19_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[2]) - (3*cos2th*f_18_2*f[5]*f[7]*f[37]*f[39])/(2.*U[2]) - (3*cos2th*f_19_2*f[5]*f[7]*f[37]*f[39])/(2.*U[2]) - (4*cos2th*f_18_2*f[6]*f[8]*f[38]*f[40])/(3.*U[2]) - (4*cos2th*f_19_2*f[6]*f[8]*f[38]*f[40])/(3.*U[2]) - (4*f_18_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[2]) - (4*f_19_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[2]) + (4*f_18_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[2]) + (4*f_19_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[2]) - (4*cos2th*f_18_2*f[7]*f[9]*f[38]*f[40])/(3.*U[2]) - (4*cos2th*f_19_2*f[7]*f[9]*f[38]*f[40])/(3.*U[2]) + (4*f_18_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[2]) + (4*f_19_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[2]) - (4*cos2th*f_18_2*f[7]*f[8]*f[39]*f[40])/(3.*U[2]) - (4*cos2th*f_19_2*f[7]*f[8]*f[39]*f[40])/(3.*U[2]) + (4*cos2th*f_18_2*f[6]*f[9]*f[39]*f[40])/(3.*U[2]) + (4*cos2th*f_19_2*f[6]*f[9]*f[39]*f[40])/(3.*U[2]) + (4*f_18_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[2]) + (4*f_19_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[2]) - (4*f_18_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[2]) - (4*f_19_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_18_2*f[7]*f[8]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_19_2*f[7]*f[8]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_18_2*f[6]*f[9]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_19_2*f[6]*f[9]*f[38]*f[41])/(3.*U[2]) - (4*f_18_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[2]) - (4*f_19_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_18_2*f[6]*f[8]*f[39]*f[41])/(3.*U[2]) - (4*cos2th*f_19_2*f[6]*f[8]*f[39]*f[41])/(3.*U[2]) - (4*f_18_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[2]) - (4*f_19_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[2]) + (4*f_18_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[2]) + (4*f_19_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[2]) - (4*cos2th*f_18_2*f[7]*f[9]*f[39]*f[41])/(3.*U[2]) - (4*cos2th*f_19_2*f[7]*f[9]*f[39]*f[41])/(3.*U[2]) - (5*cos2th*f_18_2*f[8]*f[10]*f[40]*f[42])/(4.*U[2]) - (5*cos2th*f_19_2*f[8]*f[10]*f[40]*f[42])/(4.*U[2]) - (5*f_18_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[2]) - (5*f_19_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[2]) + (5*f_18_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[2]) + (5*f_19_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[2]) - (5*cos2th*f_18_2*f[9]*f[11]*f[40]*f[42])/(4.*U[2]) - (5*cos2th*f_19_2*f[9]*f[11]*f[40]*f[42])/(4.*U[2]) + (5*f_18_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[2]) + (5*f_19_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[2]) - (5*cos2th*f_18_2*f[9]*f[10]*f[41]*f[42])/(4.*U[2]) - (5*cos2th*f_19_2*f[9]*f[10]*f[41]*f[42])/(4.*U[2]) + (5*cos2th*f_18_2*f[8]*f[11]*f[41]*f[42])/(4.*U[2]) + (5*cos2th*f_19_2*f[8]*f[11]*f[41]*f[42])/(4.*U[2]) + (5*f_18_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[2]) + (5*f_19_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[2]) - (5*f_18_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[2]) - (5*f_19_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_18_2*f[9]*f[10]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_19_2*f[9]*f[10]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_18_2*f[8]*f[11]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_19_2*f[8]*f[11]*f[40]*f[43])/(4.*U[2]) - (5*f_18_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[2]) - (5*f_19_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_18_2*f[8]*f[10]*f[41]*f[43])/(4.*U[2]) - (5*cos2th*f_19_2*f[8]*f[10]*f[41]*f[43])/(4.*U[2]) - (5*f_18_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[2]) - (5*f_19_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[2]) + (5*f_18_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[2]) + (5*f_19_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[2]) - (5*cos2th*f_18_2*f[9]*f[11]*f[41]*f[43])/(4.*U[2]) - (5*cos2th*f_19_2*f[9]*f[11]*f[41]*f[43])/(4.*U[2]) - (6*cos2th*f_18_2*f[10]*f[12]*f[42]*f[44])/(5.*U[2]) - (6*cos2th*f_19_2*f[10]*f[12]*f[42]*f[44])/(5.*U[2]) - (6*f_18_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[2]) - (6*f_19_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[2]) + (6*f_18_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[2]) + (6*f_19_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[2]) - (6*cos2th*f_18_2*f[11]*f[13]*f[42]*f[44])/(5.*U[2]) - (6*cos2th*f_19_2*f[11]*f[13]*f[42]*f[44])/(5.*U[2]) + (6*f_18_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[2]) + (6*f_19_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[2]) - (6*cos2th*f_18_2*f[11]*f[12]*f[43]*f[44])/(5.*U[2]) - (6*cos2th*f_19_2*f[11]*f[12]*f[43]*f[44])/(5.*U[2]) + (6*cos2th*f_18_2*f[10]*f[13]*f[43]*f[44])/(5.*U[2]) + (6*cos2th*f_19_2*f[10]*f[13]*f[43]*f[44])/(5.*U[2]) + (6*f_18_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[2]) + (6*f_19_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[2]) - (6*f_18_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[2]) - (6*f_19_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_18_2*f[11]*f[12]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_19_2*f[11]*f[12]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_18_2*f[10]*f[13]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_19_2*f[10]*f[13]*f[42]*f[45])/(5.*U[2]) - (6*f_18_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[2]) - (6*f_19_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_18_2*f[10]*f[12]*f[43]*f[45])/(5.*U[2]) - (6*cos2th*f_19_2*f[10]*f[12]*f[43]*f[45])/(5.*U[2]) - (6*f_18_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[2]) - (6*f_19_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[2]) + (6*f_18_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[2]) + (6*f_19_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[2]) - (6*cos2th*f_18_2*f[11]*f[13]*f[43]*f[45])/(5.*U[2]) - (6*cos2th*f_19_2*f[11]*f[13]*f[43]*f[45])/(5.*U[2]) - (7*cos2th*f_18_2*f[12]*f[14]*f[44]*f[46])/(6.*U[2]) - (7*cos2th*f_19_2*f[12]*f[14]*f[44]*f[46])/(6.*U[2]) - (7*f_18_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[2]) - (7*f_19_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[2]) + (7*f_18_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[2]) + (7*f_19_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[2]) - (7*cos2th*f_18_2*f[13]*f[15]*f[44]*f[46])/(6.*U[2]) - (7*cos2th*f_19_2*f[13]*f[15]*f[44]*f[46])/(6.*U[2]) + (7*f_18_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[2]) + (7*f_19_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[2]) - (7*cos2th*f_18_2*f[13]*f[14]*f[45]*f[46])/(6.*U[2]) - (7*cos2th*f_19_2*f[13]*f[14]*f[45]*f[46])/(6.*U[2]) + (7*cos2th*f_18_2*f[12]*f[15]*f[45]*f[46])/(6.*U[2]) + (7*cos2th*f_19_2*f[12]*f[15]*f[45]*f[46])/(6.*U[2]) + (7*f_18_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[2]) + (7*f_19_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[2]) - (7*f_18_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[2]) - (7*f_19_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_18_2*f[13]*f[14]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_19_2*f[13]*f[14]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_18_2*f[12]*f[15]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_19_2*f[12]*f[15]*f[44]*f[47])/(6.*U[2]) - (7*f_18_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[2]) - (7*f_19_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_18_2*f[12]*f[14]*f[45]*f[47])/(6.*U[2]) - (7*cos2th*f_19_2*f[12]*f[14]*f[45]*f[47])/(6.*U[2]) - (7*f_18_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[2]) - (7*f_19_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[2]) + (7*f_18_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[2]) + (7*f_19_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[2]) - (7*cos2th*f_18_2*f[13]*f[15]*f[45]*f[47])/(6.*U[2]) - (7*cos2th*f_19_2*f[13]*f[15]*f[45]*f[47])/(6.*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[1]*J[2]*((2*cos2th*f_32_2*f[18]*f[20]*f[50]*f[52])/U[1] + (2*cos2th*f_33_2*f[18]*f[20]*f[50]*f[52])/U[1] + (2*f_32_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[1] + (2*f_33_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[1] - (2*f_32_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[1] - (2*f_33_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[1] + (2*cos2th*f_32_2*f[19]*f[21]*f[50]*f[52])/U[1] + (2*cos2th*f_33_2*f[19]*f[21]*f[50]*f[52])/U[1] - (2*f_32_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[1] - (2*f_33_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[1] + (2*cos2th*f_32_2*f[19]*f[20]*f[51]*f[52])/U[1] + (2*cos2th*f_33_2*f[19]*f[20]*f[51]*f[52])/U[1] - (2*cos2th*f_32_2*f[18]*f[21]*f[51]*f[52])/U[1] - (2*cos2th*f_33_2*f[18]*f[21]*f[51]*f[52])/U[1] - (2*f_32_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[1] - (2*f_33_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[1] + (2*f_32_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[1] + (2*f_33_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[1] - (2*cos2th*f_32_2*f[19]*f[20]*f[50]*f[53])/U[1] - (2*cos2th*f_33_2*f[19]*f[20]*f[50]*f[53])/U[1] + (2*cos2th*f_32_2*f[18]*f[21]*f[50]*f[53])/U[1] + (2*cos2th*f_33_2*f[18]*f[21]*f[50]*f[53])/U[1] + (2*f_32_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[1] + (2*f_33_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[1] + (2*cos2th*f_32_2*f[18]*f[20]*f[51]*f[53])/U[1] + (2*cos2th*f_33_2*f[18]*f[20]*f[51]*f[53])/U[1] + (2*f_32_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[1] + (2*f_33_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[1] - (2*f_32_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[1] - (2*f_33_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[1] + (2*cos2th*f_32_2*f[19]*f[21]*f[51]*f[53])/U[1] + (2*cos2th*f_33_2*f[19]*f[21]*f[51]*f[53])/U[1] + (3*cos2th*f_32_2*f[20]*f[22]*f[52]*f[54])/(2.*U[1]) + (3*cos2th*f_33_2*f[20]*f[22]*f[52]*f[54])/(2.*U[1]) + (3*f_32_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[1]) + (3*f_33_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[1]) - (3*f_32_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[1]) - (3*f_33_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[1]) + (3*cos2th*f_32_2*f[21]*f[23]*f[52]*f[54])/(2.*U[1]) + (3*cos2th*f_33_2*f[21]*f[23]*f[52]*f[54])/(2.*U[1]) - (3*f_32_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[1]) - (3*f_33_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[1]) + (3*cos2th*f_32_2*f[21]*f[22]*f[53]*f[54])/(2.*U[1]) + (3*cos2th*f_33_2*f[21]*f[22]*f[53]*f[54])/(2.*U[1]) - (3*cos2th*f_32_2*f[20]*f[23]*f[53]*f[54])/(2.*U[1]) - (3*cos2th*f_33_2*f[20]*f[23]*f[53]*f[54])/(2.*U[1]) - (3*f_32_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[1]) - (3*f_33_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[1]) + (3*f_32_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[1]) + (3*f_33_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_32_2*f[21]*f[22]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_33_2*f[21]*f[22]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_32_2*f[20]*f[23]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_33_2*f[20]*f[23]*f[52]*f[55])/(2.*U[1]) + (3*f_32_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[1]) + (3*f_33_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_32_2*f[20]*f[22]*f[53]*f[55])/(2.*U[1]) + (3*cos2th*f_33_2*f[20]*f[22]*f[53]*f[55])/(2.*U[1]) + (3*f_32_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[1]) + (3*f_33_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[1]) - (3*f_32_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[1]) - (3*f_33_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[1]) + (3*cos2th*f_32_2*f[21]*f[23]*f[53]*f[55])/(2.*U[1]) + (3*cos2th*f_33_2*f[21]*f[23]*f[53]*f[55])/(2.*U[1]) + (4*cos2th*f_32_2*f[22]*f[24]*f[54]*f[56])/(3.*U[1]) + (4*cos2th*f_33_2*f[22]*f[24]*f[54]*f[56])/(3.*U[1]) + (4*f_32_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[1]) + (4*f_33_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[1]) - (4*f_32_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[1]) - (4*f_33_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[1]) + (4*cos2th*f_32_2*f[23]*f[25]*f[54]*f[56])/(3.*U[1]) + (4*cos2th*f_33_2*f[23]*f[25]*f[54]*f[56])/(3.*U[1]) - (4*f_32_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[1]) - (4*f_33_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[1]) + (4*cos2th*f_32_2*f[23]*f[24]*f[55]*f[56])/(3.*U[1]) + (4*cos2th*f_33_2*f[23]*f[24]*f[55]*f[56])/(3.*U[1]) - (4*cos2th*f_32_2*f[22]*f[25]*f[55]*f[56])/(3.*U[1]) - (4*cos2th*f_33_2*f[22]*f[25]*f[55]*f[56])/(3.*U[1]) - (4*f_32_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[1]) - (4*f_33_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[1]) + (4*f_32_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[1]) + (4*f_33_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_32_2*f[23]*f[24]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_33_2*f[23]*f[24]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_32_2*f[22]*f[25]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_33_2*f[22]*f[25]*f[54]*f[57])/(3.*U[1]) + (4*f_32_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[1]) + (4*f_33_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_32_2*f[22]*f[24]*f[55]*f[57])/(3.*U[1]) + (4*cos2th*f_33_2*f[22]*f[24]*f[55]*f[57])/(3.*U[1]) + (4*f_32_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[1]) + (4*f_33_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[1]) - (4*f_32_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[1]) - (4*f_33_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[1]) + (4*cos2th*f_32_2*f[23]*f[25]*f[55]*f[57])/(3.*U[1]) + (4*cos2th*f_33_2*f[23]*f[25]*f[55]*f[57])/(3.*U[1]) + (5*cos2th*f_32_2*f[24]*f[26]*f[56]*f[58])/(4.*U[1]) + (5*cos2th*f_33_2*f[24]*f[26]*f[56]*f[58])/(4.*U[1]) + (5*f_32_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[1]) + (5*f_33_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[1]) - (5*f_32_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[1]) - (5*f_33_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[1]) + (5*cos2th*f_32_2*f[25]*f[27]*f[56]*f[58])/(4.*U[1]) + (5*cos2th*f_33_2*f[25]*f[27]*f[56]*f[58])/(4.*U[1]) - (5*f_32_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[1]) - (5*f_33_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[1]) + (5*cos2th*f_32_2*f[25]*f[26]*f[57]*f[58])/(4.*U[1]) + (5*cos2th*f_33_2*f[25]*f[26]*f[57]*f[58])/(4.*U[1]) - (5*cos2th*f_32_2*f[24]*f[27]*f[57]*f[58])/(4.*U[1]) - (5*cos2th*f_33_2*f[24]*f[27]*f[57]*f[58])/(4.*U[1]) - (5*f_32_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[1]) - (5*f_33_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[1]) + (5*f_32_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[1]) + (5*f_33_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_32_2*f[25]*f[26]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_33_2*f[25]*f[26]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_32_2*f[24]*f[27]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_33_2*f[24]*f[27]*f[56]*f[59])/(4.*U[1]) + (5*f_32_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[1]) + (5*f_33_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_32_2*f[24]*f[26]*f[57]*f[59])/(4.*U[1]) + (5*cos2th*f_33_2*f[24]*f[26]*f[57]*f[59])/(4.*U[1]) + (5*f_32_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[1]) + (5*f_33_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[1]) - (5*f_32_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[1]) - (5*f_33_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[1]) + (5*cos2th*f_32_2*f[25]*f[27]*f[57]*f[59])/(4.*U[1]) + (5*cos2th*f_33_2*f[25]*f[27]*f[57]*f[59])/(4.*U[1]) + (6*cos2th*f_32_2*f[26]*f[28]*f[58]*f[60])/(5.*U[1]) + (6*cos2th*f_33_2*f[26]*f[28]*f[58]*f[60])/(5.*U[1]) + (6*f_32_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[1]) + (6*f_33_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[1]) - (6*f_32_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[1]) - (6*f_33_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[1]) + (6*cos2th*f_32_2*f[27]*f[29]*f[58]*f[60])/(5.*U[1]) + (6*cos2th*f_33_2*f[27]*f[29]*f[58]*f[60])/(5.*U[1]) - (6*f_32_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[1]) - (6*f_33_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[1]) + (6*cos2th*f_32_2*f[27]*f[28]*f[59]*f[60])/(5.*U[1]) + (6*cos2th*f_33_2*f[27]*f[28]*f[59]*f[60])/(5.*U[1]) - (6*cos2th*f_32_2*f[26]*f[29]*f[59]*f[60])/(5.*U[1]) - (6*cos2th*f_33_2*f[26]*f[29]*f[59]*f[60])/(5.*U[1]) - (6*f_32_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[1]) - (6*f_33_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[1]) + (6*f_32_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[1]) + (6*f_33_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_32_2*f[27]*f[28]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_33_2*f[27]*f[28]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_32_2*f[26]*f[29]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_33_2*f[26]*f[29]*f[58]*f[61])/(5.*U[1]) + (6*f_32_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[1]) + (6*f_33_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_32_2*f[26]*f[28]*f[59]*f[61])/(5.*U[1]) + (6*cos2th*f_33_2*f[26]*f[28]*f[59]*f[61])/(5.*U[1]) + (6*f_32_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[1]) + (6*f_33_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[1]) - (6*f_32_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[1]) - (6*f_33_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[1]) + (6*cos2th*f_32_2*f[27]*f[29]*f[59]*f[61])/(5.*U[1]) + (6*cos2th*f_33_2*f[27]*f[29]*f[59]*f[61])/(5.*U[1]) + (7*cos2th*f_32_2*f[28]*f[30]*f[60]*f[62])/(6.*U[1]) + (7*cos2th*f_33_2*f[28]*f[30]*f[60]*f[62])/(6.*U[1]) + (7*f_32_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[1]) + (7*f_33_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[1]) - (7*f_32_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[1]) - (7*f_33_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[1]) + (7*cos2th*f_32_2*f[29]*f[31]*f[60]*f[62])/(6.*U[1]) + (7*cos2th*f_33_2*f[29]*f[31]*f[60]*f[62])/(6.*U[1]) - (7*f_32_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[1]) - (7*f_33_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[1]) + (7*cos2th*f_32_2*f[29]*f[30]*f[61]*f[62])/(6.*U[1]) + (7*cos2th*f_33_2*f[29]*f[30]*f[61]*f[62])/(6.*U[1]) - (7*cos2th*f_32_2*f[28]*f[31]*f[61]*f[62])/(6.*U[1]) - (7*cos2th*f_33_2*f[28]*f[31]*f[61]*f[62])/(6.*U[1]) - (7*f_32_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[1]) - (7*f_33_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[1]) + (7*f_32_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[1]) + (7*f_33_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_32_2*f[29]*f[30]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_33_2*f[29]*f[30]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_32_2*f[28]*f[31]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_33_2*f[28]*f[31]*f[60]*f[63])/(6.*U[1]) + (7*f_32_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[1]) + (7*f_33_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_32_2*f[28]*f[30]*f[61]*f[63])/(6.*U[1]) + (7*cos2th*f_33_2*f[28]*f[30]*f[61]*f[63])/(6.*U[1]) + (7*f_32_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[1]) + (7*f_33_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[1]) - (7*f_32_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[1]) - (7*f_33_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[1]) + (7*cos2th*f_32_2*f[29]*f[31]*f[61]*f[63])/(6.*U[1]) + (7*cos2th*f_33_2*f[29]*f[31]*f[61]*f[63])/(6.*U[1]) + (14*cos2th*f_44_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_45_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*f_44_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*f_45_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 6*U[2]) - (14*f_44_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 6*U[2]) - (14*f_45_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_44_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_45_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 6*U[2]) - (14*f_44_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*f_45_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_44_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_45_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*cos2th*f_44_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*cos2th*f_45_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*f_44_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*f_45_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 6*U[2]) + (14*f_44_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*f_45_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 6*U[2]) - (14*cos2th*f_44_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 6*U[2]) - (14*cos2th*f_45_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_44_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_45_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*f_44_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*f_45_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_44_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_45_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*f_44_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*f_45_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 6*U[2]) - (14*f_44_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 6*U[2]) - (14*f_45_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_44_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_45_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 6*U[2]) + (21*cos2th*f_44_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_45_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*f_44_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*f_45_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 6*U[2]) - (21*f_44_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 6*U[2]) - (21*f_45_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_44_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_45_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 6*U[2]) - (21*f_44_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*f_45_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_44_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_45_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*cos2th*f_44_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*cos2th*f_45_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*f_44_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*f_45_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 6*U[2]) + (21*f_44_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*f_45_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 6*U[2]) - (21*cos2th*f_44_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 6*U[2]) - (21*cos2th*f_45_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_44_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_45_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*f_44_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*f_45_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_44_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_45_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*f_44_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*f_45_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 6*U[2]) - (21*f_44_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 6*U[2]) - (21*f_45_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_44_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_45_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (28*cos2th*f_44_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_45_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*f_44_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*f_45_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 6*U[2]) - (28*f_44_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 6*U[2]) - (28*f_45_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_44_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_45_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 6*U[2]) - (28*f_44_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*f_45_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_44_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_45_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*cos2th*f_44_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*cos2th*f_45_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*f_44_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*f_45_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 6*U[2]) + (28*f_44_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*f_45_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 6*U[2]) - (28*cos2th*f_44_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 6*U[2]) - (28*cos2th*f_45_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_44_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_45_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*f_44_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*f_45_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_44_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_45_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*f_44_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*f_45_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 6*U[2]) - (28*f_44_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 6*U[2]) - (28*f_45_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_44_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_45_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (35*cos2th*f_44_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_45_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*f_44_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*f_45_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 6*U[2]) - (35*f_44_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 6*U[2]) - (35*f_45_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_44_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_45_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 6*U[2]) - (35*f_44_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*f_45_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_44_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_45_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*cos2th*f_44_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*cos2th*f_45_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*f_44_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*f_45_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 6*U[2]) + (35*f_44_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*f_45_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 6*U[2]) - (35*cos2th*f_44_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 6*U[2]) - (35*cos2th*f_45_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_44_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_45_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*f_44_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*f_45_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_44_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_45_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*f_44_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*f_45_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 6*U[2]) - (35*f_44_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 6*U[2]) - (35*f_45_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_44_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_45_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (42*cos2th*f_44_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_45_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*f_44_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*f_45_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 6*U[2]) - (42*f_44_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 6*U[2]) - (42*f_45_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_44_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_45_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 6*U[2]) - (42*f_44_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*f_45_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_44_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_45_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*cos2th*f_44_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*cos2th*f_45_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*f_44_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*f_45_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 6*U[2]) + (42*f_44_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*f_45_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 6*U[2]) - (42*cos2th*f_44_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 6*U[2]) - (42*cos2th*f_45_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_44_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_45_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*f_44_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*f_45_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_44_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_45_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*f_44_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*f_45_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 6*U[2]) - (42*f_44_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 6*U[2]) - (42*f_45_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_44_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_45_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (12*cos2th*f_42_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_43_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*f_42_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*f_43_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 5*U[2]) - (12*f_42_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 5*U[2]) - (12*f_43_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_42_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_43_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 5*U[2]) - (12*f_42_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*f_43_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_42_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_43_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*cos2th*f_42_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*cos2th*f_43_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*f_42_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*f_43_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 5*U[2]) + (12*f_42_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*f_43_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 5*U[2]) - (12*cos2th*f_42_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 5*U[2]) - (12*cos2th*f_43_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_42_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_43_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*f_42_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*f_43_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_42_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_43_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*f_42_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*f_43_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 5*U[2]) - (12*f_42_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 5*U[2]) - (12*f_43_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_42_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_43_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 5*U[2]) + (18*cos2th*f_42_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_43_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*f_42_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*f_43_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 5*U[2]) - (18*f_42_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 5*U[2]) - (18*f_43_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_42_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_43_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 5*U[2]) - (18*f_42_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*f_43_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_42_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_43_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*cos2th*f_42_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*cos2th*f_43_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*f_42_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*f_43_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 5*U[2]) + (18*f_42_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*f_43_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 5*U[2]) - (18*cos2th*f_42_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 5*U[2]) - (18*cos2th*f_43_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_42_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_43_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*f_42_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*f_43_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_42_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_43_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*f_42_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*f_43_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 5*U[2]) - (18*f_42_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 5*U[2]) - (18*f_43_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_42_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_43_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (24*cos2th*f_42_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_43_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*f_42_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*f_43_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 5*U[2]) - (24*f_42_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 5*U[2]) - (24*f_43_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_42_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_43_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 5*U[2]) - (24*f_42_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*f_43_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_42_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_43_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*cos2th*f_42_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*cos2th*f_43_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*f_42_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*f_43_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 5*U[2]) + (24*f_42_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*f_43_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 5*U[2]) - (24*cos2th*f_42_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 5*U[2]) - (24*cos2th*f_43_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_42_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_43_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*f_42_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*f_43_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_42_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_43_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*f_42_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*f_43_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 5*U[2]) - (24*f_42_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 5*U[2]) - (24*f_43_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_42_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_43_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (30*cos2th*f_42_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_43_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*f_42_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*f_43_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 5*U[2]) - (30*f_42_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 5*U[2]) - (30*f_43_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_42_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_43_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 5*U[2]) - (30*f_42_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*f_43_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_42_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_43_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*cos2th*f_42_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*cos2th*f_43_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*f_42_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*f_43_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 5*U[2]) + (30*f_42_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*f_43_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 5*U[2]) - (30*cos2th*f_42_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 5*U[2]) - (30*cos2th*f_43_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_42_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_43_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*f_42_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*f_43_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_42_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_43_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*f_42_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*f_43_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 5*U[2]) - (30*f_42_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 5*U[2]) - (30*f_43_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_42_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_43_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (42*cos2th*f_42_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_43_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*f_42_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*f_43_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 5*U[2]) - (42*f_42_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 5*U[2]) - (42*f_43_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_42_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_43_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 5*U[2]) - (42*f_42_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*f_43_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_42_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_43_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*cos2th*f_42_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*cos2th*f_43_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*f_42_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*f_43_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 5*U[2]) + (42*f_42_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*f_43_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 5*U[2]) - (42*cos2th*f_42_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 5*U[2]) - (42*cos2th*f_43_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_42_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_43_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*f_42_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*f_43_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_42_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_43_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*f_42_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*f_43_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 5*U[2]) - (42*f_42_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 5*U[2]) - (42*f_43_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_42_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_43_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (10*cos2th*f_40_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_41_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*f_40_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*f_41_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 4*U[2]) - (10*f_40_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 4*U[2]) - (10*f_41_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_40_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_41_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 4*U[2]) - (10*f_40_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*f_41_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_40_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_41_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*cos2th*f_40_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*cos2th*f_41_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*f_40_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*f_41_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 4*U[2]) + (10*f_40_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*f_41_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 4*U[2]) - (10*cos2th*f_40_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 4*U[2]) - (10*cos2th*f_41_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_40_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_41_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*f_40_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*f_41_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_40_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_41_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*f_40_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*f_41_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 4*U[2]) - (10*f_40_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 4*U[2]) - (10*f_41_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_40_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_41_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 4*U[2]) + (15*cos2th*f_40_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_41_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*f_40_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*f_41_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 4*U[2]) - (15*f_40_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 4*U[2]) - (15*f_41_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_40_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_41_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 4*U[2]) - (15*f_40_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*f_41_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_40_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_41_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*cos2th*f_40_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*cos2th*f_41_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*f_40_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*f_41_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 4*U[2]) + (15*f_40_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*f_41_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 4*U[2]) - (15*cos2th*f_40_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 4*U[2]) - (15*cos2th*f_41_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_40_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_41_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*f_40_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*f_41_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_40_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_41_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*f_40_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*f_41_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 4*U[2]) - (15*f_40_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 4*U[2]) - (15*f_41_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_40_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_41_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (20*cos2th*f_40_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_41_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*f_40_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*f_41_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 4*U[2]) - (20*f_40_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 4*U[2]) - (20*f_41_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_40_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_41_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 4*U[2]) - (20*f_40_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*f_41_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_40_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_41_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*cos2th*f_40_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*cos2th*f_41_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*f_40_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*f_41_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 4*U[2]) + (20*f_40_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*f_41_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 4*U[2]) - (20*cos2th*f_40_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 4*U[2]) - (20*cos2th*f_41_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_40_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_41_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*f_40_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*f_41_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_40_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_41_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*f_40_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*f_41_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 4*U[2]) - (20*f_40_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 4*U[2]) - (20*f_41_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_40_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_41_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (30*cos2th*f_40_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_41_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*f_40_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*f_41_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 4*U[2]) - (30*f_40_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 4*U[2]) - (30*f_41_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_40_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_41_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 4*U[2]) - (30*f_40_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*f_41_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_40_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_41_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*cos2th*f_40_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*cos2th*f_41_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*f_40_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*f_41_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 4*U[2]) + (30*f_40_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*f_41_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 4*U[2]) - (30*cos2th*f_40_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 4*U[2]) - (30*cos2th*f_41_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_40_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_41_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*f_40_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*f_41_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_40_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_41_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*f_40_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*f_41_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 4*U[2]) - (30*f_40_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 4*U[2]) - (30*f_41_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_40_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_41_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (35*cos2th*f_40_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_41_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*f_40_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*f_41_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 4*U[2]) - (35*f_40_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 4*U[2]) - (35*f_41_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_40_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_41_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 4*U[2]) - (35*f_40_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*f_41_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_40_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_41_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*cos2th*f_40_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*cos2th*f_41_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*f_40_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*f_41_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 4*U[2]) + (35*f_40_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*f_41_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 4*U[2]) - (35*cos2th*f_40_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 4*U[2]) - (35*cos2th*f_41_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_40_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_41_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*f_40_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*f_41_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_40_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_41_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*f_40_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*f_41_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 4*U[2]) - (35*f_40_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 4*U[2]) - (35*f_41_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_40_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_41_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (8*cos2th*f_38_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_39_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*f_38_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*f_39_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 3*U[2]) - (8*f_38_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 3*U[2]) - (8*f_39_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_38_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_39_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 3*U[2]) - (8*f_38_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*f_39_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_38_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_39_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*cos2th*f_38_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*cos2th*f_39_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*f_38_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*f_39_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 3*U[2]) + (8*f_38_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*f_39_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 3*U[2]) - (8*cos2th*f_38_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 3*U[2]) - (8*cos2th*f_39_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_38_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_39_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*f_38_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*f_39_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_38_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_39_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*f_38_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*f_39_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 3*U[2]) - (8*f_38_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 3*U[2]) - (8*f_39_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_38_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_39_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 3*U[2]) + (12*cos2th*f_38_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_39_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*f_38_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*f_39_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 3*U[2]) - (12*f_38_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 3*U[2]) - (12*f_39_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_38_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_39_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 3*U[2]) - (12*f_38_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*f_39_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_38_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_39_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*cos2th*f_38_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*cos2th*f_39_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*f_38_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*f_39_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 3*U[2]) + (12*f_38_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*f_39_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 3*U[2]) - (12*cos2th*f_38_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 3*U[2]) - (12*cos2th*f_39_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_38_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_39_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*f_38_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*f_39_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_38_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_39_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*f_38_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*f_39_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 3*U[2]) - (12*f_38_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 3*U[2]) - (12*f_39_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_38_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_39_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (20*cos2th*f_38_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_39_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*f_38_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*f_39_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 3*U[2]) - (20*f_38_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 3*U[2]) - (20*f_39_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_38_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_39_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 3*U[2]) - (20*f_38_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*f_39_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_38_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_39_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*cos2th*f_38_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*cos2th*f_39_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*f_38_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*f_39_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 3*U[2]) + (20*f_38_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*f_39_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 3*U[2]) - (20*cos2th*f_38_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 3*U[2]) - (20*cos2th*f_39_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_38_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_39_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*f_38_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*f_39_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_38_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_39_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*f_38_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*f_39_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 3*U[2]) - (20*f_38_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 3*U[2]) - (20*f_39_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_38_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_39_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (24*cos2th*f_38_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_39_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*f_38_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*f_39_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 3*U[2]) - (24*f_38_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 3*U[2]) - (24*f_39_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_38_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_39_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 3*U[2]) - (24*f_38_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*f_39_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_38_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_39_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*cos2th*f_38_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*cos2th*f_39_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*f_38_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*f_39_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 3*U[2]) + (24*f_38_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*f_39_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 3*U[2]) - (24*cos2th*f_38_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 3*U[2]) - (24*cos2th*f_39_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_38_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_39_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*f_38_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*f_39_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_38_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_39_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*f_38_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*f_39_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 3*U[2]) - (24*f_38_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 3*U[2]) - (24*f_39_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_38_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_39_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (28*cos2th*f_38_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_39_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*f_38_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*f_39_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 3*U[2]) - (28*f_38_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 3*U[2]) - (28*f_39_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_38_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_39_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 3*U[2]) - (28*f_38_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*f_39_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_38_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_39_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*cos2th*f_38_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*cos2th*f_39_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*f_38_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*f_39_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 3*U[2]) + (28*f_38_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*f_39_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 3*U[2]) - (28*cos2th*f_38_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 3*U[2]) - (28*cos2th*f_39_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_38_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_39_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*f_38_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*f_39_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_38_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_39_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*f_38_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*f_39_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 3*U[2]) - (28*f_38_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 3*U[2]) - (28*f_39_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_38_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_39_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (6*cos2th*f_36_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_37_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*f_36_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*f_37_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 2*U[2]) - (6*f_36_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 2*U[2]) - (6*f_37_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_36_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_37_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 2*U[2]) - (6*f_36_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*f_37_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_36_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_37_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*cos2th*f_36_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*cos2th*f_37_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*f_36_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*f_37_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 2*U[2]) + (6*f_36_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*f_37_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 2*U[2]) - (6*cos2th*f_36_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 2*U[2]) - (6*cos2th*f_37_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_36_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_37_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*f_36_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*f_37_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_36_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_37_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*f_36_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*f_37_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 2*U[2]) - (6*f_36_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 2*U[2]) - (6*f_37_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_36_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_37_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 2*U[2]) + (12*cos2th*f_36_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_37_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*f_36_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*f_37_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 2*U[2]) - (12*f_36_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 2*U[2]) - (12*f_37_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_36_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_37_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 2*U[2]) - (12*f_36_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*f_37_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_36_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_37_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*cos2th*f_36_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*cos2th*f_37_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*f_36_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*f_37_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 2*U[2]) + (12*f_36_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*f_37_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 2*U[2]) - (12*cos2th*f_36_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 2*U[2]) - (12*cos2th*f_37_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_36_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_37_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*f_36_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*f_37_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_36_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_37_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*f_36_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*f_37_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 2*U[2]) - (12*f_36_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 2*U[2]) - (12*f_37_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_36_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_37_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (15*cos2th*f_36_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_37_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*f_36_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*f_37_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 2*U[2]) - (15*f_36_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 2*U[2]) - (15*f_37_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_36_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_37_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 2*U[2]) - (15*f_36_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*f_37_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_36_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_37_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*cos2th*f_36_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*cos2th*f_37_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*f_36_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*f_37_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 2*U[2]) + (15*f_36_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*f_37_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 2*U[2]) - (15*cos2th*f_36_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 2*U[2]) - (15*cos2th*f_37_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_36_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_37_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*f_36_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*f_37_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_36_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_37_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*f_36_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*f_37_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 2*U[2]) - (15*f_36_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 2*U[2]) - (15*f_37_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_36_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_37_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (18*cos2th*f_36_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_37_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*f_36_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*f_37_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 2*U[2]) - (18*f_36_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 2*U[2]) - (18*f_37_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_36_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_37_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 2*U[2]) - (18*f_36_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*f_37_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_36_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_37_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*cos2th*f_36_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*cos2th*f_37_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*f_36_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*f_37_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 2*U[2]) + (18*f_36_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*f_37_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 2*U[2]) - (18*cos2th*f_36_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 2*U[2]) - (18*cos2th*f_37_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_36_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_37_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*f_36_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*f_37_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_36_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_37_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*f_36_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*f_37_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 2*U[2]) - (18*f_36_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 2*U[2]) - (18*f_37_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_36_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_37_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (21*cos2th*f_36_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_37_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*f_36_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*f_37_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 2*U[2]) - (21*f_36_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 2*U[2]) - (21*f_37_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_36_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_37_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 2*U[2]) - (21*f_36_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*f_37_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_36_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_37_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*cos2th*f_36_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*cos2th*f_37_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*f_36_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*f_37_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 2*U[2]) + (21*f_36_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*f_37_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 2*U[2]) - (21*cos2th*f_36_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 2*U[2]) - (21*cos2th*f_37_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_36_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_37_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*f_36_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*f_37_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_36_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_37_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*f_36_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*f_37_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 2*U[2]) - (21*f_36_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 2*U[2]) - (21*f_37_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_36_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_37_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (6*cos2th*f_34_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_35_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - U[2]) + (6*f_34_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - U[2]) + (6*f_35_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - U[2]) - (6*f_34_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - U[2]) - (6*f_35_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_34_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_35_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - U[2]) - (6*f_34_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - U[2]) - (6*f_35_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_34_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_35_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - U[2]) - (6*cos2th*f_34_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - U[2]) - (6*cos2th*f_35_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - U[2]) - (6*f_34_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - U[2]) - (6*f_35_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - U[2]) + (6*f_34_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - U[2]) + (6*f_35_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - U[2]) - (6*cos2th*f_34_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - U[2]) - (6*cos2th*f_35_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_34_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_35_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - U[2]) + (6*f_34_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - U[2]) + (6*f_35_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_34_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_35_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - U[2]) + (6*f_34_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - U[2]) + (6*f_35_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - U[2]) - (6*f_34_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - U[2]) - (6*f_35_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_34_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_35_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - U[2]) + (8*cos2th*f_34_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_35_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - U[2]) + (8*f_34_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - U[2]) + (8*f_35_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - U[2]) - (8*f_34_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - U[2]) - (8*f_35_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_34_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_35_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - U[2]) - (8*f_34_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - U[2]) - (8*f_35_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_34_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_35_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - U[2]) - (8*cos2th*f_34_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - U[2]) - (8*cos2th*f_35_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - U[2]) - (8*f_34_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - U[2]) - (8*f_35_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - U[2]) + (8*f_34_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - U[2]) + (8*f_35_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - U[2]) - (8*cos2th*f_34_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - U[2]) - (8*cos2th*f_35_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_34_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_35_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - U[2]) + (8*f_34_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - U[2]) + (8*f_35_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_34_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_35_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - U[2]) + (8*f_34_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - U[2]) + (8*f_35_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - U[2]) - (8*f_34_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - U[2]) - (8*f_35_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_34_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_35_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - U[2]) + (10*cos2th*f_34_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_35_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - U[2]) + (10*f_34_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - U[2]) + (10*f_35_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - U[2]) - (10*f_34_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - U[2]) - (10*f_35_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_34_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_35_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - U[2]) - (10*f_34_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - U[2]) - (10*f_35_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_34_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_35_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - U[2]) - (10*cos2th*f_34_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - U[2]) - (10*cos2th*f_35_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - U[2]) - (10*f_34_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - U[2]) - (10*f_35_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - U[2]) + (10*f_34_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - U[2]) + (10*f_35_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - U[2]) - (10*cos2th*f_34_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - U[2]) - (10*cos2th*f_35_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_34_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_35_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - U[2]) + (10*f_34_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - U[2]) + (10*f_35_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_34_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_35_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - U[2]) + (10*f_34_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - U[2]) + (10*f_35_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - U[2]) - (10*f_34_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - U[2]) - (10*f_35_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_34_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_35_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - U[2]) + (12*cos2th*f_34_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_35_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - U[2]) + (12*f_34_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - U[2]) + (12*f_35_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - U[2]) - (12*f_34_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - U[2]) - (12*f_35_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_34_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_35_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - U[2]) - (12*f_34_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - U[2]) - (12*f_35_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_34_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_35_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - U[2]) - (12*cos2th*f_34_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - U[2]) - (12*cos2th*f_35_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - U[2]) - (12*f_34_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - U[2]) - (12*f_35_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - U[2]) + (12*f_34_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - U[2]) + (12*f_35_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - U[2]) - (12*cos2th*f_34_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - U[2]) - (12*cos2th*f_35_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_34_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_35_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - U[2]) + (12*f_34_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - U[2]) + (12*f_35_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_34_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_35_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - U[2]) + (12*f_34_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - U[2]) + (12*f_35_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - U[2]) - (12*f_34_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - U[2]) - (12*f_35_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_34_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_35_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - U[2]) + (14*cos2th*f_34_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_35_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - U[2]) + (14*f_34_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - U[2]) + (14*f_35_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - U[2]) - (14*f_34_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - U[2]) - (14*f_35_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_34_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_35_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - U[2]) - (14*f_34_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - U[2]) - (14*f_35_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_34_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_35_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - U[2]) - (14*cos2th*f_34_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - U[2]) - (14*cos2th*f_35_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - U[2]) - (14*f_34_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - U[2]) - (14*f_35_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - U[2]) + (14*f_34_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - U[2]) + (14*f_35_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - U[2]) - (14*cos2th*f_34_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - U[2]) - (14*cos2th*f_35_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_34_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_35_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - U[2]) + (14*f_34_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - U[2]) + (14*f_35_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_34_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_35_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - U[2]) + (14*f_34_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - U[2]) + (14*f_35_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - U[2]) - (14*f_34_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - U[2]) - (14*f_35_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_34_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_35_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - U[2]) - (2*cos2th*f_34_2*f[16]*f[18]*f[48]*f[50])/U[2] - (2*cos2th*f_35_2*f[16]*f[18]*f[48]*f[50])/U[2] - (3*cos2th*f_36_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) - (3*cos2th*f_37_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) - (4*cos2th*f_38_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) - (4*cos2th*f_39_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) - (5*cos2th*f_40_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) - (5*cos2th*f_41_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) - (6*cos2th*f_42_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) - (6*cos2th*f_43_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) - (7*cos2th*f_44_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) - (7*cos2th*f_45_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] - (2*f_35_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] - (3*f_36_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) - (3*f_37_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) - (4*f_38_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) - (4*f_39_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) - (5*f_40_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) - (5*f_41_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) - (6*f_42_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) - (6*f_43_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) - (7*f_44_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) - (7*f_45_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] + (2*f_35_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] + (3*f_36_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) + (3*f_37_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) + (4*f_38_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) + (4*f_39_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) + (5*f_40_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) + (5*f_41_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) + (6*f_42_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) + (6*f_43_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) + (7*f_44_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) + (7*f_45_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) - (2*cos2th*f_34_2*f[17]*f[19]*f[48]*f[50])/U[2] - (2*cos2th*f_35_2*f[17]*f[19]*f[48]*f[50])/U[2] - (3*cos2th*f_36_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) - (3*cos2th*f_37_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) - (4*cos2th*f_38_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) - (4*cos2th*f_39_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) - (5*cos2th*f_40_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) - (5*cos2th*f_41_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) - (6*cos2th*f_42_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) - (6*cos2th*f_43_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) - (7*cos2th*f_44_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) - (7*cos2th*f_45_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] + (2*f_35_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] + (3*f_36_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) + (3*f_37_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) + (4*f_38_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) + (4*f_39_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) + (5*f_40_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) + (5*f_41_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) + (6*f_42_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) + (6*f_43_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) + (7*f_44_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) + (7*f_45_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) - (2*cos2th*f_34_2*f[17]*f[18]*f[49]*f[50])/U[2] - (2*cos2th*f_35_2*f[17]*f[18]*f[49]*f[50])/U[2] - (3*cos2th*f_36_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) - (3*cos2th*f_37_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) - (4*cos2th*f_38_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) - (4*cos2th*f_39_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) - (5*cos2th*f_40_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) - (5*cos2th*f_41_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) - (6*cos2th*f_42_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) - (6*cos2th*f_43_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) - (7*cos2th*f_44_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) - (7*cos2th*f_45_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) + (2*cos2th*f_34_2*f[16]*f[19]*f[49]*f[50])/U[2] + (2*cos2th*f_35_2*f[16]*f[19]*f[49]*f[50])/U[2] + (3*cos2th*f_36_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) + (3*cos2th*f_37_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) + (4*cos2th*f_38_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) + (4*cos2th*f_39_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) + (5*cos2th*f_40_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) + (5*cos2th*f_41_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) + (6*cos2th*f_42_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) + (6*cos2th*f_43_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) + (7*cos2th*f_44_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) + (7*cos2th*f_45_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] + (2*f_35_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] + (3*f_36_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) + (3*f_37_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) + (4*f_38_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) + (4*f_39_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) + (5*f_40_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) + (5*f_41_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) + (6*f_42_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) + (6*f_43_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) + (7*f_44_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) + (7*f_45_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] - (2*f_35_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] - (3*f_36_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) - (3*f_37_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) - (4*f_38_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) - (4*f_39_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) - (5*f_40_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) - (5*f_41_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) - (6*f_42_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) - (6*f_43_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) - (7*f_44_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) - (7*f_45_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[17]*f[18]*f[48]*f[51])/U[2] + (2*cos2th*f_35_2*f[17]*f[18]*f[48]*f[51])/U[2] + (3*cos2th*f_36_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) + (3*cos2th*f_37_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) + (4*cos2th*f_38_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) + (4*cos2th*f_39_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) + (5*cos2th*f_40_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) + (5*cos2th*f_41_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) + (6*cos2th*f_42_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) + (6*cos2th*f_43_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) + (7*cos2th*f_44_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) + (7*cos2th*f_45_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_34_2*f[16]*f[19]*f[48]*f[51])/U[2] - (2*cos2th*f_35_2*f[16]*f[19]*f[48]*f[51])/U[2] - (3*cos2th*f_36_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) - (3*cos2th*f_37_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) - (4*cos2th*f_38_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) - (4*cos2th*f_39_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) - (5*cos2th*f_40_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) - (5*cos2th*f_41_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) - (6*cos2th*f_42_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) - (6*cos2th*f_43_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) - (7*cos2th*f_44_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) - (7*cos2th*f_45_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) - (2*f_34_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] - (2*f_35_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] - (3*f_36_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) - (3*f_37_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) - (4*f_38_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) - (4*f_39_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) - (5*f_40_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) - (5*f_41_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) - (6*f_42_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) - (6*f_43_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) - (7*f_44_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) - (7*f_45_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_34_2*f[16]*f[18]*f[49]*f[51])/U[2] - (2*cos2th*f_35_2*f[16]*f[18]*f[49]*f[51])/U[2] - (3*cos2th*f_36_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) - (3*cos2th*f_37_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) - (4*cos2th*f_38_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) - (4*cos2th*f_39_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) - (5*cos2th*f_40_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) - (5*cos2th*f_41_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) - (6*cos2th*f_42_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) - (6*cos2th*f_43_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) - (7*cos2th*f_44_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) - (7*cos2th*f_45_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) - (2*f_34_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] - (2*f_35_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] - (3*f_36_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) - (3*f_37_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) - (4*f_38_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) - (4*f_39_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) - (5*f_40_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) - (5*f_41_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) - (6*f_42_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) - (6*f_43_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) - (7*f_44_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) - (7*f_45_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) + (2*f_34_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] + (2*f_35_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] + (3*f_36_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) + (3*f_37_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) + (4*f_38_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) + (4*f_39_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) + (5*f_40_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) + (5*f_41_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) + (6*f_42_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) + (6*f_43_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) + (7*f_44_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) + (7*f_45_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) - (2*cos2th*f_34_2*f[17]*f[19]*f[49]*f[51])/U[2] - (2*cos2th*f_35_2*f[17]*f[19]*f[49]*f[51])/U[2] - (3*cos2th*f_36_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) - (3*cos2th*f_37_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) - (4*cos2th*f_38_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) - (4*cos2th*f_39_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) - (5*cos2th*f_40_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) - (5*cos2th*f_41_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) - (6*cos2th*f_42_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) - (6*cos2th*f_43_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) - (7*cos2th*f_44_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) - (7*cos2th*f_45_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - (J[1]*J[2]*((2*cos2th*f_34_2*f[18]*f[20]*f[50]*f[52])/U[1] + (2*cos2th*f_35_2*f[18]*f[20]*f[50]*f[52])/U[1] + (2*f_34_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[1] + (2*f_35_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[1] - (2*f_34_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[1] - (2*f_35_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[1] + (2*cos2th*f_34_2*f[19]*f[21]*f[50]*f[52])/U[1] + (2*cos2th*f_35_2*f[19]*f[21]*f[50]*f[52])/U[1] - (2*f_34_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[1] - (2*f_35_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[1] + (2*cos2th*f_34_2*f[19]*f[20]*f[51]*f[52])/U[1] + (2*cos2th*f_35_2*f[19]*f[20]*f[51]*f[52])/U[1] - (2*cos2th*f_34_2*f[18]*f[21]*f[51]*f[52])/U[1] - (2*cos2th*f_35_2*f[18]*f[21]*f[51]*f[52])/U[1] - (2*f_34_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[1] - (2*f_35_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[1] + (2*f_34_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[1] + (2*f_35_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[1] - (2*cos2th*f_34_2*f[19]*f[20]*f[50]*f[53])/U[1] - (2*cos2th*f_35_2*f[19]*f[20]*f[50]*f[53])/U[1] + (2*cos2th*f_34_2*f[18]*f[21]*f[50]*f[53])/U[1] + (2*cos2th*f_35_2*f[18]*f[21]*f[50]*f[53])/U[1] + (2*f_34_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[1] + (2*f_35_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[1] + (2*cos2th*f_34_2*f[18]*f[20]*f[51]*f[53])/U[1] + (2*cos2th*f_35_2*f[18]*f[20]*f[51]*f[53])/U[1] + (2*f_34_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[1] + (2*f_35_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[1] - (2*f_34_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[1] - (2*f_35_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[1] + (2*cos2th*f_34_2*f[19]*f[21]*f[51]*f[53])/U[1] + (2*cos2th*f_35_2*f[19]*f[21]*f[51]*f[53])/U[1] + (3*cos2th*f_34_2*f[20]*f[22]*f[52]*f[54])/(2.*U[1]) + (3*cos2th*f_35_2*f[20]*f[22]*f[52]*f[54])/(2.*U[1]) + (3*f_34_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[1]) + (3*f_35_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[1]) - (3*f_34_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[1]) - (3*f_35_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[1]) + (3*cos2th*f_34_2*f[21]*f[23]*f[52]*f[54])/(2.*U[1]) + (3*cos2th*f_35_2*f[21]*f[23]*f[52]*f[54])/(2.*U[1]) - (3*f_34_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[1]) - (3*f_35_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[1]) + (3*cos2th*f_34_2*f[21]*f[22]*f[53]*f[54])/(2.*U[1]) + (3*cos2th*f_35_2*f[21]*f[22]*f[53]*f[54])/(2.*U[1]) - (3*cos2th*f_34_2*f[20]*f[23]*f[53]*f[54])/(2.*U[1]) - (3*cos2th*f_35_2*f[20]*f[23]*f[53]*f[54])/(2.*U[1]) - (3*f_34_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[1]) - (3*f_35_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[1]) + (3*f_34_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[1]) + (3*f_35_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_34_2*f[21]*f[22]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_35_2*f[21]*f[22]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_34_2*f[20]*f[23]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_35_2*f[20]*f[23]*f[52]*f[55])/(2.*U[1]) + (3*f_34_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[1]) + (3*f_35_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_34_2*f[20]*f[22]*f[53]*f[55])/(2.*U[1]) + (3*cos2th*f_35_2*f[20]*f[22]*f[53]*f[55])/(2.*U[1]) + (3*f_34_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[1]) + (3*f_35_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[1]) - (3*f_34_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[1]) - (3*f_35_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[1]) + (3*cos2th*f_34_2*f[21]*f[23]*f[53]*f[55])/(2.*U[1]) + (3*cos2th*f_35_2*f[21]*f[23]*f[53]*f[55])/(2.*U[1]) + (4*cos2th*f_34_2*f[22]*f[24]*f[54]*f[56])/(3.*U[1]) + (4*cos2th*f_35_2*f[22]*f[24]*f[54]*f[56])/(3.*U[1]) + (4*f_34_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[1]) + (4*f_35_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[1]) - (4*f_34_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[1]) - (4*f_35_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[1]) + (4*cos2th*f_34_2*f[23]*f[25]*f[54]*f[56])/(3.*U[1]) + (4*cos2th*f_35_2*f[23]*f[25]*f[54]*f[56])/(3.*U[1]) - (4*f_34_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[1]) - (4*f_35_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[1]) + (4*cos2th*f_34_2*f[23]*f[24]*f[55]*f[56])/(3.*U[1]) + (4*cos2th*f_35_2*f[23]*f[24]*f[55]*f[56])/(3.*U[1]) - (4*cos2th*f_34_2*f[22]*f[25]*f[55]*f[56])/(3.*U[1]) - (4*cos2th*f_35_2*f[22]*f[25]*f[55]*f[56])/(3.*U[1]) - (4*f_34_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[1]) - (4*f_35_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[1]) + (4*f_34_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[1]) + (4*f_35_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_34_2*f[23]*f[24]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_35_2*f[23]*f[24]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_34_2*f[22]*f[25]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_35_2*f[22]*f[25]*f[54]*f[57])/(3.*U[1]) + (4*f_34_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[1]) + (4*f_35_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_34_2*f[22]*f[24]*f[55]*f[57])/(3.*U[1]) + (4*cos2th*f_35_2*f[22]*f[24]*f[55]*f[57])/(3.*U[1]) + (4*f_34_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[1]) + (4*f_35_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[1]) - (4*f_34_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[1]) - (4*f_35_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[1]) + (4*cos2th*f_34_2*f[23]*f[25]*f[55]*f[57])/(3.*U[1]) + (4*cos2th*f_35_2*f[23]*f[25]*f[55]*f[57])/(3.*U[1]) + (5*cos2th*f_34_2*f[24]*f[26]*f[56]*f[58])/(4.*U[1]) + (5*cos2th*f_35_2*f[24]*f[26]*f[56]*f[58])/(4.*U[1]) + (5*f_34_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[1]) + (5*f_35_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[1]) - (5*f_34_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[1]) - (5*f_35_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[1]) + (5*cos2th*f_34_2*f[25]*f[27]*f[56]*f[58])/(4.*U[1]) + (5*cos2th*f_35_2*f[25]*f[27]*f[56]*f[58])/(4.*U[1]) - (5*f_34_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[1]) - (5*f_35_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[1]) + (5*cos2th*f_34_2*f[25]*f[26]*f[57]*f[58])/(4.*U[1]) + (5*cos2th*f_35_2*f[25]*f[26]*f[57]*f[58])/(4.*U[1]) - (5*cos2th*f_34_2*f[24]*f[27]*f[57]*f[58])/(4.*U[1]) - (5*cos2th*f_35_2*f[24]*f[27]*f[57]*f[58])/(4.*U[1]) - (5*f_34_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[1]) - (5*f_35_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[1]) + (5*f_34_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[1]) + (5*f_35_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_34_2*f[25]*f[26]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_35_2*f[25]*f[26]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_34_2*f[24]*f[27]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_35_2*f[24]*f[27]*f[56]*f[59])/(4.*U[1]) + (5*f_34_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[1]) + (5*f_35_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_34_2*f[24]*f[26]*f[57]*f[59])/(4.*U[1]) + (5*cos2th*f_35_2*f[24]*f[26]*f[57]*f[59])/(4.*U[1]) + (5*f_34_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[1]) + (5*f_35_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[1]) - (5*f_34_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[1]) - (5*f_35_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[1]) + (5*cos2th*f_34_2*f[25]*f[27]*f[57]*f[59])/(4.*U[1]) + (5*cos2th*f_35_2*f[25]*f[27]*f[57]*f[59])/(4.*U[1]) + (6*cos2th*f_34_2*f[26]*f[28]*f[58]*f[60])/(5.*U[1]) + (6*cos2th*f_35_2*f[26]*f[28]*f[58]*f[60])/(5.*U[1]) + (6*f_34_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[1]) + (6*f_35_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[1]) - (6*f_34_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[1]) - (6*f_35_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[1]) + (6*cos2th*f_34_2*f[27]*f[29]*f[58]*f[60])/(5.*U[1]) + (6*cos2th*f_35_2*f[27]*f[29]*f[58]*f[60])/(5.*U[1]) - (6*f_34_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[1]) - (6*f_35_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[1]) + (6*cos2th*f_34_2*f[27]*f[28]*f[59]*f[60])/(5.*U[1]) + (6*cos2th*f_35_2*f[27]*f[28]*f[59]*f[60])/(5.*U[1]) - (6*cos2th*f_34_2*f[26]*f[29]*f[59]*f[60])/(5.*U[1]) - (6*cos2th*f_35_2*f[26]*f[29]*f[59]*f[60])/(5.*U[1]) - (6*f_34_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[1]) - (6*f_35_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[1]) + (6*f_34_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[1]) + (6*f_35_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_34_2*f[27]*f[28]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_35_2*f[27]*f[28]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_34_2*f[26]*f[29]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_35_2*f[26]*f[29]*f[58]*f[61])/(5.*U[1]) + (6*f_34_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[1]) + (6*f_35_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_34_2*f[26]*f[28]*f[59]*f[61])/(5.*U[1]) + (6*cos2th*f_35_2*f[26]*f[28]*f[59]*f[61])/(5.*U[1]) + (6*f_34_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[1]) + (6*f_35_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[1]) - (6*f_34_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[1]) - (6*f_35_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[1]) + (6*cos2th*f_34_2*f[27]*f[29]*f[59]*f[61])/(5.*U[1]) + (6*cos2th*f_35_2*f[27]*f[29]*f[59]*f[61])/(5.*U[1]) + (7*cos2th*f_34_2*f[28]*f[30]*f[60]*f[62])/(6.*U[1]) + (7*cos2th*f_35_2*f[28]*f[30]*f[60]*f[62])/(6.*U[1]) + (7*f_34_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[1]) + (7*f_35_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[1]) - (7*f_34_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[1]) - (7*f_35_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[1]) + (7*cos2th*f_34_2*f[29]*f[31]*f[60]*f[62])/(6.*U[1]) + (7*cos2th*f_35_2*f[29]*f[31]*f[60]*f[62])/(6.*U[1]) - (7*f_34_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[1]) - (7*f_35_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[1]) + (7*cos2th*f_34_2*f[29]*f[30]*f[61]*f[62])/(6.*U[1]) + (7*cos2th*f_35_2*f[29]*f[30]*f[61]*f[62])/(6.*U[1]) - (7*cos2th*f_34_2*f[28]*f[31]*f[61]*f[62])/(6.*U[1]) - (7*cos2th*f_35_2*f[28]*f[31]*f[61]*f[62])/(6.*U[1]) - (7*f_34_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[1]) - (7*f_35_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[1]) + (7*f_34_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[1]) + (7*f_35_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_34_2*f[29]*f[30]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_35_2*f[29]*f[30]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_34_2*f[28]*f[31]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_35_2*f[28]*f[31]*f[60]*f[63])/(6.*U[1]) + (7*f_34_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[1]) + (7*f_35_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_34_2*f[28]*f[30]*f[61]*f[63])/(6.*U[1]) + (7*cos2th*f_35_2*f[28]*f[30]*f[61]*f[63])/(6.*U[1]) + (7*f_34_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[1]) + (7*f_35_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[1]) - (7*f_34_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[1]) - (7*f_35_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[1]) + (7*cos2th*f_34_2*f[29]*f[31]*f[61]*f[63])/(6.*U[1]) + (7*cos2th*f_35_2*f[29]*f[31]*f[61]*f[63])/(6.*U[1]) + (14*cos2th*f_46_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_47_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*f_46_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*f_47_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 6*U[2]) - (14*f_46_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 6*U[2]) - (14*f_47_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_46_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_47_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 6*U[2]) - (14*f_46_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*f_47_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_46_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 6*U[2]) + (14*cos2th*f_47_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*cos2th*f_46_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*cos2th*f_47_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*f_46_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 6*U[2]) - (14*f_47_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 6*U[2]) + (14*f_46_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*f_47_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 6*U[2]) - (14*cos2th*f_46_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 6*U[2]) - (14*cos2th*f_47_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_46_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_47_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*f_46_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*f_47_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_46_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_47_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*f_46_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*f_47_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 6*U[2]) - (14*f_46_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 6*U[2]) - (14*f_47_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_46_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 6*U[2]) + (14*cos2th*f_47_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 6*U[2]) + (21*cos2th*f_46_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_47_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*f_46_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*f_47_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 6*U[2]) - (21*f_46_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 6*U[2]) - (21*f_47_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_46_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_47_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 6*U[2]) - (21*f_46_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*f_47_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_46_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 6*U[2]) + (21*cos2th*f_47_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*cos2th*f_46_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*cos2th*f_47_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*f_46_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 6*U[2]) - (21*f_47_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 6*U[2]) + (21*f_46_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*f_47_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 6*U[2]) - (21*cos2th*f_46_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 6*U[2]) - (21*cos2th*f_47_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_46_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_47_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*f_46_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*f_47_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_46_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_47_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*f_46_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*f_47_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 6*U[2]) - (21*f_46_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 6*U[2]) - (21*f_47_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_46_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (21*cos2th*f_47_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 6*U[2]) + (28*cos2th*f_46_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_47_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*f_46_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*f_47_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 6*U[2]) - (28*f_46_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 6*U[2]) - (28*f_47_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_46_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_47_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 6*U[2]) - (28*f_46_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*f_47_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_46_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 6*U[2]) + (28*cos2th*f_47_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*cos2th*f_46_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*cos2th*f_47_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*f_46_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 6*U[2]) - (28*f_47_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 6*U[2]) + (28*f_46_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*f_47_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 6*U[2]) - (28*cos2th*f_46_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 6*U[2]) - (28*cos2th*f_47_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_46_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_47_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*f_46_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*f_47_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_46_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_47_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*f_46_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*f_47_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 6*U[2]) - (28*f_46_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 6*U[2]) - (28*f_47_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_46_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (28*cos2th*f_47_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 6*U[2]) + (35*cos2th*f_46_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_47_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*f_46_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*f_47_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 6*U[2]) - (35*f_46_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 6*U[2]) - (35*f_47_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_46_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_47_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 6*U[2]) - (35*f_46_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*f_47_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_46_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 6*U[2]) + (35*cos2th*f_47_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*cos2th*f_46_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*cos2th*f_47_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*f_46_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 6*U[2]) - (35*f_47_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 6*U[2]) + (35*f_46_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*f_47_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 6*U[2]) - (35*cos2th*f_46_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 6*U[2]) - (35*cos2th*f_47_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_46_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_47_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*f_46_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*f_47_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_46_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_47_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*f_46_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*f_47_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 6*U[2]) - (35*f_46_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 6*U[2]) - (35*f_47_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_46_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (35*cos2th*f_47_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 6*U[2]) + (42*cos2th*f_46_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_47_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*f_46_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*f_47_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 6*U[2]) - (42*f_46_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 6*U[2]) - (42*f_47_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_46_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_47_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 6*U[2]) - (42*f_46_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*f_47_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_46_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 6*U[2]) + (42*cos2th*f_47_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*cos2th*f_46_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*cos2th*f_47_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*f_46_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 6*U[2]) - (42*f_47_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 6*U[2]) + (42*f_46_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*f_47_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 6*U[2]) - (42*cos2th*f_46_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 6*U[2]) - (42*cos2th*f_47_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_46_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_47_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*f_46_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*f_47_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_46_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_47_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*f_46_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*f_47_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 6*U[2]) - (42*f_46_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 6*U[2]) - (42*f_47_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_46_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (42*cos2th*f_47_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 6*U[2]) + (12*cos2th*f_44_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_45_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*f_44_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*f_45_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 5*U[2]) - (12*f_44_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 5*U[2]) - (12*f_45_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_44_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_45_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 5*U[2]) - (12*f_44_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*f_45_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_44_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 5*U[2]) + (12*cos2th*f_45_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*cos2th*f_44_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*cos2th*f_45_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*f_44_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 5*U[2]) - (12*f_45_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 5*U[2]) + (12*f_44_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*f_45_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 5*U[2]) - (12*cos2th*f_44_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 5*U[2]) - (12*cos2th*f_45_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_44_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_45_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*f_44_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*f_45_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_44_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_45_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*f_44_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*f_45_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 5*U[2]) - (12*f_44_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 5*U[2]) - (12*f_45_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_44_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 5*U[2]) + (12*cos2th*f_45_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 5*U[2]) + (18*cos2th*f_44_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_45_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*f_44_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*f_45_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 5*U[2]) - (18*f_44_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 5*U[2]) - (18*f_45_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_44_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_45_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 5*U[2]) - (18*f_44_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*f_45_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_44_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 5*U[2]) + (18*cos2th*f_45_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*cos2th*f_44_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*cos2th*f_45_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*f_44_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 5*U[2]) - (18*f_45_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 5*U[2]) + (18*f_44_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*f_45_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 5*U[2]) - (18*cos2th*f_44_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 5*U[2]) - (18*cos2th*f_45_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_44_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_45_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*f_44_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*f_45_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_44_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_45_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*f_44_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*f_45_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 5*U[2]) - (18*f_44_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 5*U[2]) - (18*f_45_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_44_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (18*cos2th*f_45_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 5*U[2]) + (24*cos2th*f_44_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_45_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*f_44_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*f_45_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 5*U[2]) - (24*f_44_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 5*U[2]) - (24*f_45_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_44_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_45_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 5*U[2]) - (24*f_44_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*f_45_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_44_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 5*U[2]) + (24*cos2th*f_45_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*cos2th*f_44_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*cos2th*f_45_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*f_44_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 5*U[2]) - (24*f_45_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 5*U[2]) + (24*f_44_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*f_45_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 5*U[2]) - (24*cos2th*f_44_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 5*U[2]) - (24*cos2th*f_45_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_44_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_45_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*f_44_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*f_45_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_44_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_45_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*f_44_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*f_45_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 5*U[2]) - (24*f_44_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 5*U[2]) - (24*f_45_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_44_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (24*cos2th*f_45_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 5*U[2]) + (30*cos2th*f_44_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_45_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*f_44_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*f_45_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 5*U[2]) - (30*f_44_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 5*U[2]) - (30*f_45_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_44_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_45_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 5*U[2]) - (30*f_44_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*f_45_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_44_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 5*U[2]) + (30*cos2th*f_45_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*cos2th*f_44_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*cos2th*f_45_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*f_44_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 5*U[2]) - (30*f_45_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 5*U[2]) + (30*f_44_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*f_45_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 5*U[2]) - (30*cos2th*f_44_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 5*U[2]) - (30*cos2th*f_45_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_44_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_45_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*f_44_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*f_45_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_44_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_45_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*f_44_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*f_45_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 5*U[2]) - (30*f_44_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 5*U[2]) - (30*f_45_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_44_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (30*cos2th*f_45_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 5*U[2]) + (42*cos2th*f_44_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_45_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*f_44_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*f_45_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 5*U[2]) - (42*f_44_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 5*U[2]) - (42*f_45_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_44_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_45_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 5*U[2]) - (42*f_44_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*f_45_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_44_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 5*U[2]) + (42*cos2th*f_45_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*cos2th*f_44_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*cos2th*f_45_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*f_44_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 5*U[2]) - (42*f_45_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 5*U[2]) + (42*f_44_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*f_45_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 5*U[2]) - (42*cos2th*f_44_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 5*U[2]) - (42*cos2th*f_45_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_44_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_45_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*f_44_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*f_45_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_44_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_45_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*f_44_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*f_45_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 5*U[2]) - (42*f_44_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 5*U[2]) - (42*f_45_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_44_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (42*cos2th*f_45_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 5*U[2]) + (10*cos2th*f_42_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_43_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*f_42_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*f_43_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 4*U[2]) - (10*f_42_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 4*U[2]) - (10*f_43_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_42_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_43_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 4*U[2]) - (10*f_42_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*f_43_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_42_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 4*U[2]) + (10*cos2th*f_43_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*cos2th*f_42_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*cos2th*f_43_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*f_42_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 4*U[2]) - (10*f_43_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 4*U[2]) + (10*f_42_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*f_43_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 4*U[2]) - (10*cos2th*f_42_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 4*U[2]) - (10*cos2th*f_43_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_42_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_43_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*f_42_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*f_43_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_42_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_43_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*f_42_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*f_43_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 4*U[2]) - (10*f_42_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 4*U[2]) - (10*f_43_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_42_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 4*U[2]) + (10*cos2th*f_43_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 4*U[2]) + (15*cos2th*f_42_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_43_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*f_42_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*f_43_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 4*U[2]) - (15*f_42_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 4*U[2]) - (15*f_43_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_42_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_43_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 4*U[2]) - (15*f_42_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*f_43_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_42_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 4*U[2]) + (15*cos2th*f_43_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*cos2th*f_42_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*cos2th*f_43_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*f_42_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 4*U[2]) - (15*f_43_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 4*U[2]) + (15*f_42_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*f_43_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 4*U[2]) - (15*cos2th*f_42_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 4*U[2]) - (15*cos2th*f_43_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_42_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_43_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*f_42_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*f_43_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_42_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_43_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*f_42_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*f_43_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 4*U[2]) - (15*f_42_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 4*U[2]) - (15*f_43_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_42_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (15*cos2th*f_43_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 4*U[2]) + (20*cos2th*f_42_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_43_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*f_42_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*f_43_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 4*U[2]) - (20*f_42_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 4*U[2]) - (20*f_43_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_42_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_43_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 4*U[2]) - (20*f_42_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*f_43_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_42_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 4*U[2]) + (20*cos2th*f_43_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*cos2th*f_42_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*cos2th*f_43_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*f_42_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 4*U[2]) - (20*f_43_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 4*U[2]) + (20*f_42_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*f_43_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 4*U[2]) - (20*cos2th*f_42_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 4*U[2]) - (20*cos2th*f_43_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_42_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_43_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*f_42_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*f_43_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_42_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_43_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*f_42_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*f_43_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 4*U[2]) - (20*f_42_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 4*U[2]) - (20*f_43_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_42_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (20*cos2th*f_43_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 4*U[2]) + (30*cos2th*f_42_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_43_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*f_42_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*f_43_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 4*U[2]) - (30*f_42_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 4*U[2]) - (30*f_43_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_42_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_43_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 4*U[2]) - (30*f_42_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*f_43_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_42_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 4*U[2]) + (30*cos2th*f_43_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*cos2th*f_42_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*cos2th*f_43_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*f_42_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 4*U[2]) - (30*f_43_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 4*U[2]) + (30*f_42_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*f_43_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 4*U[2]) - (30*cos2th*f_42_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 4*U[2]) - (30*cos2th*f_43_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_42_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_43_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*f_42_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*f_43_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_42_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_43_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*f_42_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*f_43_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 4*U[2]) - (30*f_42_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 4*U[2]) - (30*f_43_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_42_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (30*cos2th*f_43_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 4*U[2]) + (35*cos2th*f_42_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_43_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*f_42_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*f_43_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 4*U[2]) - (35*f_42_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 4*U[2]) - (35*f_43_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_42_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_43_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 4*U[2]) - (35*f_42_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*f_43_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_42_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 4*U[2]) + (35*cos2th*f_43_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*cos2th*f_42_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*cos2th*f_43_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*f_42_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 4*U[2]) - (35*f_43_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 4*U[2]) + (35*f_42_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*f_43_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 4*U[2]) - (35*cos2th*f_42_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 4*U[2]) - (35*cos2th*f_43_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_42_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_43_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*f_42_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*f_43_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_42_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_43_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*f_42_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*f_43_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 4*U[2]) - (35*f_42_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 4*U[2]) - (35*f_43_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_42_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (35*cos2th*f_43_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 4*U[2]) + (8*cos2th*f_40_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_41_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*f_40_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*f_41_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 3*U[2]) - (8*f_40_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 3*U[2]) - (8*f_41_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_40_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_41_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 3*U[2]) - (8*f_40_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*f_41_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_40_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 3*U[2]) + (8*cos2th*f_41_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*cos2th*f_40_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*cos2th*f_41_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*f_40_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 3*U[2]) - (8*f_41_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 3*U[2]) + (8*f_40_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*f_41_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 3*U[2]) - (8*cos2th*f_40_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 3*U[2]) - (8*cos2th*f_41_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_40_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_41_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*f_40_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*f_41_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_40_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_41_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*f_40_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*f_41_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 3*U[2]) - (8*f_40_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 3*U[2]) - (8*f_41_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_40_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 3*U[2]) + (8*cos2th*f_41_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 3*U[2]) + (12*cos2th*f_40_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_41_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*f_40_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*f_41_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - 3*U[2]) - (12*f_40_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 3*U[2]) - (12*f_41_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_40_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_41_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - 3*U[2]) - (12*f_40_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*f_41_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_40_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 3*U[2]) + (12*cos2th*f_41_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*cos2th*f_40_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*cos2th*f_41_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*f_40_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 3*U[2]) - (12*f_41_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - 3*U[2]) + (12*f_40_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*f_41_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - 3*U[2]) - (12*cos2th*f_40_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 3*U[2]) - (12*cos2th*f_41_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_40_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_41_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*f_40_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*f_41_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_40_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_41_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*f_40_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*f_41_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - 3*U[2]) - (12*f_40_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 3*U[2]) - (12*f_41_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_40_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (12*cos2th*f_41_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - 3*U[2]) + (20*cos2th*f_40_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_41_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*f_40_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*f_41_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 3*U[2]) - (20*f_40_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 3*U[2]) - (20*f_41_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_40_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_41_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 3*U[2]) - (20*f_40_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*f_41_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_40_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 3*U[2]) + (20*cos2th*f_41_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*cos2th*f_40_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*cos2th*f_41_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*f_40_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 3*U[2]) - (20*f_41_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 3*U[2]) + (20*f_40_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*f_41_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 3*U[2]) - (20*cos2th*f_40_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 3*U[2]) - (20*cos2th*f_41_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_40_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_41_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*f_40_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*f_41_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_40_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_41_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*f_40_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*f_41_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 3*U[2]) - (20*f_40_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 3*U[2]) - (20*f_41_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_40_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (20*cos2th*f_41_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 3*U[2]) + (24*cos2th*f_40_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_41_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*f_40_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*f_41_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 3*U[2]) - (24*f_40_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 3*U[2]) - (24*f_41_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_40_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_41_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 3*U[2]) - (24*f_40_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*f_41_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_40_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 3*U[2]) + (24*cos2th*f_41_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*cos2th*f_40_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*cos2th*f_41_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*f_40_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 3*U[2]) - (24*f_41_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 3*U[2]) + (24*f_40_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*f_41_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 3*U[2]) - (24*cos2th*f_40_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 3*U[2]) - (24*cos2th*f_41_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_40_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_41_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*f_40_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*f_41_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_40_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_41_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*f_40_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*f_41_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 3*U[2]) - (24*f_40_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 3*U[2]) - (24*f_41_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_40_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (24*cos2th*f_41_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 3*U[2]) + (28*cos2th*f_40_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_41_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*f_40_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*f_41_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 3*U[2]) - (28*f_40_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 3*U[2]) - (28*f_41_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_40_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_41_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 3*U[2]) - (28*f_40_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*f_41_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_40_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 3*U[2]) + (28*cos2th*f_41_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*cos2th*f_40_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*cos2th*f_41_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*f_40_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 3*U[2]) - (28*f_41_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 3*U[2]) + (28*f_40_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*f_41_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 3*U[2]) - (28*cos2th*f_40_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 3*U[2]) - (28*cos2th*f_41_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_40_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_41_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*f_40_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*f_41_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_40_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_41_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*f_40_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*f_41_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 3*U[2]) - (28*f_40_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 3*U[2]) - (28*f_41_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_40_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (28*cos2th*f_41_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 3*U[2]) + (6*cos2th*f_38_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_39_2*f[18]*f[20]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*f_38_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*f_39_2*sin2th*f[19]*f[20]*f[50]*f[52])/(U[1] - 2*U[2]) - (6*f_38_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 2*U[2]) - (6*f_39_2*sin2th*f[18]*f[21]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_38_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_39_2*f[19]*f[21]*f[50]*f[52])/(U[1] - 2*U[2]) - (6*f_38_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*f_39_2*sin2th*f[18]*f[20]*f[51]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_38_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 2*U[2]) + (6*cos2th*f_39_2*f[19]*f[20]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*cos2th*f_38_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*cos2th*f_39_2*f[18]*f[21]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*f_38_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 2*U[2]) - (6*f_39_2*sin2th*f[19]*f[21]*f[51]*f[52])/(U[1] - 2*U[2]) + (6*f_38_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*f_39_2*sin2th*f[18]*f[20]*f[50]*f[53])/(U[1] - 2*U[2]) - (6*cos2th*f_38_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 2*U[2]) - (6*cos2th*f_39_2*f[19]*f[20]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_38_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_39_2*f[18]*f[21]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*f_38_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*f_39_2*sin2th*f[19]*f[21]*f[50]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_38_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_39_2*f[18]*f[20]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*f_38_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*f_39_2*sin2th*f[19]*f[20]*f[51]*f[53])/(U[1] - 2*U[2]) - (6*f_38_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 2*U[2]) - (6*f_39_2*sin2th*f[18]*f[21]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_38_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 2*U[2]) + (6*cos2th*f_39_2*f[19]*f[21]*f[51]*f[53])/(U[1] - 2*U[2]) + (12*cos2th*f_38_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_39_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*f_38_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*f_39_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - 2*U[2]) - (12*f_38_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 2*U[2]) - (12*f_39_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_38_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_39_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - 2*U[2]) - (12*f_38_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*f_39_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_38_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 2*U[2]) + (12*cos2th*f_39_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*cos2th*f_38_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*cos2th*f_39_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*f_38_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 2*U[2]) - (12*f_39_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - 2*U[2]) + (12*f_38_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*f_39_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - 2*U[2]) - (12*cos2th*f_38_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 2*U[2]) - (12*cos2th*f_39_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_38_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_39_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*f_38_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*f_39_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_38_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_39_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*f_38_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*f_39_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - 2*U[2]) - (12*f_38_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 2*U[2]) - (12*f_39_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_38_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (12*cos2th*f_39_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - 2*U[2]) + (15*cos2th*f_38_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_39_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*f_38_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*f_39_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - 2*U[2]) - (15*f_38_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 2*U[2]) - (15*f_39_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_38_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_39_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - 2*U[2]) - (15*f_38_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*f_39_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_38_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 2*U[2]) + (15*cos2th*f_39_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*cos2th*f_38_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*cos2th*f_39_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*f_38_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 2*U[2]) - (15*f_39_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - 2*U[2]) + (15*f_38_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*f_39_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - 2*U[2]) - (15*cos2th*f_38_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 2*U[2]) - (15*cos2th*f_39_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_38_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_39_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*f_38_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*f_39_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_38_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_39_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*f_38_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*f_39_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - 2*U[2]) - (15*f_38_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 2*U[2]) - (15*f_39_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_38_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (15*cos2th*f_39_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - 2*U[2]) + (18*cos2th*f_38_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_39_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*f_38_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*f_39_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - 2*U[2]) - (18*f_38_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 2*U[2]) - (18*f_39_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_38_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_39_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - 2*U[2]) - (18*f_38_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*f_39_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_38_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 2*U[2]) + (18*cos2th*f_39_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*cos2th*f_38_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*cos2th*f_39_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*f_38_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 2*U[2]) - (18*f_39_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - 2*U[2]) + (18*f_38_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*f_39_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - 2*U[2]) - (18*cos2th*f_38_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 2*U[2]) - (18*cos2th*f_39_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_38_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_39_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*f_38_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*f_39_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_38_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_39_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*f_38_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*f_39_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - 2*U[2]) - (18*f_38_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 2*U[2]) - (18*f_39_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_38_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (18*cos2th*f_39_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - 2*U[2]) + (21*cos2th*f_38_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_39_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*f_38_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*f_39_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - 2*U[2]) - (21*f_38_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 2*U[2]) - (21*f_39_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_38_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_39_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - 2*U[2]) - (21*f_38_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*f_39_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_38_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 2*U[2]) + (21*cos2th*f_39_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*cos2th*f_38_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*cos2th*f_39_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*f_38_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 2*U[2]) - (21*f_39_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - 2*U[2]) + (21*f_38_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*f_39_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - 2*U[2]) - (21*cos2th*f_38_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 2*U[2]) - (21*cos2th*f_39_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_38_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_39_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*f_38_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*f_39_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_38_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_39_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*f_38_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*f_39_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - 2*U[2]) - (21*f_38_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 2*U[2]) - (21*f_39_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_38_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (21*cos2th*f_39_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - 2*U[2]) + (6*cos2th*f_36_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_37_2*f[20]*f[22]*f[52]*f[54])/(2*U[1] - U[2]) + (6*f_36_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - U[2]) + (6*f_37_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2*U[1] - U[2]) - (6*f_36_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - U[2]) - (6*f_37_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_36_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_37_2*f[21]*f[23]*f[52]*f[54])/(2*U[1] - U[2]) - (6*f_36_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - U[2]) - (6*f_37_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_36_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - U[2]) + (6*cos2th*f_37_2*f[21]*f[22]*f[53]*f[54])/(2*U[1] - U[2]) - (6*cos2th*f_36_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - U[2]) - (6*cos2th*f_37_2*f[20]*f[23]*f[53]*f[54])/(2*U[1] - U[2]) - (6*f_36_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - U[2]) - (6*f_37_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2*U[1] - U[2]) + (6*f_36_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - U[2]) + (6*f_37_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2*U[1] - U[2]) - (6*cos2th*f_36_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - U[2]) - (6*cos2th*f_37_2*f[21]*f[22]*f[52]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_36_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_37_2*f[20]*f[23]*f[52]*f[55])/(2*U[1] - U[2]) + (6*f_36_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - U[2]) + (6*f_37_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_36_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_37_2*f[20]*f[22]*f[53]*f[55])/(2*U[1] - U[2]) + (6*f_36_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - U[2]) + (6*f_37_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2*U[1] - U[2]) - (6*f_36_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - U[2]) - (6*f_37_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_36_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - U[2]) + (6*cos2th*f_37_2*f[21]*f[23]*f[53]*f[55])/(2*U[1] - U[2]) + (8*cos2th*f_36_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_37_2*f[22]*f[24]*f[54]*f[56])/(3*U[1] - U[2]) + (8*f_36_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - U[2]) + (8*f_37_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3*U[1] - U[2]) - (8*f_36_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - U[2]) - (8*f_37_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_36_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_37_2*f[23]*f[25]*f[54]*f[56])/(3*U[1] - U[2]) - (8*f_36_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - U[2]) - (8*f_37_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_36_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - U[2]) + (8*cos2th*f_37_2*f[23]*f[24]*f[55]*f[56])/(3*U[1] - U[2]) - (8*cos2th*f_36_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - U[2]) - (8*cos2th*f_37_2*f[22]*f[25]*f[55]*f[56])/(3*U[1] - U[2]) - (8*f_36_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - U[2]) - (8*f_37_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3*U[1] - U[2]) + (8*f_36_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - U[2]) + (8*f_37_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3*U[1] - U[2]) - (8*cos2th*f_36_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - U[2]) - (8*cos2th*f_37_2*f[23]*f[24]*f[54]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_36_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_37_2*f[22]*f[25]*f[54]*f[57])/(3*U[1] - U[2]) + (8*f_36_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - U[2]) + (8*f_37_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_36_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_37_2*f[22]*f[24]*f[55]*f[57])/(3*U[1] - U[2]) + (8*f_36_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - U[2]) + (8*f_37_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3*U[1] - U[2]) - (8*f_36_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - U[2]) - (8*f_37_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_36_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - U[2]) + (8*cos2th*f_37_2*f[23]*f[25]*f[55]*f[57])/(3*U[1] - U[2]) + (10*cos2th*f_36_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_37_2*f[24]*f[26]*f[56]*f[58])/(4*U[1] - U[2]) + (10*f_36_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - U[2]) + (10*f_37_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4*U[1] - U[2]) - (10*f_36_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - U[2]) - (10*f_37_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_36_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_37_2*f[25]*f[27]*f[56]*f[58])/(4*U[1] - U[2]) - (10*f_36_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - U[2]) - (10*f_37_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_36_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - U[2]) + (10*cos2th*f_37_2*f[25]*f[26]*f[57]*f[58])/(4*U[1] - U[2]) - (10*cos2th*f_36_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - U[2]) - (10*cos2th*f_37_2*f[24]*f[27]*f[57]*f[58])/(4*U[1] - U[2]) - (10*f_36_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - U[2]) - (10*f_37_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4*U[1] - U[2]) + (10*f_36_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - U[2]) + (10*f_37_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4*U[1] - U[2]) - (10*cos2th*f_36_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - U[2]) - (10*cos2th*f_37_2*f[25]*f[26]*f[56]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_36_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_37_2*f[24]*f[27]*f[56]*f[59])/(4*U[1] - U[2]) + (10*f_36_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - U[2]) + (10*f_37_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_36_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_37_2*f[24]*f[26]*f[57]*f[59])/(4*U[1] - U[2]) + (10*f_36_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - U[2]) + (10*f_37_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4*U[1] - U[2]) - (10*f_36_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - U[2]) - (10*f_37_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_36_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - U[2]) + (10*cos2th*f_37_2*f[25]*f[27]*f[57]*f[59])/(4*U[1] - U[2]) + (12*cos2th*f_36_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_37_2*f[26]*f[28]*f[58]*f[60])/(5*U[1] - U[2]) + (12*f_36_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - U[2]) + (12*f_37_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5*U[1] - U[2]) - (12*f_36_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - U[2]) - (12*f_37_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_36_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_37_2*f[27]*f[29]*f[58]*f[60])/(5*U[1] - U[2]) - (12*f_36_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - U[2]) - (12*f_37_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_36_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - U[2]) + (12*cos2th*f_37_2*f[27]*f[28]*f[59]*f[60])/(5*U[1] - U[2]) - (12*cos2th*f_36_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - U[2]) - (12*cos2th*f_37_2*f[26]*f[29]*f[59]*f[60])/(5*U[1] - U[2]) - (12*f_36_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - U[2]) - (12*f_37_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5*U[1] - U[2]) + (12*f_36_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - U[2]) + (12*f_37_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5*U[1] - U[2]) - (12*cos2th*f_36_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - U[2]) - (12*cos2th*f_37_2*f[27]*f[28]*f[58]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_36_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_37_2*f[26]*f[29]*f[58]*f[61])/(5*U[1] - U[2]) + (12*f_36_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - U[2]) + (12*f_37_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_36_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_37_2*f[26]*f[28]*f[59]*f[61])/(5*U[1] - U[2]) + (12*f_36_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - U[2]) + (12*f_37_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5*U[1] - U[2]) - (12*f_36_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - U[2]) - (12*f_37_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_36_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - U[2]) + (12*cos2th*f_37_2*f[27]*f[29]*f[59]*f[61])/(5*U[1] - U[2]) + (14*cos2th*f_36_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_37_2*f[28]*f[30]*f[60]*f[62])/(6*U[1] - U[2]) + (14*f_36_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - U[2]) + (14*f_37_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6*U[1] - U[2]) - (14*f_36_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - U[2]) - (14*f_37_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_36_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_37_2*f[29]*f[31]*f[60]*f[62])/(6*U[1] - U[2]) - (14*f_36_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - U[2]) - (14*f_37_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_36_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - U[2]) + (14*cos2th*f_37_2*f[29]*f[30]*f[61]*f[62])/(6*U[1] - U[2]) - (14*cos2th*f_36_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - U[2]) - (14*cos2th*f_37_2*f[28]*f[31]*f[61]*f[62])/(6*U[1] - U[2]) - (14*f_36_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - U[2]) - (14*f_37_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6*U[1] - U[2]) + (14*f_36_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - U[2]) + (14*f_37_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6*U[1] - U[2]) - (14*cos2th*f_36_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - U[2]) - (14*cos2th*f_37_2*f[29]*f[30]*f[60]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_36_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_37_2*f[28]*f[31]*f[60]*f[63])/(6*U[1] - U[2]) + (14*f_36_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - U[2]) + (14*f_37_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_36_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_37_2*f[28]*f[30]*f[61]*f[63])/(6*U[1] - U[2]) + (14*f_36_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - U[2]) + (14*f_37_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6*U[1] - U[2]) - (14*f_36_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - U[2]) - (14*f_37_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_36_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - U[2]) + (14*cos2th*f_37_2*f[29]*f[31]*f[61]*f[63])/(6*U[1] - U[2]) - (2*cos2th*f_36_2*f[16]*f[18]*f[48]*f[50])/U[2] - (2*cos2th*f_37_2*f[16]*f[18]*f[48]*f[50])/U[2] - (3*cos2th*f_38_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) - (3*cos2th*f_39_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) - (4*cos2th*f_40_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) - (4*cos2th*f_41_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) - (5*cos2th*f_42_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) - (5*cos2th*f_43_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) - (6*cos2th*f_44_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) - (6*cos2th*f_45_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) - (7*cos2th*f_46_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) - (7*cos2th*f_47_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] - (2*f_37_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] - (3*f_38_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) - (3*f_39_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) - (4*f_40_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) - (4*f_41_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) - (5*f_42_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) - (5*f_43_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) - (6*f_44_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) - (6*f_45_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) - (7*f_46_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) - (7*f_47_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] + (2*f_37_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] + (3*f_38_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) + (3*f_39_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) + (4*f_40_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) + (4*f_41_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) + (5*f_42_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) + (5*f_43_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) + (6*f_44_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) + (6*f_45_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) + (7*f_46_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) + (7*f_47_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) - (2*cos2th*f_36_2*f[17]*f[19]*f[48]*f[50])/U[2] - (2*cos2th*f_37_2*f[17]*f[19]*f[48]*f[50])/U[2] - (3*cos2th*f_38_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) - (3*cos2th*f_39_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) - (4*cos2th*f_40_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) - (4*cos2th*f_41_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) - (5*cos2th*f_42_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) - (5*cos2th*f_43_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) - (6*cos2th*f_44_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) - (6*cos2th*f_45_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) - (7*cos2th*f_46_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) - (7*cos2th*f_47_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] + (2*f_37_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] + (3*f_38_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) + (3*f_39_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) + (4*f_40_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) + (4*f_41_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) + (5*f_42_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) + (5*f_43_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) + (6*f_44_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) + (6*f_45_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) + (7*f_46_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) + (7*f_47_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) - (2*cos2th*f_36_2*f[17]*f[18]*f[49]*f[50])/U[2] - (2*cos2th*f_37_2*f[17]*f[18]*f[49]*f[50])/U[2] - (3*cos2th*f_38_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) - (3*cos2th*f_39_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) - (4*cos2th*f_40_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) - (4*cos2th*f_41_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) - (5*cos2th*f_42_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) - (5*cos2th*f_43_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) - (6*cos2th*f_44_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) - (6*cos2th*f_45_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) - (7*cos2th*f_46_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) - (7*cos2th*f_47_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) + (2*cos2th*f_36_2*f[16]*f[19]*f[49]*f[50])/U[2] + (2*cos2th*f_37_2*f[16]*f[19]*f[49]*f[50])/U[2] + (3*cos2th*f_38_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) + (3*cos2th*f_39_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) + (4*cos2th*f_40_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) + (4*cos2th*f_41_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) + (5*cos2th*f_42_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) + (5*cos2th*f_43_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) + (6*cos2th*f_44_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) + (6*cos2th*f_45_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) + (7*cos2th*f_46_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) + (7*cos2th*f_47_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] + (2*f_37_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] + (3*f_38_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) + (3*f_39_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) + (4*f_40_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) + (4*f_41_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) + (5*f_42_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) + (5*f_43_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) + (6*f_44_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) + (6*f_45_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) + (7*f_46_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) + (7*f_47_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] - (2*f_37_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] - (3*f_38_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) - (3*f_39_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) - (4*f_40_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) - (4*f_41_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) - (5*f_42_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) - (5*f_43_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) - (6*f_44_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) - (6*f_45_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) - (7*f_46_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) - (7*f_47_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_36_2*f[17]*f[18]*f[48]*f[51])/U[2] + (2*cos2th*f_37_2*f[17]*f[18]*f[48]*f[51])/U[2] + (3*cos2th*f_38_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) + (3*cos2th*f_39_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) + (4*cos2th*f_40_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) + (4*cos2th*f_41_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) + (5*cos2th*f_42_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) + (5*cos2th*f_43_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) + (6*cos2th*f_44_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) + (6*cos2th*f_45_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) + (7*cos2th*f_46_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) + (7*cos2th*f_47_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_36_2*f[16]*f[19]*f[48]*f[51])/U[2] - (2*cos2th*f_37_2*f[16]*f[19]*f[48]*f[51])/U[2] - (3*cos2th*f_38_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) - (3*cos2th*f_39_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) - (4*cos2th*f_40_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) - (4*cos2th*f_41_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) - (5*cos2th*f_42_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) - (5*cos2th*f_43_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) - (6*cos2th*f_44_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) - (6*cos2th*f_45_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) - (7*cos2th*f_46_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) - (7*cos2th*f_47_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) - (2*f_36_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] - (2*f_37_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] - (3*f_38_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) - (3*f_39_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) - (4*f_40_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) - (4*f_41_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) - (5*f_42_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) - (5*f_43_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) - (6*f_44_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) - (6*f_45_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) - (7*f_46_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) - (7*f_47_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_36_2*f[16]*f[18]*f[49]*f[51])/U[2] - (2*cos2th*f_37_2*f[16]*f[18]*f[49]*f[51])/U[2] - (3*cos2th*f_38_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) - (3*cos2th*f_39_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) - (4*cos2th*f_40_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) - (4*cos2th*f_41_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) - (5*cos2th*f_42_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) - (5*cos2th*f_43_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) - (6*cos2th*f_44_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) - (6*cos2th*f_45_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) - (7*cos2th*f_46_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) - (7*cos2th*f_47_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) - (2*f_36_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] - (2*f_37_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] - (3*f_38_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) - (3*f_39_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) - (4*f_40_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) - (4*f_41_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) - (5*f_42_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) - (5*f_43_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) - (6*f_44_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) - (6*f_45_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) - (7*f_46_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) - (7*f_47_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) + (2*f_36_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] + (2*f_37_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] + (3*f_38_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) + (3*f_39_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) + (4*f_40_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) + (4*f_41_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) + (5*f_42_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) + (5*f_43_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) + (6*f_44_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) + (6*f_45_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) + (7*f_46_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) + (7*f_47_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) - (2*cos2th*f_36_2*f[17]*f[19]*f[49]*f[51])/U[2] - (2*cos2th*f_37_2*f[17]*f[19]*f[49]*f[51])/U[2] - (3*cos2th*f_38_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) - (3*cos2th*f_39_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) - (4*cos2th*f_40_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) - (4*cos2th*f_41_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) - (5*cos2th*f_42_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) - (5*cos2th*f_43_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) - (6*cos2th*f_44_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) - (6*cos2th*f_45_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) - (7*cos2th*f_46_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) - (7*cos2th*f_47_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + (J[0]*J[1]*((-2*cos2th*f_18_2*f[0]*f[2]*f[32]*f[34])/U[1] - (2*cos2th*f_19_2*f[0]*f[2]*f[32]*f[34])/U[1] - (3*cos2th*f_20_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) - (3*cos2th*f_21_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) - (4*cos2th*f_22_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) - (4*cos2th*f_23_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) - (5*cos2th*f_24_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) - (5*cos2th*f_25_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) - (6*cos2th*f_26_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) - (6*cos2th*f_27_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) - (7*cos2th*f_28_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) - (7*cos2th*f_29_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] - (2*f_19_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] - (3*f_20_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) - (3*f_21_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) - (4*f_22_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) - (4*f_23_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) - (5*f_24_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) - (5*f_25_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) - (6*f_26_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) - (6*f_27_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) - (7*f_28_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) - (7*f_29_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] + (2*f_19_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] + (3*f_20_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) + (3*f_21_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) + (4*f_22_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) + (4*f_23_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) + (5*f_24_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) + (5*f_25_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) + (6*f_26_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) + (6*f_27_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) + (7*f_28_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) + (7*f_29_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) - (2*cos2th*f_18_2*f[1]*f[3]*f[32]*f[34])/U[1] - (2*cos2th*f_19_2*f[1]*f[3]*f[32]*f[34])/U[1] - (3*cos2th*f_20_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) - (3*cos2th*f_21_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) - (4*cos2th*f_22_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) - (4*cos2th*f_23_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) - (5*cos2th*f_24_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) - (5*cos2th*f_25_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) - (6*cos2th*f_26_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) - (6*cos2th*f_27_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) - (7*cos2th*f_28_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) - (7*cos2th*f_29_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] + (2*f_19_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] + (3*f_20_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) + (3*f_21_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) + (4*f_22_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) + (4*f_23_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) + (5*f_24_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) + (5*f_25_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) + (6*f_26_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) + (6*f_27_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) + (7*f_28_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) + (7*f_29_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) - (2*cos2th*f_18_2*f[1]*f[2]*f[33]*f[34])/U[1] - (2*cos2th*f_19_2*f[1]*f[2]*f[33]*f[34])/U[1] - (3*cos2th*f_20_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) - (3*cos2th*f_21_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) - (4*cos2th*f_22_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) - (4*cos2th*f_23_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) - (5*cos2th*f_24_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) - (5*cos2th*f_25_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) - (6*cos2th*f_26_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) - (6*cos2th*f_27_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) - (7*cos2th*f_28_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) - (7*cos2th*f_29_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) + (2*cos2th*f_18_2*f[0]*f[3]*f[33]*f[34])/U[1] + (2*cos2th*f_19_2*f[0]*f[3]*f[33]*f[34])/U[1] + (3*cos2th*f_20_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) + (3*cos2th*f_21_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) + (4*cos2th*f_22_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) + (4*cos2th*f_23_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) + (5*cos2th*f_24_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) + (5*cos2th*f_25_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) + (6*cos2th*f_26_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) + (6*cos2th*f_27_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) + (7*cos2th*f_28_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) + (7*cos2th*f_29_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) + (2*f_18_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] + (2*f_19_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] + (3*f_20_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) + (3*f_21_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) + (4*f_22_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) + (4*f_23_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) + (5*f_24_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) + (5*f_25_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) + (6*f_26_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) + (6*f_27_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) + (7*f_28_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) + (7*f_29_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) - (2*f_18_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] - (2*f_19_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] - (3*f_20_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) - (3*f_21_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) - (4*f_22_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) - (4*f_23_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) - (5*f_24_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) - (5*f_25_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) - (6*f_26_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) - (6*f_27_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) - (7*f_28_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) - (7*f_29_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[1]*f[2]*f[32]*f[35])/U[1] + (2*cos2th*f_19_2*f[1]*f[2]*f[32]*f[35])/U[1] + (3*cos2th*f_20_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) + (3*cos2th*f_21_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) + (4*cos2th*f_22_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) + (4*cos2th*f_23_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) + (5*cos2th*f_24_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) + (5*cos2th*f_25_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) + (6*cos2th*f_26_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) + (6*cos2th*f_27_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) + (7*cos2th*f_28_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) + (7*cos2th*f_29_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_18_2*f[0]*f[3]*f[32]*f[35])/U[1] - (2*cos2th*f_19_2*f[0]*f[3]*f[32]*f[35])/U[1] - (3*cos2th*f_20_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) - (3*cos2th*f_21_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) - (4*cos2th*f_22_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) - (4*cos2th*f_23_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) - (5*cos2th*f_24_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) - (5*cos2th*f_25_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) - (6*cos2th*f_26_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) - (6*cos2th*f_27_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) - (7*cos2th*f_28_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) - (7*cos2th*f_29_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) - (2*f_18_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] - (2*f_19_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] - (3*f_20_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) - (3*f_21_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) - (4*f_22_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) - (4*f_23_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) - (5*f_24_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) - (5*f_25_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) - (6*f_26_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) - (6*f_27_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) - (7*f_28_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) - (7*f_29_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_18_2*f[0]*f[2]*f[33]*f[35])/U[1] - (2*cos2th*f_19_2*f[0]*f[2]*f[33]*f[35])/U[1] - (3*cos2th*f_20_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) - (3*cos2th*f_21_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) - (4*cos2th*f_22_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) - (4*cos2th*f_23_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) - (5*cos2th*f_24_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) - (5*cos2th*f_25_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) - (6*cos2th*f_26_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) - (6*cos2th*f_27_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) - (7*cos2th*f_28_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) - (7*cos2th*f_29_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) - (2*f_18_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] - (2*f_19_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] - (3*f_20_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) - (3*f_21_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) - (4*f_22_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) - (4*f_23_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) - (5*f_24_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) - (5*f_25_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) - (6*f_26_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) - (6*f_27_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) - (7*f_28_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) - (7*f_29_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) + (2*f_18_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] + (2*f_19_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] + (3*f_20_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) + (3*f_21_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) + (4*f_22_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) + (4*f_23_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) + (5*f_24_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) + (5*f_25_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) + (6*f_26_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) + (6*f_27_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) + (7*f_28_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) + (7*f_29_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) - (2*cos2th*f_18_2*f[1]*f[3]*f[33]*f[35])/U[1] - (2*cos2th*f_19_2*f[1]*f[3]*f[33]*f[35])/U[1] - (3*cos2th*f_20_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) - (3*cos2th*f_21_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) - (4*cos2th*f_22_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) - (4*cos2th*f_23_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) - (5*cos2th*f_24_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) - (5*cos2th*f_25_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) - (6*cos2th*f_26_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) - (6*cos2th*f_27_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) - (7*cos2th*f_28_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) - (7*cos2th*f_29_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (2*cos2th*f_16_2*f[2]*f[4]*f[34]*f[36])/U[2] + (2*cos2th*f_17_2*f[2]*f[4]*f[34]*f[36])/U[2] + (2*f_16_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[2] + (2*f_17_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[2] - (2*f_16_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[2] - (2*f_17_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[2] + (2*cos2th*f_16_2*f[3]*f[5]*f[34]*f[36])/U[2] + (2*cos2th*f_17_2*f[3]*f[5]*f[34]*f[36])/U[2] - (2*f_16_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[2] - (2*f_17_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[2] + (2*cos2th*f_16_2*f[3]*f[4]*f[35]*f[36])/U[2] + (2*cos2th*f_17_2*f[3]*f[4]*f[35]*f[36])/U[2] - (2*cos2th*f_16_2*f[2]*f[5]*f[35]*f[36])/U[2] - (2*cos2th*f_17_2*f[2]*f[5]*f[35]*f[36])/U[2] - (2*f_16_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[2] - (2*f_17_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[2] + (2*f_16_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[2] + (2*f_17_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[2] - (2*cos2th*f_16_2*f[3]*f[4]*f[34]*f[37])/U[2] - (2*cos2th*f_17_2*f[3]*f[4]*f[34]*f[37])/U[2] + (2*cos2th*f_16_2*f[2]*f[5]*f[34]*f[37])/U[2] + (2*cos2th*f_17_2*f[2]*f[5]*f[34]*f[37])/U[2] + (2*f_16_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[2] + (2*f_17_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[2] + (2*cos2th*f_16_2*f[2]*f[4]*f[35]*f[37])/U[2] + (2*cos2th*f_17_2*f[2]*f[4]*f[35]*f[37])/U[2] + (2*f_16_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[2] + (2*f_17_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[2] - (2*f_16_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[2] - (2*f_17_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[2] + (2*cos2th*f_16_2*f[3]*f[5]*f[35]*f[37])/U[2] + (2*cos2th*f_17_2*f[3]*f[5]*f[35]*f[37])/U[2] + (3*cos2th*f_16_2*f[4]*f[6]*f[36]*f[38])/(2.*U[2]) + (3*cos2th*f_17_2*f[4]*f[6]*f[36]*f[38])/(2.*U[2]) + (3*f_16_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[2]) + (3*f_17_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[2]) - (3*f_16_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[2]) - (3*f_17_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[2]) + (3*cos2th*f_16_2*f[5]*f[7]*f[36]*f[38])/(2.*U[2]) + (3*cos2th*f_17_2*f[5]*f[7]*f[36]*f[38])/(2.*U[2]) - (3*f_16_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[2]) - (3*f_17_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[2]) + (3*cos2th*f_16_2*f[5]*f[6]*f[37]*f[38])/(2.*U[2]) + (3*cos2th*f_17_2*f[5]*f[6]*f[37]*f[38])/(2.*U[2]) - (3*cos2th*f_16_2*f[4]*f[7]*f[37]*f[38])/(2.*U[2]) - (3*cos2th*f_17_2*f[4]*f[7]*f[37]*f[38])/(2.*U[2]) - (3*f_16_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[2]) - (3*f_17_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[2]) + (3*f_16_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[2]) + (3*f_17_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_16_2*f[5]*f[6]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_17_2*f[5]*f[6]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_16_2*f[4]*f[7]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_17_2*f[4]*f[7]*f[36]*f[39])/(2.*U[2]) + (3*f_16_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[2]) + (3*f_17_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_16_2*f[4]*f[6]*f[37]*f[39])/(2.*U[2]) + (3*cos2th*f_17_2*f[4]*f[6]*f[37]*f[39])/(2.*U[2]) + (3*f_16_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[2]) + (3*f_17_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[2]) - (3*f_16_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[2]) - (3*f_17_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[2]) + (3*cos2th*f_16_2*f[5]*f[7]*f[37]*f[39])/(2.*U[2]) + (3*cos2th*f_17_2*f[5]*f[7]*f[37]*f[39])/(2.*U[2]) + (4*cos2th*f_16_2*f[6]*f[8]*f[38]*f[40])/(3.*U[2]) + (4*cos2th*f_17_2*f[6]*f[8]*f[38]*f[40])/(3.*U[2]) + (4*f_16_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[2]) + (4*f_17_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[2]) - (4*f_16_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[2]) - (4*f_17_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[2]) + (4*cos2th*f_16_2*f[7]*f[9]*f[38]*f[40])/(3.*U[2]) + (4*cos2th*f_17_2*f[7]*f[9]*f[38]*f[40])/(3.*U[2]) - (4*f_16_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[2]) - (4*f_17_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[2]) + (4*cos2th*f_16_2*f[7]*f[8]*f[39]*f[40])/(3.*U[2]) + (4*cos2th*f_17_2*f[7]*f[8]*f[39]*f[40])/(3.*U[2]) - (4*cos2th*f_16_2*f[6]*f[9]*f[39]*f[40])/(3.*U[2]) - (4*cos2th*f_17_2*f[6]*f[9]*f[39]*f[40])/(3.*U[2]) - (4*f_16_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[2]) - (4*f_17_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[2]) + (4*f_16_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[2]) + (4*f_17_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_16_2*f[7]*f[8]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_17_2*f[7]*f[8]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_16_2*f[6]*f[9]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_17_2*f[6]*f[9]*f[38]*f[41])/(3.*U[2]) + (4*f_16_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[2]) + (4*f_17_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_16_2*f[6]*f[8]*f[39]*f[41])/(3.*U[2]) + (4*cos2th*f_17_2*f[6]*f[8]*f[39]*f[41])/(3.*U[2]) + (4*f_16_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[2]) + (4*f_17_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[2]) - (4*f_16_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[2]) - (4*f_17_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[2]) + (4*cos2th*f_16_2*f[7]*f[9]*f[39]*f[41])/(3.*U[2]) + (4*cos2th*f_17_2*f[7]*f[9]*f[39]*f[41])/(3.*U[2]) + (5*cos2th*f_16_2*f[8]*f[10]*f[40]*f[42])/(4.*U[2]) + (5*cos2th*f_17_2*f[8]*f[10]*f[40]*f[42])/(4.*U[2]) + (5*f_16_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[2]) + (5*f_17_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[2]) - (5*f_16_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[2]) - (5*f_17_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[2]) + (5*cos2th*f_16_2*f[9]*f[11]*f[40]*f[42])/(4.*U[2]) + (5*cos2th*f_17_2*f[9]*f[11]*f[40]*f[42])/(4.*U[2]) - (5*f_16_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[2]) - (5*f_17_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[2]) + (5*cos2th*f_16_2*f[9]*f[10]*f[41]*f[42])/(4.*U[2]) + (5*cos2th*f_17_2*f[9]*f[10]*f[41]*f[42])/(4.*U[2]) - (5*cos2th*f_16_2*f[8]*f[11]*f[41]*f[42])/(4.*U[2]) - (5*cos2th*f_17_2*f[8]*f[11]*f[41]*f[42])/(4.*U[2]) - (5*f_16_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[2]) - (5*f_17_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[2]) + (5*f_16_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[2]) + (5*f_17_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_16_2*f[9]*f[10]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_17_2*f[9]*f[10]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_16_2*f[8]*f[11]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_17_2*f[8]*f[11]*f[40]*f[43])/(4.*U[2]) + (5*f_16_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[2]) + (5*f_17_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_16_2*f[8]*f[10]*f[41]*f[43])/(4.*U[2]) + (5*cos2th*f_17_2*f[8]*f[10]*f[41]*f[43])/(4.*U[2]) + (5*f_16_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[2]) + (5*f_17_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[2]) - (5*f_16_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[2]) - (5*f_17_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[2]) + (5*cos2th*f_16_2*f[9]*f[11]*f[41]*f[43])/(4.*U[2]) + (5*cos2th*f_17_2*f[9]*f[11]*f[41]*f[43])/(4.*U[2]) + (6*cos2th*f_16_2*f[10]*f[12]*f[42]*f[44])/(5.*U[2]) + (6*cos2th*f_17_2*f[10]*f[12]*f[42]*f[44])/(5.*U[2]) + (6*f_16_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[2]) + (6*f_17_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[2]) - (6*f_16_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[2]) - (6*f_17_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[2]) + (6*cos2th*f_16_2*f[11]*f[13]*f[42]*f[44])/(5.*U[2]) + (6*cos2th*f_17_2*f[11]*f[13]*f[42]*f[44])/(5.*U[2]) - (6*f_16_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[2]) - (6*f_17_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[2]) + (6*cos2th*f_16_2*f[11]*f[12]*f[43]*f[44])/(5.*U[2]) + (6*cos2th*f_17_2*f[11]*f[12]*f[43]*f[44])/(5.*U[2]) - (6*cos2th*f_16_2*f[10]*f[13]*f[43]*f[44])/(5.*U[2]) - (6*cos2th*f_17_2*f[10]*f[13]*f[43]*f[44])/(5.*U[2]) - (6*f_16_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[2]) - (6*f_17_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[2]) + (6*f_16_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[2]) + (6*f_17_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_16_2*f[11]*f[12]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_17_2*f[11]*f[12]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_16_2*f[10]*f[13]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_17_2*f[10]*f[13]*f[42]*f[45])/(5.*U[2]) + (6*f_16_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[2]) + (6*f_17_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_16_2*f[10]*f[12]*f[43]*f[45])/(5.*U[2]) + (6*cos2th*f_17_2*f[10]*f[12]*f[43]*f[45])/(5.*U[2]) + (6*f_16_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[2]) + (6*f_17_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[2]) - (6*f_16_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[2]) - (6*f_17_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[2]) + (6*cos2th*f_16_2*f[11]*f[13]*f[43]*f[45])/(5.*U[2]) + (6*cos2th*f_17_2*f[11]*f[13]*f[43]*f[45])/(5.*U[2]) + (7*cos2th*f_16_2*f[12]*f[14]*f[44]*f[46])/(6.*U[2]) + (7*cos2th*f_17_2*f[12]*f[14]*f[44]*f[46])/(6.*U[2]) + (7*f_16_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[2]) + (7*f_17_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[2]) - (7*f_16_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[2]) - (7*f_17_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[2]) + (7*cos2th*f_16_2*f[13]*f[15]*f[44]*f[46])/(6.*U[2]) + (7*cos2th*f_17_2*f[13]*f[15]*f[44]*f[46])/(6.*U[2]) - (7*f_16_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[2]) - (7*f_17_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[2]) + (7*cos2th*f_16_2*f[13]*f[14]*f[45]*f[46])/(6.*U[2]) + (7*cos2th*f_17_2*f[13]*f[14]*f[45]*f[46])/(6.*U[2]) - (7*cos2th*f_16_2*f[12]*f[15]*f[45]*f[46])/(6.*U[2]) - (7*cos2th*f_17_2*f[12]*f[15]*f[45]*f[46])/(6.*U[2]) - (7*f_16_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[2]) - (7*f_17_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[2]) + (7*f_16_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[2]) + (7*f_17_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_16_2*f[13]*f[14]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_17_2*f[13]*f[14]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_16_2*f[12]*f[15]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_17_2*f[12]*f[15]*f[44]*f[47])/(6.*U[2]) + (7*f_16_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[2]) + (7*f_17_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_16_2*f[12]*f[14]*f[45]*f[47])/(6.*U[2]) + (7*cos2th*f_17_2*f[12]*f[14]*f[45]*f[47])/(6.*U[2]) + (7*f_16_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[2]) + (7*f_17_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[2]) - (7*f_16_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[2]) - (7*f_17_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[2]) + (7*cos2th*f_16_2*f[13]*f[15]*f[45]*f[47])/(6.*U[2]) + (7*cos2th*f_17_2*f[13]*f[15]*f[45]*f[47])/(6.*U[2]) + (14*cos2th*f_28_2*f[2]*f[4]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_29_2*f[2]*f[4]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*f_28_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*f_29_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-6*U[1] + U[2]) - (14*f_28_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-6*U[1] + U[2]) - (14*f_29_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_28_2*f[3]*f[5]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_29_2*f[3]*f[5]*f[34]*f[36])/(-6*U[1] + U[2]) - (14*f_28_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*f_29_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_28_2*f[3]*f[4]*f[35]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_29_2*f[3]*f[4]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*cos2th*f_28_2*f[2]*f[5]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*cos2th*f_29_2*f[2]*f[5]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*f_28_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*f_29_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-6*U[1] + U[2]) + (14*f_28_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*f_29_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-6*U[1] + U[2]) - (14*cos2th*f_28_2*f[3]*f[4]*f[34]*f[37])/(-6*U[1] + U[2]) - (14*cos2th*f_29_2*f[3]*f[4]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_28_2*f[2]*f[5]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_29_2*f[2]*f[5]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*f_28_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*f_29_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_28_2*f[2]*f[4]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_29_2*f[2]*f[4]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*f_28_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*f_29_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-6*U[1] + U[2]) - (14*f_28_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-6*U[1] + U[2]) - (14*f_29_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_28_2*f[3]*f[5]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_29_2*f[3]*f[5]*f[35]*f[37])/(-6*U[1] + U[2]) + (12*cos2th*f_26_2*f[2]*f[4]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_27_2*f[2]*f[4]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*f_26_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*f_27_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-5*U[1] + U[2]) - (12*f_26_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-5*U[1] + U[2]) - (12*f_27_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_26_2*f[3]*f[5]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_27_2*f[3]*f[5]*f[34]*f[36])/(-5*U[1] + U[2]) - (12*f_26_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*f_27_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_26_2*f[3]*f[4]*f[35]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_27_2*f[3]*f[4]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*cos2th*f_26_2*f[2]*f[5]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*cos2th*f_27_2*f[2]*f[5]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*f_26_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*f_27_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-5*U[1] + U[2]) + (12*f_26_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*f_27_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-5*U[1] + U[2]) - (12*cos2th*f_26_2*f[3]*f[4]*f[34]*f[37])/(-5*U[1] + U[2]) - (12*cos2th*f_27_2*f[3]*f[4]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_26_2*f[2]*f[5]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_27_2*f[2]*f[5]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*f_26_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*f_27_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_26_2*f[2]*f[4]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_27_2*f[2]*f[4]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*f_26_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*f_27_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-5*U[1] + U[2]) - (12*f_26_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-5*U[1] + U[2]) - (12*f_27_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_26_2*f[3]*f[5]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_27_2*f[3]*f[5]*f[35]*f[37])/(-5*U[1] + U[2]) + (10*cos2th*f_24_2*f[2]*f[4]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_25_2*f[2]*f[4]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*f_24_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*f_25_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-4*U[1] + U[2]) - (10*f_24_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-4*U[1] + U[2]) - (10*f_25_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_24_2*f[3]*f[5]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_25_2*f[3]*f[5]*f[34]*f[36])/(-4*U[1] + U[2]) - (10*f_24_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*f_25_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_24_2*f[3]*f[4]*f[35]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_25_2*f[3]*f[4]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*cos2th*f_24_2*f[2]*f[5]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*cos2th*f_25_2*f[2]*f[5]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*f_24_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*f_25_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-4*U[1] + U[2]) + (10*f_24_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*f_25_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-4*U[1] + U[2]) - (10*cos2th*f_24_2*f[3]*f[4]*f[34]*f[37])/(-4*U[1] + U[2]) - (10*cos2th*f_25_2*f[3]*f[4]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_24_2*f[2]*f[5]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_25_2*f[2]*f[5]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*f_24_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*f_25_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_24_2*f[2]*f[4]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_25_2*f[2]*f[4]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*f_24_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*f_25_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-4*U[1] + U[2]) - (10*f_24_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-4*U[1] + U[2]) - (10*f_25_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_24_2*f[3]*f[5]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_25_2*f[3]*f[5]*f[35]*f[37])/(-4*U[1] + U[2]) + (8*cos2th*f_22_2*f[2]*f[4]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_23_2*f[2]*f[4]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*f_22_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*f_23_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-3*U[1] + U[2]) - (8*f_22_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-3*U[1] + U[2]) - (8*f_23_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_22_2*f[3]*f[5]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_23_2*f[3]*f[5]*f[34]*f[36])/(-3*U[1] + U[2]) - (8*f_22_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*f_23_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_22_2*f[3]*f[4]*f[35]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_23_2*f[3]*f[4]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*cos2th*f_22_2*f[2]*f[5]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*cos2th*f_23_2*f[2]*f[5]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*f_22_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*f_23_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-3*U[1] + U[2]) + (8*f_22_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*f_23_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-3*U[1] + U[2]) - (8*cos2th*f_22_2*f[3]*f[4]*f[34]*f[37])/(-3*U[1] + U[2]) - (8*cos2th*f_23_2*f[3]*f[4]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_22_2*f[2]*f[5]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_23_2*f[2]*f[5]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*f_22_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*f_23_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_22_2*f[2]*f[4]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_23_2*f[2]*f[4]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*f_22_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*f_23_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-3*U[1] + U[2]) - (8*f_22_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-3*U[1] + U[2]) - (8*f_23_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_22_2*f[3]*f[5]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_23_2*f[3]*f[5]*f[35]*f[37])/(-3*U[1] + U[2]) + (6*cos2th*f_20_2*f[2]*f[4]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_21_2*f[2]*f[4]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*f_20_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*f_21_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-2*U[1] + U[2]) - (6*f_20_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-2*U[1] + U[2]) - (6*f_21_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_20_2*f[3]*f[5]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_21_2*f[3]*f[5]*f[34]*f[36])/(-2*U[1] + U[2]) - (6*f_20_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*f_21_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_20_2*f[3]*f[4]*f[35]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_21_2*f[3]*f[4]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*cos2th*f_20_2*f[2]*f[5]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*cos2th*f_21_2*f[2]*f[5]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*f_20_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*f_21_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-2*U[1] + U[2]) + (6*f_20_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*f_21_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-2*U[1] + U[2]) - (6*cos2th*f_20_2*f[3]*f[4]*f[34]*f[37])/(-2*U[1] + U[2]) - (6*cos2th*f_21_2*f[3]*f[4]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_20_2*f[2]*f[5]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_21_2*f[2]*f[5]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*f_20_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*f_21_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_20_2*f[2]*f[4]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_21_2*f[2]*f[4]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*f_20_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*f_21_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-2*U[1] + U[2]) - (6*f_20_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-2*U[1] + U[2]) - (6*f_21_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_20_2*f[3]*f[5]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_21_2*f[3]*f[5]*f[35]*f[37])/(-2*U[1] + U[2]) + (21*cos2th*f_28_2*f[4]*f[6]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_29_2*f[4]*f[6]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*f_28_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*f_29_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_28_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_29_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_28_2*f[5]*f[7]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_29_2*f[5]*f[7]*f[36]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_28_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_29_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_28_2*f[5]*f[6]*f[37]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_29_2*f[5]*f[6]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_28_2*f[4]*f[7]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_29_2*f[4]*f[7]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_28_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_29_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-6*U[1] + 2*U[2]) + (21*f_28_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_29_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_28_2*f[5]*f[6]*f[36]*f[39])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_29_2*f[5]*f[6]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_28_2*f[4]*f[7]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_29_2*f[4]*f[7]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_28_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_29_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_28_2*f[4]*f[6]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_29_2*f[4]*f[6]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_28_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_29_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-6*U[1] + 2*U[2]) - (21*f_28_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-6*U[1] + 2*U[2]) - (21*f_29_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_28_2*f[5]*f[7]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_29_2*f[5]*f[7]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (18*cos2th*f_26_2*f[4]*f[6]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_27_2*f[4]*f[6]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*f_26_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*f_27_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_26_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_27_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_26_2*f[5]*f[7]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_27_2*f[5]*f[7]*f[36]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_26_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_27_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_26_2*f[5]*f[6]*f[37]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_27_2*f[5]*f[6]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_26_2*f[4]*f[7]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_27_2*f[4]*f[7]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_26_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_27_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-5*U[1] + 2*U[2]) + (18*f_26_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_27_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_26_2*f[5]*f[6]*f[36]*f[39])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_27_2*f[5]*f[6]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_26_2*f[4]*f[7]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_27_2*f[4]*f[7]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_26_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_27_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_26_2*f[4]*f[6]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_27_2*f[4]*f[6]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_26_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_27_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-5*U[1] + 2*U[2]) - (18*f_26_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-5*U[1] + 2*U[2]) - (18*f_27_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_26_2*f[5]*f[7]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_27_2*f[5]*f[7]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (15*cos2th*f_24_2*f[4]*f[6]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_25_2*f[4]*f[6]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*f_24_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*f_25_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_24_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_25_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_24_2*f[5]*f[7]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_25_2*f[5]*f[7]*f[36]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_24_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_25_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_24_2*f[5]*f[6]*f[37]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_25_2*f[5]*f[6]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_24_2*f[4]*f[7]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_25_2*f[4]*f[7]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_24_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_25_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-4*U[1] + 2*U[2]) + (15*f_24_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_25_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_24_2*f[5]*f[6]*f[36]*f[39])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_25_2*f[5]*f[6]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_24_2*f[4]*f[7]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_25_2*f[4]*f[7]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_24_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_25_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_24_2*f[4]*f[6]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_25_2*f[4]*f[6]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_24_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_25_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-4*U[1] + 2*U[2]) - (15*f_24_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-4*U[1] + 2*U[2]) - (15*f_25_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_24_2*f[5]*f[7]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_25_2*f[5]*f[7]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (12*cos2th*f_22_2*f[4]*f[6]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_23_2*f[4]*f[6]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*f_22_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*f_23_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_22_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_23_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_22_2*f[5]*f[7]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_23_2*f[5]*f[7]*f[36]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_22_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_23_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_22_2*f[5]*f[6]*f[37]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_23_2*f[5]*f[6]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_22_2*f[4]*f[7]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_23_2*f[4]*f[7]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_22_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_23_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-3*U[1] + 2*U[2]) + (12*f_22_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_23_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_22_2*f[5]*f[6]*f[36]*f[39])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_23_2*f[5]*f[6]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_22_2*f[4]*f[7]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_23_2*f[4]*f[7]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_22_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_23_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_22_2*f[4]*f[6]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_23_2*f[4]*f[6]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_22_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_23_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-3*U[1] + 2*U[2]) - (12*f_22_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-3*U[1] + 2*U[2]) - (12*f_23_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_22_2*f[5]*f[7]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_23_2*f[5]*f[7]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (6*cos2th*f_18_2*f[4]*f[6]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_19_2*f[4]*f[6]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*f_18_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*f_19_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-U[1] + 2*U[2]) - (6*f_18_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-U[1] + 2*U[2]) - (6*f_19_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_18_2*f[5]*f[7]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_19_2*f[5]*f[7]*f[36]*f[38])/(-U[1] + 2*U[2]) - (6*f_18_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*f_19_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_18_2*f[5]*f[6]*f[37]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_19_2*f[5]*f[6]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*cos2th*f_18_2*f[4]*f[7]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*cos2th*f_19_2*f[4]*f[7]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*f_18_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*f_19_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-U[1] + 2*U[2]) + (6*f_18_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*f_19_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-U[1] + 2*U[2]) - (6*cos2th*f_18_2*f[5]*f[6]*f[36]*f[39])/(-U[1] + 2*U[2]) - (6*cos2th*f_19_2*f[5]*f[6]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_18_2*f[4]*f[7]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_19_2*f[4]*f[7]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*f_18_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*f_19_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_18_2*f[4]*f[6]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_19_2*f[4]*f[6]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*f_18_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*f_19_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-U[1] + 2*U[2]) - (6*f_18_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-U[1] + 2*U[2]) - (6*f_19_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_18_2*f[5]*f[7]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_19_2*f[5]*f[7]*f[37]*f[39])/(-U[1] + 2*U[2]) + (28*cos2th*f_28_2*f[6]*f[8]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_29_2*f[6]*f[8]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*f_28_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*f_29_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_28_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_29_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_28_2*f[7]*f[9]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_29_2*f[7]*f[9]*f[38]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_28_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_29_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_28_2*f[7]*f[8]*f[39]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_29_2*f[7]*f[8]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_28_2*f[6]*f[9]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_29_2*f[6]*f[9]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_28_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_29_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-6*U[1] + 3*U[2]) + (28*f_28_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_29_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_28_2*f[7]*f[8]*f[38]*f[41])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_29_2*f[7]*f[8]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_28_2*f[6]*f[9]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_29_2*f[6]*f[9]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_28_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_29_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_28_2*f[6]*f[8]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_29_2*f[6]*f[8]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_28_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_29_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-6*U[1] + 3*U[2]) - (28*f_28_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-6*U[1] + 3*U[2]) - (28*f_29_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_28_2*f[7]*f[9]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_29_2*f[7]*f[9]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (24*cos2th*f_26_2*f[6]*f[8]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_27_2*f[6]*f[8]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*f_26_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*f_27_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_26_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_27_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_26_2*f[7]*f[9]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_27_2*f[7]*f[9]*f[38]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_26_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_27_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_26_2*f[7]*f[8]*f[39]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_27_2*f[7]*f[8]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_26_2*f[6]*f[9]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_27_2*f[6]*f[9]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_26_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_27_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-5*U[1] + 3*U[2]) + (24*f_26_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_27_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_26_2*f[7]*f[8]*f[38]*f[41])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_27_2*f[7]*f[8]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_26_2*f[6]*f[9]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_27_2*f[6]*f[9]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_26_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_27_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_26_2*f[6]*f[8]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_27_2*f[6]*f[8]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_26_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_27_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-5*U[1] + 3*U[2]) - (24*f_26_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-5*U[1] + 3*U[2]) - (24*f_27_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_26_2*f[7]*f[9]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_27_2*f[7]*f[9]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (20*cos2th*f_24_2*f[6]*f[8]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_25_2*f[6]*f[8]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*f_24_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*f_25_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_24_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_25_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_24_2*f[7]*f[9]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_25_2*f[7]*f[9]*f[38]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_24_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_25_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_24_2*f[7]*f[8]*f[39]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_25_2*f[7]*f[8]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_24_2*f[6]*f[9]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_25_2*f[6]*f[9]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_24_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_25_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-4*U[1] + 3*U[2]) + (20*f_24_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_25_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_24_2*f[7]*f[8]*f[38]*f[41])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_25_2*f[7]*f[8]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_24_2*f[6]*f[9]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_25_2*f[6]*f[9]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_24_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_25_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_24_2*f[6]*f[8]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_25_2*f[6]*f[8]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_24_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_25_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-4*U[1] + 3*U[2]) - (20*f_24_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-4*U[1] + 3*U[2]) - (20*f_25_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_24_2*f[7]*f[9]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_25_2*f[7]*f[9]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (12*cos2th*f_20_2*f[6]*f[8]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_21_2*f[6]*f[8]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*f_20_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*f_21_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_20_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_21_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_20_2*f[7]*f[9]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_21_2*f[7]*f[9]*f[38]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_20_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_21_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_20_2*f[7]*f[8]*f[39]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_21_2*f[7]*f[8]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_20_2*f[6]*f[9]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_21_2*f[6]*f[9]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_20_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_21_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-2*U[1] + 3*U[2]) + (12*f_20_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_21_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_20_2*f[7]*f[8]*f[38]*f[41])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_21_2*f[7]*f[8]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_20_2*f[6]*f[9]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_21_2*f[6]*f[9]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_20_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_21_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_20_2*f[6]*f[8]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_21_2*f[6]*f[8]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_20_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_21_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-2*U[1] + 3*U[2]) - (12*f_20_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-2*U[1] + 3*U[2]) - (12*f_21_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_20_2*f[7]*f[9]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_21_2*f[7]*f[9]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (8*cos2th*f_18_2*f[6]*f[8]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_19_2*f[6]*f[8]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*f_18_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*f_19_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-U[1] + 3*U[2]) - (8*f_18_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-U[1] + 3*U[2]) - (8*f_19_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_18_2*f[7]*f[9]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_19_2*f[7]*f[9]*f[38]*f[40])/(-U[1] + 3*U[2]) - (8*f_18_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*f_19_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_18_2*f[7]*f[8]*f[39]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_19_2*f[7]*f[8]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*cos2th*f_18_2*f[6]*f[9]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*cos2th*f_19_2*f[6]*f[9]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*f_18_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*f_19_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-U[1] + 3*U[2]) + (8*f_18_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*f_19_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-U[1] + 3*U[2]) - (8*cos2th*f_18_2*f[7]*f[8]*f[38]*f[41])/(-U[1] + 3*U[2]) - (8*cos2th*f_19_2*f[7]*f[8]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_18_2*f[6]*f[9]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_19_2*f[6]*f[9]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*f_18_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*f_19_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_18_2*f[6]*f[8]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_19_2*f[6]*f[8]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*f_18_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*f_19_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-U[1] + 3*U[2]) - (8*f_18_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-U[1] + 3*U[2]) - (8*f_19_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_18_2*f[7]*f[9]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_19_2*f[7]*f[9]*f[39]*f[41])/(-U[1] + 3*U[2]) + (35*cos2th*f_28_2*f[8]*f[10]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_29_2*f[8]*f[10]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*f_28_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*f_29_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_28_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_29_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_28_2*f[9]*f[11]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_29_2*f[9]*f[11]*f[40]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_28_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_29_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_28_2*f[9]*f[10]*f[41]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_29_2*f[9]*f[10]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_28_2*f[8]*f[11]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_29_2*f[8]*f[11]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_28_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_29_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-6*U[1] + 4*U[2]) + (35*f_28_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_29_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_28_2*f[9]*f[10]*f[40]*f[43])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_29_2*f[9]*f[10]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_28_2*f[8]*f[11]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_29_2*f[8]*f[11]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_28_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_29_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_28_2*f[8]*f[10]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_29_2*f[8]*f[10]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_28_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_29_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-6*U[1] + 4*U[2]) - (35*f_28_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-6*U[1] + 4*U[2]) - (35*f_29_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_28_2*f[9]*f[11]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_29_2*f[9]*f[11]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (30*cos2th*f_26_2*f[8]*f[10]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_27_2*f[8]*f[10]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*f_26_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*f_27_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_26_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_27_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_26_2*f[9]*f[11]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_27_2*f[9]*f[11]*f[40]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_26_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_27_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_26_2*f[9]*f[10]*f[41]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_27_2*f[9]*f[10]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_26_2*f[8]*f[11]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_27_2*f[8]*f[11]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_26_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_27_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-5*U[1] + 4*U[2]) + (30*f_26_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_27_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_26_2*f[9]*f[10]*f[40]*f[43])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_27_2*f[9]*f[10]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_26_2*f[8]*f[11]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_27_2*f[8]*f[11]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_26_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_27_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_26_2*f[8]*f[10]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_27_2*f[8]*f[10]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_26_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_27_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-5*U[1] + 4*U[2]) - (30*f_26_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-5*U[1] + 4*U[2]) - (30*f_27_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_26_2*f[9]*f[11]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_27_2*f[9]*f[11]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (20*cos2th*f_22_2*f[8]*f[10]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_23_2*f[8]*f[10]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*f_22_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*f_23_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_22_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_23_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_22_2*f[9]*f[11]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_23_2*f[9]*f[11]*f[40]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_22_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_23_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_22_2*f[9]*f[10]*f[41]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_23_2*f[9]*f[10]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_22_2*f[8]*f[11]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_23_2*f[8]*f[11]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_22_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_23_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-3*U[1] + 4*U[2]) + (20*f_22_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_23_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_22_2*f[9]*f[10]*f[40]*f[43])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_23_2*f[9]*f[10]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_22_2*f[8]*f[11]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_23_2*f[8]*f[11]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_22_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_23_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_22_2*f[8]*f[10]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_23_2*f[8]*f[10]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_22_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_23_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-3*U[1] + 4*U[2]) - (20*f_22_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-3*U[1] + 4*U[2]) - (20*f_23_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_22_2*f[9]*f[11]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_23_2*f[9]*f[11]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (15*cos2th*f_20_2*f[8]*f[10]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_21_2*f[8]*f[10]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*f_20_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*f_21_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_20_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_21_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_20_2*f[9]*f[11]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_21_2*f[9]*f[11]*f[40]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_20_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_21_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_20_2*f[9]*f[10]*f[41]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_21_2*f[9]*f[10]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_20_2*f[8]*f[11]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_21_2*f[8]*f[11]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_20_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_21_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-2*U[1] + 4*U[2]) + (15*f_20_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_21_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_20_2*f[9]*f[10]*f[40]*f[43])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_21_2*f[9]*f[10]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_20_2*f[8]*f[11]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_21_2*f[8]*f[11]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_20_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_21_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_20_2*f[8]*f[10]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_21_2*f[8]*f[10]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_20_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_21_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-2*U[1] + 4*U[2]) - (15*f_20_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-2*U[1] + 4*U[2]) - (15*f_21_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_20_2*f[9]*f[11]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_21_2*f[9]*f[11]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (10*cos2th*f_18_2*f[8]*f[10]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_19_2*f[8]*f[10]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*f_18_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*f_19_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-U[1] + 4*U[2]) - (10*f_18_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-U[1] + 4*U[2]) - (10*f_19_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_18_2*f[9]*f[11]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_19_2*f[9]*f[11]*f[40]*f[42])/(-U[1] + 4*U[2]) - (10*f_18_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*f_19_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_18_2*f[9]*f[10]*f[41]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_19_2*f[9]*f[10]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*cos2th*f_18_2*f[8]*f[11]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*cos2th*f_19_2*f[8]*f[11]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*f_18_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*f_19_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-U[1] + 4*U[2]) + (10*f_18_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*f_19_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-U[1] + 4*U[2]) - (10*cos2th*f_18_2*f[9]*f[10]*f[40]*f[43])/(-U[1] + 4*U[2]) - (10*cos2th*f_19_2*f[9]*f[10]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_18_2*f[8]*f[11]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_19_2*f[8]*f[11]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*f_18_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*f_19_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_18_2*f[8]*f[10]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_19_2*f[8]*f[10]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*f_18_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*f_19_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-U[1] + 4*U[2]) - (10*f_18_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-U[1] + 4*U[2]) - (10*f_19_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_18_2*f[9]*f[11]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_19_2*f[9]*f[11]*f[41]*f[43])/(-U[1] + 4*U[2]) + (42*cos2th*f_28_2*f[10]*f[12]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_29_2*f[10]*f[12]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*f_28_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*f_29_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_28_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_29_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_28_2*f[11]*f[13]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_29_2*f[11]*f[13]*f[42]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_28_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_29_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_28_2*f[11]*f[12]*f[43]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_29_2*f[11]*f[12]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_28_2*f[10]*f[13]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_29_2*f[10]*f[13]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_28_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_29_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-6*U[1] + 5*U[2]) + (42*f_28_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_29_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_28_2*f[11]*f[12]*f[42]*f[45])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_29_2*f[11]*f[12]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_28_2*f[10]*f[13]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_29_2*f[10]*f[13]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_28_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_29_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_28_2*f[10]*f[12]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_29_2*f[10]*f[12]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_28_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_29_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-6*U[1] + 5*U[2]) - (42*f_28_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-6*U[1] + 5*U[2]) - (42*f_29_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_28_2*f[11]*f[13]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_29_2*f[11]*f[13]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (30*cos2th*f_24_2*f[10]*f[12]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_25_2*f[10]*f[12]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*f_24_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*f_25_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_24_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_25_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_24_2*f[11]*f[13]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_25_2*f[11]*f[13]*f[42]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_24_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_25_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_24_2*f[11]*f[12]*f[43]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_25_2*f[11]*f[12]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_24_2*f[10]*f[13]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_25_2*f[10]*f[13]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_24_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_25_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-4*U[1] + 5*U[2]) + (30*f_24_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_25_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_24_2*f[11]*f[12]*f[42]*f[45])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_25_2*f[11]*f[12]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_24_2*f[10]*f[13]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_25_2*f[10]*f[13]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_24_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_25_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_24_2*f[10]*f[12]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_25_2*f[10]*f[12]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_24_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_25_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-4*U[1] + 5*U[2]) - (30*f_24_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-4*U[1] + 5*U[2]) - (30*f_25_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_24_2*f[11]*f[13]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_25_2*f[11]*f[13]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (24*cos2th*f_22_2*f[10]*f[12]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_23_2*f[10]*f[12]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*f_22_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*f_23_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_22_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_23_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_22_2*f[11]*f[13]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_23_2*f[11]*f[13]*f[42]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_22_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_23_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_22_2*f[11]*f[12]*f[43]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_23_2*f[11]*f[12]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_22_2*f[10]*f[13]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_23_2*f[10]*f[13]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_22_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_23_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-3*U[1] + 5*U[2]) + (24*f_22_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_23_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_22_2*f[11]*f[12]*f[42]*f[45])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_23_2*f[11]*f[12]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_22_2*f[10]*f[13]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_23_2*f[10]*f[13]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_22_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_23_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_22_2*f[10]*f[12]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_23_2*f[10]*f[12]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_22_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_23_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-3*U[1] + 5*U[2]) - (24*f_22_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-3*U[1] + 5*U[2]) - (24*f_23_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_22_2*f[11]*f[13]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_23_2*f[11]*f[13]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (18*cos2th*f_20_2*f[10]*f[12]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_21_2*f[10]*f[12]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*f_20_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*f_21_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_20_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_21_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_20_2*f[11]*f[13]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_21_2*f[11]*f[13]*f[42]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_20_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_21_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_20_2*f[11]*f[12]*f[43]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_21_2*f[11]*f[12]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_20_2*f[10]*f[13]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_21_2*f[10]*f[13]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_20_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_21_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-2*U[1] + 5*U[2]) + (18*f_20_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_21_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_20_2*f[11]*f[12]*f[42]*f[45])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_21_2*f[11]*f[12]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_20_2*f[10]*f[13]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_21_2*f[10]*f[13]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_20_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_21_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_20_2*f[10]*f[12]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_21_2*f[10]*f[12]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_20_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_21_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-2*U[1] + 5*U[2]) - (18*f_20_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-2*U[1] + 5*U[2]) - (18*f_21_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_20_2*f[11]*f[13]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_21_2*f[11]*f[13]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (12*cos2th*f_18_2*f[10]*f[12]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_19_2*f[10]*f[12]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*f_18_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*f_19_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-U[1] + 5*U[2]) - (12*f_18_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-U[1] + 5*U[2]) - (12*f_19_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_18_2*f[11]*f[13]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_19_2*f[11]*f[13]*f[42]*f[44])/(-U[1] + 5*U[2]) - (12*f_18_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*f_19_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_18_2*f[11]*f[12]*f[43]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_19_2*f[11]*f[12]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*cos2th*f_18_2*f[10]*f[13]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*cos2th*f_19_2*f[10]*f[13]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*f_18_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*f_19_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-U[1] + 5*U[2]) + (12*f_18_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*f_19_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-U[1] + 5*U[2]) - (12*cos2th*f_18_2*f[11]*f[12]*f[42]*f[45])/(-U[1] + 5*U[2]) - (12*cos2th*f_19_2*f[11]*f[12]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_18_2*f[10]*f[13]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_19_2*f[10]*f[13]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*f_18_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*f_19_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_18_2*f[10]*f[12]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_19_2*f[10]*f[12]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*f_18_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*f_19_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-U[1] + 5*U[2]) - (12*f_18_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-U[1] + 5*U[2]) - (12*f_19_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_18_2*f[11]*f[13]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_19_2*f[11]*f[13]*f[43]*f[45])/(-U[1] + 5*U[2]) + (42*cos2th*f_26_2*f[12]*f[14]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_27_2*f[12]*f[14]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*f_26_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*f_27_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_26_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_27_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_26_2*f[13]*f[15]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_27_2*f[13]*f[15]*f[44]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_26_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_27_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_26_2*f[13]*f[14]*f[45]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_27_2*f[13]*f[14]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_26_2*f[12]*f[15]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_27_2*f[12]*f[15]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_26_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_27_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-5*U[1] + 6*U[2]) + (42*f_26_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_27_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_26_2*f[13]*f[14]*f[44]*f[47])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_27_2*f[13]*f[14]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_26_2*f[12]*f[15]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_27_2*f[12]*f[15]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_26_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_27_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_26_2*f[12]*f[14]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_27_2*f[12]*f[14]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_26_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_27_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-5*U[1] + 6*U[2]) - (42*f_26_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-5*U[1] + 6*U[2]) - (42*f_27_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_26_2*f[13]*f[15]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_27_2*f[13]*f[15]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (35*cos2th*f_24_2*f[12]*f[14]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_25_2*f[12]*f[14]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*f_24_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*f_25_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_24_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_25_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_24_2*f[13]*f[15]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_25_2*f[13]*f[15]*f[44]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_24_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_25_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_24_2*f[13]*f[14]*f[45]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_25_2*f[13]*f[14]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_24_2*f[12]*f[15]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_25_2*f[12]*f[15]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_24_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_25_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-4*U[1] + 6*U[2]) + (35*f_24_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_25_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_24_2*f[13]*f[14]*f[44]*f[47])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_25_2*f[13]*f[14]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_24_2*f[12]*f[15]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_25_2*f[12]*f[15]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_24_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_25_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_24_2*f[12]*f[14]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_25_2*f[12]*f[14]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_24_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_25_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-4*U[1] + 6*U[2]) - (35*f_24_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-4*U[1] + 6*U[2]) - (35*f_25_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_24_2*f[13]*f[15]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_25_2*f[13]*f[15]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (28*cos2th*f_22_2*f[12]*f[14]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_23_2*f[12]*f[14]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*f_22_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*f_23_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_22_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_23_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_22_2*f[13]*f[15]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_23_2*f[13]*f[15]*f[44]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_22_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_23_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_22_2*f[13]*f[14]*f[45]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_23_2*f[13]*f[14]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_22_2*f[12]*f[15]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_23_2*f[12]*f[15]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_22_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_23_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-3*U[1] + 6*U[2]) + (28*f_22_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_23_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_22_2*f[13]*f[14]*f[44]*f[47])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_23_2*f[13]*f[14]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_22_2*f[12]*f[15]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_23_2*f[12]*f[15]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_22_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_23_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_22_2*f[12]*f[14]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_23_2*f[12]*f[14]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_22_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_23_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-3*U[1] + 6*U[2]) - (28*f_22_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-3*U[1] + 6*U[2]) - (28*f_23_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_22_2*f[13]*f[15]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_23_2*f[13]*f[15]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (21*cos2th*f_20_2*f[12]*f[14]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_21_2*f[12]*f[14]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*f_20_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*f_21_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_20_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_21_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_20_2*f[13]*f[15]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_21_2*f[13]*f[15]*f[44]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_20_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_21_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_20_2*f[13]*f[14]*f[45]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_21_2*f[13]*f[14]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_20_2*f[12]*f[15]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_21_2*f[12]*f[15]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_20_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_21_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-2*U[1] + 6*U[2]) + (21*f_20_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_21_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_20_2*f[13]*f[14]*f[44]*f[47])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_21_2*f[13]*f[14]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_20_2*f[12]*f[15]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_21_2*f[12]*f[15]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_20_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_21_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_20_2*f[12]*f[14]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_21_2*f[12]*f[14]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_20_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_21_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-2*U[1] + 6*U[2]) - (21*f_20_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-2*U[1] + 6*U[2]) - (21*f_21_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_20_2*f[13]*f[15]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_21_2*f[13]*f[15]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (14*cos2th*f_18_2*f[12]*f[14]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_19_2*f[12]*f[14]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*f_18_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*f_19_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-U[1] + 6*U[2]) - (14*f_18_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-U[1] + 6*U[2]) - (14*f_19_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_18_2*f[13]*f[15]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_19_2*f[13]*f[15]*f[44]*f[46])/(-U[1] + 6*U[2]) - (14*f_18_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*f_19_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_18_2*f[13]*f[14]*f[45]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_19_2*f[13]*f[14]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*cos2th*f_18_2*f[12]*f[15]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*cos2th*f_19_2*f[12]*f[15]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*f_18_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*f_19_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-U[1] + 6*U[2]) + (14*f_18_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*f_19_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-U[1] + 6*U[2]) - (14*cos2th*f_18_2*f[13]*f[14]*f[44]*f[47])/(-U[1] + 6*U[2]) - (14*cos2th*f_19_2*f[13]*f[14]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_18_2*f[12]*f[15]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_19_2*f[12]*f[15]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*f_18_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*f_19_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_18_2*f[12]*f[14]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_19_2*f[12]*f[14]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*f_18_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*f_19_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-U[1] + 6*U[2]) - (14*f_18_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-U[1] + 6*U[2]) - (14*f_19_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_18_2*f[13]*f[15]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_19_2*f[13]*f[15]*f[45]*f[47])/(-U[1] + 6*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[0]*J[1]*((-2*cos2th*f_20_2*f[0]*f[2]*f[32]*f[34])/U[1] - (2*cos2th*f_21_2*f[0]*f[2]*f[32]*f[34])/U[1] - (3*cos2th*f_22_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) - (3*cos2th*f_23_2*f[0]*f[2]*f[32]*f[34])/(2.*U[1]) - (4*cos2th*f_24_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) - (4*cos2th*f_25_2*f[0]*f[2]*f[32]*f[34])/(3.*U[1]) - (5*cos2th*f_26_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) - (5*cos2th*f_27_2*f[0]*f[2]*f[32]*f[34])/(4.*U[1]) - (6*cos2th*f_28_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) - (6*cos2th*f_29_2*f[0]*f[2]*f[32]*f[34])/(5.*U[1]) - (7*cos2th*f_30_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) - (7*cos2th*f_31_2*f[0]*f[2]*f[32]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] - (2*f_21_2*sin2th*f[1]*f[2]*f[32]*f[34])/U[1] - (3*f_22_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) - (3*f_23_2*sin2th*f[1]*f[2]*f[32]*f[34])/(2.*U[1]) - (4*f_24_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) - (4*f_25_2*sin2th*f[1]*f[2]*f[32]*f[34])/(3.*U[1]) - (5*f_26_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) - (5*f_27_2*sin2th*f[1]*f[2]*f[32]*f[34])/(4.*U[1]) - (6*f_28_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) - (6*f_29_2*sin2th*f[1]*f[2]*f[32]*f[34])/(5.*U[1]) - (7*f_30_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) - (7*f_31_2*sin2th*f[1]*f[2]*f[32]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] + (2*f_21_2*sin2th*f[0]*f[3]*f[32]*f[34])/U[1] + (3*f_22_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) + (3*f_23_2*sin2th*f[0]*f[3]*f[32]*f[34])/(2.*U[1]) + (4*f_24_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) + (4*f_25_2*sin2th*f[0]*f[3]*f[32]*f[34])/(3.*U[1]) + (5*f_26_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) + (5*f_27_2*sin2th*f[0]*f[3]*f[32]*f[34])/(4.*U[1]) + (6*f_28_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) + (6*f_29_2*sin2th*f[0]*f[3]*f[32]*f[34])/(5.*U[1]) + (7*f_30_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) + (7*f_31_2*sin2th*f[0]*f[3]*f[32]*f[34])/(6.*U[1]) - (2*cos2th*f_20_2*f[1]*f[3]*f[32]*f[34])/U[1] - (2*cos2th*f_21_2*f[1]*f[3]*f[32]*f[34])/U[1] - (3*cos2th*f_22_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) - (3*cos2th*f_23_2*f[1]*f[3]*f[32]*f[34])/(2.*U[1]) - (4*cos2th*f_24_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) - (4*cos2th*f_25_2*f[1]*f[3]*f[32]*f[34])/(3.*U[1]) - (5*cos2th*f_26_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) - (5*cos2th*f_27_2*f[1]*f[3]*f[32]*f[34])/(4.*U[1]) - (6*cos2th*f_28_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) - (6*cos2th*f_29_2*f[1]*f[3]*f[32]*f[34])/(5.*U[1]) - (7*cos2th*f_30_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) - (7*cos2th*f_31_2*f[1]*f[3]*f[32]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] + (2*f_21_2*sin2th*f[0]*f[2]*f[33]*f[34])/U[1] + (3*f_22_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) + (3*f_23_2*sin2th*f[0]*f[2]*f[33]*f[34])/(2.*U[1]) + (4*f_24_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) + (4*f_25_2*sin2th*f[0]*f[2]*f[33]*f[34])/(3.*U[1]) + (5*f_26_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) + (5*f_27_2*sin2th*f[0]*f[2]*f[33]*f[34])/(4.*U[1]) + (6*f_28_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) + (6*f_29_2*sin2th*f[0]*f[2]*f[33]*f[34])/(5.*U[1]) + (7*f_30_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) + (7*f_31_2*sin2th*f[0]*f[2]*f[33]*f[34])/(6.*U[1]) - (2*cos2th*f_20_2*f[1]*f[2]*f[33]*f[34])/U[1] - (2*cos2th*f_21_2*f[1]*f[2]*f[33]*f[34])/U[1] - (3*cos2th*f_22_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) - (3*cos2th*f_23_2*f[1]*f[2]*f[33]*f[34])/(2.*U[1]) - (4*cos2th*f_24_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) - (4*cos2th*f_25_2*f[1]*f[2]*f[33]*f[34])/(3.*U[1]) - (5*cos2th*f_26_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) - (5*cos2th*f_27_2*f[1]*f[2]*f[33]*f[34])/(4.*U[1]) - (6*cos2th*f_28_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) - (6*cos2th*f_29_2*f[1]*f[2]*f[33]*f[34])/(5.*U[1]) - (7*cos2th*f_30_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) - (7*cos2th*f_31_2*f[1]*f[2]*f[33]*f[34])/(6.*U[1]) + (2*cos2th*f_20_2*f[0]*f[3]*f[33]*f[34])/U[1] + (2*cos2th*f_21_2*f[0]*f[3]*f[33]*f[34])/U[1] + (3*cos2th*f_22_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) + (3*cos2th*f_23_2*f[0]*f[3]*f[33]*f[34])/(2.*U[1]) + (4*cos2th*f_24_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) + (4*cos2th*f_25_2*f[0]*f[3]*f[33]*f[34])/(3.*U[1]) + (5*cos2th*f_26_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) + (5*cos2th*f_27_2*f[0]*f[3]*f[33]*f[34])/(4.*U[1]) + (6*cos2th*f_28_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) + (6*cos2th*f_29_2*f[0]*f[3]*f[33]*f[34])/(5.*U[1]) + (7*cos2th*f_30_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) + (7*cos2th*f_31_2*f[0]*f[3]*f[33]*f[34])/(6.*U[1]) + (2*f_20_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] + (2*f_21_2*sin2th*f[1]*f[3]*f[33]*f[34])/U[1] + (3*f_22_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) + (3*f_23_2*sin2th*f[1]*f[3]*f[33]*f[34])/(2.*U[1]) + (4*f_24_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) + (4*f_25_2*sin2th*f[1]*f[3]*f[33]*f[34])/(3.*U[1]) + (5*f_26_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) + (5*f_27_2*sin2th*f[1]*f[3]*f[33]*f[34])/(4.*U[1]) + (6*f_28_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) + (6*f_29_2*sin2th*f[1]*f[3]*f[33]*f[34])/(5.*U[1]) + (7*f_30_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) + (7*f_31_2*sin2th*f[1]*f[3]*f[33]*f[34])/(6.*U[1]) - (2*f_20_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] - (2*f_21_2*sin2th*f[0]*f[2]*f[32]*f[35])/U[1] - (3*f_22_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) - (3*f_23_2*sin2th*f[0]*f[2]*f[32]*f[35])/(2.*U[1]) - (4*f_24_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) - (4*f_25_2*sin2th*f[0]*f[2]*f[32]*f[35])/(3.*U[1]) - (5*f_26_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) - (5*f_27_2*sin2th*f[0]*f[2]*f[32]*f[35])/(4.*U[1]) - (6*f_28_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) - (6*f_29_2*sin2th*f[0]*f[2]*f[32]*f[35])/(5.*U[1]) - (7*f_30_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) - (7*f_31_2*sin2th*f[0]*f[2]*f[32]*f[35])/(6.*U[1]) + (2*cos2th*f_20_2*f[1]*f[2]*f[32]*f[35])/U[1] + (2*cos2th*f_21_2*f[1]*f[2]*f[32]*f[35])/U[1] + (3*cos2th*f_22_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) + (3*cos2th*f_23_2*f[1]*f[2]*f[32]*f[35])/(2.*U[1]) + (4*cos2th*f_24_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) + (4*cos2th*f_25_2*f[1]*f[2]*f[32]*f[35])/(3.*U[1]) + (5*cos2th*f_26_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) + (5*cos2th*f_27_2*f[1]*f[2]*f[32]*f[35])/(4.*U[1]) + (6*cos2th*f_28_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) + (6*cos2th*f_29_2*f[1]*f[2]*f[32]*f[35])/(5.*U[1]) + (7*cos2th*f_30_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) + (7*cos2th*f_31_2*f[1]*f[2]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_20_2*f[0]*f[3]*f[32]*f[35])/U[1] - (2*cos2th*f_21_2*f[0]*f[3]*f[32]*f[35])/U[1] - (3*cos2th*f_22_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) - (3*cos2th*f_23_2*f[0]*f[3]*f[32]*f[35])/(2.*U[1]) - (4*cos2th*f_24_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) - (4*cos2th*f_25_2*f[0]*f[3]*f[32]*f[35])/(3.*U[1]) - (5*cos2th*f_26_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) - (5*cos2th*f_27_2*f[0]*f[3]*f[32]*f[35])/(4.*U[1]) - (6*cos2th*f_28_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) - (6*cos2th*f_29_2*f[0]*f[3]*f[32]*f[35])/(5.*U[1]) - (7*cos2th*f_30_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) - (7*cos2th*f_31_2*f[0]*f[3]*f[32]*f[35])/(6.*U[1]) - (2*f_20_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] - (2*f_21_2*sin2th*f[1]*f[3]*f[32]*f[35])/U[1] - (3*f_22_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) - (3*f_23_2*sin2th*f[1]*f[3]*f[32]*f[35])/(2.*U[1]) - (4*f_24_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) - (4*f_25_2*sin2th*f[1]*f[3]*f[32]*f[35])/(3.*U[1]) - (5*f_26_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) - (5*f_27_2*sin2th*f[1]*f[3]*f[32]*f[35])/(4.*U[1]) - (6*f_28_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) - (6*f_29_2*sin2th*f[1]*f[3]*f[32]*f[35])/(5.*U[1]) - (7*f_30_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) - (7*f_31_2*sin2th*f[1]*f[3]*f[32]*f[35])/(6.*U[1]) - (2*cos2th*f_20_2*f[0]*f[2]*f[33]*f[35])/U[1] - (2*cos2th*f_21_2*f[0]*f[2]*f[33]*f[35])/U[1] - (3*cos2th*f_22_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) - (3*cos2th*f_23_2*f[0]*f[2]*f[33]*f[35])/(2.*U[1]) - (4*cos2th*f_24_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) - (4*cos2th*f_25_2*f[0]*f[2]*f[33]*f[35])/(3.*U[1]) - (5*cos2th*f_26_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) - (5*cos2th*f_27_2*f[0]*f[2]*f[33]*f[35])/(4.*U[1]) - (6*cos2th*f_28_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) - (6*cos2th*f_29_2*f[0]*f[2]*f[33]*f[35])/(5.*U[1]) - (7*cos2th*f_30_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) - (7*cos2th*f_31_2*f[0]*f[2]*f[33]*f[35])/(6.*U[1]) - (2*f_20_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] - (2*f_21_2*sin2th*f[1]*f[2]*f[33]*f[35])/U[1] - (3*f_22_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) - (3*f_23_2*sin2th*f[1]*f[2]*f[33]*f[35])/(2.*U[1]) - (4*f_24_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) - (4*f_25_2*sin2th*f[1]*f[2]*f[33]*f[35])/(3.*U[1]) - (5*f_26_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) - (5*f_27_2*sin2th*f[1]*f[2]*f[33]*f[35])/(4.*U[1]) - (6*f_28_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) - (6*f_29_2*sin2th*f[1]*f[2]*f[33]*f[35])/(5.*U[1]) - (7*f_30_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) - (7*f_31_2*sin2th*f[1]*f[2]*f[33]*f[35])/(6.*U[1]) + (2*f_20_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] + (2*f_21_2*sin2th*f[0]*f[3]*f[33]*f[35])/U[1] + (3*f_22_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) + (3*f_23_2*sin2th*f[0]*f[3]*f[33]*f[35])/(2.*U[1]) + (4*f_24_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) + (4*f_25_2*sin2th*f[0]*f[3]*f[33]*f[35])/(3.*U[1]) + (5*f_26_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) + (5*f_27_2*sin2th*f[0]*f[3]*f[33]*f[35])/(4.*U[1]) + (6*f_28_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) + (6*f_29_2*sin2th*f[0]*f[3]*f[33]*f[35])/(5.*U[1]) + (7*f_30_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) + (7*f_31_2*sin2th*f[0]*f[3]*f[33]*f[35])/(6.*U[1]) - (2*cos2th*f_20_2*f[1]*f[3]*f[33]*f[35])/U[1] - (2*cos2th*f_21_2*f[1]*f[3]*f[33]*f[35])/U[1] - (3*cos2th*f_22_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) - (3*cos2th*f_23_2*f[1]*f[3]*f[33]*f[35])/(2.*U[1]) - (4*cos2th*f_24_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) - (4*cos2th*f_25_2*f[1]*f[3]*f[33]*f[35])/(3.*U[1]) - (5*cos2th*f_26_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) - (5*cos2th*f_27_2*f[1]*f[3]*f[33]*f[35])/(4.*U[1]) - (6*cos2th*f_28_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) - (6*cos2th*f_29_2*f[1]*f[3]*f[33]*f[35])/(5.*U[1]) - (7*cos2th*f_30_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) - (7*cos2th*f_31_2*f[1]*f[3]*f[33]*f[35])/(6.*U[1]) + (2*cos2th*f_18_2*f[2]*f[4]*f[34]*f[36])/U[2] + (2*cos2th*f_19_2*f[2]*f[4]*f[34]*f[36])/U[2] + (2*f_18_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[2] + (2*f_19_2*sin2th*f[3]*f[4]*f[34]*f[36])/U[2] - (2*f_18_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[2] - (2*f_19_2*sin2th*f[2]*f[5]*f[34]*f[36])/U[2] + (2*cos2th*f_18_2*f[3]*f[5]*f[34]*f[36])/U[2] + (2*cos2th*f_19_2*f[3]*f[5]*f[34]*f[36])/U[2] - (2*f_18_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[2] - (2*f_19_2*sin2th*f[2]*f[4]*f[35]*f[36])/U[2] + (2*cos2th*f_18_2*f[3]*f[4]*f[35]*f[36])/U[2] + (2*cos2th*f_19_2*f[3]*f[4]*f[35]*f[36])/U[2] - (2*cos2th*f_18_2*f[2]*f[5]*f[35]*f[36])/U[2] - (2*cos2th*f_19_2*f[2]*f[5]*f[35]*f[36])/U[2] - (2*f_18_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[2] - (2*f_19_2*sin2th*f[3]*f[5]*f[35]*f[36])/U[2] + (2*f_18_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[2] + (2*f_19_2*sin2th*f[2]*f[4]*f[34]*f[37])/U[2] - (2*cos2th*f_18_2*f[3]*f[4]*f[34]*f[37])/U[2] - (2*cos2th*f_19_2*f[3]*f[4]*f[34]*f[37])/U[2] + (2*cos2th*f_18_2*f[2]*f[5]*f[34]*f[37])/U[2] + (2*cos2th*f_19_2*f[2]*f[5]*f[34]*f[37])/U[2] + (2*f_18_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[2] + (2*f_19_2*sin2th*f[3]*f[5]*f[34]*f[37])/U[2] + (2*cos2th*f_18_2*f[2]*f[4]*f[35]*f[37])/U[2] + (2*cos2th*f_19_2*f[2]*f[4]*f[35]*f[37])/U[2] + (2*f_18_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[2] + (2*f_19_2*sin2th*f[3]*f[4]*f[35]*f[37])/U[2] - (2*f_18_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[2] - (2*f_19_2*sin2th*f[2]*f[5]*f[35]*f[37])/U[2] + (2*cos2th*f_18_2*f[3]*f[5]*f[35]*f[37])/U[2] + (2*cos2th*f_19_2*f[3]*f[5]*f[35]*f[37])/U[2] + (3*cos2th*f_18_2*f[4]*f[6]*f[36]*f[38])/(2.*U[2]) + (3*cos2th*f_19_2*f[4]*f[6]*f[36]*f[38])/(2.*U[2]) + (3*f_18_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[2]) + (3*f_19_2*sin2th*f[5]*f[6]*f[36]*f[38])/(2.*U[2]) - (3*f_18_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[2]) - (3*f_19_2*sin2th*f[4]*f[7]*f[36]*f[38])/(2.*U[2]) + (3*cos2th*f_18_2*f[5]*f[7]*f[36]*f[38])/(2.*U[2]) + (3*cos2th*f_19_2*f[5]*f[7]*f[36]*f[38])/(2.*U[2]) - (3*f_18_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[2]) - (3*f_19_2*sin2th*f[4]*f[6]*f[37]*f[38])/(2.*U[2]) + (3*cos2th*f_18_2*f[5]*f[6]*f[37]*f[38])/(2.*U[2]) + (3*cos2th*f_19_2*f[5]*f[6]*f[37]*f[38])/(2.*U[2]) - (3*cos2th*f_18_2*f[4]*f[7]*f[37]*f[38])/(2.*U[2]) - (3*cos2th*f_19_2*f[4]*f[7]*f[37]*f[38])/(2.*U[2]) - (3*f_18_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[2]) - (3*f_19_2*sin2th*f[5]*f[7]*f[37]*f[38])/(2.*U[2]) + (3*f_18_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[2]) + (3*f_19_2*sin2th*f[4]*f[6]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_18_2*f[5]*f[6]*f[36]*f[39])/(2.*U[2]) - (3*cos2th*f_19_2*f[5]*f[6]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_18_2*f[4]*f[7]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_19_2*f[4]*f[7]*f[36]*f[39])/(2.*U[2]) + (3*f_18_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[2]) + (3*f_19_2*sin2th*f[5]*f[7]*f[36]*f[39])/(2.*U[2]) + (3*cos2th*f_18_2*f[4]*f[6]*f[37]*f[39])/(2.*U[2]) + (3*cos2th*f_19_2*f[4]*f[6]*f[37]*f[39])/(2.*U[2]) + (3*f_18_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[2]) + (3*f_19_2*sin2th*f[5]*f[6]*f[37]*f[39])/(2.*U[2]) - (3*f_18_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[2]) - (3*f_19_2*sin2th*f[4]*f[7]*f[37]*f[39])/(2.*U[2]) + (3*cos2th*f_18_2*f[5]*f[7]*f[37]*f[39])/(2.*U[2]) + (3*cos2th*f_19_2*f[5]*f[7]*f[37]*f[39])/(2.*U[2]) + (4*cos2th*f_18_2*f[6]*f[8]*f[38]*f[40])/(3.*U[2]) + (4*cos2th*f_19_2*f[6]*f[8]*f[38]*f[40])/(3.*U[2]) + (4*f_18_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[2]) + (4*f_19_2*sin2th*f[7]*f[8]*f[38]*f[40])/(3.*U[2]) - (4*f_18_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[2]) - (4*f_19_2*sin2th*f[6]*f[9]*f[38]*f[40])/(3.*U[2]) + (4*cos2th*f_18_2*f[7]*f[9]*f[38]*f[40])/(3.*U[2]) + (4*cos2th*f_19_2*f[7]*f[9]*f[38]*f[40])/(3.*U[2]) - (4*f_18_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[2]) - (4*f_19_2*sin2th*f[6]*f[8]*f[39]*f[40])/(3.*U[2]) + (4*cos2th*f_18_2*f[7]*f[8]*f[39]*f[40])/(3.*U[2]) + (4*cos2th*f_19_2*f[7]*f[8]*f[39]*f[40])/(3.*U[2]) - (4*cos2th*f_18_2*f[6]*f[9]*f[39]*f[40])/(3.*U[2]) - (4*cos2th*f_19_2*f[6]*f[9]*f[39]*f[40])/(3.*U[2]) - (4*f_18_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[2]) - (4*f_19_2*sin2th*f[7]*f[9]*f[39]*f[40])/(3.*U[2]) + (4*f_18_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[2]) + (4*f_19_2*sin2th*f[6]*f[8]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_18_2*f[7]*f[8]*f[38]*f[41])/(3.*U[2]) - (4*cos2th*f_19_2*f[7]*f[8]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_18_2*f[6]*f[9]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_19_2*f[6]*f[9]*f[38]*f[41])/(3.*U[2]) + (4*f_18_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[2]) + (4*f_19_2*sin2th*f[7]*f[9]*f[38]*f[41])/(3.*U[2]) + (4*cos2th*f_18_2*f[6]*f[8]*f[39]*f[41])/(3.*U[2]) + (4*cos2th*f_19_2*f[6]*f[8]*f[39]*f[41])/(3.*U[2]) + (4*f_18_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[2]) + (4*f_19_2*sin2th*f[7]*f[8]*f[39]*f[41])/(3.*U[2]) - (4*f_18_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[2]) - (4*f_19_2*sin2th*f[6]*f[9]*f[39]*f[41])/(3.*U[2]) + (4*cos2th*f_18_2*f[7]*f[9]*f[39]*f[41])/(3.*U[2]) + (4*cos2th*f_19_2*f[7]*f[9]*f[39]*f[41])/(3.*U[2]) + (5*cos2th*f_18_2*f[8]*f[10]*f[40]*f[42])/(4.*U[2]) + (5*cos2th*f_19_2*f[8]*f[10]*f[40]*f[42])/(4.*U[2]) + (5*f_18_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[2]) + (5*f_19_2*sin2th*f[9]*f[10]*f[40]*f[42])/(4.*U[2]) - (5*f_18_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[2]) - (5*f_19_2*sin2th*f[8]*f[11]*f[40]*f[42])/(4.*U[2]) + (5*cos2th*f_18_2*f[9]*f[11]*f[40]*f[42])/(4.*U[2]) + (5*cos2th*f_19_2*f[9]*f[11]*f[40]*f[42])/(4.*U[2]) - (5*f_18_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[2]) - (5*f_19_2*sin2th*f[8]*f[10]*f[41]*f[42])/(4.*U[2]) + (5*cos2th*f_18_2*f[9]*f[10]*f[41]*f[42])/(4.*U[2]) + (5*cos2th*f_19_2*f[9]*f[10]*f[41]*f[42])/(4.*U[2]) - (5*cos2th*f_18_2*f[8]*f[11]*f[41]*f[42])/(4.*U[2]) - (5*cos2th*f_19_2*f[8]*f[11]*f[41]*f[42])/(4.*U[2]) - (5*f_18_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[2]) - (5*f_19_2*sin2th*f[9]*f[11]*f[41]*f[42])/(4.*U[2]) + (5*f_18_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[2]) + (5*f_19_2*sin2th*f[8]*f[10]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_18_2*f[9]*f[10]*f[40]*f[43])/(4.*U[2]) - (5*cos2th*f_19_2*f[9]*f[10]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_18_2*f[8]*f[11]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_19_2*f[8]*f[11]*f[40]*f[43])/(4.*U[2]) + (5*f_18_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[2]) + (5*f_19_2*sin2th*f[9]*f[11]*f[40]*f[43])/(4.*U[2]) + (5*cos2th*f_18_2*f[8]*f[10]*f[41]*f[43])/(4.*U[2]) + (5*cos2th*f_19_2*f[8]*f[10]*f[41]*f[43])/(4.*U[2]) + (5*f_18_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[2]) + (5*f_19_2*sin2th*f[9]*f[10]*f[41]*f[43])/(4.*U[2]) - (5*f_18_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[2]) - (5*f_19_2*sin2th*f[8]*f[11]*f[41]*f[43])/(4.*U[2]) + (5*cos2th*f_18_2*f[9]*f[11]*f[41]*f[43])/(4.*U[2]) + (5*cos2th*f_19_2*f[9]*f[11]*f[41]*f[43])/(4.*U[2]) + (6*cos2th*f_18_2*f[10]*f[12]*f[42]*f[44])/(5.*U[2]) + (6*cos2th*f_19_2*f[10]*f[12]*f[42]*f[44])/(5.*U[2]) + (6*f_18_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[2]) + (6*f_19_2*sin2th*f[11]*f[12]*f[42]*f[44])/(5.*U[2]) - (6*f_18_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[2]) - (6*f_19_2*sin2th*f[10]*f[13]*f[42]*f[44])/(5.*U[2]) + (6*cos2th*f_18_2*f[11]*f[13]*f[42]*f[44])/(5.*U[2]) + (6*cos2th*f_19_2*f[11]*f[13]*f[42]*f[44])/(5.*U[2]) - (6*f_18_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[2]) - (6*f_19_2*sin2th*f[10]*f[12]*f[43]*f[44])/(5.*U[2]) + (6*cos2th*f_18_2*f[11]*f[12]*f[43]*f[44])/(5.*U[2]) + (6*cos2th*f_19_2*f[11]*f[12]*f[43]*f[44])/(5.*U[2]) - (6*cos2th*f_18_2*f[10]*f[13]*f[43]*f[44])/(5.*U[2]) - (6*cos2th*f_19_2*f[10]*f[13]*f[43]*f[44])/(5.*U[2]) - (6*f_18_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[2]) - (6*f_19_2*sin2th*f[11]*f[13]*f[43]*f[44])/(5.*U[2]) + (6*f_18_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[2]) + (6*f_19_2*sin2th*f[10]*f[12]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_18_2*f[11]*f[12]*f[42]*f[45])/(5.*U[2]) - (6*cos2th*f_19_2*f[11]*f[12]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_18_2*f[10]*f[13]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_19_2*f[10]*f[13]*f[42]*f[45])/(5.*U[2]) + (6*f_18_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[2]) + (6*f_19_2*sin2th*f[11]*f[13]*f[42]*f[45])/(5.*U[2]) + (6*cos2th*f_18_2*f[10]*f[12]*f[43]*f[45])/(5.*U[2]) + (6*cos2th*f_19_2*f[10]*f[12]*f[43]*f[45])/(5.*U[2]) + (6*f_18_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[2]) + (6*f_19_2*sin2th*f[11]*f[12]*f[43]*f[45])/(5.*U[2]) - (6*f_18_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[2]) - (6*f_19_2*sin2th*f[10]*f[13]*f[43]*f[45])/(5.*U[2]) + (6*cos2th*f_18_2*f[11]*f[13]*f[43]*f[45])/(5.*U[2]) + (6*cos2th*f_19_2*f[11]*f[13]*f[43]*f[45])/(5.*U[2]) + (7*cos2th*f_18_2*f[12]*f[14]*f[44]*f[46])/(6.*U[2]) + (7*cos2th*f_19_2*f[12]*f[14]*f[44]*f[46])/(6.*U[2]) + (7*f_18_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[2]) + (7*f_19_2*sin2th*f[13]*f[14]*f[44]*f[46])/(6.*U[2]) - (7*f_18_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[2]) - (7*f_19_2*sin2th*f[12]*f[15]*f[44]*f[46])/(6.*U[2]) + (7*cos2th*f_18_2*f[13]*f[15]*f[44]*f[46])/(6.*U[2]) + (7*cos2th*f_19_2*f[13]*f[15]*f[44]*f[46])/(6.*U[2]) - (7*f_18_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[2]) - (7*f_19_2*sin2th*f[12]*f[14]*f[45]*f[46])/(6.*U[2]) + (7*cos2th*f_18_2*f[13]*f[14]*f[45]*f[46])/(6.*U[2]) + (7*cos2th*f_19_2*f[13]*f[14]*f[45]*f[46])/(6.*U[2]) - (7*cos2th*f_18_2*f[12]*f[15]*f[45]*f[46])/(6.*U[2]) - (7*cos2th*f_19_2*f[12]*f[15]*f[45]*f[46])/(6.*U[2]) - (7*f_18_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[2]) - (7*f_19_2*sin2th*f[13]*f[15]*f[45]*f[46])/(6.*U[2]) + (7*f_18_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[2]) + (7*f_19_2*sin2th*f[12]*f[14]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_18_2*f[13]*f[14]*f[44]*f[47])/(6.*U[2]) - (7*cos2th*f_19_2*f[13]*f[14]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_18_2*f[12]*f[15]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_19_2*f[12]*f[15]*f[44]*f[47])/(6.*U[2]) + (7*f_18_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[2]) + (7*f_19_2*sin2th*f[13]*f[15]*f[44]*f[47])/(6.*U[2]) + (7*cos2th*f_18_2*f[12]*f[14]*f[45]*f[47])/(6.*U[2]) + (7*cos2th*f_19_2*f[12]*f[14]*f[45]*f[47])/(6.*U[2]) + (7*f_18_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[2]) + (7*f_19_2*sin2th*f[13]*f[14]*f[45]*f[47])/(6.*U[2]) - (7*f_18_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[2]) - (7*f_19_2*sin2th*f[12]*f[15]*f[45]*f[47])/(6.*U[2]) + (7*cos2th*f_18_2*f[13]*f[15]*f[45]*f[47])/(6.*U[2]) + (7*cos2th*f_19_2*f[13]*f[15]*f[45]*f[47])/(6.*U[2]) + (14*cos2th*f_30_2*f[2]*f[4]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_31_2*f[2]*f[4]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*f_30_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*f_31_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-6*U[1] + U[2]) - (14*f_30_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-6*U[1] + U[2]) - (14*f_31_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_30_2*f[3]*f[5]*f[34]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_31_2*f[3]*f[5]*f[34]*f[36])/(-6*U[1] + U[2]) - (14*f_30_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*f_31_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_30_2*f[3]*f[4]*f[35]*f[36])/(-6*U[1] + U[2]) + (14*cos2th*f_31_2*f[3]*f[4]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*cos2th*f_30_2*f[2]*f[5]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*cos2th*f_31_2*f[2]*f[5]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*f_30_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-6*U[1] + U[2]) - (14*f_31_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-6*U[1] + U[2]) + (14*f_30_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*f_31_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-6*U[1] + U[2]) - (14*cos2th*f_30_2*f[3]*f[4]*f[34]*f[37])/(-6*U[1] + U[2]) - (14*cos2th*f_31_2*f[3]*f[4]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_30_2*f[2]*f[5]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_31_2*f[2]*f[5]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*f_30_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*f_31_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_30_2*f[2]*f[4]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_31_2*f[2]*f[4]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*f_30_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*f_31_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-6*U[1] + U[2]) - (14*f_30_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-6*U[1] + U[2]) - (14*f_31_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_30_2*f[3]*f[5]*f[35]*f[37])/(-6*U[1] + U[2]) + (14*cos2th*f_31_2*f[3]*f[5]*f[35]*f[37])/(-6*U[1] + U[2]) + (12*cos2th*f_28_2*f[2]*f[4]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_29_2*f[2]*f[4]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*f_28_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*f_29_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-5*U[1] + U[2]) - (12*f_28_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-5*U[1] + U[2]) - (12*f_29_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_28_2*f[3]*f[5]*f[34]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_29_2*f[3]*f[5]*f[34]*f[36])/(-5*U[1] + U[2]) - (12*f_28_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*f_29_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_28_2*f[3]*f[4]*f[35]*f[36])/(-5*U[1] + U[2]) + (12*cos2th*f_29_2*f[3]*f[4]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*cos2th*f_28_2*f[2]*f[5]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*cos2th*f_29_2*f[2]*f[5]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*f_28_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-5*U[1] + U[2]) - (12*f_29_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-5*U[1] + U[2]) + (12*f_28_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*f_29_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-5*U[1] + U[2]) - (12*cos2th*f_28_2*f[3]*f[4]*f[34]*f[37])/(-5*U[1] + U[2]) - (12*cos2th*f_29_2*f[3]*f[4]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_28_2*f[2]*f[5]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_29_2*f[2]*f[5]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*f_28_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*f_29_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_28_2*f[2]*f[4]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_29_2*f[2]*f[4]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*f_28_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*f_29_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-5*U[1] + U[2]) - (12*f_28_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-5*U[1] + U[2]) - (12*f_29_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_28_2*f[3]*f[5]*f[35]*f[37])/(-5*U[1] + U[2]) + (12*cos2th*f_29_2*f[3]*f[5]*f[35]*f[37])/(-5*U[1] + U[2]) + (10*cos2th*f_26_2*f[2]*f[4]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_27_2*f[2]*f[4]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*f_26_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*f_27_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-4*U[1] + U[2]) - (10*f_26_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-4*U[1] + U[2]) - (10*f_27_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_26_2*f[3]*f[5]*f[34]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_27_2*f[3]*f[5]*f[34]*f[36])/(-4*U[1] + U[2]) - (10*f_26_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*f_27_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_26_2*f[3]*f[4]*f[35]*f[36])/(-4*U[1] + U[2]) + (10*cos2th*f_27_2*f[3]*f[4]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*cos2th*f_26_2*f[2]*f[5]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*cos2th*f_27_2*f[2]*f[5]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*f_26_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-4*U[1] + U[2]) - (10*f_27_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-4*U[1] + U[2]) + (10*f_26_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*f_27_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-4*U[1] + U[2]) - (10*cos2th*f_26_2*f[3]*f[4]*f[34]*f[37])/(-4*U[1] + U[2]) - (10*cos2th*f_27_2*f[3]*f[4]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_26_2*f[2]*f[5]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_27_2*f[2]*f[5]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*f_26_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*f_27_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_26_2*f[2]*f[4]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_27_2*f[2]*f[4]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*f_26_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*f_27_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-4*U[1] + U[2]) - (10*f_26_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-4*U[1] + U[2]) - (10*f_27_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_26_2*f[3]*f[5]*f[35]*f[37])/(-4*U[1] + U[2]) + (10*cos2th*f_27_2*f[3]*f[5]*f[35]*f[37])/(-4*U[1] + U[2]) + (8*cos2th*f_24_2*f[2]*f[4]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_25_2*f[2]*f[4]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*f_24_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*f_25_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-3*U[1] + U[2]) - (8*f_24_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-3*U[1] + U[2]) - (8*f_25_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_24_2*f[3]*f[5]*f[34]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_25_2*f[3]*f[5]*f[34]*f[36])/(-3*U[1] + U[2]) - (8*f_24_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*f_25_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_24_2*f[3]*f[4]*f[35]*f[36])/(-3*U[1] + U[2]) + (8*cos2th*f_25_2*f[3]*f[4]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*cos2th*f_24_2*f[2]*f[5]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*cos2th*f_25_2*f[2]*f[5]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*f_24_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-3*U[1] + U[2]) - (8*f_25_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-3*U[1] + U[2]) + (8*f_24_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*f_25_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-3*U[1] + U[2]) - (8*cos2th*f_24_2*f[3]*f[4]*f[34]*f[37])/(-3*U[1] + U[2]) - (8*cos2th*f_25_2*f[3]*f[4]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_24_2*f[2]*f[5]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_25_2*f[2]*f[5]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*f_24_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*f_25_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_24_2*f[2]*f[4]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_25_2*f[2]*f[4]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*f_24_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*f_25_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-3*U[1] + U[2]) - (8*f_24_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-3*U[1] + U[2]) - (8*f_25_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_24_2*f[3]*f[5]*f[35]*f[37])/(-3*U[1] + U[2]) + (8*cos2th*f_25_2*f[3]*f[5]*f[35]*f[37])/(-3*U[1] + U[2]) + (6*cos2th*f_22_2*f[2]*f[4]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_23_2*f[2]*f[4]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*f_22_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*f_23_2*sin2th*f[3]*f[4]*f[34]*f[36])/(-2*U[1] + U[2]) - (6*f_22_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-2*U[1] + U[2]) - (6*f_23_2*sin2th*f[2]*f[5]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_22_2*f[3]*f[5]*f[34]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_23_2*f[3]*f[5]*f[34]*f[36])/(-2*U[1] + U[2]) - (6*f_22_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*f_23_2*sin2th*f[2]*f[4]*f[35]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_22_2*f[3]*f[4]*f[35]*f[36])/(-2*U[1] + U[2]) + (6*cos2th*f_23_2*f[3]*f[4]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*cos2th*f_22_2*f[2]*f[5]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*cos2th*f_23_2*f[2]*f[5]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*f_22_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-2*U[1] + U[2]) - (6*f_23_2*sin2th*f[3]*f[5]*f[35]*f[36])/(-2*U[1] + U[2]) + (6*f_22_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*f_23_2*sin2th*f[2]*f[4]*f[34]*f[37])/(-2*U[1] + U[2]) - (6*cos2th*f_22_2*f[3]*f[4]*f[34]*f[37])/(-2*U[1] + U[2]) - (6*cos2th*f_23_2*f[3]*f[4]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_22_2*f[2]*f[5]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_23_2*f[2]*f[5]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*f_22_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*f_23_2*sin2th*f[3]*f[5]*f[34]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_22_2*f[2]*f[4]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_23_2*f[2]*f[4]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*f_22_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*f_23_2*sin2th*f[3]*f[4]*f[35]*f[37])/(-2*U[1] + U[2]) - (6*f_22_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-2*U[1] + U[2]) - (6*f_23_2*sin2th*f[2]*f[5]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_22_2*f[3]*f[5]*f[35]*f[37])/(-2*U[1] + U[2]) + (6*cos2th*f_23_2*f[3]*f[5]*f[35]*f[37])/(-2*U[1] + U[2]) + (21*cos2th*f_30_2*f[4]*f[6]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_31_2*f[4]*f[6]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*f_30_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*f_31_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_30_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_31_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_30_2*f[5]*f[7]*f[36]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_31_2*f[5]*f[7]*f[36]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_30_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_31_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_30_2*f[5]*f[6]*f[37]*f[38])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_31_2*f[5]*f[6]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_30_2*f[4]*f[7]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_31_2*f[4]*f[7]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_30_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-6*U[1] + 2*U[2]) - (21*f_31_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-6*U[1] + 2*U[2]) + (21*f_30_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_31_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_30_2*f[5]*f[6]*f[36]*f[39])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_31_2*f[5]*f[6]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_30_2*f[4]*f[7]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_31_2*f[4]*f[7]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_30_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_31_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_30_2*f[4]*f[6]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_31_2*f[4]*f[6]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_30_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*f_31_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-6*U[1] + 2*U[2]) - (21*f_30_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-6*U[1] + 2*U[2]) - (21*f_31_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_30_2*f[5]*f[7]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_31_2*f[5]*f[7]*f[37]*f[39])/(-6*U[1] + 2*U[2]) + (18*cos2th*f_28_2*f[4]*f[6]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_29_2*f[4]*f[6]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*f_28_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*f_29_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_28_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_29_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_28_2*f[5]*f[7]*f[36]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_29_2*f[5]*f[7]*f[36]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_28_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_29_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_28_2*f[5]*f[6]*f[37]*f[38])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_29_2*f[5]*f[6]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_28_2*f[4]*f[7]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_29_2*f[4]*f[7]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_28_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-5*U[1] + 2*U[2]) - (18*f_29_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-5*U[1] + 2*U[2]) + (18*f_28_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_29_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_28_2*f[5]*f[6]*f[36]*f[39])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_29_2*f[5]*f[6]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_28_2*f[4]*f[7]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_29_2*f[4]*f[7]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_28_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_29_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_28_2*f[4]*f[6]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_29_2*f[4]*f[6]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_28_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*f_29_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-5*U[1] + 2*U[2]) - (18*f_28_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-5*U[1] + 2*U[2]) - (18*f_29_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_28_2*f[5]*f[7]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_29_2*f[5]*f[7]*f[37]*f[39])/(-5*U[1] + 2*U[2]) + (15*cos2th*f_26_2*f[4]*f[6]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_27_2*f[4]*f[6]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*f_26_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*f_27_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_26_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_27_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_26_2*f[5]*f[7]*f[36]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_27_2*f[5]*f[7]*f[36]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_26_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_27_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_26_2*f[5]*f[6]*f[37]*f[38])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_27_2*f[5]*f[6]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_26_2*f[4]*f[7]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_27_2*f[4]*f[7]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_26_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-4*U[1] + 2*U[2]) - (15*f_27_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-4*U[1] + 2*U[2]) + (15*f_26_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_27_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_26_2*f[5]*f[6]*f[36]*f[39])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_27_2*f[5]*f[6]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_26_2*f[4]*f[7]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_27_2*f[4]*f[7]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_26_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_27_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_26_2*f[4]*f[6]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_27_2*f[4]*f[6]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_26_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*f_27_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-4*U[1] + 2*U[2]) - (15*f_26_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-4*U[1] + 2*U[2]) - (15*f_27_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_26_2*f[5]*f[7]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_27_2*f[5]*f[7]*f[37]*f[39])/(-4*U[1] + 2*U[2]) + (12*cos2th*f_24_2*f[4]*f[6]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_25_2*f[4]*f[6]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*f_24_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*f_25_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_24_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_25_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_24_2*f[5]*f[7]*f[36]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_25_2*f[5]*f[7]*f[36]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_24_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_25_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_24_2*f[5]*f[6]*f[37]*f[38])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_25_2*f[5]*f[6]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_24_2*f[4]*f[7]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_25_2*f[4]*f[7]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_24_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-3*U[1] + 2*U[2]) - (12*f_25_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-3*U[1] + 2*U[2]) + (12*f_24_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_25_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_24_2*f[5]*f[6]*f[36]*f[39])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_25_2*f[5]*f[6]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_24_2*f[4]*f[7]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_25_2*f[4]*f[7]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_24_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_25_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_24_2*f[4]*f[6]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_25_2*f[4]*f[6]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_24_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*f_25_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-3*U[1] + 2*U[2]) - (12*f_24_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-3*U[1] + 2*U[2]) - (12*f_25_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_24_2*f[5]*f[7]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_25_2*f[5]*f[7]*f[37]*f[39])/(-3*U[1] + 2*U[2]) + (6*cos2th*f_20_2*f[4]*f[6]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_21_2*f[4]*f[6]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*f_20_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*f_21_2*sin2th*f[5]*f[6]*f[36]*f[38])/(-U[1] + 2*U[2]) - (6*f_20_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-U[1] + 2*U[2]) - (6*f_21_2*sin2th*f[4]*f[7]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_20_2*f[5]*f[7]*f[36]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_21_2*f[5]*f[7]*f[36]*f[38])/(-U[1] + 2*U[2]) - (6*f_20_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*f_21_2*sin2th*f[4]*f[6]*f[37]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_20_2*f[5]*f[6]*f[37]*f[38])/(-U[1] + 2*U[2]) + (6*cos2th*f_21_2*f[5]*f[6]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*cos2th*f_20_2*f[4]*f[7]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*cos2th*f_21_2*f[4]*f[7]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*f_20_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-U[1] + 2*U[2]) - (6*f_21_2*sin2th*f[5]*f[7]*f[37]*f[38])/(-U[1] + 2*U[2]) + (6*f_20_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*f_21_2*sin2th*f[4]*f[6]*f[36]*f[39])/(-U[1] + 2*U[2]) - (6*cos2th*f_20_2*f[5]*f[6]*f[36]*f[39])/(-U[1] + 2*U[2]) - (6*cos2th*f_21_2*f[5]*f[6]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_20_2*f[4]*f[7]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_21_2*f[4]*f[7]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*f_20_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*f_21_2*sin2th*f[5]*f[7]*f[36]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_20_2*f[4]*f[6]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_21_2*f[4]*f[6]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*f_20_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*f_21_2*sin2th*f[5]*f[6]*f[37]*f[39])/(-U[1] + 2*U[2]) - (6*f_20_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-U[1] + 2*U[2]) - (6*f_21_2*sin2th*f[4]*f[7]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_20_2*f[5]*f[7]*f[37]*f[39])/(-U[1] + 2*U[2]) + (6*cos2th*f_21_2*f[5]*f[7]*f[37]*f[39])/(-U[1] + 2*U[2]) + (28*cos2th*f_30_2*f[6]*f[8]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_31_2*f[6]*f[8]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*f_30_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*f_31_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_30_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_31_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_30_2*f[7]*f[9]*f[38]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_31_2*f[7]*f[9]*f[38]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_30_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_31_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_30_2*f[7]*f[8]*f[39]*f[40])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_31_2*f[7]*f[8]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_30_2*f[6]*f[9]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_31_2*f[6]*f[9]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_30_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-6*U[1] + 3*U[2]) - (28*f_31_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-6*U[1] + 3*U[2]) + (28*f_30_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_31_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_30_2*f[7]*f[8]*f[38]*f[41])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_31_2*f[7]*f[8]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_30_2*f[6]*f[9]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_31_2*f[6]*f[9]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_30_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_31_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_30_2*f[6]*f[8]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_31_2*f[6]*f[8]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_30_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*f_31_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-6*U[1] + 3*U[2]) - (28*f_30_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-6*U[1] + 3*U[2]) - (28*f_31_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_30_2*f[7]*f[9]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_31_2*f[7]*f[9]*f[39]*f[41])/(-6*U[1] + 3*U[2]) + (24*cos2th*f_28_2*f[6]*f[8]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_29_2*f[6]*f[8]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*f_28_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*f_29_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_28_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_29_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_28_2*f[7]*f[9]*f[38]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_29_2*f[7]*f[9]*f[38]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_28_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_29_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_28_2*f[7]*f[8]*f[39]*f[40])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_29_2*f[7]*f[8]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_28_2*f[6]*f[9]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_29_2*f[6]*f[9]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_28_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-5*U[1] + 3*U[2]) - (24*f_29_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-5*U[1] + 3*U[2]) + (24*f_28_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_29_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_28_2*f[7]*f[8]*f[38]*f[41])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_29_2*f[7]*f[8]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_28_2*f[6]*f[9]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_29_2*f[6]*f[9]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_28_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_29_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_28_2*f[6]*f[8]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_29_2*f[6]*f[8]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_28_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*f_29_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-5*U[1] + 3*U[2]) - (24*f_28_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-5*U[1] + 3*U[2]) - (24*f_29_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_28_2*f[7]*f[9]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_29_2*f[7]*f[9]*f[39]*f[41])/(-5*U[1] + 3*U[2]) + (20*cos2th*f_26_2*f[6]*f[8]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_27_2*f[6]*f[8]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*f_26_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*f_27_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_26_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_27_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_26_2*f[7]*f[9]*f[38]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_27_2*f[7]*f[9]*f[38]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_26_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_27_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_26_2*f[7]*f[8]*f[39]*f[40])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_27_2*f[7]*f[8]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_26_2*f[6]*f[9]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_27_2*f[6]*f[9]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_26_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-4*U[1] + 3*U[2]) - (20*f_27_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-4*U[1] + 3*U[2]) + (20*f_26_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_27_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_26_2*f[7]*f[8]*f[38]*f[41])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_27_2*f[7]*f[8]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_26_2*f[6]*f[9]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_27_2*f[6]*f[9]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_26_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_27_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_26_2*f[6]*f[8]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_27_2*f[6]*f[8]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_26_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*f_27_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-4*U[1] + 3*U[2]) - (20*f_26_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-4*U[1] + 3*U[2]) - (20*f_27_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_26_2*f[7]*f[9]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_27_2*f[7]*f[9]*f[39]*f[41])/(-4*U[1] + 3*U[2]) + (12*cos2th*f_22_2*f[6]*f[8]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_23_2*f[6]*f[8]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*f_22_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*f_23_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_22_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_23_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_22_2*f[7]*f[9]*f[38]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_23_2*f[7]*f[9]*f[38]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_22_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_23_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_22_2*f[7]*f[8]*f[39]*f[40])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_23_2*f[7]*f[8]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_22_2*f[6]*f[9]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_23_2*f[6]*f[9]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_22_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-2*U[1] + 3*U[2]) - (12*f_23_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-2*U[1] + 3*U[2]) + (12*f_22_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_23_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_22_2*f[7]*f[8]*f[38]*f[41])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_23_2*f[7]*f[8]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_22_2*f[6]*f[9]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_23_2*f[6]*f[9]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_22_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_23_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_22_2*f[6]*f[8]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_23_2*f[6]*f[8]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_22_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*f_23_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-2*U[1] + 3*U[2]) - (12*f_22_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-2*U[1] + 3*U[2]) - (12*f_23_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_22_2*f[7]*f[9]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_23_2*f[7]*f[9]*f[39]*f[41])/(-2*U[1] + 3*U[2]) + (8*cos2th*f_20_2*f[6]*f[8]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_21_2*f[6]*f[8]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*f_20_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*f_21_2*sin2th*f[7]*f[8]*f[38]*f[40])/(-U[1] + 3*U[2]) - (8*f_20_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-U[1] + 3*U[2]) - (8*f_21_2*sin2th*f[6]*f[9]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_20_2*f[7]*f[9]*f[38]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_21_2*f[7]*f[9]*f[38]*f[40])/(-U[1] + 3*U[2]) - (8*f_20_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*f_21_2*sin2th*f[6]*f[8]*f[39]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_20_2*f[7]*f[8]*f[39]*f[40])/(-U[1] + 3*U[2]) + (8*cos2th*f_21_2*f[7]*f[8]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*cos2th*f_20_2*f[6]*f[9]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*cos2th*f_21_2*f[6]*f[9]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*f_20_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-U[1] + 3*U[2]) - (8*f_21_2*sin2th*f[7]*f[9]*f[39]*f[40])/(-U[1] + 3*U[2]) + (8*f_20_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*f_21_2*sin2th*f[6]*f[8]*f[38]*f[41])/(-U[1] + 3*U[2]) - (8*cos2th*f_20_2*f[7]*f[8]*f[38]*f[41])/(-U[1] + 3*U[2]) - (8*cos2th*f_21_2*f[7]*f[8]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_20_2*f[6]*f[9]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_21_2*f[6]*f[9]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*f_20_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*f_21_2*sin2th*f[7]*f[9]*f[38]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_20_2*f[6]*f[8]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_21_2*f[6]*f[8]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*f_20_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*f_21_2*sin2th*f[7]*f[8]*f[39]*f[41])/(-U[1] + 3*U[2]) - (8*f_20_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-U[1] + 3*U[2]) - (8*f_21_2*sin2th*f[6]*f[9]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_20_2*f[7]*f[9]*f[39]*f[41])/(-U[1] + 3*U[2]) + (8*cos2th*f_21_2*f[7]*f[9]*f[39]*f[41])/(-U[1] + 3*U[2]) + (35*cos2th*f_30_2*f[8]*f[10]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_31_2*f[8]*f[10]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*f_30_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*f_31_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_30_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_31_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_30_2*f[9]*f[11]*f[40]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_31_2*f[9]*f[11]*f[40]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_30_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_31_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_30_2*f[9]*f[10]*f[41]*f[42])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_31_2*f[9]*f[10]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_30_2*f[8]*f[11]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_31_2*f[8]*f[11]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_30_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-6*U[1] + 4*U[2]) - (35*f_31_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-6*U[1] + 4*U[2]) + (35*f_30_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_31_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_30_2*f[9]*f[10]*f[40]*f[43])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_31_2*f[9]*f[10]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_30_2*f[8]*f[11]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_31_2*f[8]*f[11]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_30_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_31_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_30_2*f[8]*f[10]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_31_2*f[8]*f[10]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_30_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*f_31_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-6*U[1] + 4*U[2]) - (35*f_30_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-6*U[1] + 4*U[2]) - (35*f_31_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_30_2*f[9]*f[11]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_31_2*f[9]*f[11]*f[41]*f[43])/(-6*U[1] + 4*U[2]) + (30*cos2th*f_28_2*f[8]*f[10]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_29_2*f[8]*f[10]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*f_28_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*f_29_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_28_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_29_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_28_2*f[9]*f[11]*f[40]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_29_2*f[9]*f[11]*f[40]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_28_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_29_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_28_2*f[9]*f[10]*f[41]*f[42])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_29_2*f[9]*f[10]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_28_2*f[8]*f[11]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_29_2*f[8]*f[11]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_28_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-5*U[1] + 4*U[2]) - (30*f_29_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-5*U[1] + 4*U[2]) + (30*f_28_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_29_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_28_2*f[9]*f[10]*f[40]*f[43])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_29_2*f[9]*f[10]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_28_2*f[8]*f[11]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_29_2*f[8]*f[11]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_28_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_29_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_28_2*f[8]*f[10]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_29_2*f[8]*f[10]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_28_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*f_29_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-5*U[1] + 4*U[2]) - (30*f_28_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-5*U[1] + 4*U[2]) - (30*f_29_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_28_2*f[9]*f[11]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_29_2*f[9]*f[11]*f[41]*f[43])/(-5*U[1] + 4*U[2]) + (20*cos2th*f_24_2*f[8]*f[10]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_25_2*f[8]*f[10]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*f_24_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*f_25_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_24_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_25_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_24_2*f[9]*f[11]*f[40]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_25_2*f[9]*f[11]*f[40]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_24_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_25_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_24_2*f[9]*f[10]*f[41]*f[42])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_25_2*f[9]*f[10]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_24_2*f[8]*f[11]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_25_2*f[8]*f[11]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_24_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-3*U[1] + 4*U[2]) - (20*f_25_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-3*U[1] + 4*U[2]) + (20*f_24_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_25_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_24_2*f[9]*f[10]*f[40]*f[43])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_25_2*f[9]*f[10]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_24_2*f[8]*f[11]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_25_2*f[8]*f[11]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_24_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_25_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_24_2*f[8]*f[10]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_25_2*f[8]*f[10]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_24_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*f_25_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-3*U[1] + 4*U[2]) - (20*f_24_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-3*U[1] + 4*U[2]) - (20*f_25_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_24_2*f[9]*f[11]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_25_2*f[9]*f[11]*f[41]*f[43])/(-3*U[1] + 4*U[2]) + (15*cos2th*f_22_2*f[8]*f[10]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_23_2*f[8]*f[10]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*f_22_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*f_23_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_22_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_23_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_22_2*f[9]*f[11]*f[40]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_23_2*f[9]*f[11]*f[40]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_22_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_23_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_22_2*f[9]*f[10]*f[41]*f[42])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_23_2*f[9]*f[10]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_22_2*f[8]*f[11]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_23_2*f[8]*f[11]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_22_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-2*U[1] + 4*U[2]) - (15*f_23_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-2*U[1] + 4*U[2]) + (15*f_22_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_23_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_22_2*f[9]*f[10]*f[40]*f[43])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_23_2*f[9]*f[10]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_22_2*f[8]*f[11]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_23_2*f[8]*f[11]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_22_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_23_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_22_2*f[8]*f[10]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_23_2*f[8]*f[10]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_22_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*f_23_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-2*U[1] + 4*U[2]) - (15*f_22_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-2*U[1] + 4*U[2]) - (15*f_23_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_22_2*f[9]*f[11]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_23_2*f[9]*f[11]*f[41]*f[43])/(-2*U[1] + 4*U[2]) + (10*cos2th*f_20_2*f[8]*f[10]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_21_2*f[8]*f[10]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*f_20_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*f_21_2*sin2th*f[9]*f[10]*f[40]*f[42])/(-U[1] + 4*U[2]) - (10*f_20_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-U[1] + 4*U[2]) - (10*f_21_2*sin2th*f[8]*f[11]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_20_2*f[9]*f[11]*f[40]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_21_2*f[9]*f[11]*f[40]*f[42])/(-U[1] + 4*U[2]) - (10*f_20_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*f_21_2*sin2th*f[8]*f[10]*f[41]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_20_2*f[9]*f[10]*f[41]*f[42])/(-U[1] + 4*U[2]) + (10*cos2th*f_21_2*f[9]*f[10]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*cos2th*f_20_2*f[8]*f[11]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*cos2th*f_21_2*f[8]*f[11]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*f_20_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-U[1] + 4*U[2]) - (10*f_21_2*sin2th*f[9]*f[11]*f[41]*f[42])/(-U[1] + 4*U[2]) + (10*f_20_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*f_21_2*sin2th*f[8]*f[10]*f[40]*f[43])/(-U[1] + 4*U[2]) - (10*cos2th*f_20_2*f[9]*f[10]*f[40]*f[43])/(-U[1] + 4*U[2]) - (10*cos2th*f_21_2*f[9]*f[10]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_20_2*f[8]*f[11]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_21_2*f[8]*f[11]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*f_20_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*f_21_2*sin2th*f[9]*f[11]*f[40]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_20_2*f[8]*f[10]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_21_2*f[8]*f[10]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*f_20_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*f_21_2*sin2th*f[9]*f[10]*f[41]*f[43])/(-U[1] + 4*U[2]) - (10*f_20_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-U[1] + 4*U[2]) - (10*f_21_2*sin2th*f[8]*f[11]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_20_2*f[9]*f[11]*f[41]*f[43])/(-U[1] + 4*U[2]) + (10*cos2th*f_21_2*f[9]*f[11]*f[41]*f[43])/(-U[1] + 4*U[2]) + (42*cos2th*f_30_2*f[10]*f[12]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_31_2*f[10]*f[12]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*f_30_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*f_31_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_30_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_31_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_30_2*f[11]*f[13]*f[42]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_31_2*f[11]*f[13]*f[42]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_30_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_31_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_30_2*f[11]*f[12]*f[43]*f[44])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_31_2*f[11]*f[12]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_30_2*f[10]*f[13]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_31_2*f[10]*f[13]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_30_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-6*U[1] + 5*U[2]) - (42*f_31_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-6*U[1] + 5*U[2]) + (42*f_30_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_31_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_30_2*f[11]*f[12]*f[42]*f[45])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_31_2*f[11]*f[12]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_30_2*f[10]*f[13]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_31_2*f[10]*f[13]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_30_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_31_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_30_2*f[10]*f[12]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_31_2*f[10]*f[12]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_30_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*f_31_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-6*U[1] + 5*U[2]) - (42*f_30_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-6*U[1] + 5*U[2]) - (42*f_31_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_30_2*f[11]*f[13]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_31_2*f[11]*f[13]*f[43]*f[45])/(-6*U[1] + 5*U[2]) + (30*cos2th*f_26_2*f[10]*f[12]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_27_2*f[10]*f[12]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*f_26_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*f_27_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_26_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_27_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_26_2*f[11]*f[13]*f[42]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_27_2*f[11]*f[13]*f[42]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_26_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_27_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_26_2*f[11]*f[12]*f[43]*f[44])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_27_2*f[11]*f[12]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_26_2*f[10]*f[13]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_27_2*f[10]*f[13]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_26_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-4*U[1] + 5*U[2]) - (30*f_27_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-4*U[1] + 5*U[2]) + (30*f_26_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_27_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_26_2*f[11]*f[12]*f[42]*f[45])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_27_2*f[11]*f[12]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_26_2*f[10]*f[13]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_27_2*f[10]*f[13]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_26_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_27_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_26_2*f[10]*f[12]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_27_2*f[10]*f[12]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_26_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*f_27_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-4*U[1] + 5*U[2]) - (30*f_26_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-4*U[1] + 5*U[2]) - (30*f_27_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_26_2*f[11]*f[13]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_27_2*f[11]*f[13]*f[43]*f[45])/(-4*U[1] + 5*U[2]) + (24*cos2th*f_24_2*f[10]*f[12]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_25_2*f[10]*f[12]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*f_24_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*f_25_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_24_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_25_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_24_2*f[11]*f[13]*f[42]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_25_2*f[11]*f[13]*f[42]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_24_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_25_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_24_2*f[11]*f[12]*f[43]*f[44])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_25_2*f[11]*f[12]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_24_2*f[10]*f[13]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_25_2*f[10]*f[13]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_24_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-3*U[1] + 5*U[2]) - (24*f_25_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-3*U[1] + 5*U[2]) + (24*f_24_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_25_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_24_2*f[11]*f[12]*f[42]*f[45])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_25_2*f[11]*f[12]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_24_2*f[10]*f[13]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_25_2*f[10]*f[13]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_24_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_25_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_24_2*f[10]*f[12]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_25_2*f[10]*f[12]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_24_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*f_25_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-3*U[1] + 5*U[2]) - (24*f_24_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-3*U[1] + 5*U[2]) - (24*f_25_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_24_2*f[11]*f[13]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_25_2*f[11]*f[13]*f[43]*f[45])/(-3*U[1] + 5*U[2]) + (18*cos2th*f_22_2*f[10]*f[12]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_23_2*f[10]*f[12]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*f_22_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*f_23_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_22_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_23_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_22_2*f[11]*f[13]*f[42]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_23_2*f[11]*f[13]*f[42]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_22_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_23_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_22_2*f[11]*f[12]*f[43]*f[44])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_23_2*f[11]*f[12]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_22_2*f[10]*f[13]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_23_2*f[10]*f[13]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_22_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-2*U[1] + 5*U[2]) - (18*f_23_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-2*U[1] + 5*U[2]) + (18*f_22_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_23_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_22_2*f[11]*f[12]*f[42]*f[45])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_23_2*f[11]*f[12]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_22_2*f[10]*f[13]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_23_2*f[10]*f[13]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_22_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_23_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_22_2*f[10]*f[12]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_23_2*f[10]*f[12]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_22_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*f_23_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-2*U[1] + 5*U[2]) - (18*f_22_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-2*U[1] + 5*U[2]) - (18*f_23_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_22_2*f[11]*f[13]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_23_2*f[11]*f[13]*f[43]*f[45])/(-2*U[1] + 5*U[2]) + (12*cos2th*f_20_2*f[10]*f[12]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_21_2*f[10]*f[12]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*f_20_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*f_21_2*sin2th*f[11]*f[12]*f[42]*f[44])/(-U[1] + 5*U[2]) - (12*f_20_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-U[1] + 5*U[2]) - (12*f_21_2*sin2th*f[10]*f[13]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_20_2*f[11]*f[13]*f[42]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_21_2*f[11]*f[13]*f[42]*f[44])/(-U[1] + 5*U[2]) - (12*f_20_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*f_21_2*sin2th*f[10]*f[12]*f[43]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_20_2*f[11]*f[12]*f[43]*f[44])/(-U[1] + 5*U[2]) + (12*cos2th*f_21_2*f[11]*f[12]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*cos2th*f_20_2*f[10]*f[13]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*cos2th*f_21_2*f[10]*f[13]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*f_20_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-U[1] + 5*U[2]) - (12*f_21_2*sin2th*f[11]*f[13]*f[43]*f[44])/(-U[1] + 5*U[2]) + (12*f_20_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*f_21_2*sin2th*f[10]*f[12]*f[42]*f[45])/(-U[1] + 5*U[2]) - (12*cos2th*f_20_2*f[11]*f[12]*f[42]*f[45])/(-U[1] + 5*U[2]) - (12*cos2th*f_21_2*f[11]*f[12]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_20_2*f[10]*f[13]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_21_2*f[10]*f[13]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*f_20_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*f_21_2*sin2th*f[11]*f[13]*f[42]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_20_2*f[10]*f[12]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_21_2*f[10]*f[12]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*f_20_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*f_21_2*sin2th*f[11]*f[12]*f[43]*f[45])/(-U[1] + 5*U[2]) - (12*f_20_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-U[1] + 5*U[2]) - (12*f_21_2*sin2th*f[10]*f[13]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_20_2*f[11]*f[13]*f[43]*f[45])/(-U[1] + 5*U[2]) + (12*cos2th*f_21_2*f[11]*f[13]*f[43]*f[45])/(-U[1] + 5*U[2]) + (42*cos2th*f_28_2*f[12]*f[14]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_29_2*f[12]*f[14]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*f_28_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*f_29_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_28_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_29_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_28_2*f[13]*f[15]*f[44]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_29_2*f[13]*f[15]*f[44]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_28_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_29_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_28_2*f[13]*f[14]*f[45]*f[46])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_29_2*f[13]*f[14]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_28_2*f[12]*f[15]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_29_2*f[12]*f[15]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_28_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-5*U[1] + 6*U[2]) - (42*f_29_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-5*U[1] + 6*U[2]) + (42*f_28_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_29_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_28_2*f[13]*f[14]*f[44]*f[47])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_29_2*f[13]*f[14]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_28_2*f[12]*f[15]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_29_2*f[12]*f[15]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_28_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_29_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_28_2*f[12]*f[14]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_29_2*f[12]*f[14]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_28_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*f_29_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-5*U[1] + 6*U[2]) - (42*f_28_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-5*U[1] + 6*U[2]) - (42*f_29_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_28_2*f[13]*f[15]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_29_2*f[13]*f[15]*f[45]*f[47])/(-5*U[1] + 6*U[2]) + (35*cos2th*f_26_2*f[12]*f[14]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_27_2*f[12]*f[14]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*f_26_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*f_27_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_26_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_27_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_26_2*f[13]*f[15]*f[44]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_27_2*f[13]*f[15]*f[44]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_26_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_27_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_26_2*f[13]*f[14]*f[45]*f[46])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_27_2*f[13]*f[14]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_26_2*f[12]*f[15]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_27_2*f[12]*f[15]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_26_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-4*U[1] + 6*U[2]) - (35*f_27_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-4*U[1] + 6*U[2]) + (35*f_26_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_27_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_26_2*f[13]*f[14]*f[44]*f[47])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_27_2*f[13]*f[14]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_26_2*f[12]*f[15]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_27_2*f[12]*f[15]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_26_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_27_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_26_2*f[12]*f[14]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_27_2*f[12]*f[14]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_26_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*f_27_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-4*U[1] + 6*U[2]) - (35*f_26_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-4*U[1] + 6*U[2]) - (35*f_27_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_26_2*f[13]*f[15]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_27_2*f[13]*f[15]*f[45]*f[47])/(-4*U[1] + 6*U[2]) + (28*cos2th*f_24_2*f[12]*f[14]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_25_2*f[12]*f[14]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*f_24_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*f_25_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_24_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_25_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_24_2*f[13]*f[15]*f[44]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_25_2*f[13]*f[15]*f[44]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_24_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_25_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_24_2*f[13]*f[14]*f[45]*f[46])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_25_2*f[13]*f[14]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_24_2*f[12]*f[15]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_25_2*f[12]*f[15]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_24_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-3*U[1] + 6*U[2]) - (28*f_25_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-3*U[1] + 6*U[2]) + (28*f_24_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_25_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_24_2*f[13]*f[14]*f[44]*f[47])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_25_2*f[13]*f[14]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_24_2*f[12]*f[15]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_25_2*f[12]*f[15]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_24_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_25_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_24_2*f[12]*f[14]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_25_2*f[12]*f[14]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_24_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*f_25_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-3*U[1] + 6*U[2]) - (28*f_24_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-3*U[1] + 6*U[2]) - (28*f_25_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_24_2*f[13]*f[15]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_25_2*f[13]*f[15]*f[45]*f[47])/(-3*U[1] + 6*U[2]) + (21*cos2th*f_22_2*f[12]*f[14]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_23_2*f[12]*f[14]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*f_22_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*f_23_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_22_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_23_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_22_2*f[13]*f[15]*f[44]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_23_2*f[13]*f[15]*f[44]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_22_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_23_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_22_2*f[13]*f[14]*f[45]*f[46])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_23_2*f[13]*f[14]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_22_2*f[12]*f[15]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_23_2*f[12]*f[15]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_22_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-2*U[1] + 6*U[2]) - (21*f_23_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-2*U[1] + 6*U[2]) + (21*f_22_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_23_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_22_2*f[13]*f[14]*f[44]*f[47])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_23_2*f[13]*f[14]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_22_2*f[12]*f[15]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_23_2*f[12]*f[15]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_22_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_23_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_22_2*f[12]*f[14]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_23_2*f[12]*f[14]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_22_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*f_23_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-2*U[1] + 6*U[2]) - (21*f_22_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-2*U[1] + 6*U[2]) - (21*f_23_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_22_2*f[13]*f[15]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_23_2*f[13]*f[15]*f[45]*f[47])/(-2*U[1] + 6*U[2]) + (14*cos2th*f_20_2*f[12]*f[14]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_21_2*f[12]*f[14]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*f_20_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*f_21_2*sin2th*f[13]*f[14]*f[44]*f[46])/(-U[1] + 6*U[2]) - (14*f_20_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-U[1] + 6*U[2]) - (14*f_21_2*sin2th*f[12]*f[15]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_20_2*f[13]*f[15]*f[44]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_21_2*f[13]*f[15]*f[44]*f[46])/(-U[1] + 6*U[2]) - (14*f_20_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*f_21_2*sin2th*f[12]*f[14]*f[45]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_20_2*f[13]*f[14]*f[45]*f[46])/(-U[1] + 6*U[2]) + (14*cos2th*f_21_2*f[13]*f[14]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*cos2th*f_20_2*f[12]*f[15]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*cos2th*f_21_2*f[12]*f[15]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*f_20_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-U[1] + 6*U[2]) - (14*f_21_2*sin2th*f[13]*f[15]*f[45]*f[46])/(-U[1] + 6*U[2]) + (14*f_20_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*f_21_2*sin2th*f[12]*f[14]*f[44]*f[47])/(-U[1] + 6*U[2]) - (14*cos2th*f_20_2*f[13]*f[14]*f[44]*f[47])/(-U[1] + 6*U[2]) - (14*cos2th*f_21_2*f[13]*f[14]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_20_2*f[12]*f[15]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_21_2*f[12]*f[15]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*f_20_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*f_21_2*sin2th*f[13]*f[15]*f[44]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_20_2*f[12]*f[14]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_21_2*f[12]*f[14]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*f_20_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*f_21_2*sin2th*f[13]*f[14]*f[45]*f[47])/(-U[1] + 6*U[2]) - (14*f_20_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-U[1] + 6*U[2]) - (14*f_21_2*sin2th*f[12]*f[15]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_20_2*f[13]*f[15]*f[45]*f[47])/(-U[1] + 6*U[2]) + (14*cos2th*f_21_2*f[13]*f[15]*f[45]*f[47])/(-U[1] + 6*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[1]*J[2]*((-2*cos2th*f_32_2*f[18]*f[20]*f[50]*f[52])/U[1] - (2*cos2th*f_33_2*f[18]*f[20]*f[50]*f[52])/U[1] - (2*f_32_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[1] - (2*f_33_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[1] + (2*f_32_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[1] + (2*f_33_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[1] - (2*cos2th*f_32_2*f[19]*f[21]*f[50]*f[52])/U[1] - (2*cos2th*f_33_2*f[19]*f[21]*f[50]*f[52])/U[1] + (2*f_32_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[1] + (2*f_33_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[1] - (2*cos2th*f_32_2*f[19]*f[20]*f[51]*f[52])/U[1] - (2*cos2th*f_33_2*f[19]*f[20]*f[51]*f[52])/U[1] + (2*cos2th*f_32_2*f[18]*f[21]*f[51]*f[52])/U[1] + (2*cos2th*f_33_2*f[18]*f[21]*f[51]*f[52])/U[1] + (2*f_32_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[1] + (2*f_33_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[1] - (2*f_32_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[1] - (2*f_33_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[1] + (2*cos2th*f_32_2*f[19]*f[20]*f[50]*f[53])/U[1] + (2*cos2th*f_33_2*f[19]*f[20]*f[50]*f[53])/U[1] - (2*cos2th*f_32_2*f[18]*f[21]*f[50]*f[53])/U[1] - (2*cos2th*f_33_2*f[18]*f[21]*f[50]*f[53])/U[1] - (2*f_32_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[1] - (2*f_33_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[1] - (2*cos2th*f_32_2*f[18]*f[20]*f[51]*f[53])/U[1] - (2*cos2th*f_33_2*f[18]*f[20]*f[51]*f[53])/U[1] - (2*f_32_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[1] - (2*f_33_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[1] + (2*f_32_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[1] + (2*f_33_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[1] - (2*cos2th*f_32_2*f[19]*f[21]*f[51]*f[53])/U[1] - (2*cos2th*f_33_2*f[19]*f[21]*f[51]*f[53])/U[1] - (3*cos2th*f_32_2*f[20]*f[22]*f[52]*f[54])/(2.*U[1]) - (3*cos2th*f_33_2*f[20]*f[22]*f[52]*f[54])/(2.*U[1]) - (3*f_32_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[1]) - (3*f_33_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[1]) + (3*f_32_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[1]) + (3*f_33_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[1]) - (3*cos2th*f_32_2*f[21]*f[23]*f[52]*f[54])/(2.*U[1]) - (3*cos2th*f_33_2*f[21]*f[23]*f[52]*f[54])/(2.*U[1]) + (3*f_32_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[1]) + (3*f_33_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[1]) - (3*cos2th*f_32_2*f[21]*f[22]*f[53]*f[54])/(2.*U[1]) - (3*cos2th*f_33_2*f[21]*f[22]*f[53]*f[54])/(2.*U[1]) + (3*cos2th*f_32_2*f[20]*f[23]*f[53]*f[54])/(2.*U[1]) + (3*cos2th*f_33_2*f[20]*f[23]*f[53]*f[54])/(2.*U[1]) + (3*f_32_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[1]) + (3*f_33_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[1]) - (3*f_32_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[1]) - (3*f_33_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_32_2*f[21]*f[22]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_33_2*f[21]*f[22]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_32_2*f[20]*f[23]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_33_2*f[20]*f[23]*f[52]*f[55])/(2.*U[1]) - (3*f_32_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[1]) - (3*f_33_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_32_2*f[20]*f[22]*f[53]*f[55])/(2.*U[1]) - (3*cos2th*f_33_2*f[20]*f[22]*f[53]*f[55])/(2.*U[1]) - (3*f_32_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[1]) - (3*f_33_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[1]) + (3*f_32_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[1]) + (3*f_33_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[1]) - (3*cos2th*f_32_2*f[21]*f[23]*f[53]*f[55])/(2.*U[1]) - (3*cos2th*f_33_2*f[21]*f[23]*f[53]*f[55])/(2.*U[1]) - (4*cos2th*f_32_2*f[22]*f[24]*f[54]*f[56])/(3.*U[1]) - (4*cos2th*f_33_2*f[22]*f[24]*f[54]*f[56])/(3.*U[1]) - (4*f_32_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[1]) - (4*f_33_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[1]) + (4*f_32_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[1]) + (4*f_33_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[1]) - (4*cos2th*f_32_2*f[23]*f[25]*f[54]*f[56])/(3.*U[1]) - (4*cos2th*f_33_2*f[23]*f[25]*f[54]*f[56])/(3.*U[1]) + (4*f_32_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[1]) + (4*f_33_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[1]) - (4*cos2th*f_32_2*f[23]*f[24]*f[55]*f[56])/(3.*U[1]) - (4*cos2th*f_33_2*f[23]*f[24]*f[55]*f[56])/(3.*U[1]) + (4*cos2th*f_32_2*f[22]*f[25]*f[55]*f[56])/(3.*U[1]) + (4*cos2th*f_33_2*f[22]*f[25]*f[55]*f[56])/(3.*U[1]) + (4*f_32_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[1]) + (4*f_33_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[1]) - (4*f_32_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[1]) - (4*f_33_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_32_2*f[23]*f[24]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_33_2*f[23]*f[24]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_32_2*f[22]*f[25]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_33_2*f[22]*f[25]*f[54]*f[57])/(3.*U[1]) - (4*f_32_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[1]) - (4*f_33_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_32_2*f[22]*f[24]*f[55]*f[57])/(3.*U[1]) - (4*cos2th*f_33_2*f[22]*f[24]*f[55]*f[57])/(3.*U[1]) - (4*f_32_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[1]) - (4*f_33_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[1]) + (4*f_32_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[1]) + (4*f_33_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[1]) - (4*cos2th*f_32_2*f[23]*f[25]*f[55]*f[57])/(3.*U[1]) - (4*cos2th*f_33_2*f[23]*f[25]*f[55]*f[57])/(3.*U[1]) - (5*cos2th*f_32_2*f[24]*f[26]*f[56]*f[58])/(4.*U[1]) - (5*cos2th*f_33_2*f[24]*f[26]*f[56]*f[58])/(4.*U[1]) - (5*f_32_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[1]) - (5*f_33_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[1]) + (5*f_32_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[1]) + (5*f_33_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[1]) - (5*cos2th*f_32_2*f[25]*f[27]*f[56]*f[58])/(4.*U[1]) - (5*cos2th*f_33_2*f[25]*f[27]*f[56]*f[58])/(4.*U[1]) + (5*f_32_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[1]) + (5*f_33_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[1]) - (5*cos2th*f_32_2*f[25]*f[26]*f[57]*f[58])/(4.*U[1]) - (5*cos2th*f_33_2*f[25]*f[26]*f[57]*f[58])/(4.*U[1]) + (5*cos2th*f_32_2*f[24]*f[27]*f[57]*f[58])/(4.*U[1]) + (5*cos2th*f_33_2*f[24]*f[27]*f[57]*f[58])/(4.*U[1]) + (5*f_32_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[1]) + (5*f_33_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[1]) - (5*f_32_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[1]) - (5*f_33_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_32_2*f[25]*f[26]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_33_2*f[25]*f[26]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_32_2*f[24]*f[27]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_33_2*f[24]*f[27]*f[56]*f[59])/(4.*U[1]) - (5*f_32_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[1]) - (5*f_33_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_32_2*f[24]*f[26]*f[57]*f[59])/(4.*U[1]) - (5*cos2th*f_33_2*f[24]*f[26]*f[57]*f[59])/(4.*U[1]) - (5*f_32_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[1]) - (5*f_33_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[1]) + (5*f_32_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[1]) + (5*f_33_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[1]) - (5*cos2th*f_32_2*f[25]*f[27]*f[57]*f[59])/(4.*U[1]) - (5*cos2th*f_33_2*f[25]*f[27]*f[57]*f[59])/(4.*U[1]) - (6*cos2th*f_32_2*f[26]*f[28]*f[58]*f[60])/(5.*U[1]) - (6*cos2th*f_33_2*f[26]*f[28]*f[58]*f[60])/(5.*U[1]) - (6*f_32_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[1]) - (6*f_33_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[1]) + (6*f_32_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[1]) + (6*f_33_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[1]) - (6*cos2th*f_32_2*f[27]*f[29]*f[58]*f[60])/(5.*U[1]) - (6*cos2th*f_33_2*f[27]*f[29]*f[58]*f[60])/(5.*U[1]) + (6*f_32_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[1]) + (6*f_33_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[1]) - (6*cos2th*f_32_2*f[27]*f[28]*f[59]*f[60])/(5.*U[1]) - (6*cos2th*f_33_2*f[27]*f[28]*f[59]*f[60])/(5.*U[1]) + (6*cos2th*f_32_2*f[26]*f[29]*f[59]*f[60])/(5.*U[1]) + (6*cos2th*f_33_2*f[26]*f[29]*f[59]*f[60])/(5.*U[1]) + (6*f_32_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[1]) + (6*f_33_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[1]) - (6*f_32_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[1]) - (6*f_33_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_32_2*f[27]*f[28]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_33_2*f[27]*f[28]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_32_2*f[26]*f[29]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_33_2*f[26]*f[29]*f[58]*f[61])/(5.*U[1]) - (6*f_32_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[1]) - (6*f_33_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_32_2*f[26]*f[28]*f[59]*f[61])/(5.*U[1]) - (6*cos2th*f_33_2*f[26]*f[28]*f[59]*f[61])/(5.*U[1]) - (6*f_32_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[1]) - (6*f_33_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[1]) + (6*f_32_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[1]) + (6*f_33_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[1]) - (6*cos2th*f_32_2*f[27]*f[29]*f[59]*f[61])/(5.*U[1]) - (6*cos2th*f_33_2*f[27]*f[29]*f[59]*f[61])/(5.*U[1]) - (7*cos2th*f_32_2*f[28]*f[30]*f[60]*f[62])/(6.*U[1]) - (7*cos2th*f_33_2*f[28]*f[30]*f[60]*f[62])/(6.*U[1]) - (7*f_32_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[1]) - (7*f_33_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[1]) + (7*f_32_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[1]) + (7*f_33_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[1]) - (7*cos2th*f_32_2*f[29]*f[31]*f[60]*f[62])/(6.*U[1]) - (7*cos2th*f_33_2*f[29]*f[31]*f[60]*f[62])/(6.*U[1]) + (7*f_32_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[1]) + (7*f_33_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[1]) - (7*cos2th*f_32_2*f[29]*f[30]*f[61]*f[62])/(6.*U[1]) - (7*cos2th*f_33_2*f[29]*f[30]*f[61]*f[62])/(6.*U[1]) + (7*cos2th*f_32_2*f[28]*f[31]*f[61]*f[62])/(6.*U[1]) + (7*cos2th*f_33_2*f[28]*f[31]*f[61]*f[62])/(6.*U[1]) + (7*f_32_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[1]) + (7*f_33_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[1]) - (7*f_32_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[1]) - (7*f_33_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_32_2*f[29]*f[30]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_33_2*f[29]*f[30]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_32_2*f[28]*f[31]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_33_2*f[28]*f[31]*f[60]*f[63])/(6.*U[1]) - (7*f_32_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[1]) - (7*f_33_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_32_2*f[28]*f[30]*f[61]*f[63])/(6.*U[1]) - (7*cos2th*f_33_2*f[28]*f[30]*f[61]*f[63])/(6.*U[1]) - (7*f_32_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[1]) - (7*f_33_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[1]) + (7*f_32_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[1]) + (7*f_33_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[1]) - (7*cos2th*f_32_2*f[29]*f[31]*f[61]*f[63])/(6.*U[1]) - (7*cos2th*f_33_2*f[29]*f[31]*f[61]*f[63])/(6.*U[1]) + (2*cos2th*f_34_2*f[16]*f[18]*f[48]*f[50])/U[2] + (2*cos2th*f_35_2*f[16]*f[18]*f[48]*f[50])/U[2] + (3*cos2th*f_36_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) + (3*cos2th*f_37_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) + (4*cos2th*f_38_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) + (4*cos2th*f_39_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) + (5*cos2th*f_40_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) + (5*cos2th*f_41_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) + (6*cos2th*f_42_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) + (6*cos2th*f_43_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) + (7*cos2th*f_44_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) + (7*cos2th*f_45_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] + (2*f_35_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] + (3*f_36_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) + (3*f_37_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) + (4*f_38_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) + (4*f_39_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) + (5*f_40_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) + (5*f_41_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) + (6*f_42_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) + (6*f_43_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) + (7*f_44_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) + (7*f_45_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] - (2*f_35_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] - (3*f_36_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) - (3*f_37_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) - (4*f_38_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) - (4*f_39_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) - (5*f_40_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) - (5*f_41_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) - (6*f_42_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) - (6*f_43_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) - (7*f_44_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) - (7*f_45_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) + (2*cos2th*f_34_2*f[17]*f[19]*f[48]*f[50])/U[2] + (2*cos2th*f_35_2*f[17]*f[19]*f[48]*f[50])/U[2] + (3*cos2th*f_36_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) + (3*cos2th*f_37_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) + (4*cos2th*f_38_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) + (4*cos2th*f_39_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) + (5*cos2th*f_40_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) + (5*cos2th*f_41_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) + (6*cos2th*f_42_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) + (6*cos2th*f_43_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) + (7*cos2th*f_44_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) + (7*cos2th*f_45_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] - (2*f_35_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] - (3*f_36_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) - (3*f_37_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) - (4*f_38_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) - (4*f_39_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) - (5*f_40_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) - (5*f_41_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) - (6*f_42_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) - (6*f_43_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) - (7*f_44_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) - (7*f_45_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) + (2*cos2th*f_34_2*f[17]*f[18]*f[49]*f[50])/U[2] + (2*cos2th*f_35_2*f[17]*f[18]*f[49]*f[50])/U[2] + (3*cos2th*f_36_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) + (3*cos2th*f_37_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) + (4*cos2th*f_38_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) + (4*cos2th*f_39_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) + (5*cos2th*f_40_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) + (5*cos2th*f_41_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) + (6*cos2th*f_42_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) + (6*cos2th*f_43_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) + (7*cos2th*f_44_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) + (7*cos2th*f_45_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) - (2*cos2th*f_34_2*f[16]*f[19]*f[49]*f[50])/U[2] - (2*cos2th*f_35_2*f[16]*f[19]*f[49]*f[50])/U[2] - (3*cos2th*f_36_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) - (3*cos2th*f_37_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) - (4*cos2th*f_38_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) - (4*cos2th*f_39_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) - (5*cos2th*f_40_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) - (5*cos2th*f_41_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) - (6*cos2th*f_42_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) - (6*cos2th*f_43_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) - (7*cos2th*f_44_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) - (7*cos2th*f_45_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] - (2*f_35_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] - (3*f_36_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) - (3*f_37_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) - (4*f_38_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) - (4*f_39_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) - (5*f_40_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) - (5*f_41_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) - (6*f_42_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) - (6*f_43_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) - (7*f_44_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) - (7*f_45_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] + (2*f_35_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] + (3*f_36_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) + (3*f_37_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) + (4*f_38_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) + (4*f_39_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) + (5*f_40_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) + (5*f_41_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) + (6*f_42_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) + (6*f_43_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) + (7*f_44_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) + (7*f_45_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_34_2*f[17]*f[18]*f[48]*f[51])/U[2] - (2*cos2th*f_35_2*f[17]*f[18]*f[48]*f[51])/U[2] - (3*cos2th*f_36_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) - (3*cos2th*f_37_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) - (4*cos2th*f_38_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) - (4*cos2th*f_39_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) - (5*cos2th*f_40_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) - (5*cos2th*f_41_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) - (6*cos2th*f_42_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) - (6*cos2th*f_43_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) - (7*cos2th*f_44_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) - (7*cos2th*f_45_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[16]*f[19]*f[48]*f[51])/U[2] + (2*cos2th*f_35_2*f[16]*f[19]*f[48]*f[51])/U[2] + (3*cos2th*f_36_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) + (3*cos2th*f_37_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) + (4*cos2th*f_38_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) + (4*cos2th*f_39_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) + (5*cos2th*f_40_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) + (5*cos2th*f_41_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) + (6*cos2th*f_42_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) + (6*cos2th*f_43_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) + (7*cos2th*f_44_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) + (7*cos2th*f_45_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) + (2*f_34_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] + (2*f_35_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] + (3*f_36_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) + (3*f_37_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) + (4*f_38_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) + (4*f_39_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) + (5*f_40_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) + (5*f_41_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) + (6*f_42_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) + (6*f_43_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) + (7*f_44_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) + (7*f_45_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[16]*f[18]*f[49]*f[51])/U[2] + (2*cos2th*f_35_2*f[16]*f[18]*f[49]*f[51])/U[2] + (3*cos2th*f_36_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) + (3*cos2th*f_37_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) + (4*cos2th*f_38_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) + (4*cos2th*f_39_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) + (5*cos2th*f_40_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) + (5*cos2th*f_41_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) + (6*cos2th*f_42_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) + (6*cos2th*f_43_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) + (7*cos2th*f_44_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) + (7*cos2th*f_45_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) + (2*f_34_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] + (2*f_35_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] + (3*f_36_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) + (3*f_37_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) + (4*f_38_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) + (4*f_39_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) + (5*f_40_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) + (5*f_41_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) + (6*f_42_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) + (6*f_43_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) + (7*f_44_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) + (7*f_45_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) - (2*f_34_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] - (2*f_35_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] - (3*f_36_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) - (3*f_37_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) - (4*f_38_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) - (4*f_39_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) - (5*f_40_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) - (5*f_41_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) - (6*f_42_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) - (6*f_43_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) - (7*f_44_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) - (7*f_45_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[17]*f[19]*f[49]*f[51])/U[2] + (2*cos2th*f_35_2*f[17]*f[19]*f[49]*f[51])/U[2] + (3*cos2th*f_36_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) + (3*cos2th*f_37_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) + (4*cos2th*f_38_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) + (4*cos2th*f_39_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) + (5*cos2th*f_40_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) + (5*cos2th*f_41_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) + (6*cos2th*f_42_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) + (6*cos2th*f_43_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) + (7*cos2th*f_44_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (7*cos2th*f_45_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (14*cos2th*f_34_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_35_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*f_34_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*f_35_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + U[2]) - (14*f_34_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + U[2]) - (14*f_35_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_34_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_35_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + U[2]) - (14*f_34_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*f_35_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_34_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_35_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*cos2th*f_34_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*cos2th*f_35_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*f_34_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*f_35_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + U[2]) + (14*f_34_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*f_35_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + U[2]) - (14*cos2th*f_34_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + U[2]) - (14*cos2th*f_35_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_34_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_35_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*f_34_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*f_35_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_34_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_35_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*f_34_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*f_35_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + U[2]) - (14*f_34_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + U[2]) - (14*f_35_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_34_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_35_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + U[2]) + (12*cos2th*f_34_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_35_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*f_34_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*f_35_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + U[2]) - (12*f_34_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + U[2]) - (12*f_35_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_34_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_35_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + U[2]) - (12*f_34_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*f_35_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_34_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_35_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*cos2th*f_34_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*cos2th*f_35_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*f_34_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*f_35_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + U[2]) + (12*f_34_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*f_35_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + U[2]) - (12*cos2th*f_34_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + U[2]) - (12*cos2th*f_35_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_34_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_35_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*f_34_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*f_35_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_34_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_35_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*f_34_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*f_35_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + U[2]) - (12*f_34_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + U[2]) - (12*f_35_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_34_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_35_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + U[2]) + (10*cos2th*f_34_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_35_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*f_34_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*f_35_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + U[2]) - (10*f_34_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + U[2]) - (10*f_35_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_34_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_35_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + U[2]) - (10*f_34_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*f_35_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_34_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_35_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*cos2th*f_34_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*cos2th*f_35_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*f_34_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*f_35_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + U[2]) + (10*f_34_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*f_35_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + U[2]) - (10*cos2th*f_34_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + U[2]) - (10*cos2th*f_35_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_34_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_35_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*f_34_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*f_35_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_34_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_35_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*f_34_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*f_35_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + U[2]) - (10*f_34_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + U[2]) - (10*f_35_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_34_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_35_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + U[2]) + (8*cos2th*f_34_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_35_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*f_34_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*f_35_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + U[2]) - (8*f_34_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + U[2]) - (8*f_35_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_34_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_35_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + U[2]) - (8*f_34_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*f_35_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_34_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_35_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*cos2th*f_34_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*cos2th*f_35_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*f_34_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*f_35_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + U[2]) + (8*f_34_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*f_35_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + U[2]) - (8*cos2th*f_34_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + U[2]) - (8*cos2th*f_35_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_34_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_35_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*f_34_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*f_35_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_34_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_35_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*f_34_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*f_35_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + U[2]) - (8*f_34_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + U[2]) - (8*f_35_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_34_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_35_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + U[2]) + (6*cos2th*f_34_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_35_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*f_34_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*f_35_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + U[2]) - (6*f_34_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + U[2]) - (6*f_35_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_34_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_35_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + U[2]) - (6*f_34_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*f_35_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_34_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_35_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*cos2th*f_34_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*cos2th*f_35_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*f_34_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*f_35_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + U[2]) + (6*f_34_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*f_35_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + U[2]) - (6*cos2th*f_34_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + U[2]) - (6*cos2th*f_35_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_34_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_35_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*f_34_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*f_35_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_34_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_35_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*f_34_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*f_35_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + U[2]) - (6*f_34_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + U[2]) - (6*f_35_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_34_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_35_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + U[2]) + (21*cos2th*f_36_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_37_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*f_36_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*f_37_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_36_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_37_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_36_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_37_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_36_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_37_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_36_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_37_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_36_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_37_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_36_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_37_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 2*U[2]) + (21*f_36_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_37_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_36_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_37_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_36_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_37_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_36_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_37_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_36_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_37_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_36_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_37_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 2*U[2]) - (21*f_36_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 2*U[2]) - (21*f_37_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_36_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_37_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (18*cos2th*f_36_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_37_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*f_36_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*f_37_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_36_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_37_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_36_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_37_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_36_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_37_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_36_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_37_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_36_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_37_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_36_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_37_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 2*U[2]) + (18*f_36_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_37_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_36_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_37_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_36_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_37_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_36_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_37_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_36_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_37_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_36_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_37_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 2*U[2]) - (18*f_36_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 2*U[2]) - (18*f_37_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_36_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_37_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (15*cos2th*f_36_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_37_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*f_36_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*f_37_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_36_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_37_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_36_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_37_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_36_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_37_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_36_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_37_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_36_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_37_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_36_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_37_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 2*U[2]) + (15*f_36_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_37_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_36_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_37_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_36_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_37_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_36_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_37_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_36_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_37_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_36_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_37_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 2*U[2]) - (15*f_36_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 2*U[2]) - (15*f_37_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_36_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_37_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (12*cos2th*f_36_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_37_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*f_36_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*f_37_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_36_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_37_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_36_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_37_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_36_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_37_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_36_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_37_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_36_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_37_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_36_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_37_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 2*U[2]) + (12*f_36_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_37_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_36_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_37_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_36_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_37_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_36_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_37_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_36_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_37_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_36_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_37_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 2*U[2]) - (12*f_36_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 2*U[2]) - (12*f_37_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_36_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_37_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (6*cos2th*f_36_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_37_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*f_36_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*f_37_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 2*U[2]) - (6*f_36_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 2*U[2]) - (6*f_37_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_36_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_37_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 2*U[2]) - (6*f_36_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*f_37_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_36_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_37_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*cos2th*f_36_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*cos2th*f_37_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*f_36_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*f_37_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 2*U[2]) + (6*f_36_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*f_37_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 2*U[2]) - (6*cos2th*f_36_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 2*U[2]) - (6*cos2th*f_37_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_36_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_37_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*f_36_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*f_37_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_36_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_37_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*f_36_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*f_37_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 2*U[2]) - (6*f_36_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 2*U[2]) - (6*f_37_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_36_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_37_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 2*U[2]) + (28*cos2th*f_38_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_39_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*f_38_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*f_39_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_38_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_39_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_38_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_39_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_38_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_39_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_38_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_39_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_38_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_39_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_38_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_39_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 3*U[2]) + (28*f_38_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_39_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_38_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_39_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_38_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_39_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_38_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_39_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_38_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_39_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_38_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_39_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 3*U[2]) - (28*f_38_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 3*U[2]) - (28*f_39_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_38_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_39_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (24*cos2th*f_38_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_39_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*f_38_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*f_39_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_38_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_39_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_38_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_39_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_38_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_39_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_38_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_39_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_38_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_39_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_38_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_39_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 3*U[2]) + (24*f_38_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_39_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_38_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_39_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_38_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_39_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_38_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_39_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_38_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_39_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_38_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_39_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 3*U[2]) - (24*f_38_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 3*U[2]) - (24*f_39_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_38_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_39_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (20*cos2th*f_38_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_39_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*f_38_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*f_39_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_38_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_39_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_38_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_39_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_38_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_39_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_38_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_39_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_38_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_39_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_38_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_39_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 3*U[2]) + (20*f_38_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_39_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_38_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_39_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_38_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_39_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_38_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_39_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_38_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_39_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_38_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_39_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 3*U[2]) - (20*f_38_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 3*U[2]) - (20*f_39_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_38_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_39_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (12*cos2th*f_38_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_39_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*f_38_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*f_39_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_38_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_39_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_38_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_39_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_38_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_39_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_38_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_39_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_38_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_39_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_38_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_39_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 3*U[2]) + (12*f_38_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_39_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_38_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_39_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_38_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_39_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_38_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_39_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_38_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_39_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_38_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_39_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 3*U[2]) - (12*f_38_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 3*U[2]) - (12*f_39_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_38_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_39_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (8*cos2th*f_38_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_39_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*f_38_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*f_39_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 3*U[2]) - (8*f_38_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 3*U[2]) - (8*f_39_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_38_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_39_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 3*U[2]) - (8*f_38_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*f_39_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_38_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_39_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*cos2th*f_38_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*cos2th*f_39_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*f_38_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*f_39_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 3*U[2]) + (8*f_38_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*f_39_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 3*U[2]) - (8*cos2th*f_38_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 3*U[2]) - (8*cos2th*f_39_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_38_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_39_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*f_38_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*f_39_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_38_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_39_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*f_38_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*f_39_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 3*U[2]) - (8*f_38_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 3*U[2]) - (8*f_39_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_38_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_39_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 3*U[2]) + (35*cos2th*f_40_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_41_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*f_40_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*f_41_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_40_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_41_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_40_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_41_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_40_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_41_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_40_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_41_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_40_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_41_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_40_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_41_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 4*U[2]) + (35*f_40_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_41_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_40_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_41_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_40_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_41_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_40_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_41_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_40_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_41_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_40_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_41_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 4*U[2]) - (35*f_40_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 4*U[2]) - (35*f_41_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_40_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_41_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (30*cos2th*f_40_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_41_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*f_40_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*f_41_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_40_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_41_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_40_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_41_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_40_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_41_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_40_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_41_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_40_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_41_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_40_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_41_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 4*U[2]) + (30*f_40_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_41_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_40_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_41_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_40_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_41_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_40_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_41_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_40_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_41_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_40_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_41_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 4*U[2]) - (30*f_40_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 4*U[2]) - (30*f_41_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_40_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_41_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (20*cos2th*f_40_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_41_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*f_40_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*f_41_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_40_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_41_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_40_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_41_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_40_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_41_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_40_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_41_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_40_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_41_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_40_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_41_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 4*U[2]) + (20*f_40_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_41_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_40_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_41_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_40_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_41_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_40_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_41_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_40_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_41_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_40_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_41_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 4*U[2]) - (20*f_40_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 4*U[2]) - (20*f_41_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_40_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_41_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (15*cos2th*f_40_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_41_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*f_40_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*f_41_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_40_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_41_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_40_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_41_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_40_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_41_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_40_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_41_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_40_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_41_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_40_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_41_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 4*U[2]) + (15*f_40_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_41_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_40_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_41_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_40_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_41_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_40_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_41_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_40_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_41_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_40_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_41_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 4*U[2]) - (15*f_40_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 4*U[2]) - (15*f_41_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_40_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_41_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (10*cos2th*f_40_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_41_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*f_40_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*f_41_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 4*U[2]) - (10*f_40_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 4*U[2]) - (10*f_41_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_40_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_41_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 4*U[2]) - (10*f_40_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*f_41_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_40_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_41_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*cos2th*f_40_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*cos2th*f_41_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*f_40_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*f_41_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 4*U[2]) + (10*f_40_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*f_41_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 4*U[2]) - (10*cos2th*f_40_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 4*U[2]) - (10*cos2th*f_41_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_40_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_41_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*f_40_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*f_41_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_40_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_41_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*f_40_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*f_41_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 4*U[2]) - (10*f_40_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 4*U[2]) - (10*f_41_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_40_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_41_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 4*U[2]) + (42*cos2th*f_42_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_43_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*f_42_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*f_43_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_42_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_43_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_42_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_43_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_42_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_43_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_42_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_43_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_42_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_43_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_42_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_43_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 5*U[2]) + (42*f_42_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_43_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_42_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_43_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_42_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_43_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_42_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_43_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_42_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_43_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_42_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_43_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 5*U[2]) - (42*f_42_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 5*U[2]) - (42*f_43_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_42_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_43_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (30*cos2th*f_42_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_43_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*f_42_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*f_43_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_42_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_43_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_42_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_43_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_42_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_43_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_42_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_43_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_42_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_43_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_42_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_43_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 5*U[2]) + (30*f_42_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_43_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_42_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_43_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_42_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_43_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_42_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_43_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_42_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_43_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_42_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_43_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 5*U[2]) - (30*f_42_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 5*U[2]) - (30*f_43_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_42_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_43_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (24*cos2th*f_42_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_43_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*f_42_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*f_43_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_42_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_43_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_42_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_43_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_42_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_43_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_42_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_43_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_42_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_43_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_42_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_43_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 5*U[2]) + (24*f_42_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_43_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_42_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_43_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_42_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_43_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_42_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_43_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_42_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_43_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_42_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_43_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 5*U[2]) - (24*f_42_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 5*U[2]) - (24*f_43_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_42_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_43_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (18*cos2th*f_42_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_43_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*f_42_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*f_43_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_42_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_43_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_42_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_43_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_42_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_43_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_42_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_43_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_42_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_43_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_42_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_43_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 5*U[2]) + (18*f_42_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_43_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_42_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_43_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_42_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_43_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_42_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_43_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_42_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_43_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_42_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_43_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 5*U[2]) - (18*f_42_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 5*U[2]) - (18*f_43_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_42_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_43_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (12*cos2th*f_42_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_43_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*f_42_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*f_43_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 5*U[2]) - (12*f_42_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 5*U[2]) - (12*f_43_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_42_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_43_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 5*U[2]) - (12*f_42_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*f_43_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_42_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_43_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*cos2th*f_42_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*cos2th*f_43_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*f_42_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*f_43_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 5*U[2]) + (12*f_42_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*f_43_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 5*U[2]) - (12*cos2th*f_42_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 5*U[2]) - (12*cos2th*f_43_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_42_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_43_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*f_42_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*f_43_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_42_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_43_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*f_42_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*f_43_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 5*U[2]) - (12*f_42_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 5*U[2]) - (12*f_43_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_42_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_43_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 5*U[2]) + (42*cos2th*f_44_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_45_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*f_44_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*f_45_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_44_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_45_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_44_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_45_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_44_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_45_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_44_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_45_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_44_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_45_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_44_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_45_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 6*U[2]) + (42*f_44_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_45_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_44_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_45_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_44_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_45_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_44_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_45_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_44_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_45_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_44_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_45_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 6*U[2]) - (42*f_44_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 6*U[2]) - (42*f_45_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_44_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_45_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (35*cos2th*f_44_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_45_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*f_44_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*f_45_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_44_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_45_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_44_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_45_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_44_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_45_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_44_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_45_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_44_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_45_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_44_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_45_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 6*U[2]) + (35*f_44_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_45_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_44_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_45_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_44_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_45_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_44_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_45_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_44_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_45_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_44_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_45_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 6*U[2]) - (35*f_44_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 6*U[2]) - (35*f_45_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_44_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_45_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (28*cos2th*f_44_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_45_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*f_44_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*f_45_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_44_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_45_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_44_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_45_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_44_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_45_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_44_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_45_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_44_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_45_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_44_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_45_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 6*U[2]) + (28*f_44_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_45_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_44_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_45_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_44_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_45_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_44_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_45_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_44_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_45_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_44_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_45_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 6*U[2]) - (28*f_44_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 6*U[2]) - (28*f_45_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_44_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_45_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (21*cos2th*f_44_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_45_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*f_44_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*f_45_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_44_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_45_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_44_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_45_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_44_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_45_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_44_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_45_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_44_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_45_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_44_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_45_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 6*U[2]) + (21*f_44_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_45_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_44_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_45_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_44_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_45_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_44_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_45_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_44_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_45_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_44_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_45_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 6*U[2]) - (21*f_44_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 6*U[2]) - (21*f_45_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_44_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_45_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (14*cos2th*f_44_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_45_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*f_44_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*f_45_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 6*U[2]) - (14*f_44_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 6*U[2]) - (14*f_45_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_44_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_45_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 6*U[2]) - (14*f_44_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*f_45_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_44_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_45_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*cos2th*f_44_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*cos2th*f_45_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*f_44_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*f_45_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 6*U[2]) + (14*f_44_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*f_45_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 6*U[2]) - (14*cos2th*f_44_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 6*U[2]) - (14*cos2th*f_45_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_44_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_45_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*f_44_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*f_45_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_44_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_45_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*f_44_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*f_45_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 6*U[2]) - (14*f_44_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 6*U[2]) - (14*f_45_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_44_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_45_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 6*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + (J[1]*J[2]*((-2*cos2th*f_34_2*f[18]*f[20]*f[50]*f[52])/U[1] - (2*cos2th*f_35_2*f[18]*f[20]*f[50]*f[52])/U[1] - (2*f_34_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[1] - (2*f_35_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[1] + (2*f_34_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[1] + (2*f_35_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[1] - (2*cos2th*f_34_2*f[19]*f[21]*f[50]*f[52])/U[1] - (2*cos2th*f_35_2*f[19]*f[21]*f[50]*f[52])/U[1] + (2*f_34_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[1] + (2*f_35_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[1] - (2*cos2th*f_34_2*f[19]*f[20]*f[51]*f[52])/U[1] - (2*cos2th*f_35_2*f[19]*f[20]*f[51]*f[52])/U[1] + (2*cos2th*f_34_2*f[18]*f[21]*f[51]*f[52])/U[1] + (2*cos2th*f_35_2*f[18]*f[21]*f[51]*f[52])/U[1] + (2*f_34_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[1] + (2*f_35_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[1] - (2*f_34_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[1] - (2*f_35_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[1] + (2*cos2th*f_34_2*f[19]*f[20]*f[50]*f[53])/U[1] + (2*cos2th*f_35_2*f[19]*f[20]*f[50]*f[53])/U[1] - (2*cos2th*f_34_2*f[18]*f[21]*f[50]*f[53])/U[1] - (2*cos2th*f_35_2*f[18]*f[21]*f[50]*f[53])/U[1] - (2*f_34_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[1] - (2*f_35_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[1] - (2*cos2th*f_34_2*f[18]*f[20]*f[51]*f[53])/U[1] - (2*cos2th*f_35_2*f[18]*f[20]*f[51]*f[53])/U[1] - (2*f_34_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[1] - (2*f_35_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[1] + (2*f_34_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[1] + (2*f_35_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[1] - (2*cos2th*f_34_2*f[19]*f[21]*f[51]*f[53])/U[1] - (2*cos2th*f_35_2*f[19]*f[21]*f[51]*f[53])/U[1] - (3*cos2th*f_34_2*f[20]*f[22]*f[52]*f[54])/(2.*U[1]) - (3*cos2th*f_35_2*f[20]*f[22]*f[52]*f[54])/(2.*U[1]) - (3*f_34_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[1]) - (3*f_35_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[1]) + (3*f_34_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[1]) + (3*f_35_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[1]) - (3*cos2th*f_34_2*f[21]*f[23]*f[52]*f[54])/(2.*U[1]) - (3*cos2th*f_35_2*f[21]*f[23]*f[52]*f[54])/(2.*U[1]) + (3*f_34_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[1]) + (3*f_35_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[1]) - (3*cos2th*f_34_2*f[21]*f[22]*f[53]*f[54])/(2.*U[1]) - (3*cos2th*f_35_2*f[21]*f[22]*f[53]*f[54])/(2.*U[1]) + (3*cos2th*f_34_2*f[20]*f[23]*f[53]*f[54])/(2.*U[1]) + (3*cos2th*f_35_2*f[20]*f[23]*f[53]*f[54])/(2.*U[1]) + (3*f_34_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[1]) + (3*f_35_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[1]) - (3*f_34_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[1]) - (3*f_35_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_34_2*f[21]*f[22]*f[52]*f[55])/(2.*U[1]) + (3*cos2th*f_35_2*f[21]*f[22]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_34_2*f[20]*f[23]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_35_2*f[20]*f[23]*f[52]*f[55])/(2.*U[1]) - (3*f_34_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[1]) - (3*f_35_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[1]) - (3*cos2th*f_34_2*f[20]*f[22]*f[53]*f[55])/(2.*U[1]) - (3*cos2th*f_35_2*f[20]*f[22]*f[53]*f[55])/(2.*U[1]) - (3*f_34_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[1]) - (3*f_35_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[1]) + (3*f_34_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[1]) + (3*f_35_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[1]) - (3*cos2th*f_34_2*f[21]*f[23]*f[53]*f[55])/(2.*U[1]) - (3*cos2th*f_35_2*f[21]*f[23]*f[53]*f[55])/(2.*U[1]) - (4*cos2th*f_34_2*f[22]*f[24]*f[54]*f[56])/(3.*U[1]) - (4*cos2th*f_35_2*f[22]*f[24]*f[54]*f[56])/(3.*U[1]) - (4*f_34_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[1]) - (4*f_35_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[1]) + (4*f_34_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[1]) + (4*f_35_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[1]) - (4*cos2th*f_34_2*f[23]*f[25]*f[54]*f[56])/(3.*U[1]) - (4*cos2th*f_35_2*f[23]*f[25]*f[54]*f[56])/(3.*U[1]) + (4*f_34_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[1]) + (4*f_35_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[1]) - (4*cos2th*f_34_2*f[23]*f[24]*f[55]*f[56])/(3.*U[1]) - (4*cos2th*f_35_2*f[23]*f[24]*f[55]*f[56])/(3.*U[1]) + (4*cos2th*f_34_2*f[22]*f[25]*f[55]*f[56])/(3.*U[1]) + (4*cos2th*f_35_2*f[22]*f[25]*f[55]*f[56])/(3.*U[1]) + (4*f_34_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[1]) + (4*f_35_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[1]) - (4*f_34_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[1]) - (4*f_35_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_34_2*f[23]*f[24]*f[54]*f[57])/(3.*U[1]) + (4*cos2th*f_35_2*f[23]*f[24]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_34_2*f[22]*f[25]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_35_2*f[22]*f[25]*f[54]*f[57])/(3.*U[1]) - (4*f_34_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[1]) - (4*f_35_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[1]) - (4*cos2th*f_34_2*f[22]*f[24]*f[55]*f[57])/(3.*U[1]) - (4*cos2th*f_35_2*f[22]*f[24]*f[55]*f[57])/(3.*U[1]) - (4*f_34_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[1]) - (4*f_35_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[1]) + (4*f_34_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[1]) + (4*f_35_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[1]) - (4*cos2th*f_34_2*f[23]*f[25]*f[55]*f[57])/(3.*U[1]) - (4*cos2th*f_35_2*f[23]*f[25]*f[55]*f[57])/(3.*U[1]) - (5*cos2th*f_34_2*f[24]*f[26]*f[56]*f[58])/(4.*U[1]) - (5*cos2th*f_35_2*f[24]*f[26]*f[56]*f[58])/(4.*U[1]) - (5*f_34_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[1]) - (5*f_35_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[1]) + (5*f_34_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[1]) + (5*f_35_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[1]) - (5*cos2th*f_34_2*f[25]*f[27]*f[56]*f[58])/(4.*U[1]) - (5*cos2th*f_35_2*f[25]*f[27]*f[56]*f[58])/(4.*U[1]) + (5*f_34_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[1]) + (5*f_35_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[1]) - (5*cos2th*f_34_2*f[25]*f[26]*f[57]*f[58])/(4.*U[1]) - (5*cos2th*f_35_2*f[25]*f[26]*f[57]*f[58])/(4.*U[1]) + (5*cos2th*f_34_2*f[24]*f[27]*f[57]*f[58])/(4.*U[1]) + (5*cos2th*f_35_2*f[24]*f[27]*f[57]*f[58])/(4.*U[1]) + (5*f_34_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[1]) + (5*f_35_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[1]) - (5*f_34_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[1]) - (5*f_35_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_34_2*f[25]*f[26]*f[56]*f[59])/(4.*U[1]) + (5*cos2th*f_35_2*f[25]*f[26]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_34_2*f[24]*f[27]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_35_2*f[24]*f[27]*f[56]*f[59])/(4.*U[1]) - (5*f_34_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[1]) - (5*f_35_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[1]) - (5*cos2th*f_34_2*f[24]*f[26]*f[57]*f[59])/(4.*U[1]) - (5*cos2th*f_35_2*f[24]*f[26]*f[57]*f[59])/(4.*U[1]) - (5*f_34_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[1]) - (5*f_35_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[1]) + (5*f_34_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[1]) + (5*f_35_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[1]) - (5*cos2th*f_34_2*f[25]*f[27]*f[57]*f[59])/(4.*U[1]) - (5*cos2th*f_35_2*f[25]*f[27]*f[57]*f[59])/(4.*U[1]) - (6*cos2th*f_34_2*f[26]*f[28]*f[58]*f[60])/(5.*U[1]) - (6*cos2th*f_35_2*f[26]*f[28]*f[58]*f[60])/(5.*U[1]) - (6*f_34_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[1]) - (6*f_35_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[1]) + (6*f_34_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[1]) + (6*f_35_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[1]) - (6*cos2th*f_34_2*f[27]*f[29]*f[58]*f[60])/(5.*U[1]) - (6*cos2th*f_35_2*f[27]*f[29]*f[58]*f[60])/(5.*U[1]) + (6*f_34_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[1]) + (6*f_35_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[1]) - (6*cos2th*f_34_2*f[27]*f[28]*f[59]*f[60])/(5.*U[1]) - (6*cos2th*f_35_2*f[27]*f[28]*f[59]*f[60])/(5.*U[1]) + (6*cos2th*f_34_2*f[26]*f[29]*f[59]*f[60])/(5.*U[1]) + (6*cos2th*f_35_2*f[26]*f[29]*f[59]*f[60])/(5.*U[1]) + (6*f_34_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[1]) + (6*f_35_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[1]) - (6*f_34_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[1]) - (6*f_35_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_34_2*f[27]*f[28]*f[58]*f[61])/(5.*U[1]) + (6*cos2th*f_35_2*f[27]*f[28]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_34_2*f[26]*f[29]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_35_2*f[26]*f[29]*f[58]*f[61])/(5.*U[1]) - (6*f_34_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[1]) - (6*f_35_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[1]) - (6*cos2th*f_34_2*f[26]*f[28]*f[59]*f[61])/(5.*U[1]) - (6*cos2th*f_35_2*f[26]*f[28]*f[59]*f[61])/(5.*U[1]) - (6*f_34_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[1]) - (6*f_35_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[1]) + (6*f_34_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[1]) + (6*f_35_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[1]) - (6*cos2th*f_34_2*f[27]*f[29]*f[59]*f[61])/(5.*U[1]) - (6*cos2th*f_35_2*f[27]*f[29]*f[59]*f[61])/(5.*U[1]) - (7*cos2th*f_34_2*f[28]*f[30]*f[60]*f[62])/(6.*U[1]) - (7*cos2th*f_35_2*f[28]*f[30]*f[60]*f[62])/(6.*U[1]) - (7*f_34_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[1]) - (7*f_35_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[1]) + (7*f_34_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[1]) + (7*f_35_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[1]) - (7*cos2th*f_34_2*f[29]*f[31]*f[60]*f[62])/(6.*U[1]) - (7*cos2th*f_35_2*f[29]*f[31]*f[60]*f[62])/(6.*U[1]) + (7*f_34_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[1]) + (7*f_35_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[1]) - (7*cos2th*f_34_2*f[29]*f[30]*f[61]*f[62])/(6.*U[1]) - (7*cos2th*f_35_2*f[29]*f[30]*f[61]*f[62])/(6.*U[1]) + (7*cos2th*f_34_2*f[28]*f[31]*f[61]*f[62])/(6.*U[1]) + (7*cos2th*f_35_2*f[28]*f[31]*f[61]*f[62])/(6.*U[1]) + (7*f_34_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[1]) + (7*f_35_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[1]) - (7*f_34_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[1]) - (7*f_35_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_34_2*f[29]*f[30]*f[60]*f[63])/(6.*U[1]) + (7*cos2th*f_35_2*f[29]*f[30]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_34_2*f[28]*f[31]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_35_2*f[28]*f[31]*f[60]*f[63])/(6.*U[1]) - (7*f_34_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[1]) - (7*f_35_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[1]) - (7*cos2th*f_34_2*f[28]*f[30]*f[61]*f[63])/(6.*U[1]) - (7*cos2th*f_35_2*f[28]*f[30]*f[61]*f[63])/(6.*U[1]) - (7*f_34_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[1]) - (7*f_35_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[1]) + (7*f_34_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[1]) + (7*f_35_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[1]) - (7*cos2th*f_34_2*f[29]*f[31]*f[61]*f[63])/(6.*U[1]) - (7*cos2th*f_35_2*f[29]*f[31]*f[61]*f[63])/(6.*U[1]) + (2*cos2th*f_36_2*f[16]*f[18]*f[48]*f[50])/U[2] + (2*cos2th*f_37_2*f[16]*f[18]*f[48]*f[50])/U[2] + (3*cos2th*f_38_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) + (3*cos2th*f_39_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) + (4*cos2th*f_40_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) + (4*cos2th*f_41_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) + (5*cos2th*f_42_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) + (5*cos2th*f_43_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) + (6*cos2th*f_44_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) + (6*cos2th*f_45_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) + (7*cos2th*f_46_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) + (7*cos2th*f_47_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] + (2*f_37_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] + (3*f_38_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) + (3*f_39_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) + (4*f_40_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) + (4*f_41_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) + (5*f_42_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) + (5*f_43_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) + (6*f_44_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) + (6*f_45_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) + (7*f_46_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) + (7*f_47_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] - (2*f_37_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] - (3*f_38_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) - (3*f_39_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) - (4*f_40_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) - (4*f_41_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) - (5*f_42_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) - (5*f_43_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) - (6*f_44_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) - (6*f_45_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) - (7*f_46_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) - (7*f_47_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) + (2*cos2th*f_36_2*f[17]*f[19]*f[48]*f[50])/U[2] + (2*cos2th*f_37_2*f[17]*f[19]*f[48]*f[50])/U[2] + (3*cos2th*f_38_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) + (3*cos2th*f_39_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) + (4*cos2th*f_40_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) + (4*cos2th*f_41_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) + (5*cos2th*f_42_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) + (5*cos2th*f_43_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) + (6*cos2th*f_44_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) + (6*cos2th*f_45_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) + (7*cos2th*f_46_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) + (7*cos2th*f_47_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] - (2*f_37_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] - (3*f_38_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) - (3*f_39_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) - (4*f_40_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) - (4*f_41_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) - (5*f_42_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) - (5*f_43_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) - (6*f_44_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) - (6*f_45_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) - (7*f_46_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) - (7*f_47_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) + (2*cos2th*f_36_2*f[17]*f[18]*f[49]*f[50])/U[2] + (2*cos2th*f_37_2*f[17]*f[18]*f[49]*f[50])/U[2] + (3*cos2th*f_38_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) + (3*cos2th*f_39_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) + (4*cos2th*f_40_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) + (4*cos2th*f_41_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) + (5*cos2th*f_42_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) + (5*cos2th*f_43_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) + (6*cos2th*f_44_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) + (6*cos2th*f_45_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) + (7*cos2th*f_46_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) + (7*cos2th*f_47_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) - (2*cos2th*f_36_2*f[16]*f[19]*f[49]*f[50])/U[2] - (2*cos2th*f_37_2*f[16]*f[19]*f[49]*f[50])/U[2] - (3*cos2th*f_38_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) - (3*cos2th*f_39_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) - (4*cos2th*f_40_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) - (4*cos2th*f_41_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) - (5*cos2th*f_42_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) - (5*cos2th*f_43_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) - (6*cos2th*f_44_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) - (6*cos2th*f_45_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) - (7*cos2th*f_46_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) - (7*cos2th*f_47_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] - (2*f_37_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] - (3*f_38_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) - (3*f_39_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) - (4*f_40_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) - (4*f_41_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) - (5*f_42_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) - (5*f_43_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) - (6*f_44_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) - (6*f_45_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) - (7*f_46_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) - (7*f_47_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] + (2*f_37_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] + (3*f_38_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) + (3*f_39_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) + (4*f_40_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) + (4*f_41_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) + (5*f_42_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) + (5*f_43_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) + (6*f_44_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) + (6*f_45_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) + (7*f_46_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) + (7*f_47_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_36_2*f[17]*f[18]*f[48]*f[51])/U[2] - (2*cos2th*f_37_2*f[17]*f[18]*f[48]*f[51])/U[2] - (3*cos2th*f_38_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) - (3*cos2th*f_39_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) - (4*cos2th*f_40_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) - (4*cos2th*f_41_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) - (5*cos2th*f_42_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) - (5*cos2th*f_43_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) - (6*cos2th*f_44_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) - (6*cos2th*f_45_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) - (7*cos2th*f_46_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) - (7*cos2th*f_47_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_36_2*f[16]*f[19]*f[48]*f[51])/U[2] + (2*cos2th*f_37_2*f[16]*f[19]*f[48]*f[51])/U[2] + (3*cos2th*f_38_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) + (3*cos2th*f_39_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) + (4*cos2th*f_40_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) + (4*cos2th*f_41_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) + (5*cos2th*f_42_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) + (5*cos2th*f_43_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) + (6*cos2th*f_44_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) + (6*cos2th*f_45_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) + (7*cos2th*f_46_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) + (7*cos2th*f_47_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) + (2*f_36_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] + (2*f_37_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] + (3*f_38_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) + (3*f_39_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) + (4*f_40_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) + (4*f_41_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) + (5*f_42_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) + (5*f_43_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) + (6*f_44_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) + (6*f_45_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) + (7*f_46_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) + (7*f_47_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_36_2*f[16]*f[18]*f[49]*f[51])/U[2] + (2*cos2th*f_37_2*f[16]*f[18]*f[49]*f[51])/U[2] + (3*cos2th*f_38_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) + (3*cos2th*f_39_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) + (4*cos2th*f_40_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) + (4*cos2th*f_41_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) + (5*cos2th*f_42_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) + (5*cos2th*f_43_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) + (6*cos2th*f_44_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) + (6*cos2th*f_45_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) + (7*cos2th*f_46_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) + (7*cos2th*f_47_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) + (2*f_36_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] + (2*f_37_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] + (3*f_38_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) + (3*f_39_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) + (4*f_40_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) + (4*f_41_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) + (5*f_42_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) + (5*f_43_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) + (6*f_44_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) + (6*f_45_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) + (7*f_46_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) + (7*f_47_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) - (2*f_36_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] - (2*f_37_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] - (3*f_38_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) - (3*f_39_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) - (4*f_40_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) - (4*f_41_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) - (5*f_42_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) - (5*f_43_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) - (6*f_44_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) - (6*f_45_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) - (7*f_46_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) - (7*f_47_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) + (2*cos2th*f_36_2*f[17]*f[19]*f[49]*f[51])/U[2] + (2*cos2th*f_37_2*f[17]*f[19]*f[49]*f[51])/U[2] + (3*cos2th*f_38_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) + (3*cos2th*f_39_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) + (4*cos2th*f_40_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) + (4*cos2th*f_41_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) + (5*cos2th*f_42_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) + (5*cos2th*f_43_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) + (6*cos2th*f_44_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) + (6*cos2th*f_45_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) + (7*cos2th*f_46_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (7*cos2th*f_47_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (14*cos2th*f_36_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_37_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*f_36_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*f_37_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + U[2]) - (14*f_36_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + U[2]) - (14*f_37_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_36_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_37_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + U[2]) - (14*f_36_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*f_37_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_36_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + U[2]) + (14*cos2th*f_37_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*cos2th*f_36_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*cos2th*f_37_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*f_36_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + U[2]) - (14*f_37_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + U[2]) + (14*f_36_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*f_37_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + U[2]) - (14*cos2th*f_36_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + U[2]) - (14*cos2th*f_37_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_36_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_37_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*f_36_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*f_37_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_36_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_37_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*f_36_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*f_37_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + U[2]) - (14*f_36_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + U[2]) - (14*f_37_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_36_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + U[2]) + (14*cos2th*f_37_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + U[2]) + (12*cos2th*f_36_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_37_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*f_36_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*f_37_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + U[2]) - (12*f_36_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + U[2]) - (12*f_37_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_36_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_37_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + U[2]) - (12*f_36_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*f_37_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_36_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + U[2]) + (12*cos2th*f_37_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*cos2th*f_36_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*cos2th*f_37_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*f_36_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + U[2]) - (12*f_37_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + U[2]) + (12*f_36_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*f_37_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + U[2]) - (12*cos2th*f_36_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + U[2]) - (12*cos2th*f_37_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_36_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_37_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*f_36_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*f_37_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_36_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_37_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*f_36_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*f_37_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + U[2]) - (12*f_36_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + U[2]) - (12*f_37_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_36_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + U[2]) + (12*cos2th*f_37_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + U[2]) + (10*cos2th*f_36_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_37_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*f_36_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*f_37_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + U[2]) - (10*f_36_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + U[2]) - (10*f_37_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_36_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_37_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + U[2]) - (10*f_36_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*f_37_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_36_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + U[2]) + (10*cos2th*f_37_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*cos2th*f_36_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*cos2th*f_37_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*f_36_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + U[2]) - (10*f_37_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + U[2]) + (10*f_36_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*f_37_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + U[2]) - (10*cos2th*f_36_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + U[2]) - (10*cos2th*f_37_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_36_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_37_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*f_36_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*f_37_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_36_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_37_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*f_36_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*f_37_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + U[2]) - (10*f_36_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + U[2]) - (10*f_37_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_36_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + U[2]) + (10*cos2th*f_37_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + U[2]) + (8*cos2th*f_36_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_37_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*f_36_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*f_37_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + U[2]) - (8*f_36_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + U[2]) - (8*f_37_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_36_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_37_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + U[2]) - (8*f_36_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*f_37_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_36_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + U[2]) + (8*cos2th*f_37_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*cos2th*f_36_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*cos2th*f_37_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*f_36_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + U[2]) - (8*f_37_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + U[2]) + (8*f_36_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*f_37_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + U[2]) - (8*cos2th*f_36_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + U[2]) - (8*cos2th*f_37_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_36_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_37_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*f_36_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*f_37_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_36_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_37_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*f_36_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*f_37_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + U[2]) - (8*f_36_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + U[2]) - (8*f_37_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_36_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + U[2]) + (8*cos2th*f_37_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + U[2]) + (6*cos2th*f_36_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_37_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*f_36_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*f_37_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + U[2]) - (6*f_36_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + U[2]) - (6*f_37_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_36_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_37_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + U[2]) - (6*f_36_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*f_37_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_36_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + U[2]) + (6*cos2th*f_37_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*cos2th*f_36_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*cos2th*f_37_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*f_36_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + U[2]) - (6*f_37_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + U[2]) + (6*f_36_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*f_37_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + U[2]) - (6*cos2th*f_36_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + U[2]) - (6*cos2th*f_37_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_36_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_37_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*f_36_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*f_37_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_36_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_37_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*f_36_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*f_37_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + U[2]) - (6*f_36_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + U[2]) - (6*f_37_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_36_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + U[2]) + (6*cos2th*f_37_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + U[2]) + (21*cos2th*f_38_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_39_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*f_38_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*f_39_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_38_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_39_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_38_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_39_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_38_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_39_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_38_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_39_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_38_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_39_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_38_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 2*U[2]) - (21*f_39_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 2*U[2]) + (21*f_38_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_39_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_38_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 2*U[2]) - (21*cos2th*f_39_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_38_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_39_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_38_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_39_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_38_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_39_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_38_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*f_39_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 2*U[2]) - (21*f_38_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 2*U[2]) - (21*f_39_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_38_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (21*cos2th*f_39_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 2*U[2]) + (18*cos2th*f_38_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_39_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*f_38_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*f_39_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_38_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_39_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_38_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_39_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_38_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_39_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_38_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_39_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_38_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_39_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_38_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 2*U[2]) - (18*f_39_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 2*U[2]) + (18*f_38_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_39_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_38_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 2*U[2]) - (18*cos2th*f_39_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_38_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_39_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_38_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_39_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_38_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_39_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_38_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*f_39_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 2*U[2]) - (18*f_38_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 2*U[2]) - (18*f_39_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_38_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (18*cos2th*f_39_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 2*U[2]) + (15*cos2th*f_38_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_39_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*f_38_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*f_39_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_38_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_39_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_38_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_39_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_38_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_39_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_38_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_39_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_38_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_39_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_38_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 2*U[2]) - (15*f_39_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 2*U[2]) + (15*f_38_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_39_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_38_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 2*U[2]) - (15*cos2th*f_39_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_38_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_39_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_38_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_39_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_38_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_39_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_38_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*f_39_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 2*U[2]) - (15*f_38_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 2*U[2]) - (15*f_39_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_38_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (15*cos2th*f_39_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 2*U[2]) + (12*cos2th*f_38_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_39_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*f_38_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*f_39_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_38_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_39_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_38_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_39_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_38_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_39_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_38_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_39_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_38_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_39_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_38_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 2*U[2]) - (12*f_39_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 2*U[2]) + (12*f_38_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_39_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_38_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 2*U[2]) - (12*cos2th*f_39_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_38_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_39_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_38_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_39_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_38_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_39_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_38_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*f_39_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 2*U[2]) - (12*f_38_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 2*U[2]) - (12*f_39_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_38_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (12*cos2th*f_39_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 2*U[2]) + (6*cos2th*f_38_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_39_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*f_38_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*f_39_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 2*U[2]) - (6*f_38_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 2*U[2]) - (6*f_39_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_38_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_39_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 2*U[2]) - (6*f_38_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*f_39_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_38_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 2*U[2]) + (6*cos2th*f_39_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*cos2th*f_38_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*cos2th*f_39_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*f_38_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 2*U[2]) - (6*f_39_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 2*U[2]) + (6*f_38_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*f_39_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 2*U[2]) - (6*cos2th*f_38_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 2*U[2]) - (6*cos2th*f_39_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_38_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_39_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*f_38_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*f_39_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_38_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_39_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*f_38_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*f_39_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 2*U[2]) - (6*f_38_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 2*U[2]) - (6*f_39_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_38_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 2*U[2]) + (6*cos2th*f_39_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 2*U[2]) + (28*cos2th*f_40_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_41_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*f_40_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*f_41_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_40_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_41_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_40_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_41_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_40_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_41_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_40_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_41_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_40_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_41_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_40_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 3*U[2]) - (28*f_41_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 3*U[2]) + (28*f_40_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_41_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_40_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 3*U[2]) - (28*cos2th*f_41_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_40_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_41_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_40_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_41_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_40_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_41_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_40_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*f_41_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 3*U[2]) - (28*f_40_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 3*U[2]) - (28*f_41_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_40_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (28*cos2th*f_41_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 3*U[2]) + (24*cos2th*f_40_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_41_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*f_40_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*f_41_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_40_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_41_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_40_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_41_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_40_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_41_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_40_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_41_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_40_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_41_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_40_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 3*U[2]) - (24*f_41_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 3*U[2]) + (24*f_40_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_41_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_40_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 3*U[2]) - (24*cos2th*f_41_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_40_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_41_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_40_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_41_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_40_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_41_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_40_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*f_41_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 3*U[2]) - (24*f_40_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 3*U[2]) - (24*f_41_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_40_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (24*cos2th*f_41_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 3*U[2]) + (20*cos2th*f_40_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_41_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*f_40_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*f_41_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_40_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_41_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_40_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_41_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_40_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_41_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_40_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_41_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_40_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_41_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_40_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 3*U[2]) - (20*f_41_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 3*U[2]) + (20*f_40_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_41_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_40_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 3*U[2]) - (20*cos2th*f_41_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_40_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_41_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_40_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_41_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_40_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_41_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_40_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*f_41_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 3*U[2]) - (20*f_40_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 3*U[2]) - (20*f_41_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_40_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (20*cos2th*f_41_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 3*U[2]) + (12*cos2th*f_40_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_41_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*f_40_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*f_41_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_40_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_41_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_40_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_41_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_40_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_41_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_40_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_41_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_40_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_41_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_40_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 3*U[2]) - (12*f_41_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 3*U[2]) + (12*f_40_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_41_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_40_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 3*U[2]) - (12*cos2th*f_41_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_40_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_41_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_40_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_41_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_40_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_41_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_40_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*f_41_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 3*U[2]) - (12*f_40_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 3*U[2]) - (12*f_41_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_40_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (12*cos2th*f_41_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 3*U[2]) + (8*cos2th*f_40_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_41_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*f_40_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*f_41_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 3*U[2]) - (8*f_40_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 3*U[2]) - (8*f_41_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_40_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_41_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 3*U[2]) - (8*f_40_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*f_41_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_40_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 3*U[2]) + (8*cos2th*f_41_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*cos2th*f_40_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*cos2th*f_41_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*f_40_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 3*U[2]) - (8*f_41_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 3*U[2]) + (8*f_40_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*f_41_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 3*U[2]) - (8*cos2th*f_40_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 3*U[2]) - (8*cos2th*f_41_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_40_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_41_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*f_40_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*f_41_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_40_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_41_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*f_40_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*f_41_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 3*U[2]) - (8*f_40_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 3*U[2]) - (8*f_41_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_40_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 3*U[2]) + (8*cos2th*f_41_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 3*U[2]) + (35*cos2th*f_42_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_43_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*f_42_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*f_43_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_42_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_43_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_42_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_43_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_42_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_43_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_42_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_43_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_42_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_43_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_42_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 4*U[2]) - (35*f_43_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 4*U[2]) + (35*f_42_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_43_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_42_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 4*U[2]) - (35*cos2th*f_43_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_42_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_43_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_42_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_43_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_42_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_43_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_42_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*f_43_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 4*U[2]) - (35*f_42_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 4*U[2]) - (35*f_43_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_42_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (35*cos2th*f_43_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 4*U[2]) + (30*cos2th*f_42_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_43_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*f_42_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*f_43_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_42_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_43_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_42_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_43_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_42_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_43_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_42_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_43_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_42_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_43_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_42_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 4*U[2]) - (30*f_43_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 4*U[2]) + (30*f_42_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_43_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_42_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 4*U[2]) - (30*cos2th*f_43_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_42_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_43_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_42_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_43_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_42_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_43_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_42_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*f_43_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 4*U[2]) - (30*f_42_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 4*U[2]) - (30*f_43_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_42_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (30*cos2th*f_43_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 4*U[2]) + (20*cos2th*f_42_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_43_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*f_42_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*f_43_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_42_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_43_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_42_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_43_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_42_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_43_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_42_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_43_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_42_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_43_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_42_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 4*U[2]) - (20*f_43_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 4*U[2]) + (20*f_42_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_43_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_42_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 4*U[2]) - (20*cos2th*f_43_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_42_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_43_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_42_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_43_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_42_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_43_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_42_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*f_43_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 4*U[2]) - (20*f_42_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 4*U[2]) - (20*f_43_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_42_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (20*cos2th*f_43_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 4*U[2]) + (15*cos2th*f_42_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_43_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*f_42_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*f_43_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_42_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_43_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_42_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_43_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_42_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_43_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_42_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_43_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_42_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_43_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_42_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 4*U[2]) - (15*f_43_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 4*U[2]) + (15*f_42_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_43_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_42_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 4*U[2]) - (15*cos2th*f_43_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_42_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_43_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_42_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_43_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_42_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_43_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_42_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*f_43_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 4*U[2]) - (15*f_42_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 4*U[2]) - (15*f_43_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_42_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (15*cos2th*f_43_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 4*U[2]) + (10*cos2th*f_42_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_43_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*f_42_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*f_43_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 4*U[2]) - (10*f_42_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 4*U[2]) - (10*f_43_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_42_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_43_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 4*U[2]) - (10*f_42_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*f_43_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_42_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 4*U[2]) + (10*cos2th*f_43_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*cos2th*f_42_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*cos2th*f_43_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*f_42_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 4*U[2]) - (10*f_43_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 4*U[2]) + (10*f_42_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*f_43_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 4*U[2]) - (10*cos2th*f_42_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 4*U[2]) - (10*cos2th*f_43_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_42_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_43_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*f_42_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*f_43_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_42_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_43_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*f_42_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*f_43_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 4*U[2]) - (10*f_42_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 4*U[2]) - (10*f_43_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_42_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 4*U[2]) + (10*cos2th*f_43_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 4*U[2]) + (42*cos2th*f_44_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_45_2*f[28]*f[30]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*f_44_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*f_45_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_44_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_45_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_44_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_45_2*f[29]*f[31]*f[60]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_44_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_45_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_44_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_45_2*f[29]*f[30]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_44_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_45_2*f[28]*f[31]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_44_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 5*U[2]) - (42*f_45_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-6*U[1] + 5*U[2]) + (42*f_44_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_45_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_44_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 5*U[2]) - (42*cos2th*f_45_2*f[29]*f[30]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_44_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_45_2*f[28]*f[31]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_44_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_45_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_44_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_45_2*f[28]*f[30]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_44_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*f_45_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-6*U[1] + 5*U[2]) - (42*f_44_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 5*U[2]) - (42*f_45_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_44_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (42*cos2th*f_45_2*f[29]*f[31]*f[61]*f[63])/(-6*U[1] + 5*U[2]) + (30*cos2th*f_44_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_45_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*f_44_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*f_45_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_44_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_45_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_44_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_45_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_44_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_45_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_44_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_45_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_44_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_45_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_44_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 5*U[2]) - (30*f_45_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 5*U[2]) + (30*f_44_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_45_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_44_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 5*U[2]) - (30*cos2th*f_45_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_44_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_45_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_44_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_45_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_44_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_45_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_44_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*f_45_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 5*U[2]) - (30*f_44_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 5*U[2]) - (30*f_45_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_44_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (30*cos2th*f_45_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 5*U[2]) + (24*cos2th*f_44_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_45_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*f_44_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*f_45_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_44_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_45_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_44_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_45_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_44_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_45_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_44_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_45_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_44_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_45_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_44_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 5*U[2]) - (24*f_45_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 5*U[2]) + (24*f_44_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_45_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_44_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 5*U[2]) - (24*cos2th*f_45_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_44_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_45_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_44_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_45_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_44_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_45_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_44_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*f_45_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 5*U[2]) - (24*f_44_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 5*U[2]) - (24*f_45_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_44_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (24*cos2th*f_45_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 5*U[2]) + (18*cos2th*f_44_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_45_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*f_44_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*f_45_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_44_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_45_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_44_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_45_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_44_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_45_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_44_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_45_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_44_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_45_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_44_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 5*U[2]) - (18*f_45_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 5*U[2]) + (18*f_44_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_45_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_44_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 5*U[2]) - (18*cos2th*f_45_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_44_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_45_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_44_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_45_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_44_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_45_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_44_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*f_45_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 5*U[2]) - (18*f_44_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 5*U[2]) - (18*f_45_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_44_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (18*cos2th*f_45_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 5*U[2]) + (12*cos2th*f_44_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_45_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*f_44_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*f_45_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 5*U[2]) - (12*f_44_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 5*U[2]) - (12*f_45_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_44_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_45_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 5*U[2]) - (12*f_44_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*f_45_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_44_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 5*U[2]) + (12*cos2th*f_45_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*cos2th*f_44_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*cos2th*f_45_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*f_44_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 5*U[2]) - (12*f_45_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 5*U[2]) + (12*f_44_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*f_45_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 5*U[2]) - (12*cos2th*f_44_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 5*U[2]) - (12*cos2th*f_45_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_44_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_45_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*f_44_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*f_45_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_44_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_45_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*f_44_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*f_45_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 5*U[2]) - (12*f_44_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 5*U[2]) - (12*f_45_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_44_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 5*U[2]) + (12*cos2th*f_45_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 5*U[2]) + (42*cos2th*f_46_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_47_2*f[26]*f[28]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*f_46_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*f_47_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_46_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_47_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_46_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_47_2*f[27]*f[29]*f[58]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_46_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_47_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_46_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_47_2*f[27]*f[28]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_46_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_47_2*f[26]*f[29]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_46_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 6*U[2]) - (42*f_47_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-5*U[1] + 6*U[2]) + (42*f_46_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_47_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_46_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 6*U[2]) - (42*cos2th*f_47_2*f[27]*f[28]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_46_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_47_2*f[26]*f[29]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_46_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_47_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_46_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_47_2*f[26]*f[28]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_46_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*f_47_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-5*U[1] + 6*U[2]) - (42*f_46_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 6*U[2]) - (42*f_47_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_46_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (42*cos2th*f_47_2*f[27]*f[29]*f[59]*f[61])/(-5*U[1] + 6*U[2]) + (35*cos2th*f_46_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_47_2*f[24]*f[26]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*f_46_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*f_47_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_46_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_47_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_46_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_47_2*f[25]*f[27]*f[56]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_46_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_47_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_46_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_47_2*f[25]*f[26]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_46_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_47_2*f[24]*f[27]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_46_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 6*U[2]) - (35*f_47_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-4*U[1] + 6*U[2]) + (35*f_46_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_47_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_46_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 6*U[2]) - (35*cos2th*f_47_2*f[25]*f[26]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_46_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_47_2*f[24]*f[27]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_46_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_47_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_46_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_47_2*f[24]*f[26]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_46_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*f_47_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-4*U[1] + 6*U[2]) - (35*f_46_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 6*U[2]) - (35*f_47_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_46_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (35*cos2th*f_47_2*f[25]*f[27]*f[57]*f[59])/(-4*U[1] + 6*U[2]) + (28*cos2th*f_46_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_47_2*f[22]*f[24]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*f_46_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*f_47_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_46_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_47_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_46_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_47_2*f[23]*f[25]*f[54]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_46_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_47_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_46_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_47_2*f[23]*f[24]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_46_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_47_2*f[22]*f[25]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_46_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 6*U[2]) - (28*f_47_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-3*U[1] + 6*U[2]) + (28*f_46_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_47_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_46_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 6*U[2]) - (28*cos2th*f_47_2*f[23]*f[24]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_46_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_47_2*f[22]*f[25]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_46_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_47_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_46_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_47_2*f[22]*f[24]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_46_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*f_47_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-3*U[1] + 6*U[2]) - (28*f_46_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 6*U[2]) - (28*f_47_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_46_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (28*cos2th*f_47_2*f[23]*f[25]*f[55]*f[57])/(-3*U[1] + 6*U[2]) + (21*cos2th*f_46_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_47_2*f[20]*f[22]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*f_46_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*f_47_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_46_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_47_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_46_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_47_2*f[21]*f[23]*f[52]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_46_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_47_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_46_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_47_2*f[21]*f[22]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_46_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_47_2*f[20]*f[23]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_46_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 6*U[2]) - (21*f_47_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-2*U[1] + 6*U[2]) + (21*f_46_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_47_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_46_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 6*U[2]) - (21*cos2th*f_47_2*f[21]*f[22]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_46_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_47_2*f[20]*f[23]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_46_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_47_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_46_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_47_2*f[20]*f[22]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_46_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*f_47_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-2*U[1] + 6*U[2]) - (21*f_46_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 6*U[2]) - (21*f_47_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_46_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (21*cos2th*f_47_2*f[21]*f[23]*f[53]*f[55])/(-2*U[1] + 6*U[2]) + (14*cos2th*f_46_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_47_2*f[18]*f[20]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*f_46_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*f_47_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-U[1] + 6*U[2]) - (14*f_46_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 6*U[2]) - (14*f_47_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_46_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_47_2*f[19]*f[21]*f[50]*f[52])/(-U[1] + 6*U[2]) - (14*f_46_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*f_47_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_46_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 6*U[2]) + (14*cos2th*f_47_2*f[19]*f[20]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*cos2th*f_46_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*cos2th*f_47_2*f[18]*f[21]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*f_46_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 6*U[2]) - (14*f_47_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-U[1] + 6*U[2]) + (14*f_46_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*f_47_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-U[1] + 6*U[2]) - (14*cos2th*f_46_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 6*U[2]) - (14*cos2th*f_47_2*f[19]*f[20]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_46_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_47_2*f[18]*f[21]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*f_46_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*f_47_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_46_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_47_2*f[18]*f[20]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*f_46_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*f_47_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-U[1] + 6*U[2]) - (14*f_46_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 6*U[2]) - (14*f_47_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_46_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 6*U[2]) + (14*cos2th*f_47_2*f[19]*f[21]*f[51]*f[53])/(-U[1] + 6*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - (J[1]*J[2]*((2*cos2th*f_34_2*f[16]*f[18]*f[48]*f[50])/U[2] + (2*cos2th*f_35_2*f[16]*f[18]*f[48]*f[50])/U[2] + (3*cos2th*f_36_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) + (3*cos2th*f_37_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) + (4*cos2th*f_38_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) + (4*cos2th*f_39_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) + (5*cos2th*f_40_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) + (5*cos2th*f_41_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) + (6*cos2th*f_42_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) + (6*cos2th*f_43_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) + (7*cos2th*f_44_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) + (7*cos2th*f_45_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] + (2*f_35_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] + (3*f_36_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) + (3*f_37_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) + (4*f_38_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) + (4*f_39_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) + (5*f_40_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) + (5*f_41_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) + (6*f_42_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) + (6*f_43_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) + (7*f_44_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) + (7*f_45_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] - (2*f_35_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] - (3*f_36_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) - (3*f_37_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) - (4*f_38_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) - (4*f_39_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) - (5*f_40_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) - (5*f_41_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) - (6*f_42_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) - (6*f_43_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) - (7*f_44_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) - (7*f_45_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) + (2*cos2th*f_34_2*f[17]*f[19]*f[48]*f[50])/U[2] + (2*cos2th*f_35_2*f[17]*f[19]*f[48]*f[50])/U[2] + (3*cos2th*f_36_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) + (3*cos2th*f_37_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) + (4*cos2th*f_38_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) + (4*cos2th*f_39_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) + (5*cos2th*f_40_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) + (5*cos2th*f_41_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) + (6*cos2th*f_42_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) + (6*cos2th*f_43_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) + (7*cos2th*f_44_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) + (7*cos2th*f_45_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] - (2*f_35_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] - (3*f_36_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) - (3*f_37_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) - (4*f_38_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) - (4*f_39_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) - (5*f_40_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) - (5*f_41_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) - (6*f_42_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) - (6*f_43_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) - (7*f_44_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) - (7*f_45_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) + (2*cos2th*f_34_2*f[17]*f[18]*f[49]*f[50])/U[2] + (2*cos2th*f_35_2*f[17]*f[18]*f[49]*f[50])/U[2] + (3*cos2th*f_36_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) + (3*cos2th*f_37_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) + (4*cos2th*f_38_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) + (4*cos2th*f_39_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) + (5*cos2th*f_40_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) + (5*cos2th*f_41_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) + (6*cos2th*f_42_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) + (6*cos2th*f_43_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) + (7*cos2th*f_44_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) + (7*cos2th*f_45_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) - (2*cos2th*f_34_2*f[16]*f[19]*f[49]*f[50])/U[2] - (2*cos2th*f_35_2*f[16]*f[19]*f[49]*f[50])/U[2] - (3*cos2th*f_36_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) - (3*cos2th*f_37_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) - (4*cos2th*f_38_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) - (4*cos2th*f_39_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) - (5*cos2th*f_40_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) - (5*cos2th*f_41_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) - (6*cos2th*f_42_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) - (6*cos2th*f_43_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) - (7*cos2th*f_44_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) - (7*cos2th*f_45_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] - (2*f_35_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] - (3*f_36_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) - (3*f_37_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) - (4*f_38_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) - (4*f_39_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) - (5*f_40_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) - (5*f_41_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) - (6*f_42_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) - (6*f_43_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) - (7*f_44_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) - (7*f_45_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] + (2*f_35_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] + (3*f_36_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) + (3*f_37_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) + (4*f_38_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) + (4*f_39_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) + (5*f_40_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) + (5*f_41_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) + (6*f_42_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) + (6*f_43_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) + (7*f_44_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) + (7*f_45_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_34_2*f[17]*f[18]*f[48]*f[51])/U[2] - (2*cos2th*f_35_2*f[17]*f[18]*f[48]*f[51])/U[2] - (3*cos2th*f_36_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) - (3*cos2th*f_37_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) - (4*cos2th*f_38_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) - (4*cos2th*f_39_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) - (5*cos2th*f_40_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) - (5*cos2th*f_41_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) - (6*cos2th*f_42_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) - (6*cos2th*f_43_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) - (7*cos2th*f_44_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) - (7*cos2th*f_45_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[16]*f[19]*f[48]*f[51])/U[2] + (2*cos2th*f_35_2*f[16]*f[19]*f[48]*f[51])/U[2] + (3*cos2th*f_36_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) + (3*cos2th*f_37_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) + (4*cos2th*f_38_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) + (4*cos2th*f_39_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) + (5*cos2th*f_40_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) + (5*cos2th*f_41_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) + (6*cos2th*f_42_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) + (6*cos2th*f_43_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) + (7*cos2th*f_44_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) + (7*cos2th*f_45_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) + (2*f_34_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] + (2*f_35_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] + (3*f_36_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) + (3*f_37_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) + (4*f_38_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) + (4*f_39_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) + (5*f_40_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) + (5*f_41_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) + (6*f_42_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) + (6*f_43_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) + (7*f_44_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) + (7*f_45_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[16]*f[18]*f[49]*f[51])/U[2] + (2*cos2th*f_35_2*f[16]*f[18]*f[49]*f[51])/U[2] + (3*cos2th*f_36_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) + (3*cos2th*f_37_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) + (4*cos2th*f_38_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) + (4*cos2th*f_39_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) + (5*cos2th*f_40_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) + (5*cos2th*f_41_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) + (6*cos2th*f_42_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) + (6*cos2th*f_43_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) + (7*cos2th*f_44_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) + (7*cos2th*f_45_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) + (2*f_34_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] + (2*f_35_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] + (3*f_36_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) + (3*f_37_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) + (4*f_38_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) + (4*f_39_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) + (5*f_40_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) + (5*f_41_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) + (6*f_42_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) + (6*f_43_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) + (7*f_44_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) + (7*f_45_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) - (2*f_34_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] - (2*f_35_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] - (3*f_36_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) - (3*f_37_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) - (4*f_38_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) - (4*f_39_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) - (5*f_40_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) - (5*f_41_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) - (6*f_42_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) - (6*f_43_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) - (7*f_44_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) - (7*f_45_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[17]*f[19]*f[49]*f[51])/U[2] + (2*cos2th*f_35_2*f[17]*f[19]*f[49]*f[51])/U[2] + (3*cos2th*f_36_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) + (3*cos2th*f_37_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) + (4*cos2th*f_38_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) + (4*cos2th*f_39_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) + (5*cos2th*f_40_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) + (5*cos2th*f_41_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) + (6*cos2th*f_42_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) + (6*cos2th*f_43_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) + (7*cos2th*f_44_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (7*cos2th*f_45_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (14*cos2th*f_34_2*f[28]*f[30]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_35_2*f[28]*f[30]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*f_34_2*sin2th*f[29]*f[30]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*f_35_2*sin2th*f[29]*f[30]*f[60]*f[62])/(U[2] - 6*U[3]) - (14*f_34_2*sin2th*f[28]*f[31]*f[60]*f[62])/(U[2] - 6*U[3]) - (14*f_35_2*sin2th*f[28]*f[31]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_34_2*f[29]*f[31]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_35_2*f[29]*f[31]*f[60]*f[62])/(U[2] - 6*U[3]) - (14*f_34_2*sin2th*f[28]*f[30]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*f_35_2*sin2th*f[28]*f[30]*f[61]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_34_2*f[29]*f[30]*f[61]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_35_2*f[29]*f[30]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*cos2th*f_34_2*f[28]*f[31]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*cos2th*f_35_2*f[28]*f[31]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*f_34_2*sin2th*f[29]*f[31]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*f_35_2*sin2th*f[29]*f[31]*f[61]*f[62])/(U[2] - 6*U[3]) + (14*f_34_2*sin2th*f[28]*f[30]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*f_35_2*sin2th*f[28]*f[30]*f[60]*f[63])/(U[2] - 6*U[3]) - (14*cos2th*f_34_2*f[29]*f[30]*f[60]*f[63])/(U[2] - 6*U[3]) - (14*cos2th*f_35_2*f[29]*f[30]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_34_2*f[28]*f[31]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_35_2*f[28]*f[31]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*f_34_2*sin2th*f[29]*f[31]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*f_35_2*sin2th*f[29]*f[31]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_34_2*f[28]*f[30]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_35_2*f[28]*f[30]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*f_34_2*sin2th*f[29]*f[30]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*f_35_2*sin2th*f[29]*f[30]*f[61]*f[63])/(U[2] - 6*U[3]) - (14*f_34_2*sin2th*f[28]*f[31]*f[61]*f[63])/(U[2] - 6*U[3]) - (14*f_35_2*sin2th*f[28]*f[31]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_34_2*f[29]*f[31]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_35_2*f[29]*f[31]*f[61]*f[63])/(U[2] - 6*U[3]) + (21*cos2th*f_36_2*f[28]*f[30]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_37_2*f[28]*f[30]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*f_36_2*sin2th*f[29]*f[30]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*f_37_2*sin2th*f[29]*f[30]*f[60]*f[62])/(2*U[2] - 6*U[3]) - (21*f_36_2*sin2th*f[28]*f[31]*f[60]*f[62])/(2*U[2] - 6*U[3]) - (21*f_37_2*sin2th*f[28]*f[31]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_36_2*f[29]*f[31]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_37_2*f[29]*f[31]*f[60]*f[62])/(2*U[2] - 6*U[3]) - (21*f_36_2*sin2th*f[28]*f[30]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*f_37_2*sin2th*f[28]*f[30]*f[61]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_36_2*f[29]*f[30]*f[61]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_37_2*f[29]*f[30]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*cos2th*f_36_2*f[28]*f[31]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*cos2th*f_37_2*f[28]*f[31]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*f_36_2*sin2th*f[29]*f[31]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*f_37_2*sin2th*f[29]*f[31]*f[61]*f[62])/(2*U[2] - 6*U[3]) + (21*f_36_2*sin2th*f[28]*f[30]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*f_37_2*sin2th*f[28]*f[30]*f[60]*f[63])/(2*U[2] - 6*U[3]) - (21*cos2th*f_36_2*f[29]*f[30]*f[60]*f[63])/(2*U[2] - 6*U[3]) - (21*cos2th*f_37_2*f[29]*f[30]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_36_2*f[28]*f[31]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_37_2*f[28]*f[31]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*f_36_2*sin2th*f[29]*f[31]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*f_37_2*sin2th*f[29]*f[31]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_36_2*f[28]*f[30]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_37_2*f[28]*f[30]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*f_36_2*sin2th*f[29]*f[30]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*f_37_2*sin2th*f[29]*f[30]*f[61]*f[63])/(2*U[2] - 6*U[3]) - (21*f_36_2*sin2th*f[28]*f[31]*f[61]*f[63])/(2*U[2] - 6*U[3]) - (21*f_37_2*sin2th*f[28]*f[31]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_36_2*f[29]*f[31]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_37_2*f[29]*f[31]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (28*cos2th*f_38_2*f[28]*f[30]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_39_2*f[28]*f[30]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*f_38_2*sin2th*f[29]*f[30]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*f_39_2*sin2th*f[29]*f[30]*f[60]*f[62])/(3*U[2] - 6*U[3]) - (28*f_38_2*sin2th*f[28]*f[31]*f[60]*f[62])/(3*U[2] - 6*U[3]) - (28*f_39_2*sin2th*f[28]*f[31]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_38_2*f[29]*f[31]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_39_2*f[29]*f[31]*f[60]*f[62])/(3*U[2] - 6*U[3]) - (28*f_38_2*sin2th*f[28]*f[30]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*f_39_2*sin2th*f[28]*f[30]*f[61]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_38_2*f[29]*f[30]*f[61]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_39_2*f[29]*f[30]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*cos2th*f_38_2*f[28]*f[31]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*cos2th*f_39_2*f[28]*f[31]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*f_38_2*sin2th*f[29]*f[31]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*f_39_2*sin2th*f[29]*f[31]*f[61]*f[62])/(3*U[2] - 6*U[3]) + (28*f_38_2*sin2th*f[28]*f[30]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*f_39_2*sin2th*f[28]*f[30]*f[60]*f[63])/(3*U[2] - 6*U[3]) - (28*cos2th*f_38_2*f[29]*f[30]*f[60]*f[63])/(3*U[2] - 6*U[3]) - (28*cos2th*f_39_2*f[29]*f[30]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_38_2*f[28]*f[31]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_39_2*f[28]*f[31]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*f_38_2*sin2th*f[29]*f[31]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*f_39_2*sin2th*f[29]*f[31]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_38_2*f[28]*f[30]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_39_2*f[28]*f[30]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*f_38_2*sin2th*f[29]*f[30]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*f_39_2*sin2th*f[29]*f[30]*f[61]*f[63])/(3*U[2] - 6*U[3]) - (28*f_38_2*sin2th*f[28]*f[31]*f[61]*f[63])/(3*U[2] - 6*U[3]) - (28*f_39_2*sin2th*f[28]*f[31]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_38_2*f[29]*f[31]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_39_2*f[29]*f[31]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (35*cos2th*f_40_2*f[28]*f[30]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_41_2*f[28]*f[30]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*f_40_2*sin2th*f[29]*f[30]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*f_41_2*sin2th*f[29]*f[30]*f[60]*f[62])/(4*U[2] - 6*U[3]) - (35*f_40_2*sin2th*f[28]*f[31]*f[60]*f[62])/(4*U[2] - 6*U[3]) - (35*f_41_2*sin2th*f[28]*f[31]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_40_2*f[29]*f[31]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_41_2*f[29]*f[31]*f[60]*f[62])/(4*U[2] - 6*U[3]) - (35*f_40_2*sin2th*f[28]*f[30]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*f_41_2*sin2th*f[28]*f[30]*f[61]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_40_2*f[29]*f[30]*f[61]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_41_2*f[29]*f[30]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*cos2th*f_40_2*f[28]*f[31]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*cos2th*f_41_2*f[28]*f[31]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*f_40_2*sin2th*f[29]*f[31]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*f_41_2*sin2th*f[29]*f[31]*f[61]*f[62])/(4*U[2] - 6*U[3]) + (35*f_40_2*sin2th*f[28]*f[30]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*f_41_2*sin2th*f[28]*f[30]*f[60]*f[63])/(4*U[2] - 6*U[3]) - (35*cos2th*f_40_2*f[29]*f[30]*f[60]*f[63])/(4*U[2] - 6*U[3]) - (35*cos2th*f_41_2*f[29]*f[30]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_40_2*f[28]*f[31]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_41_2*f[28]*f[31]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*f_40_2*sin2th*f[29]*f[31]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*f_41_2*sin2th*f[29]*f[31]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_40_2*f[28]*f[30]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_41_2*f[28]*f[30]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*f_40_2*sin2th*f[29]*f[30]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*f_41_2*sin2th*f[29]*f[30]*f[61]*f[63])/(4*U[2] - 6*U[3]) - (35*f_40_2*sin2th*f[28]*f[31]*f[61]*f[63])/(4*U[2] - 6*U[3]) - (35*f_41_2*sin2th*f[28]*f[31]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_40_2*f[29]*f[31]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_41_2*f[29]*f[31]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (42*cos2th*f_42_2*f[28]*f[30]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_43_2*f[28]*f[30]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*f_42_2*sin2th*f[29]*f[30]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*f_43_2*sin2th*f[29]*f[30]*f[60]*f[62])/(5*U[2] - 6*U[3]) - (42*f_42_2*sin2th*f[28]*f[31]*f[60]*f[62])/(5*U[2] - 6*U[3]) - (42*f_43_2*sin2th*f[28]*f[31]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_42_2*f[29]*f[31]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_43_2*f[29]*f[31]*f[60]*f[62])/(5*U[2] - 6*U[3]) - (42*f_42_2*sin2th*f[28]*f[30]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*f_43_2*sin2th*f[28]*f[30]*f[61]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_42_2*f[29]*f[30]*f[61]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_43_2*f[29]*f[30]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*cos2th*f_42_2*f[28]*f[31]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*cos2th*f_43_2*f[28]*f[31]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*f_42_2*sin2th*f[29]*f[31]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*f_43_2*sin2th*f[29]*f[31]*f[61]*f[62])/(5*U[2] - 6*U[3]) + (42*f_42_2*sin2th*f[28]*f[30]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*f_43_2*sin2th*f[28]*f[30]*f[60]*f[63])/(5*U[2] - 6*U[3]) - (42*cos2th*f_42_2*f[29]*f[30]*f[60]*f[63])/(5*U[2] - 6*U[3]) - (42*cos2th*f_43_2*f[29]*f[30]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_42_2*f[28]*f[31]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_43_2*f[28]*f[31]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*f_42_2*sin2th*f[29]*f[31]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*f_43_2*sin2th*f[29]*f[31]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_42_2*f[28]*f[30]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_43_2*f[28]*f[30]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*f_42_2*sin2th*f[29]*f[30]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*f_43_2*sin2th*f[29]*f[30]*f[61]*f[63])/(5*U[2] - 6*U[3]) - (42*f_42_2*sin2th*f[28]*f[31]*f[61]*f[63])/(5*U[2] - 6*U[3]) - (42*f_43_2*sin2th*f[28]*f[31]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_42_2*f[29]*f[31]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_43_2*f[29]*f[31]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (12*cos2th*f_34_2*f[26]*f[28]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_35_2*f[26]*f[28]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*f_34_2*sin2th*f[27]*f[28]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*f_35_2*sin2th*f[27]*f[28]*f[58]*f[60])/(U[2] - 5*U[3]) - (12*f_34_2*sin2th*f[26]*f[29]*f[58]*f[60])/(U[2] - 5*U[3]) - (12*f_35_2*sin2th*f[26]*f[29]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_34_2*f[27]*f[29]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_35_2*f[27]*f[29]*f[58]*f[60])/(U[2] - 5*U[3]) - (12*f_34_2*sin2th*f[26]*f[28]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*f_35_2*sin2th*f[26]*f[28]*f[59]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_34_2*f[27]*f[28]*f[59]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_35_2*f[27]*f[28]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*cos2th*f_34_2*f[26]*f[29]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*cos2th*f_35_2*f[26]*f[29]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*f_34_2*sin2th*f[27]*f[29]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*f_35_2*sin2th*f[27]*f[29]*f[59]*f[60])/(U[2] - 5*U[3]) + (12*f_34_2*sin2th*f[26]*f[28]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*f_35_2*sin2th*f[26]*f[28]*f[58]*f[61])/(U[2] - 5*U[3]) - (12*cos2th*f_34_2*f[27]*f[28]*f[58]*f[61])/(U[2] - 5*U[3]) - (12*cos2th*f_35_2*f[27]*f[28]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_34_2*f[26]*f[29]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_35_2*f[26]*f[29]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*f_34_2*sin2th*f[27]*f[29]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*f_35_2*sin2th*f[27]*f[29]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_34_2*f[26]*f[28]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_35_2*f[26]*f[28]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*f_34_2*sin2th*f[27]*f[28]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*f_35_2*sin2th*f[27]*f[28]*f[59]*f[61])/(U[2] - 5*U[3]) - (12*f_34_2*sin2th*f[26]*f[29]*f[59]*f[61])/(U[2] - 5*U[3]) - (12*f_35_2*sin2th*f[26]*f[29]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_34_2*f[27]*f[29]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_35_2*f[27]*f[29]*f[59]*f[61])/(U[2] - 5*U[3]) + (18*cos2th*f_36_2*f[26]*f[28]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_37_2*f[26]*f[28]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*f_36_2*sin2th*f[27]*f[28]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*f_37_2*sin2th*f[27]*f[28]*f[58]*f[60])/(2*U[2] - 5*U[3]) - (18*f_36_2*sin2th*f[26]*f[29]*f[58]*f[60])/(2*U[2] - 5*U[3]) - (18*f_37_2*sin2th*f[26]*f[29]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_36_2*f[27]*f[29]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_37_2*f[27]*f[29]*f[58]*f[60])/(2*U[2] - 5*U[3]) - (18*f_36_2*sin2th*f[26]*f[28]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*f_37_2*sin2th*f[26]*f[28]*f[59]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_36_2*f[27]*f[28]*f[59]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_37_2*f[27]*f[28]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*cos2th*f_36_2*f[26]*f[29]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*cos2th*f_37_2*f[26]*f[29]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*f_36_2*sin2th*f[27]*f[29]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*f_37_2*sin2th*f[27]*f[29]*f[59]*f[60])/(2*U[2] - 5*U[3]) + (18*f_36_2*sin2th*f[26]*f[28]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*f_37_2*sin2th*f[26]*f[28]*f[58]*f[61])/(2*U[2] - 5*U[3]) - (18*cos2th*f_36_2*f[27]*f[28]*f[58]*f[61])/(2*U[2] - 5*U[3]) - (18*cos2th*f_37_2*f[27]*f[28]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_36_2*f[26]*f[29]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_37_2*f[26]*f[29]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*f_36_2*sin2th*f[27]*f[29]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*f_37_2*sin2th*f[27]*f[29]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_36_2*f[26]*f[28]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_37_2*f[26]*f[28]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*f_36_2*sin2th*f[27]*f[28]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*f_37_2*sin2th*f[27]*f[28]*f[59]*f[61])/(2*U[2] - 5*U[3]) - (18*f_36_2*sin2th*f[26]*f[29]*f[59]*f[61])/(2*U[2] - 5*U[3]) - (18*f_37_2*sin2th*f[26]*f[29]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_36_2*f[27]*f[29]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_37_2*f[27]*f[29]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (24*cos2th*f_38_2*f[26]*f[28]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_39_2*f[26]*f[28]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*f_38_2*sin2th*f[27]*f[28]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*f_39_2*sin2th*f[27]*f[28]*f[58]*f[60])/(3*U[2] - 5*U[3]) - (24*f_38_2*sin2th*f[26]*f[29]*f[58]*f[60])/(3*U[2] - 5*U[3]) - (24*f_39_2*sin2th*f[26]*f[29]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_38_2*f[27]*f[29]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_39_2*f[27]*f[29]*f[58]*f[60])/(3*U[2] - 5*U[3]) - (24*f_38_2*sin2th*f[26]*f[28]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*f_39_2*sin2th*f[26]*f[28]*f[59]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_38_2*f[27]*f[28]*f[59]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_39_2*f[27]*f[28]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*cos2th*f_38_2*f[26]*f[29]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*cos2th*f_39_2*f[26]*f[29]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*f_38_2*sin2th*f[27]*f[29]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*f_39_2*sin2th*f[27]*f[29]*f[59]*f[60])/(3*U[2] - 5*U[3]) + (24*f_38_2*sin2th*f[26]*f[28]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*f_39_2*sin2th*f[26]*f[28]*f[58]*f[61])/(3*U[2] - 5*U[3]) - (24*cos2th*f_38_2*f[27]*f[28]*f[58]*f[61])/(3*U[2] - 5*U[3]) - (24*cos2th*f_39_2*f[27]*f[28]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_38_2*f[26]*f[29]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_39_2*f[26]*f[29]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*f_38_2*sin2th*f[27]*f[29]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*f_39_2*sin2th*f[27]*f[29]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_38_2*f[26]*f[28]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_39_2*f[26]*f[28]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*f_38_2*sin2th*f[27]*f[28]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*f_39_2*sin2th*f[27]*f[28]*f[59]*f[61])/(3*U[2] - 5*U[3]) - (24*f_38_2*sin2th*f[26]*f[29]*f[59]*f[61])/(3*U[2] - 5*U[3]) - (24*f_39_2*sin2th*f[26]*f[29]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_38_2*f[27]*f[29]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_39_2*f[27]*f[29]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (30*cos2th*f_40_2*f[26]*f[28]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_41_2*f[26]*f[28]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*f_40_2*sin2th*f[27]*f[28]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*f_41_2*sin2th*f[27]*f[28]*f[58]*f[60])/(4*U[2] - 5*U[3]) - (30*f_40_2*sin2th*f[26]*f[29]*f[58]*f[60])/(4*U[2] - 5*U[3]) - (30*f_41_2*sin2th*f[26]*f[29]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_40_2*f[27]*f[29]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_41_2*f[27]*f[29]*f[58]*f[60])/(4*U[2] - 5*U[3]) - (30*f_40_2*sin2th*f[26]*f[28]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*f_41_2*sin2th*f[26]*f[28]*f[59]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_40_2*f[27]*f[28]*f[59]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_41_2*f[27]*f[28]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*cos2th*f_40_2*f[26]*f[29]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*cos2th*f_41_2*f[26]*f[29]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*f_40_2*sin2th*f[27]*f[29]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*f_41_2*sin2th*f[27]*f[29]*f[59]*f[60])/(4*U[2] - 5*U[3]) + (30*f_40_2*sin2th*f[26]*f[28]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*f_41_2*sin2th*f[26]*f[28]*f[58]*f[61])/(4*U[2] - 5*U[3]) - (30*cos2th*f_40_2*f[27]*f[28]*f[58]*f[61])/(4*U[2] - 5*U[3]) - (30*cos2th*f_41_2*f[27]*f[28]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_40_2*f[26]*f[29]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_41_2*f[26]*f[29]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*f_40_2*sin2th*f[27]*f[29]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*f_41_2*sin2th*f[27]*f[29]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_40_2*f[26]*f[28]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_41_2*f[26]*f[28]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*f_40_2*sin2th*f[27]*f[28]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*f_41_2*sin2th*f[27]*f[28]*f[59]*f[61])/(4*U[2] - 5*U[3]) - (30*f_40_2*sin2th*f[26]*f[29]*f[59]*f[61])/(4*U[2] - 5*U[3]) - (30*f_41_2*sin2th*f[26]*f[29]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_40_2*f[27]*f[29]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_41_2*f[27]*f[29]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (42*cos2th*f_44_2*f[26]*f[28]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_45_2*f[26]*f[28]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*f_44_2*sin2th*f[27]*f[28]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*f_45_2*sin2th*f[27]*f[28]*f[58]*f[60])/(6*U[2] - 5*U[3]) - (42*f_44_2*sin2th*f[26]*f[29]*f[58]*f[60])/(6*U[2] - 5*U[3]) - (42*f_45_2*sin2th*f[26]*f[29]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_44_2*f[27]*f[29]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_45_2*f[27]*f[29]*f[58]*f[60])/(6*U[2] - 5*U[3]) - (42*f_44_2*sin2th*f[26]*f[28]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*f_45_2*sin2th*f[26]*f[28]*f[59]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_44_2*f[27]*f[28]*f[59]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_45_2*f[27]*f[28]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*cos2th*f_44_2*f[26]*f[29]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*cos2th*f_45_2*f[26]*f[29]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*f_44_2*sin2th*f[27]*f[29]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*f_45_2*sin2th*f[27]*f[29]*f[59]*f[60])/(6*U[2] - 5*U[3]) + (42*f_44_2*sin2th*f[26]*f[28]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*f_45_2*sin2th*f[26]*f[28]*f[58]*f[61])/(6*U[2] - 5*U[3]) - (42*cos2th*f_44_2*f[27]*f[28]*f[58]*f[61])/(6*U[2] - 5*U[3]) - (42*cos2th*f_45_2*f[27]*f[28]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_44_2*f[26]*f[29]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_45_2*f[26]*f[29]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*f_44_2*sin2th*f[27]*f[29]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*f_45_2*sin2th*f[27]*f[29]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_44_2*f[26]*f[28]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_45_2*f[26]*f[28]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*f_44_2*sin2th*f[27]*f[28]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*f_45_2*sin2th*f[27]*f[28]*f[59]*f[61])/(6*U[2] - 5*U[3]) - (42*f_44_2*sin2th*f[26]*f[29]*f[59]*f[61])/(6*U[2] - 5*U[3]) - (42*f_45_2*sin2th*f[26]*f[29]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_44_2*f[27]*f[29]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_45_2*f[27]*f[29]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (10*cos2th*f_34_2*f[24]*f[26]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_35_2*f[24]*f[26]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*f_34_2*sin2th*f[25]*f[26]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*f_35_2*sin2th*f[25]*f[26]*f[56]*f[58])/(U[2] - 4*U[3]) - (10*f_34_2*sin2th*f[24]*f[27]*f[56]*f[58])/(U[2] - 4*U[3]) - (10*f_35_2*sin2th*f[24]*f[27]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_34_2*f[25]*f[27]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_35_2*f[25]*f[27]*f[56]*f[58])/(U[2] - 4*U[3]) - (10*f_34_2*sin2th*f[24]*f[26]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*f_35_2*sin2th*f[24]*f[26]*f[57]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_34_2*f[25]*f[26]*f[57]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_35_2*f[25]*f[26]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*cos2th*f_34_2*f[24]*f[27]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*cos2th*f_35_2*f[24]*f[27]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*f_34_2*sin2th*f[25]*f[27]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*f_35_2*sin2th*f[25]*f[27]*f[57]*f[58])/(U[2] - 4*U[3]) + (10*f_34_2*sin2th*f[24]*f[26]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*f_35_2*sin2th*f[24]*f[26]*f[56]*f[59])/(U[2] - 4*U[3]) - (10*cos2th*f_34_2*f[25]*f[26]*f[56]*f[59])/(U[2] - 4*U[3]) - (10*cos2th*f_35_2*f[25]*f[26]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_34_2*f[24]*f[27]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_35_2*f[24]*f[27]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*f_34_2*sin2th*f[25]*f[27]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*f_35_2*sin2th*f[25]*f[27]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_34_2*f[24]*f[26]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_35_2*f[24]*f[26]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*f_34_2*sin2th*f[25]*f[26]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*f_35_2*sin2th*f[25]*f[26]*f[57]*f[59])/(U[2] - 4*U[3]) - (10*f_34_2*sin2th*f[24]*f[27]*f[57]*f[59])/(U[2] - 4*U[3]) - (10*f_35_2*sin2th*f[24]*f[27]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_34_2*f[25]*f[27]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_35_2*f[25]*f[27]*f[57]*f[59])/(U[2] - 4*U[3]) + (15*cos2th*f_36_2*f[24]*f[26]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_37_2*f[24]*f[26]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*f_36_2*sin2th*f[25]*f[26]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*f_37_2*sin2th*f[25]*f[26]*f[56]*f[58])/(2*U[2] - 4*U[3]) - (15*f_36_2*sin2th*f[24]*f[27]*f[56]*f[58])/(2*U[2] - 4*U[3]) - (15*f_37_2*sin2th*f[24]*f[27]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_36_2*f[25]*f[27]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_37_2*f[25]*f[27]*f[56]*f[58])/(2*U[2] - 4*U[3]) - (15*f_36_2*sin2th*f[24]*f[26]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*f_37_2*sin2th*f[24]*f[26]*f[57]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_36_2*f[25]*f[26]*f[57]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_37_2*f[25]*f[26]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*cos2th*f_36_2*f[24]*f[27]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*cos2th*f_37_2*f[24]*f[27]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*f_36_2*sin2th*f[25]*f[27]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*f_37_2*sin2th*f[25]*f[27]*f[57]*f[58])/(2*U[2] - 4*U[3]) + (15*f_36_2*sin2th*f[24]*f[26]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*f_37_2*sin2th*f[24]*f[26]*f[56]*f[59])/(2*U[2] - 4*U[3]) - (15*cos2th*f_36_2*f[25]*f[26]*f[56]*f[59])/(2*U[2] - 4*U[3]) - (15*cos2th*f_37_2*f[25]*f[26]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_36_2*f[24]*f[27]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_37_2*f[24]*f[27]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*f_36_2*sin2th*f[25]*f[27]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*f_37_2*sin2th*f[25]*f[27]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_36_2*f[24]*f[26]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_37_2*f[24]*f[26]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*f_36_2*sin2th*f[25]*f[26]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*f_37_2*sin2th*f[25]*f[26]*f[57]*f[59])/(2*U[2] - 4*U[3]) - (15*f_36_2*sin2th*f[24]*f[27]*f[57]*f[59])/(2*U[2] - 4*U[3]) - (15*f_37_2*sin2th*f[24]*f[27]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_36_2*f[25]*f[27]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_37_2*f[25]*f[27]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (20*cos2th*f_38_2*f[24]*f[26]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_39_2*f[24]*f[26]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*f_38_2*sin2th*f[25]*f[26]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*f_39_2*sin2th*f[25]*f[26]*f[56]*f[58])/(3*U[2] - 4*U[3]) - (20*f_38_2*sin2th*f[24]*f[27]*f[56]*f[58])/(3*U[2] - 4*U[3]) - (20*f_39_2*sin2th*f[24]*f[27]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_38_2*f[25]*f[27]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_39_2*f[25]*f[27]*f[56]*f[58])/(3*U[2] - 4*U[3]) - (20*f_38_2*sin2th*f[24]*f[26]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*f_39_2*sin2th*f[24]*f[26]*f[57]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_38_2*f[25]*f[26]*f[57]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_39_2*f[25]*f[26]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*cos2th*f_38_2*f[24]*f[27]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*cos2th*f_39_2*f[24]*f[27]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*f_38_2*sin2th*f[25]*f[27]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*f_39_2*sin2th*f[25]*f[27]*f[57]*f[58])/(3*U[2] - 4*U[3]) + (20*f_38_2*sin2th*f[24]*f[26]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*f_39_2*sin2th*f[24]*f[26]*f[56]*f[59])/(3*U[2] - 4*U[3]) - (20*cos2th*f_38_2*f[25]*f[26]*f[56]*f[59])/(3*U[2] - 4*U[3]) - (20*cos2th*f_39_2*f[25]*f[26]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_38_2*f[24]*f[27]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_39_2*f[24]*f[27]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*f_38_2*sin2th*f[25]*f[27]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*f_39_2*sin2th*f[25]*f[27]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_38_2*f[24]*f[26]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_39_2*f[24]*f[26]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*f_38_2*sin2th*f[25]*f[26]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*f_39_2*sin2th*f[25]*f[26]*f[57]*f[59])/(3*U[2] - 4*U[3]) - (20*f_38_2*sin2th*f[24]*f[27]*f[57]*f[59])/(3*U[2] - 4*U[3]) - (20*f_39_2*sin2th*f[24]*f[27]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_38_2*f[25]*f[27]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_39_2*f[25]*f[27]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (30*cos2th*f_42_2*f[24]*f[26]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_43_2*f[24]*f[26]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*f_42_2*sin2th*f[25]*f[26]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*f_43_2*sin2th*f[25]*f[26]*f[56]*f[58])/(5*U[2] - 4*U[3]) - (30*f_42_2*sin2th*f[24]*f[27]*f[56]*f[58])/(5*U[2] - 4*U[3]) - (30*f_43_2*sin2th*f[24]*f[27]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_42_2*f[25]*f[27]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_43_2*f[25]*f[27]*f[56]*f[58])/(5*U[2] - 4*U[3]) - (30*f_42_2*sin2th*f[24]*f[26]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*f_43_2*sin2th*f[24]*f[26]*f[57]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_42_2*f[25]*f[26]*f[57]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_43_2*f[25]*f[26]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*cos2th*f_42_2*f[24]*f[27]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*cos2th*f_43_2*f[24]*f[27]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*f_42_2*sin2th*f[25]*f[27]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*f_43_2*sin2th*f[25]*f[27]*f[57]*f[58])/(5*U[2] - 4*U[3]) + (30*f_42_2*sin2th*f[24]*f[26]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*f_43_2*sin2th*f[24]*f[26]*f[56]*f[59])/(5*U[2] - 4*U[3]) - (30*cos2th*f_42_2*f[25]*f[26]*f[56]*f[59])/(5*U[2] - 4*U[3]) - (30*cos2th*f_43_2*f[25]*f[26]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_42_2*f[24]*f[27]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_43_2*f[24]*f[27]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*f_42_2*sin2th*f[25]*f[27]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*f_43_2*sin2th*f[25]*f[27]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_42_2*f[24]*f[26]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_43_2*f[24]*f[26]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*f_42_2*sin2th*f[25]*f[26]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*f_43_2*sin2th*f[25]*f[26]*f[57]*f[59])/(5*U[2] - 4*U[3]) - (30*f_42_2*sin2th*f[24]*f[27]*f[57]*f[59])/(5*U[2] - 4*U[3]) - (30*f_43_2*sin2th*f[24]*f[27]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_42_2*f[25]*f[27]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_43_2*f[25]*f[27]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (35*cos2th*f_44_2*f[24]*f[26]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_45_2*f[24]*f[26]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*f_44_2*sin2th*f[25]*f[26]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*f_45_2*sin2th*f[25]*f[26]*f[56]*f[58])/(6*U[2] - 4*U[3]) - (35*f_44_2*sin2th*f[24]*f[27]*f[56]*f[58])/(6*U[2] - 4*U[3]) - (35*f_45_2*sin2th*f[24]*f[27]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_44_2*f[25]*f[27]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_45_2*f[25]*f[27]*f[56]*f[58])/(6*U[2] - 4*U[3]) - (35*f_44_2*sin2th*f[24]*f[26]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*f_45_2*sin2th*f[24]*f[26]*f[57]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_44_2*f[25]*f[26]*f[57]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_45_2*f[25]*f[26]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*cos2th*f_44_2*f[24]*f[27]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*cos2th*f_45_2*f[24]*f[27]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*f_44_2*sin2th*f[25]*f[27]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*f_45_2*sin2th*f[25]*f[27]*f[57]*f[58])/(6*U[2] - 4*U[3]) + (35*f_44_2*sin2th*f[24]*f[26]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*f_45_2*sin2th*f[24]*f[26]*f[56]*f[59])/(6*U[2] - 4*U[3]) - (35*cos2th*f_44_2*f[25]*f[26]*f[56]*f[59])/(6*U[2] - 4*U[3]) - (35*cos2th*f_45_2*f[25]*f[26]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_44_2*f[24]*f[27]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_45_2*f[24]*f[27]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*f_44_2*sin2th*f[25]*f[27]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*f_45_2*sin2th*f[25]*f[27]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_44_2*f[24]*f[26]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_45_2*f[24]*f[26]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*f_44_2*sin2th*f[25]*f[26]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*f_45_2*sin2th*f[25]*f[26]*f[57]*f[59])/(6*U[2] - 4*U[3]) - (35*f_44_2*sin2th*f[24]*f[27]*f[57]*f[59])/(6*U[2] - 4*U[3]) - (35*f_45_2*sin2th*f[24]*f[27]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_44_2*f[25]*f[27]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_45_2*f[25]*f[27]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (8*cos2th*f_34_2*f[22]*f[24]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_35_2*f[22]*f[24]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*f_34_2*sin2th*f[23]*f[24]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*f_35_2*sin2th*f[23]*f[24]*f[54]*f[56])/(U[2] - 3*U[3]) - (8*f_34_2*sin2th*f[22]*f[25]*f[54]*f[56])/(U[2] - 3*U[3]) - (8*f_35_2*sin2th*f[22]*f[25]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_34_2*f[23]*f[25]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_35_2*f[23]*f[25]*f[54]*f[56])/(U[2] - 3*U[3]) - (8*f_34_2*sin2th*f[22]*f[24]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*f_35_2*sin2th*f[22]*f[24]*f[55]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_34_2*f[23]*f[24]*f[55]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_35_2*f[23]*f[24]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*cos2th*f_34_2*f[22]*f[25]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*cos2th*f_35_2*f[22]*f[25]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*f_34_2*sin2th*f[23]*f[25]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*f_35_2*sin2th*f[23]*f[25]*f[55]*f[56])/(U[2] - 3*U[3]) + (8*f_34_2*sin2th*f[22]*f[24]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*f_35_2*sin2th*f[22]*f[24]*f[54]*f[57])/(U[2] - 3*U[3]) - (8*cos2th*f_34_2*f[23]*f[24]*f[54]*f[57])/(U[2] - 3*U[3]) - (8*cos2th*f_35_2*f[23]*f[24]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_34_2*f[22]*f[25]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_35_2*f[22]*f[25]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*f_34_2*sin2th*f[23]*f[25]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*f_35_2*sin2th*f[23]*f[25]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_34_2*f[22]*f[24]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_35_2*f[22]*f[24]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*f_34_2*sin2th*f[23]*f[24]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*f_35_2*sin2th*f[23]*f[24]*f[55]*f[57])/(U[2] - 3*U[3]) - (8*f_34_2*sin2th*f[22]*f[25]*f[55]*f[57])/(U[2] - 3*U[3]) - (8*f_35_2*sin2th*f[22]*f[25]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_34_2*f[23]*f[25]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_35_2*f[23]*f[25]*f[55]*f[57])/(U[2] - 3*U[3]) + (12*cos2th*f_36_2*f[22]*f[24]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_37_2*f[22]*f[24]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*f_36_2*sin2th*f[23]*f[24]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*f_37_2*sin2th*f[23]*f[24]*f[54]*f[56])/(2*U[2] - 3*U[3]) - (12*f_36_2*sin2th*f[22]*f[25]*f[54]*f[56])/(2*U[2] - 3*U[3]) - (12*f_37_2*sin2th*f[22]*f[25]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_36_2*f[23]*f[25]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_37_2*f[23]*f[25]*f[54]*f[56])/(2*U[2] - 3*U[3]) - (12*f_36_2*sin2th*f[22]*f[24]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*f_37_2*sin2th*f[22]*f[24]*f[55]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_36_2*f[23]*f[24]*f[55]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_37_2*f[23]*f[24]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*cos2th*f_36_2*f[22]*f[25]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*cos2th*f_37_2*f[22]*f[25]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*f_36_2*sin2th*f[23]*f[25]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*f_37_2*sin2th*f[23]*f[25]*f[55]*f[56])/(2*U[2] - 3*U[3]) + (12*f_36_2*sin2th*f[22]*f[24]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*f_37_2*sin2th*f[22]*f[24]*f[54]*f[57])/(2*U[2] - 3*U[3]) - (12*cos2th*f_36_2*f[23]*f[24]*f[54]*f[57])/(2*U[2] - 3*U[3]) - (12*cos2th*f_37_2*f[23]*f[24]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_36_2*f[22]*f[25]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_37_2*f[22]*f[25]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*f_36_2*sin2th*f[23]*f[25]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*f_37_2*sin2th*f[23]*f[25]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_36_2*f[22]*f[24]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_37_2*f[22]*f[24]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*f_36_2*sin2th*f[23]*f[24]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*f_37_2*sin2th*f[23]*f[24]*f[55]*f[57])/(2*U[2] - 3*U[3]) - (12*f_36_2*sin2th*f[22]*f[25]*f[55]*f[57])/(2*U[2] - 3*U[3]) - (12*f_37_2*sin2th*f[22]*f[25]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_36_2*f[23]*f[25]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_37_2*f[23]*f[25]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (20*cos2th*f_40_2*f[22]*f[24]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_41_2*f[22]*f[24]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*f_40_2*sin2th*f[23]*f[24]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*f_41_2*sin2th*f[23]*f[24]*f[54]*f[56])/(4*U[2] - 3*U[3]) - (20*f_40_2*sin2th*f[22]*f[25]*f[54]*f[56])/(4*U[2] - 3*U[3]) - (20*f_41_2*sin2th*f[22]*f[25]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_40_2*f[23]*f[25]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_41_2*f[23]*f[25]*f[54]*f[56])/(4*U[2] - 3*U[3]) - (20*f_40_2*sin2th*f[22]*f[24]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*f_41_2*sin2th*f[22]*f[24]*f[55]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_40_2*f[23]*f[24]*f[55]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_41_2*f[23]*f[24]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*cos2th*f_40_2*f[22]*f[25]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*cos2th*f_41_2*f[22]*f[25]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*f_40_2*sin2th*f[23]*f[25]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*f_41_2*sin2th*f[23]*f[25]*f[55]*f[56])/(4*U[2] - 3*U[3]) + (20*f_40_2*sin2th*f[22]*f[24]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*f_41_2*sin2th*f[22]*f[24]*f[54]*f[57])/(4*U[2] - 3*U[3]) - (20*cos2th*f_40_2*f[23]*f[24]*f[54]*f[57])/(4*U[2] - 3*U[3]) - (20*cos2th*f_41_2*f[23]*f[24]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_40_2*f[22]*f[25]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_41_2*f[22]*f[25]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*f_40_2*sin2th*f[23]*f[25]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*f_41_2*sin2th*f[23]*f[25]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_40_2*f[22]*f[24]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_41_2*f[22]*f[24]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*f_40_2*sin2th*f[23]*f[24]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*f_41_2*sin2th*f[23]*f[24]*f[55]*f[57])/(4*U[2] - 3*U[3]) - (20*f_40_2*sin2th*f[22]*f[25]*f[55]*f[57])/(4*U[2] - 3*U[3]) - (20*f_41_2*sin2th*f[22]*f[25]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_40_2*f[23]*f[25]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_41_2*f[23]*f[25]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (24*cos2th*f_42_2*f[22]*f[24]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_43_2*f[22]*f[24]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*f_42_2*sin2th*f[23]*f[24]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*f_43_2*sin2th*f[23]*f[24]*f[54]*f[56])/(5*U[2] - 3*U[3]) - (24*f_42_2*sin2th*f[22]*f[25]*f[54]*f[56])/(5*U[2] - 3*U[3]) - (24*f_43_2*sin2th*f[22]*f[25]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_42_2*f[23]*f[25]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_43_2*f[23]*f[25]*f[54]*f[56])/(5*U[2] - 3*U[3]) - (24*f_42_2*sin2th*f[22]*f[24]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*f_43_2*sin2th*f[22]*f[24]*f[55]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_42_2*f[23]*f[24]*f[55]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_43_2*f[23]*f[24]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*cos2th*f_42_2*f[22]*f[25]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*cos2th*f_43_2*f[22]*f[25]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*f_42_2*sin2th*f[23]*f[25]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*f_43_2*sin2th*f[23]*f[25]*f[55]*f[56])/(5*U[2] - 3*U[3]) + (24*f_42_2*sin2th*f[22]*f[24]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*f_43_2*sin2th*f[22]*f[24]*f[54]*f[57])/(5*U[2] - 3*U[3]) - (24*cos2th*f_42_2*f[23]*f[24]*f[54]*f[57])/(5*U[2] - 3*U[3]) - (24*cos2th*f_43_2*f[23]*f[24]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_42_2*f[22]*f[25]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_43_2*f[22]*f[25]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*f_42_2*sin2th*f[23]*f[25]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*f_43_2*sin2th*f[23]*f[25]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_42_2*f[22]*f[24]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_43_2*f[22]*f[24]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*f_42_2*sin2th*f[23]*f[24]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*f_43_2*sin2th*f[23]*f[24]*f[55]*f[57])/(5*U[2] - 3*U[3]) - (24*f_42_2*sin2th*f[22]*f[25]*f[55]*f[57])/(5*U[2] - 3*U[3]) - (24*f_43_2*sin2th*f[22]*f[25]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_42_2*f[23]*f[25]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_43_2*f[23]*f[25]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (28*cos2th*f_44_2*f[22]*f[24]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_45_2*f[22]*f[24]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*f_44_2*sin2th*f[23]*f[24]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*f_45_2*sin2th*f[23]*f[24]*f[54]*f[56])/(6*U[2] - 3*U[3]) - (28*f_44_2*sin2th*f[22]*f[25]*f[54]*f[56])/(6*U[2] - 3*U[3]) - (28*f_45_2*sin2th*f[22]*f[25]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_44_2*f[23]*f[25]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_45_2*f[23]*f[25]*f[54]*f[56])/(6*U[2] - 3*U[3]) - (28*f_44_2*sin2th*f[22]*f[24]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*f_45_2*sin2th*f[22]*f[24]*f[55]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_44_2*f[23]*f[24]*f[55]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_45_2*f[23]*f[24]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*cos2th*f_44_2*f[22]*f[25]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*cos2th*f_45_2*f[22]*f[25]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*f_44_2*sin2th*f[23]*f[25]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*f_45_2*sin2th*f[23]*f[25]*f[55]*f[56])/(6*U[2] - 3*U[3]) + (28*f_44_2*sin2th*f[22]*f[24]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*f_45_2*sin2th*f[22]*f[24]*f[54]*f[57])/(6*U[2] - 3*U[3]) - (28*cos2th*f_44_2*f[23]*f[24]*f[54]*f[57])/(6*U[2] - 3*U[3]) - (28*cos2th*f_45_2*f[23]*f[24]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_44_2*f[22]*f[25]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_45_2*f[22]*f[25]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*f_44_2*sin2th*f[23]*f[25]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*f_45_2*sin2th*f[23]*f[25]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_44_2*f[22]*f[24]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_45_2*f[22]*f[24]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*f_44_2*sin2th*f[23]*f[24]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*f_45_2*sin2th*f[23]*f[24]*f[55]*f[57])/(6*U[2] - 3*U[3]) - (28*f_44_2*sin2th*f[22]*f[25]*f[55]*f[57])/(6*U[2] - 3*U[3]) - (28*f_45_2*sin2th*f[22]*f[25]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_44_2*f[23]*f[25]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_45_2*f[23]*f[25]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (6*cos2th*f_34_2*f[20]*f[22]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_35_2*f[20]*f[22]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*f_34_2*sin2th*f[21]*f[22]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*f_35_2*sin2th*f[21]*f[22]*f[52]*f[54])/(U[2] - 2*U[3]) - (6*f_34_2*sin2th*f[20]*f[23]*f[52]*f[54])/(U[2] - 2*U[3]) - (6*f_35_2*sin2th*f[20]*f[23]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_34_2*f[21]*f[23]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_35_2*f[21]*f[23]*f[52]*f[54])/(U[2] - 2*U[3]) - (6*f_34_2*sin2th*f[20]*f[22]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*f_35_2*sin2th*f[20]*f[22]*f[53]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_34_2*f[21]*f[22]*f[53]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_35_2*f[21]*f[22]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*cos2th*f_34_2*f[20]*f[23]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*cos2th*f_35_2*f[20]*f[23]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*f_34_2*sin2th*f[21]*f[23]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*f_35_2*sin2th*f[21]*f[23]*f[53]*f[54])/(U[2] - 2*U[3]) + (6*f_34_2*sin2th*f[20]*f[22]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*f_35_2*sin2th*f[20]*f[22]*f[52]*f[55])/(U[2] - 2*U[3]) - (6*cos2th*f_34_2*f[21]*f[22]*f[52]*f[55])/(U[2] - 2*U[3]) - (6*cos2th*f_35_2*f[21]*f[22]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_34_2*f[20]*f[23]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_35_2*f[20]*f[23]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*f_34_2*sin2th*f[21]*f[23]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*f_35_2*sin2th*f[21]*f[23]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_34_2*f[20]*f[22]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_35_2*f[20]*f[22]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*f_34_2*sin2th*f[21]*f[22]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*f_35_2*sin2th*f[21]*f[22]*f[53]*f[55])/(U[2] - 2*U[3]) - (6*f_34_2*sin2th*f[20]*f[23]*f[53]*f[55])/(U[2] - 2*U[3]) - (6*f_35_2*sin2th*f[20]*f[23]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_34_2*f[21]*f[23]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_35_2*f[21]*f[23]*f[53]*f[55])/(U[2] - 2*U[3]) + (12*cos2th*f_38_2*f[20]*f[22]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_39_2*f[20]*f[22]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*f_38_2*sin2th*f[21]*f[22]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*f_39_2*sin2th*f[21]*f[22]*f[52]*f[54])/(3*U[2] - 2*U[3]) - (12*f_38_2*sin2th*f[20]*f[23]*f[52]*f[54])/(3*U[2] - 2*U[3]) - (12*f_39_2*sin2th*f[20]*f[23]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_38_2*f[21]*f[23]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_39_2*f[21]*f[23]*f[52]*f[54])/(3*U[2] - 2*U[3]) - (12*f_38_2*sin2th*f[20]*f[22]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*f_39_2*sin2th*f[20]*f[22]*f[53]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_38_2*f[21]*f[22]*f[53]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_39_2*f[21]*f[22]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*cos2th*f_38_2*f[20]*f[23]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*cos2th*f_39_2*f[20]*f[23]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*f_38_2*sin2th*f[21]*f[23]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*f_39_2*sin2th*f[21]*f[23]*f[53]*f[54])/(3*U[2] - 2*U[3]) + (12*f_38_2*sin2th*f[20]*f[22]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*f_39_2*sin2th*f[20]*f[22]*f[52]*f[55])/(3*U[2] - 2*U[3]) - (12*cos2th*f_38_2*f[21]*f[22]*f[52]*f[55])/(3*U[2] - 2*U[3]) - (12*cos2th*f_39_2*f[21]*f[22]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_38_2*f[20]*f[23]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_39_2*f[20]*f[23]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*f_38_2*sin2th*f[21]*f[23]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*f_39_2*sin2th*f[21]*f[23]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_38_2*f[20]*f[22]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_39_2*f[20]*f[22]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*f_38_2*sin2th*f[21]*f[22]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*f_39_2*sin2th*f[21]*f[22]*f[53]*f[55])/(3*U[2] - 2*U[3]) - (12*f_38_2*sin2th*f[20]*f[23]*f[53]*f[55])/(3*U[2] - 2*U[3]) - (12*f_39_2*sin2th*f[20]*f[23]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_38_2*f[21]*f[23]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_39_2*f[21]*f[23]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (15*cos2th*f_40_2*f[20]*f[22]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_41_2*f[20]*f[22]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*f_40_2*sin2th*f[21]*f[22]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*f_41_2*sin2th*f[21]*f[22]*f[52]*f[54])/(4*U[2] - 2*U[3]) - (15*f_40_2*sin2th*f[20]*f[23]*f[52]*f[54])/(4*U[2] - 2*U[3]) - (15*f_41_2*sin2th*f[20]*f[23]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_40_2*f[21]*f[23]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_41_2*f[21]*f[23]*f[52]*f[54])/(4*U[2] - 2*U[3]) - (15*f_40_2*sin2th*f[20]*f[22]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*f_41_2*sin2th*f[20]*f[22]*f[53]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_40_2*f[21]*f[22]*f[53]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_41_2*f[21]*f[22]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*cos2th*f_40_2*f[20]*f[23]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*cos2th*f_41_2*f[20]*f[23]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*f_40_2*sin2th*f[21]*f[23]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*f_41_2*sin2th*f[21]*f[23]*f[53]*f[54])/(4*U[2] - 2*U[3]) + (15*f_40_2*sin2th*f[20]*f[22]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*f_41_2*sin2th*f[20]*f[22]*f[52]*f[55])/(4*U[2] - 2*U[3]) - (15*cos2th*f_40_2*f[21]*f[22]*f[52]*f[55])/(4*U[2] - 2*U[3]) - (15*cos2th*f_41_2*f[21]*f[22]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_40_2*f[20]*f[23]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_41_2*f[20]*f[23]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*f_40_2*sin2th*f[21]*f[23]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*f_41_2*sin2th*f[21]*f[23]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_40_2*f[20]*f[22]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_41_2*f[20]*f[22]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*f_40_2*sin2th*f[21]*f[22]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*f_41_2*sin2th*f[21]*f[22]*f[53]*f[55])/(4*U[2] - 2*U[3]) - (15*f_40_2*sin2th*f[20]*f[23]*f[53]*f[55])/(4*U[2] - 2*U[3]) - (15*f_41_2*sin2th*f[20]*f[23]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_40_2*f[21]*f[23]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_41_2*f[21]*f[23]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (18*cos2th*f_42_2*f[20]*f[22]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_43_2*f[20]*f[22]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*f_42_2*sin2th*f[21]*f[22]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*f_43_2*sin2th*f[21]*f[22]*f[52]*f[54])/(5*U[2] - 2*U[3]) - (18*f_42_2*sin2th*f[20]*f[23]*f[52]*f[54])/(5*U[2] - 2*U[3]) - (18*f_43_2*sin2th*f[20]*f[23]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_42_2*f[21]*f[23]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_43_2*f[21]*f[23]*f[52]*f[54])/(5*U[2] - 2*U[3]) - (18*f_42_2*sin2th*f[20]*f[22]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*f_43_2*sin2th*f[20]*f[22]*f[53]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_42_2*f[21]*f[22]*f[53]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_43_2*f[21]*f[22]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*cos2th*f_42_2*f[20]*f[23]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*cos2th*f_43_2*f[20]*f[23]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*f_42_2*sin2th*f[21]*f[23]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*f_43_2*sin2th*f[21]*f[23]*f[53]*f[54])/(5*U[2] - 2*U[3]) + (18*f_42_2*sin2th*f[20]*f[22]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*f_43_2*sin2th*f[20]*f[22]*f[52]*f[55])/(5*U[2] - 2*U[3]) - (18*cos2th*f_42_2*f[21]*f[22]*f[52]*f[55])/(5*U[2] - 2*U[3]) - (18*cos2th*f_43_2*f[21]*f[22]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_42_2*f[20]*f[23]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_43_2*f[20]*f[23]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*f_42_2*sin2th*f[21]*f[23]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*f_43_2*sin2th*f[21]*f[23]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_42_2*f[20]*f[22]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_43_2*f[20]*f[22]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*f_42_2*sin2th*f[21]*f[22]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*f_43_2*sin2th*f[21]*f[22]*f[53]*f[55])/(5*U[2] - 2*U[3]) - (18*f_42_2*sin2th*f[20]*f[23]*f[53]*f[55])/(5*U[2] - 2*U[3]) - (18*f_43_2*sin2th*f[20]*f[23]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_42_2*f[21]*f[23]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_43_2*f[21]*f[23]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (21*cos2th*f_44_2*f[20]*f[22]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_45_2*f[20]*f[22]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*f_44_2*sin2th*f[21]*f[22]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*f_45_2*sin2th*f[21]*f[22]*f[52]*f[54])/(6*U[2] - 2*U[3]) - (21*f_44_2*sin2th*f[20]*f[23]*f[52]*f[54])/(6*U[2] - 2*U[3]) - (21*f_45_2*sin2th*f[20]*f[23]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_44_2*f[21]*f[23]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_45_2*f[21]*f[23]*f[52]*f[54])/(6*U[2] - 2*U[3]) - (21*f_44_2*sin2th*f[20]*f[22]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*f_45_2*sin2th*f[20]*f[22]*f[53]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_44_2*f[21]*f[22]*f[53]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_45_2*f[21]*f[22]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*cos2th*f_44_2*f[20]*f[23]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*cos2th*f_45_2*f[20]*f[23]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*f_44_2*sin2th*f[21]*f[23]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*f_45_2*sin2th*f[21]*f[23]*f[53]*f[54])/(6*U[2] - 2*U[3]) + (21*f_44_2*sin2th*f[20]*f[22]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*f_45_2*sin2th*f[20]*f[22]*f[52]*f[55])/(6*U[2] - 2*U[3]) - (21*cos2th*f_44_2*f[21]*f[22]*f[52]*f[55])/(6*U[2] - 2*U[3]) - (21*cos2th*f_45_2*f[21]*f[22]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_44_2*f[20]*f[23]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_45_2*f[20]*f[23]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*f_44_2*sin2th*f[21]*f[23]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*f_45_2*sin2th*f[21]*f[23]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_44_2*f[20]*f[22]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_45_2*f[20]*f[22]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*f_44_2*sin2th*f[21]*f[22]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*f_45_2*sin2th*f[21]*f[22]*f[53]*f[55])/(6*U[2] - 2*U[3]) - (21*f_44_2*sin2th*f[20]*f[23]*f[53]*f[55])/(6*U[2] - 2*U[3]) - (21*f_45_2*sin2th*f[20]*f[23]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_44_2*f[21]*f[23]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_45_2*f[21]*f[23]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (6*cos2th*f_36_2*f[18]*f[20]*f[50]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_37_2*f[18]*f[20]*f[50]*f[52])/(2*U[2] - U[3]) + (6*f_36_2*sin2th*f[19]*f[20]*f[50]*f[52])/(2*U[2] - U[3]) + (6*f_37_2*sin2th*f[19]*f[20]*f[50]*f[52])/(2*U[2] - U[3]) - (6*f_36_2*sin2th*f[18]*f[21]*f[50]*f[52])/(2*U[2] - U[3]) - (6*f_37_2*sin2th*f[18]*f[21]*f[50]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_36_2*f[19]*f[21]*f[50]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_37_2*f[19]*f[21]*f[50]*f[52])/(2*U[2] - U[3]) - (6*f_36_2*sin2th*f[18]*f[20]*f[51]*f[52])/(2*U[2] - U[3]) - (6*f_37_2*sin2th*f[18]*f[20]*f[51]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_36_2*f[19]*f[20]*f[51]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_37_2*f[19]*f[20]*f[51]*f[52])/(2*U[2] - U[3]) - (6*cos2th*f_36_2*f[18]*f[21]*f[51]*f[52])/(2*U[2] - U[3]) - (6*cos2th*f_37_2*f[18]*f[21]*f[51]*f[52])/(2*U[2] - U[3]) - (6*f_36_2*sin2th*f[19]*f[21]*f[51]*f[52])/(2*U[2] - U[3]) - (6*f_37_2*sin2th*f[19]*f[21]*f[51]*f[52])/(2*U[2] - U[3]) + (6*f_36_2*sin2th*f[18]*f[20]*f[50]*f[53])/(2*U[2] - U[3]) + (6*f_37_2*sin2th*f[18]*f[20]*f[50]*f[53])/(2*U[2] - U[3]) - (6*cos2th*f_36_2*f[19]*f[20]*f[50]*f[53])/(2*U[2] - U[3]) - (6*cos2th*f_37_2*f[19]*f[20]*f[50]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_36_2*f[18]*f[21]*f[50]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_37_2*f[18]*f[21]*f[50]*f[53])/(2*U[2] - U[3]) + (6*f_36_2*sin2th*f[19]*f[21]*f[50]*f[53])/(2*U[2] - U[3]) + (6*f_37_2*sin2th*f[19]*f[21]*f[50]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_36_2*f[18]*f[20]*f[51]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_37_2*f[18]*f[20]*f[51]*f[53])/(2*U[2] - U[3]) + (6*f_36_2*sin2th*f[19]*f[20]*f[51]*f[53])/(2*U[2] - U[3]) + (6*f_37_2*sin2th*f[19]*f[20]*f[51]*f[53])/(2*U[2] - U[3]) - (6*f_36_2*sin2th*f[18]*f[21]*f[51]*f[53])/(2*U[2] - U[3]) - (6*f_37_2*sin2th*f[18]*f[21]*f[51]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_36_2*f[19]*f[21]*f[51]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_37_2*f[19]*f[21]*f[51]*f[53])/(2*U[2] - U[3]) + (8*cos2th*f_38_2*f[18]*f[20]*f[50]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_39_2*f[18]*f[20]*f[50]*f[52])/(3*U[2] - U[3]) + (8*f_38_2*sin2th*f[19]*f[20]*f[50]*f[52])/(3*U[2] - U[3]) + (8*f_39_2*sin2th*f[19]*f[20]*f[50]*f[52])/(3*U[2] - U[3]) - (8*f_38_2*sin2th*f[18]*f[21]*f[50]*f[52])/(3*U[2] - U[3]) - (8*f_39_2*sin2th*f[18]*f[21]*f[50]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_38_2*f[19]*f[21]*f[50]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_39_2*f[19]*f[21]*f[50]*f[52])/(3*U[2] - U[3]) - (8*f_38_2*sin2th*f[18]*f[20]*f[51]*f[52])/(3*U[2] - U[3]) - (8*f_39_2*sin2th*f[18]*f[20]*f[51]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_38_2*f[19]*f[20]*f[51]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_39_2*f[19]*f[20]*f[51]*f[52])/(3*U[2] - U[3]) - (8*cos2th*f_38_2*f[18]*f[21]*f[51]*f[52])/(3*U[2] - U[3]) - (8*cos2th*f_39_2*f[18]*f[21]*f[51]*f[52])/(3*U[2] - U[3]) - (8*f_38_2*sin2th*f[19]*f[21]*f[51]*f[52])/(3*U[2] - U[3]) - (8*f_39_2*sin2th*f[19]*f[21]*f[51]*f[52])/(3*U[2] - U[3]) + (8*f_38_2*sin2th*f[18]*f[20]*f[50]*f[53])/(3*U[2] - U[3]) + (8*f_39_2*sin2th*f[18]*f[20]*f[50]*f[53])/(3*U[2] - U[3]) - (8*cos2th*f_38_2*f[19]*f[20]*f[50]*f[53])/(3*U[2] - U[3]) - (8*cos2th*f_39_2*f[19]*f[20]*f[50]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_38_2*f[18]*f[21]*f[50]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_39_2*f[18]*f[21]*f[50]*f[53])/(3*U[2] - U[3]) + (8*f_38_2*sin2th*f[19]*f[21]*f[50]*f[53])/(3*U[2] - U[3]) + (8*f_39_2*sin2th*f[19]*f[21]*f[50]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_38_2*f[18]*f[20]*f[51]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_39_2*f[18]*f[20]*f[51]*f[53])/(3*U[2] - U[3]) + (8*f_38_2*sin2th*f[19]*f[20]*f[51]*f[53])/(3*U[2] - U[3]) + (8*f_39_2*sin2th*f[19]*f[20]*f[51]*f[53])/(3*U[2] - U[3]) - (8*f_38_2*sin2th*f[18]*f[21]*f[51]*f[53])/(3*U[2] - U[3]) - (8*f_39_2*sin2th*f[18]*f[21]*f[51]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_38_2*f[19]*f[21]*f[51]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_39_2*f[19]*f[21]*f[51]*f[53])/(3*U[2] - U[3]) + (10*cos2th*f_40_2*f[18]*f[20]*f[50]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_41_2*f[18]*f[20]*f[50]*f[52])/(4*U[2] - U[3]) + (10*f_40_2*sin2th*f[19]*f[20]*f[50]*f[52])/(4*U[2] - U[3]) + (10*f_41_2*sin2th*f[19]*f[20]*f[50]*f[52])/(4*U[2] - U[3]) - (10*f_40_2*sin2th*f[18]*f[21]*f[50]*f[52])/(4*U[2] - U[3]) - (10*f_41_2*sin2th*f[18]*f[21]*f[50]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_40_2*f[19]*f[21]*f[50]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_41_2*f[19]*f[21]*f[50]*f[52])/(4*U[2] - U[3]) - (10*f_40_2*sin2th*f[18]*f[20]*f[51]*f[52])/(4*U[2] - U[3]) - (10*f_41_2*sin2th*f[18]*f[20]*f[51]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_40_2*f[19]*f[20]*f[51]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_41_2*f[19]*f[20]*f[51]*f[52])/(4*U[2] - U[3]) - (10*cos2th*f_40_2*f[18]*f[21]*f[51]*f[52])/(4*U[2] - U[3]) - (10*cos2th*f_41_2*f[18]*f[21]*f[51]*f[52])/(4*U[2] - U[3]) - (10*f_40_2*sin2th*f[19]*f[21]*f[51]*f[52])/(4*U[2] - U[3]) - (10*f_41_2*sin2th*f[19]*f[21]*f[51]*f[52])/(4*U[2] - U[3]) + (10*f_40_2*sin2th*f[18]*f[20]*f[50]*f[53])/(4*U[2] - U[3]) + (10*f_41_2*sin2th*f[18]*f[20]*f[50]*f[53])/(4*U[2] - U[3]) - (10*cos2th*f_40_2*f[19]*f[20]*f[50]*f[53])/(4*U[2] - U[3]) - (10*cos2th*f_41_2*f[19]*f[20]*f[50]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_40_2*f[18]*f[21]*f[50]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_41_2*f[18]*f[21]*f[50]*f[53])/(4*U[2] - U[3]) + (10*f_40_2*sin2th*f[19]*f[21]*f[50]*f[53])/(4*U[2] - U[3]) + (10*f_41_2*sin2th*f[19]*f[21]*f[50]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_40_2*f[18]*f[20]*f[51]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_41_2*f[18]*f[20]*f[51]*f[53])/(4*U[2] - U[3]) + (10*f_40_2*sin2th*f[19]*f[20]*f[51]*f[53])/(4*U[2] - U[3]) + (10*f_41_2*sin2th*f[19]*f[20]*f[51]*f[53])/(4*U[2] - U[3]) - (10*f_40_2*sin2th*f[18]*f[21]*f[51]*f[53])/(4*U[2] - U[3]) - (10*f_41_2*sin2th*f[18]*f[21]*f[51]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_40_2*f[19]*f[21]*f[51]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_41_2*f[19]*f[21]*f[51]*f[53])/(4*U[2] - U[3]) + (12*cos2th*f_42_2*f[18]*f[20]*f[50]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_43_2*f[18]*f[20]*f[50]*f[52])/(5*U[2] - U[3]) + (12*f_42_2*sin2th*f[19]*f[20]*f[50]*f[52])/(5*U[2] - U[3]) + (12*f_43_2*sin2th*f[19]*f[20]*f[50]*f[52])/(5*U[2] - U[3]) - (12*f_42_2*sin2th*f[18]*f[21]*f[50]*f[52])/(5*U[2] - U[3]) - (12*f_43_2*sin2th*f[18]*f[21]*f[50]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_42_2*f[19]*f[21]*f[50]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_43_2*f[19]*f[21]*f[50]*f[52])/(5*U[2] - U[3]) - (12*f_42_2*sin2th*f[18]*f[20]*f[51]*f[52])/(5*U[2] - U[3]) - (12*f_43_2*sin2th*f[18]*f[20]*f[51]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_42_2*f[19]*f[20]*f[51]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_43_2*f[19]*f[20]*f[51]*f[52])/(5*U[2] - U[3]) - (12*cos2th*f_42_2*f[18]*f[21]*f[51]*f[52])/(5*U[2] - U[3]) - (12*cos2th*f_43_2*f[18]*f[21]*f[51]*f[52])/(5*U[2] - U[3]) - (12*f_42_2*sin2th*f[19]*f[21]*f[51]*f[52])/(5*U[2] - U[3]) - (12*f_43_2*sin2th*f[19]*f[21]*f[51]*f[52])/(5*U[2] - U[3]) + (12*f_42_2*sin2th*f[18]*f[20]*f[50]*f[53])/(5*U[2] - U[3]) + (12*f_43_2*sin2th*f[18]*f[20]*f[50]*f[53])/(5*U[2] - U[3]) - (12*cos2th*f_42_2*f[19]*f[20]*f[50]*f[53])/(5*U[2] - U[3]) - (12*cos2th*f_43_2*f[19]*f[20]*f[50]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_42_2*f[18]*f[21]*f[50]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_43_2*f[18]*f[21]*f[50]*f[53])/(5*U[2] - U[3]) + (12*f_42_2*sin2th*f[19]*f[21]*f[50]*f[53])/(5*U[2] - U[3]) + (12*f_43_2*sin2th*f[19]*f[21]*f[50]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_42_2*f[18]*f[20]*f[51]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_43_2*f[18]*f[20]*f[51]*f[53])/(5*U[2] - U[3]) + (12*f_42_2*sin2th*f[19]*f[20]*f[51]*f[53])/(5*U[2] - U[3]) + (12*f_43_2*sin2th*f[19]*f[20]*f[51]*f[53])/(5*U[2] - U[3]) - (12*f_42_2*sin2th*f[18]*f[21]*f[51]*f[53])/(5*U[2] - U[3]) - (12*f_43_2*sin2th*f[18]*f[21]*f[51]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_42_2*f[19]*f[21]*f[51]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_43_2*f[19]*f[21]*f[51]*f[53])/(5*U[2] - U[3]) + (14*cos2th*f_44_2*f[18]*f[20]*f[50]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_45_2*f[18]*f[20]*f[50]*f[52])/(6*U[2] - U[3]) + (14*f_44_2*sin2th*f[19]*f[20]*f[50]*f[52])/(6*U[2] - U[3]) + (14*f_45_2*sin2th*f[19]*f[20]*f[50]*f[52])/(6*U[2] - U[3]) - (14*f_44_2*sin2th*f[18]*f[21]*f[50]*f[52])/(6*U[2] - U[3]) - (14*f_45_2*sin2th*f[18]*f[21]*f[50]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_44_2*f[19]*f[21]*f[50]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_45_2*f[19]*f[21]*f[50]*f[52])/(6*U[2] - U[3]) - (14*f_44_2*sin2th*f[18]*f[20]*f[51]*f[52])/(6*U[2] - U[3]) - (14*f_45_2*sin2th*f[18]*f[20]*f[51]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_44_2*f[19]*f[20]*f[51]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_45_2*f[19]*f[20]*f[51]*f[52])/(6*U[2] - U[3]) - (14*cos2th*f_44_2*f[18]*f[21]*f[51]*f[52])/(6*U[2] - U[3]) - (14*cos2th*f_45_2*f[18]*f[21]*f[51]*f[52])/(6*U[2] - U[3]) - (14*f_44_2*sin2th*f[19]*f[21]*f[51]*f[52])/(6*U[2] - U[3]) - (14*f_45_2*sin2th*f[19]*f[21]*f[51]*f[52])/(6*U[2] - U[3]) + (14*f_44_2*sin2th*f[18]*f[20]*f[50]*f[53])/(6*U[2] - U[3]) + (14*f_45_2*sin2th*f[18]*f[20]*f[50]*f[53])/(6*U[2] - U[3]) - (14*cos2th*f_44_2*f[19]*f[20]*f[50]*f[53])/(6*U[2] - U[3]) - (14*cos2th*f_45_2*f[19]*f[20]*f[50]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_44_2*f[18]*f[21]*f[50]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_45_2*f[18]*f[21]*f[50]*f[53])/(6*U[2] - U[3]) + (14*f_44_2*sin2th*f[19]*f[21]*f[50]*f[53])/(6*U[2] - U[3]) + (14*f_45_2*sin2th*f[19]*f[21]*f[50]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_44_2*f[18]*f[20]*f[51]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_45_2*f[18]*f[20]*f[51]*f[53])/(6*U[2] - U[3]) + (14*f_44_2*sin2th*f[19]*f[20]*f[51]*f[53])/(6*U[2] - U[3]) + (14*f_45_2*sin2th*f[19]*f[20]*f[51]*f[53])/(6*U[2] - U[3]) - (14*f_44_2*sin2th*f[18]*f[21]*f[51]*f[53])/(6*U[2] - U[3]) - (14*f_45_2*sin2th*f[18]*f[21]*f[51]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_44_2*f[19]*f[21]*f[51]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_45_2*f[19]*f[21]*f[51]*f[53])/(6*U[2] - U[3]) - (2*cos2th*f_32_2*f[18]*f[20]*f[50]*f[52])/U[3] - (2*cos2th*f_33_2*f[18]*f[20]*f[50]*f[52])/U[3] - (2*f_32_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[3] - (2*f_33_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[3] + (2*f_32_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[3] + (2*f_33_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[3] - (2*cos2th*f_32_2*f[19]*f[21]*f[50]*f[52])/U[3] - (2*cos2th*f_33_2*f[19]*f[21]*f[50]*f[52])/U[3] + (2*f_32_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[3] + (2*f_33_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[3] - (2*cos2th*f_32_2*f[19]*f[20]*f[51]*f[52])/U[3] - (2*cos2th*f_33_2*f[19]*f[20]*f[51]*f[52])/U[3] + (2*cos2th*f_32_2*f[18]*f[21]*f[51]*f[52])/U[3] + (2*cos2th*f_33_2*f[18]*f[21]*f[51]*f[52])/U[3] + (2*f_32_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[3] + (2*f_33_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[3] - (2*f_32_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[3] - (2*f_33_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[3] + (2*cos2th*f_32_2*f[19]*f[20]*f[50]*f[53])/U[3] + (2*cos2th*f_33_2*f[19]*f[20]*f[50]*f[53])/U[3] - (2*cos2th*f_32_2*f[18]*f[21]*f[50]*f[53])/U[3] - (2*cos2th*f_33_2*f[18]*f[21]*f[50]*f[53])/U[3] - (2*f_32_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[3] - (2*f_33_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[3] - (2*cos2th*f_32_2*f[18]*f[20]*f[51]*f[53])/U[3] - (2*cos2th*f_33_2*f[18]*f[20]*f[51]*f[53])/U[3] - (2*f_32_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[3] - (2*f_33_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[3] + (2*f_32_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[3] + (2*f_33_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[3] - (2*cos2th*f_32_2*f[19]*f[21]*f[51]*f[53])/U[3] - (2*cos2th*f_33_2*f[19]*f[21]*f[51]*f[53])/U[3] - (3*cos2th*f_32_2*f[20]*f[22]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_33_2*f[20]*f[22]*f[52]*f[54])/(2.*U[3]) - (3*f_32_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[3]) - (3*f_33_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[3]) + (3*f_32_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[3]) + (3*f_33_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_32_2*f[21]*f[23]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_33_2*f[21]*f[23]*f[52]*f[54])/(2.*U[3]) + (3*f_32_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[3]) + (3*f_33_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_32_2*f[21]*f[22]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_33_2*f[21]*f[22]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_32_2*f[20]*f[23]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_33_2*f[20]*f[23]*f[53]*f[54])/(2.*U[3]) + (3*f_32_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[3]) + (3*f_33_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[3]) - (3*f_32_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[3]) - (3*f_33_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_32_2*f[21]*f[22]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_33_2*f[21]*f[22]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_32_2*f[20]*f[23]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_33_2*f[20]*f[23]*f[52]*f[55])/(2.*U[3]) - (3*f_32_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[3]) - (3*f_33_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_32_2*f[20]*f[22]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_33_2*f[20]*f[22]*f[53]*f[55])/(2.*U[3]) - (3*f_32_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[3]) - (3*f_33_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[3]) + (3*f_32_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[3]) + (3*f_33_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_32_2*f[21]*f[23]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_33_2*f[21]*f[23]*f[53]*f[55])/(2.*U[3]) - (4*cos2th*f_32_2*f[22]*f[24]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_33_2*f[22]*f[24]*f[54]*f[56])/(3.*U[3]) - (4*f_32_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[3]) - (4*f_33_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[3]) + (4*f_32_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[3]) + (4*f_33_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_32_2*f[23]*f[25]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_33_2*f[23]*f[25]*f[54]*f[56])/(3.*U[3]) + (4*f_32_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[3]) + (4*f_33_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_32_2*f[23]*f[24]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_33_2*f[23]*f[24]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_32_2*f[22]*f[25]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_33_2*f[22]*f[25]*f[55]*f[56])/(3.*U[3]) + (4*f_32_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[3]) + (4*f_33_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[3]) - (4*f_32_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[3]) - (4*f_33_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_32_2*f[23]*f[24]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_33_2*f[23]*f[24]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_32_2*f[22]*f[25]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_33_2*f[22]*f[25]*f[54]*f[57])/(3.*U[3]) - (4*f_32_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[3]) - (4*f_33_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_32_2*f[22]*f[24]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_33_2*f[22]*f[24]*f[55]*f[57])/(3.*U[3]) - (4*f_32_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[3]) - (4*f_33_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[3]) + (4*f_32_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[3]) + (4*f_33_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_32_2*f[23]*f[25]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_33_2*f[23]*f[25]*f[55]*f[57])/(3.*U[3]) - (5*cos2th*f_32_2*f[24]*f[26]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_33_2*f[24]*f[26]*f[56]*f[58])/(4.*U[3]) - (5*f_32_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[3]) - (5*f_33_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[3]) + (5*f_32_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[3]) + (5*f_33_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_32_2*f[25]*f[27]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_33_2*f[25]*f[27]*f[56]*f[58])/(4.*U[3]) + (5*f_32_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[3]) + (5*f_33_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_32_2*f[25]*f[26]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_33_2*f[25]*f[26]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_32_2*f[24]*f[27]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_33_2*f[24]*f[27]*f[57]*f[58])/(4.*U[3]) + (5*f_32_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[3]) + (5*f_33_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[3]) - (5*f_32_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[3]) - (5*f_33_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_32_2*f[25]*f[26]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_33_2*f[25]*f[26]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_32_2*f[24]*f[27]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_33_2*f[24]*f[27]*f[56]*f[59])/(4.*U[3]) - (5*f_32_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[3]) - (5*f_33_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_32_2*f[24]*f[26]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_33_2*f[24]*f[26]*f[57]*f[59])/(4.*U[3]) - (5*f_32_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[3]) - (5*f_33_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[3]) + (5*f_32_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[3]) + (5*f_33_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_32_2*f[25]*f[27]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_33_2*f[25]*f[27]*f[57]*f[59])/(4.*U[3]) - (6*cos2th*f_32_2*f[26]*f[28]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_33_2*f[26]*f[28]*f[58]*f[60])/(5.*U[3]) - (6*f_32_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[3]) - (6*f_33_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[3]) + (6*f_32_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[3]) + (6*f_33_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_32_2*f[27]*f[29]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_33_2*f[27]*f[29]*f[58]*f[60])/(5.*U[3]) + (6*f_32_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[3]) + (6*f_33_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_32_2*f[27]*f[28]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_33_2*f[27]*f[28]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_32_2*f[26]*f[29]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_33_2*f[26]*f[29]*f[59]*f[60])/(5.*U[3]) + (6*f_32_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[3]) + (6*f_33_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[3]) - (6*f_32_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[3]) - (6*f_33_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_32_2*f[27]*f[28]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_33_2*f[27]*f[28]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_32_2*f[26]*f[29]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_33_2*f[26]*f[29]*f[58]*f[61])/(5.*U[3]) - (6*f_32_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[3]) - (6*f_33_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_32_2*f[26]*f[28]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_33_2*f[26]*f[28]*f[59]*f[61])/(5.*U[3]) - (6*f_32_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[3]) - (6*f_33_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[3]) + (6*f_32_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[3]) + (6*f_33_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_32_2*f[27]*f[29]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_33_2*f[27]*f[29]*f[59]*f[61])/(5.*U[3]) - (7*cos2th*f_32_2*f[28]*f[30]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_33_2*f[28]*f[30]*f[60]*f[62])/(6.*U[3]) - (7*f_32_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[3]) - (7*f_33_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[3]) + (7*f_32_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[3]) + (7*f_33_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_32_2*f[29]*f[31]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_33_2*f[29]*f[31]*f[60]*f[62])/(6.*U[3]) + (7*f_32_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[3]) + (7*f_33_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_32_2*f[29]*f[30]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_33_2*f[29]*f[30]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_32_2*f[28]*f[31]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_33_2*f[28]*f[31]*f[61]*f[62])/(6.*U[3]) + (7*f_32_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[3]) + (7*f_33_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[3]) - (7*f_32_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[3]) - (7*f_33_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_32_2*f[29]*f[30]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_33_2*f[29]*f[30]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_32_2*f[28]*f[31]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_33_2*f[28]*f[31]*f[60]*f[63])/(6.*U[3]) - (7*f_32_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[3]) - (7*f_33_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_32_2*f[28]*f[30]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_33_2*f[28]*f[30]*f[61]*f[63])/(6.*U[3]) - (7*f_32_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[3]) - (7*f_33_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[3]) + (7*f_32_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[3]) + (7*f_33_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_32_2*f[29]*f[31]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_33_2*f[29]*f[31]*f[61]*f[63])/(6.*U[3])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + (J[1]*J[2]*((2*cos2th*f_36_2*f[16]*f[18]*f[48]*f[50])/U[2] + (2*cos2th*f_37_2*f[16]*f[18]*f[48]*f[50])/U[2] + (3*cos2th*f_38_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) + (3*cos2th*f_39_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) + (4*cos2th*f_40_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) + (4*cos2th*f_41_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) + (5*cos2th*f_42_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) + (5*cos2th*f_43_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) + (6*cos2th*f_44_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) + (6*cos2th*f_45_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) + (7*cos2th*f_46_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) + (7*cos2th*f_47_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] + (2*f_37_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] + (3*f_38_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) + (3*f_39_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) + (4*f_40_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) + (4*f_41_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) + (5*f_42_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) + (5*f_43_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) + (6*f_44_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) + (6*f_45_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) + (7*f_46_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) + (7*f_47_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] - (2*f_37_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] - (3*f_38_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) - (3*f_39_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) - (4*f_40_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) - (4*f_41_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) - (5*f_42_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) - (5*f_43_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) - (6*f_44_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) - (6*f_45_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) - (7*f_46_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) - (7*f_47_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) + (2*cos2th*f_36_2*f[17]*f[19]*f[48]*f[50])/U[2] + (2*cos2th*f_37_2*f[17]*f[19]*f[48]*f[50])/U[2] + (3*cos2th*f_38_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) + (3*cos2th*f_39_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) + (4*cos2th*f_40_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) + (4*cos2th*f_41_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) + (5*cos2th*f_42_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) + (5*cos2th*f_43_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) + (6*cos2th*f_44_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) + (6*cos2th*f_45_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) + (7*cos2th*f_46_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) + (7*cos2th*f_47_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] - (2*f_37_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] - (3*f_38_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) - (3*f_39_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) - (4*f_40_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) - (4*f_41_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) - (5*f_42_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) - (5*f_43_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) - (6*f_44_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) - (6*f_45_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) - (7*f_46_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) - (7*f_47_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) + (2*cos2th*f_36_2*f[17]*f[18]*f[49]*f[50])/U[2] + (2*cos2th*f_37_2*f[17]*f[18]*f[49]*f[50])/U[2] + (3*cos2th*f_38_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) + (3*cos2th*f_39_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) + (4*cos2th*f_40_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) + (4*cos2th*f_41_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) + (5*cos2th*f_42_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) + (5*cos2th*f_43_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) + (6*cos2th*f_44_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) + (6*cos2th*f_45_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) + (7*cos2th*f_46_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) + (7*cos2th*f_47_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) - (2*cos2th*f_36_2*f[16]*f[19]*f[49]*f[50])/U[2] - (2*cos2th*f_37_2*f[16]*f[19]*f[49]*f[50])/U[2] - (3*cos2th*f_38_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) - (3*cos2th*f_39_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) - (4*cos2th*f_40_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) - (4*cos2th*f_41_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) - (5*cos2th*f_42_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) - (5*cos2th*f_43_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) - (6*cos2th*f_44_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) - (6*cos2th*f_45_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) - (7*cos2th*f_46_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) - (7*cos2th*f_47_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] - (2*f_37_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] - (3*f_38_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) - (3*f_39_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) - (4*f_40_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) - (4*f_41_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) - (5*f_42_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) - (5*f_43_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) - (6*f_44_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) - (6*f_45_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) - (7*f_46_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) - (7*f_47_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] + (2*f_37_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] + (3*f_38_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) + (3*f_39_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) + (4*f_40_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) + (4*f_41_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) + (5*f_42_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) + (5*f_43_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) + (6*f_44_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) + (6*f_45_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) + (7*f_46_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) + (7*f_47_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_36_2*f[17]*f[18]*f[48]*f[51])/U[2] - (2*cos2th*f_37_2*f[17]*f[18]*f[48]*f[51])/U[2] - (3*cos2th*f_38_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) - (3*cos2th*f_39_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) - (4*cos2th*f_40_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) - (4*cos2th*f_41_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) - (5*cos2th*f_42_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) - (5*cos2th*f_43_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) - (6*cos2th*f_44_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) - (6*cos2th*f_45_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) - (7*cos2th*f_46_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) - (7*cos2th*f_47_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_36_2*f[16]*f[19]*f[48]*f[51])/U[2] + (2*cos2th*f_37_2*f[16]*f[19]*f[48]*f[51])/U[2] + (3*cos2th*f_38_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) + (3*cos2th*f_39_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) + (4*cos2th*f_40_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) + (4*cos2th*f_41_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) + (5*cos2th*f_42_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) + (5*cos2th*f_43_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) + (6*cos2th*f_44_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) + (6*cos2th*f_45_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) + (7*cos2th*f_46_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) + (7*cos2th*f_47_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) + (2*f_36_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] + (2*f_37_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] + (3*f_38_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) + (3*f_39_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) + (4*f_40_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) + (4*f_41_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) + (5*f_42_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) + (5*f_43_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) + (6*f_44_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) + (6*f_45_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) + (7*f_46_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) + (7*f_47_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_36_2*f[16]*f[18]*f[49]*f[51])/U[2] + (2*cos2th*f_37_2*f[16]*f[18]*f[49]*f[51])/U[2] + (3*cos2th*f_38_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) + (3*cos2th*f_39_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) + (4*cos2th*f_40_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) + (4*cos2th*f_41_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) + (5*cos2th*f_42_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) + (5*cos2th*f_43_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) + (6*cos2th*f_44_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) + (6*cos2th*f_45_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) + (7*cos2th*f_46_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) + (7*cos2th*f_47_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) + (2*f_36_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] + (2*f_37_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] + (3*f_38_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) + (3*f_39_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) + (4*f_40_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) + (4*f_41_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) + (5*f_42_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) + (5*f_43_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) + (6*f_44_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) + (6*f_45_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) + (7*f_46_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) + (7*f_47_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) - (2*f_36_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] - (2*f_37_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] - (3*f_38_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) - (3*f_39_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) - (4*f_40_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) - (4*f_41_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) - (5*f_42_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) - (5*f_43_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) - (6*f_44_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) - (6*f_45_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) - (7*f_46_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) - (7*f_47_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) + (2*cos2th*f_36_2*f[17]*f[19]*f[49]*f[51])/U[2] + (2*cos2th*f_37_2*f[17]*f[19]*f[49]*f[51])/U[2] + (3*cos2th*f_38_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) + (3*cos2th*f_39_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) + (4*cos2th*f_40_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) + (4*cos2th*f_41_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) + (5*cos2th*f_42_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) + (5*cos2th*f_43_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) + (6*cos2th*f_44_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) + (6*cos2th*f_45_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) + (7*cos2th*f_46_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (7*cos2th*f_47_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (14*cos2th*f_36_2*f[28]*f[30]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_37_2*f[28]*f[30]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*f_36_2*sin2th*f[29]*f[30]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*f_37_2*sin2th*f[29]*f[30]*f[60]*f[62])/(U[2] - 6*U[3]) - (14*f_36_2*sin2th*f[28]*f[31]*f[60]*f[62])/(U[2] - 6*U[3]) - (14*f_37_2*sin2th*f[28]*f[31]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_36_2*f[29]*f[31]*f[60]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_37_2*f[29]*f[31]*f[60]*f[62])/(U[2] - 6*U[3]) - (14*f_36_2*sin2th*f[28]*f[30]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*f_37_2*sin2th*f[28]*f[30]*f[61]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_36_2*f[29]*f[30]*f[61]*f[62])/(U[2] - 6*U[3]) + (14*cos2th*f_37_2*f[29]*f[30]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*cos2th*f_36_2*f[28]*f[31]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*cos2th*f_37_2*f[28]*f[31]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*f_36_2*sin2th*f[29]*f[31]*f[61]*f[62])/(U[2] - 6*U[3]) - (14*f_37_2*sin2th*f[29]*f[31]*f[61]*f[62])/(U[2] - 6*U[3]) + (14*f_36_2*sin2th*f[28]*f[30]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*f_37_2*sin2th*f[28]*f[30]*f[60]*f[63])/(U[2] - 6*U[3]) - (14*cos2th*f_36_2*f[29]*f[30]*f[60]*f[63])/(U[2] - 6*U[3]) - (14*cos2th*f_37_2*f[29]*f[30]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_36_2*f[28]*f[31]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_37_2*f[28]*f[31]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*f_36_2*sin2th*f[29]*f[31]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*f_37_2*sin2th*f[29]*f[31]*f[60]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_36_2*f[28]*f[30]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_37_2*f[28]*f[30]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*f_36_2*sin2th*f[29]*f[30]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*f_37_2*sin2th*f[29]*f[30]*f[61]*f[63])/(U[2] - 6*U[3]) - (14*f_36_2*sin2th*f[28]*f[31]*f[61]*f[63])/(U[2] - 6*U[3]) - (14*f_37_2*sin2th*f[28]*f[31]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_36_2*f[29]*f[31]*f[61]*f[63])/(U[2] - 6*U[3]) + (14*cos2th*f_37_2*f[29]*f[31]*f[61]*f[63])/(U[2] - 6*U[3]) + (21*cos2th*f_38_2*f[28]*f[30]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_39_2*f[28]*f[30]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*f_38_2*sin2th*f[29]*f[30]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*f_39_2*sin2th*f[29]*f[30]*f[60]*f[62])/(2*U[2] - 6*U[3]) - (21*f_38_2*sin2th*f[28]*f[31]*f[60]*f[62])/(2*U[2] - 6*U[3]) - (21*f_39_2*sin2th*f[28]*f[31]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_38_2*f[29]*f[31]*f[60]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_39_2*f[29]*f[31]*f[60]*f[62])/(2*U[2] - 6*U[3]) - (21*f_38_2*sin2th*f[28]*f[30]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*f_39_2*sin2th*f[28]*f[30]*f[61]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_38_2*f[29]*f[30]*f[61]*f[62])/(2*U[2] - 6*U[3]) + (21*cos2th*f_39_2*f[29]*f[30]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*cos2th*f_38_2*f[28]*f[31]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*cos2th*f_39_2*f[28]*f[31]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*f_38_2*sin2th*f[29]*f[31]*f[61]*f[62])/(2*U[2] - 6*U[3]) - (21*f_39_2*sin2th*f[29]*f[31]*f[61]*f[62])/(2*U[2] - 6*U[3]) + (21*f_38_2*sin2th*f[28]*f[30]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*f_39_2*sin2th*f[28]*f[30]*f[60]*f[63])/(2*U[2] - 6*U[3]) - (21*cos2th*f_38_2*f[29]*f[30]*f[60]*f[63])/(2*U[2] - 6*U[3]) - (21*cos2th*f_39_2*f[29]*f[30]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_38_2*f[28]*f[31]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_39_2*f[28]*f[31]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*f_38_2*sin2th*f[29]*f[31]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*f_39_2*sin2th*f[29]*f[31]*f[60]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_38_2*f[28]*f[30]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_39_2*f[28]*f[30]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*f_38_2*sin2th*f[29]*f[30]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*f_39_2*sin2th*f[29]*f[30]*f[61]*f[63])/(2*U[2] - 6*U[3]) - (21*f_38_2*sin2th*f[28]*f[31]*f[61]*f[63])/(2*U[2] - 6*U[3]) - (21*f_39_2*sin2th*f[28]*f[31]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_38_2*f[29]*f[31]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (21*cos2th*f_39_2*f[29]*f[31]*f[61]*f[63])/(2*U[2] - 6*U[3]) + (28*cos2th*f_40_2*f[28]*f[30]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_41_2*f[28]*f[30]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*f_40_2*sin2th*f[29]*f[30]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*f_41_2*sin2th*f[29]*f[30]*f[60]*f[62])/(3*U[2] - 6*U[3]) - (28*f_40_2*sin2th*f[28]*f[31]*f[60]*f[62])/(3*U[2] - 6*U[3]) - (28*f_41_2*sin2th*f[28]*f[31]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_40_2*f[29]*f[31]*f[60]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_41_2*f[29]*f[31]*f[60]*f[62])/(3*U[2] - 6*U[3]) - (28*f_40_2*sin2th*f[28]*f[30]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*f_41_2*sin2th*f[28]*f[30]*f[61]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_40_2*f[29]*f[30]*f[61]*f[62])/(3*U[2] - 6*U[3]) + (28*cos2th*f_41_2*f[29]*f[30]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*cos2th*f_40_2*f[28]*f[31]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*cos2th*f_41_2*f[28]*f[31]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*f_40_2*sin2th*f[29]*f[31]*f[61]*f[62])/(3*U[2] - 6*U[3]) - (28*f_41_2*sin2th*f[29]*f[31]*f[61]*f[62])/(3*U[2] - 6*U[3]) + (28*f_40_2*sin2th*f[28]*f[30]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*f_41_2*sin2th*f[28]*f[30]*f[60]*f[63])/(3*U[2] - 6*U[3]) - (28*cos2th*f_40_2*f[29]*f[30]*f[60]*f[63])/(3*U[2] - 6*U[3]) - (28*cos2th*f_41_2*f[29]*f[30]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_40_2*f[28]*f[31]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_41_2*f[28]*f[31]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*f_40_2*sin2th*f[29]*f[31]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*f_41_2*sin2th*f[29]*f[31]*f[60]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_40_2*f[28]*f[30]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_41_2*f[28]*f[30]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*f_40_2*sin2th*f[29]*f[30]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*f_41_2*sin2th*f[29]*f[30]*f[61]*f[63])/(3*U[2] - 6*U[3]) - (28*f_40_2*sin2th*f[28]*f[31]*f[61]*f[63])/(3*U[2] - 6*U[3]) - (28*f_41_2*sin2th*f[28]*f[31]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_40_2*f[29]*f[31]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (28*cos2th*f_41_2*f[29]*f[31]*f[61]*f[63])/(3*U[2] - 6*U[3]) + (35*cos2th*f_42_2*f[28]*f[30]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_43_2*f[28]*f[30]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*f_42_2*sin2th*f[29]*f[30]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*f_43_2*sin2th*f[29]*f[30]*f[60]*f[62])/(4*U[2] - 6*U[3]) - (35*f_42_2*sin2th*f[28]*f[31]*f[60]*f[62])/(4*U[2] - 6*U[3]) - (35*f_43_2*sin2th*f[28]*f[31]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_42_2*f[29]*f[31]*f[60]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_43_2*f[29]*f[31]*f[60]*f[62])/(4*U[2] - 6*U[3]) - (35*f_42_2*sin2th*f[28]*f[30]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*f_43_2*sin2th*f[28]*f[30]*f[61]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_42_2*f[29]*f[30]*f[61]*f[62])/(4*U[2] - 6*U[3]) + (35*cos2th*f_43_2*f[29]*f[30]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*cos2th*f_42_2*f[28]*f[31]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*cos2th*f_43_2*f[28]*f[31]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*f_42_2*sin2th*f[29]*f[31]*f[61]*f[62])/(4*U[2] - 6*U[3]) - (35*f_43_2*sin2th*f[29]*f[31]*f[61]*f[62])/(4*U[2] - 6*U[3]) + (35*f_42_2*sin2th*f[28]*f[30]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*f_43_2*sin2th*f[28]*f[30]*f[60]*f[63])/(4*U[2] - 6*U[3]) - (35*cos2th*f_42_2*f[29]*f[30]*f[60]*f[63])/(4*U[2] - 6*U[3]) - (35*cos2th*f_43_2*f[29]*f[30]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_42_2*f[28]*f[31]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_43_2*f[28]*f[31]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*f_42_2*sin2th*f[29]*f[31]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*f_43_2*sin2th*f[29]*f[31]*f[60]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_42_2*f[28]*f[30]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_43_2*f[28]*f[30]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*f_42_2*sin2th*f[29]*f[30]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*f_43_2*sin2th*f[29]*f[30]*f[61]*f[63])/(4*U[2] - 6*U[3]) - (35*f_42_2*sin2th*f[28]*f[31]*f[61]*f[63])/(4*U[2] - 6*U[3]) - (35*f_43_2*sin2th*f[28]*f[31]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_42_2*f[29]*f[31]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (35*cos2th*f_43_2*f[29]*f[31]*f[61]*f[63])/(4*U[2] - 6*U[3]) + (42*cos2th*f_44_2*f[28]*f[30]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_45_2*f[28]*f[30]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*f_44_2*sin2th*f[29]*f[30]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*f_45_2*sin2th*f[29]*f[30]*f[60]*f[62])/(5*U[2] - 6*U[3]) - (42*f_44_2*sin2th*f[28]*f[31]*f[60]*f[62])/(5*U[2] - 6*U[3]) - (42*f_45_2*sin2th*f[28]*f[31]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_44_2*f[29]*f[31]*f[60]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_45_2*f[29]*f[31]*f[60]*f[62])/(5*U[2] - 6*U[3]) - (42*f_44_2*sin2th*f[28]*f[30]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*f_45_2*sin2th*f[28]*f[30]*f[61]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_44_2*f[29]*f[30]*f[61]*f[62])/(5*U[2] - 6*U[3]) + (42*cos2th*f_45_2*f[29]*f[30]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*cos2th*f_44_2*f[28]*f[31]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*cos2th*f_45_2*f[28]*f[31]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*f_44_2*sin2th*f[29]*f[31]*f[61]*f[62])/(5*U[2] - 6*U[3]) - (42*f_45_2*sin2th*f[29]*f[31]*f[61]*f[62])/(5*U[2] - 6*U[3]) + (42*f_44_2*sin2th*f[28]*f[30]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*f_45_2*sin2th*f[28]*f[30]*f[60]*f[63])/(5*U[2] - 6*U[3]) - (42*cos2th*f_44_2*f[29]*f[30]*f[60]*f[63])/(5*U[2] - 6*U[3]) - (42*cos2th*f_45_2*f[29]*f[30]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_44_2*f[28]*f[31]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_45_2*f[28]*f[31]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*f_44_2*sin2th*f[29]*f[31]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*f_45_2*sin2th*f[29]*f[31]*f[60]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_44_2*f[28]*f[30]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_45_2*f[28]*f[30]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*f_44_2*sin2th*f[29]*f[30]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*f_45_2*sin2th*f[29]*f[30]*f[61]*f[63])/(5*U[2] - 6*U[3]) - (42*f_44_2*sin2th*f[28]*f[31]*f[61]*f[63])/(5*U[2] - 6*U[3]) - (42*f_45_2*sin2th*f[28]*f[31]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_44_2*f[29]*f[31]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (42*cos2th*f_45_2*f[29]*f[31]*f[61]*f[63])/(5*U[2] - 6*U[3]) + (12*cos2th*f_36_2*f[26]*f[28]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_37_2*f[26]*f[28]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*f_36_2*sin2th*f[27]*f[28]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*f_37_2*sin2th*f[27]*f[28]*f[58]*f[60])/(U[2] - 5*U[3]) - (12*f_36_2*sin2th*f[26]*f[29]*f[58]*f[60])/(U[2] - 5*U[3]) - (12*f_37_2*sin2th*f[26]*f[29]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_36_2*f[27]*f[29]*f[58]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_37_2*f[27]*f[29]*f[58]*f[60])/(U[2] - 5*U[3]) - (12*f_36_2*sin2th*f[26]*f[28]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*f_37_2*sin2th*f[26]*f[28]*f[59]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_36_2*f[27]*f[28]*f[59]*f[60])/(U[2] - 5*U[3]) + (12*cos2th*f_37_2*f[27]*f[28]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*cos2th*f_36_2*f[26]*f[29]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*cos2th*f_37_2*f[26]*f[29]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*f_36_2*sin2th*f[27]*f[29]*f[59]*f[60])/(U[2] - 5*U[3]) - (12*f_37_2*sin2th*f[27]*f[29]*f[59]*f[60])/(U[2] - 5*U[3]) + (12*f_36_2*sin2th*f[26]*f[28]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*f_37_2*sin2th*f[26]*f[28]*f[58]*f[61])/(U[2] - 5*U[3]) - (12*cos2th*f_36_2*f[27]*f[28]*f[58]*f[61])/(U[2] - 5*U[3]) - (12*cos2th*f_37_2*f[27]*f[28]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_36_2*f[26]*f[29]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_37_2*f[26]*f[29]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*f_36_2*sin2th*f[27]*f[29]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*f_37_2*sin2th*f[27]*f[29]*f[58]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_36_2*f[26]*f[28]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_37_2*f[26]*f[28]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*f_36_2*sin2th*f[27]*f[28]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*f_37_2*sin2th*f[27]*f[28]*f[59]*f[61])/(U[2] - 5*U[3]) - (12*f_36_2*sin2th*f[26]*f[29]*f[59]*f[61])/(U[2] - 5*U[3]) - (12*f_37_2*sin2th*f[26]*f[29]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_36_2*f[27]*f[29]*f[59]*f[61])/(U[2] - 5*U[3]) + (12*cos2th*f_37_2*f[27]*f[29]*f[59]*f[61])/(U[2] - 5*U[3]) + (18*cos2th*f_38_2*f[26]*f[28]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_39_2*f[26]*f[28]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*f_38_2*sin2th*f[27]*f[28]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*f_39_2*sin2th*f[27]*f[28]*f[58]*f[60])/(2*U[2] - 5*U[3]) - (18*f_38_2*sin2th*f[26]*f[29]*f[58]*f[60])/(2*U[2] - 5*U[3]) - (18*f_39_2*sin2th*f[26]*f[29]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_38_2*f[27]*f[29]*f[58]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_39_2*f[27]*f[29]*f[58]*f[60])/(2*U[2] - 5*U[3]) - (18*f_38_2*sin2th*f[26]*f[28]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*f_39_2*sin2th*f[26]*f[28]*f[59]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_38_2*f[27]*f[28]*f[59]*f[60])/(2*U[2] - 5*U[3]) + (18*cos2th*f_39_2*f[27]*f[28]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*cos2th*f_38_2*f[26]*f[29]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*cos2th*f_39_2*f[26]*f[29]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*f_38_2*sin2th*f[27]*f[29]*f[59]*f[60])/(2*U[2] - 5*U[3]) - (18*f_39_2*sin2th*f[27]*f[29]*f[59]*f[60])/(2*U[2] - 5*U[3]) + (18*f_38_2*sin2th*f[26]*f[28]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*f_39_2*sin2th*f[26]*f[28]*f[58]*f[61])/(2*U[2] - 5*U[3]) - (18*cos2th*f_38_2*f[27]*f[28]*f[58]*f[61])/(2*U[2] - 5*U[3]) - (18*cos2th*f_39_2*f[27]*f[28]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_38_2*f[26]*f[29]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_39_2*f[26]*f[29]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*f_38_2*sin2th*f[27]*f[29]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*f_39_2*sin2th*f[27]*f[29]*f[58]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_38_2*f[26]*f[28]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_39_2*f[26]*f[28]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*f_38_2*sin2th*f[27]*f[28]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*f_39_2*sin2th*f[27]*f[28]*f[59]*f[61])/(2*U[2] - 5*U[3]) - (18*f_38_2*sin2th*f[26]*f[29]*f[59]*f[61])/(2*U[2] - 5*U[3]) - (18*f_39_2*sin2th*f[26]*f[29]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_38_2*f[27]*f[29]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (18*cos2th*f_39_2*f[27]*f[29]*f[59]*f[61])/(2*U[2] - 5*U[3]) + (24*cos2th*f_40_2*f[26]*f[28]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_41_2*f[26]*f[28]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*f_40_2*sin2th*f[27]*f[28]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*f_41_2*sin2th*f[27]*f[28]*f[58]*f[60])/(3*U[2] - 5*U[3]) - (24*f_40_2*sin2th*f[26]*f[29]*f[58]*f[60])/(3*U[2] - 5*U[3]) - (24*f_41_2*sin2th*f[26]*f[29]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_40_2*f[27]*f[29]*f[58]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_41_2*f[27]*f[29]*f[58]*f[60])/(3*U[2] - 5*U[3]) - (24*f_40_2*sin2th*f[26]*f[28]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*f_41_2*sin2th*f[26]*f[28]*f[59]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_40_2*f[27]*f[28]*f[59]*f[60])/(3*U[2] - 5*U[3]) + (24*cos2th*f_41_2*f[27]*f[28]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*cos2th*f_40_2*f[26]*f[29]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*cos2th*f_41_2*f[26]*f[29]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*f_40_2*sin2th*f[27]*f[29]*f[59]*f[60])/(3*U[2] - 5*U[3]) - (24*f_41_2*sin2th*f[27]*f[29]*f[59]*f[60])/(3*U[2] - 5*U[3]) + (24*f_40_2*sin2th*f[26]*f[28]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*f_41_2*sin2th*f[26]*f[28]*f[58]*f[61])/(3*U[2] - 5*U[3]) - (24*cos2th*f_40_2*f[27]*f[28]*f[58]*f[61])/(3*U[2] - 5*U[3]) - (24*cos2th*f_41_2*f[27]*f[28]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_40_2*f[26]*f[29]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_41_2*f[26]*f[29]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*f_40_2*sin2th*f[27]*f[29]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*f_41_2*sin2th*f[27]*f[29]*f[58]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_40_2*f[26]*f[28]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_41_2*f[26]*f[28]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*f_40_2*sin2th*f[27]*f[28]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*f_41_2*sin2th*f[27]*f[28]*f[59]*f[61])/(3*U[2] - 5*U[3]) - (24*f_40_2*sin2th*f[26]*f[29]*f[59]*f[61])/(3*U[2] - 5*U[3]) - (24*f_41_2*sin2th*f[26]*f[29]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_40_2*f[27]*f[29]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (24*cos2th*f_41_2*f[27]*f[29]*f[59]*f[61])/(3*U[2] - 5*U[3]) + (30*cos2th*f_42_2*f[26]*f[28]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_43_2*f[26]*f[28]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*f_42_2*sin2th*f[27]*f[28]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*f_43_2*sin2th*f[27]*f[28]*f[58]*f[60])/(4*U[2] - 5*U[3]) - (30*f_42_2*sin2th*f[26]*f[29]*f[58]*f[60])/(4*U[2] - 5*U[3]) - (30*f_43_2*sin2th*f[26]*f[29]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_42_2*f[27]*f[29]*f[58]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_43_2*f[27]*f[29]*f[58]*f[60])/(4*U[2] - 5*U[3]) - (30*f_42_2*sin2th*f[26]*f[28]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*f_43_2*sin2th*f[26]*f[28]*f[59]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_42_2*f[27]*f[28]*f[59]*f[60])/(4*U[2] - 5*U[3]) + (30*cos2th*f_43_2*f[27]*f[28]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*cos2th*f_42_2*f[26]*f[29]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*cos2th*f_43_2*f[26]*f[29]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*f_42_2*sin2th*f[27]*f[29]*f[59]*f[60])/(4*U[2] - 5*U[3]) - (30*f_43_2*sin2th*f[27]*f[29]*f[59]*f[60])/(4*U[2] - 5*U[3]) + (30*f_42_2*sin2th*f[26]*f[28]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*f_43_2*sin2th*f[26]*f[28]*f[58]*f[61])/(4*U[2] - 5*U[3]) - (30*cos2th*f_42_2*f[27]*f[28]*f[58]*f[61])/(4*U[2] - 5*U[3]) - (30*cos2th*f_43_2*f[27]*f[28]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_42_2*f[26]*f[29]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_43_2*f[26]*f[29]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*f_42_2*sin2th*f[27]*f[29]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*f_43_2*sin2th*f[27]*f[29]*f[58]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_42_2*f[26]*f[28]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_43_2*f[26]*f[28]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*f_42_2*sin2th*f[27]*f[28]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*f_43_2*sin2th*f[27]*f[28]*f[59]*f[61])/(4*U[2] - 5*U[3]) - (30*f_42_2*sin2th*f[26]*f[29]*f[59]*f[61])/(4*U[2] - 5*U[3]) - (30*f_43_2*sin2th*f[26]*f[29]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_42_2*f[27]*f[29]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (30*cos2th*f_43_2*f[27]*f[29]*f[59]*f[61])/(4*U[2] - 5*U[3]) + (42*cos2th*f_46_2*f[26]*f[28]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_47_2*f[26]*f[28]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*f_46_2*sin2th*f[27]*f[28]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*f_47_2*sin2th*f[27]*f[28]*f[58]*f[60])/(6*U[2] - 5*U[3]) - (42*f_46_2*sin2th*f[26]*f[29]*f[58]*f[60])/(6*U[2] - 5*U[3]) - (42*f_47_2*sin2th*f[26]*f[29]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_46_2*f[27]*f[29]*f[58]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_47_2*f[27]*f[29]*f[58]*f[60])/(6*U[2] - 5*U[3]) - (42*f_46_2*sin2th*f[26]*f[28]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*f_47_2*sin2th*f[26]*f[28]*f[59]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_46_2*f[27]*f[28]*f[59]*f[60])/(6*U[2] - 5*U[3]) + (42*cos2th*f_47_2*f[27]*f[28]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*cos2th*f_46_2*f[26]*f[29]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*cos2th*f_47_2*f[26]*f[29]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*f_46_2*sin2th*f[27]*f[29]*f[59]*f[60])/(6*U[2] - 5*U[3]) - (42*f_47_2*sin2th*f[27]*f[29]*f[59]*f[60])/(6*U[2] - 5*U[3]) + (42*f_46_2*sin2th*f[26]*f[28]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*f_47_2*sin2th*f[26]*f[28]*f[58]*f[61])/(6*U[2] - 5*U[3]) - (42*cos2th*f_46_2*f[27]*f[28]*f[58]*f[61])/(6*U[2] - 5*U[3]) - (42*cos2th*f_47_2*f[27]*f[28]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_46_2*f[26]*f[29]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_47_2*f[26]*f[29]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*f_46_2*sin2th*f[27]*f[29]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*f_47_2*sin2th*f[27]*f[29]*f[58]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_46_2*f[26]*f[28]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_47_2*f[26]*f[28]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*f_46_2*sin2th*f[27]*f[28]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*f_47_2*sin2th*f[27]*f[28]*f[59]*f[61])/(6*U[2] - 5*U[3]) - (42*f_46_2*sin2th*f[26]*f[29]*f[59]*f[61])/(6*U[2] - 5*U[3]) - (42*f_47_2*sin2th*f[26]*f[29]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_46_2*f[27]*f[29]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (42*cos2th*f_47_2*f[27]*f[29]*f[59]*f[61])/(6*U[2] - 5*U[3]) + (10*cos2th*f_36_2*f[24]*f[26]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_37_2*f[24]*f[26]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*f_36_2*sin2th*f[25]*f[26]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*f_37_2*sin2th*f[25]*f[26]*f[56]*f[58])/(U[2] - 4*U[3]) - (10*f_36_2*sin2th*f[24]*f[27]*f[56]*f[58])/(U[2] - 4*U[3]) - (10*f_37_2*sin2th*f[24]*f[27]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_36_2*f[25]*f[27]*f[56]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_37_2*f[25]*f[27]*f[56]*f[58])/(U[2] - 4*U[3]) - (10*f_36_2*sin2th*f[24]*f[26]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*f_37_2*sin2th*f[24]*f[26]*f[57]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_36_2*f[25]*f[26]*f[57]*f[58])/(U[2] - 4*U[3]) + (10*cos2th*f_37_2*f[25]*f[26]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*cos2th*f_36_2*f[24]*f[27]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*cos2th*f_37_2*f[24]*f[27]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*f_36_2*sin2th*f[25]*f[27]*f[57]*f[58])/(U[2] - 4*U[3]) - (10*f_37_2*sin2th*f[25]*f[27]*f[57]*f[58])/(U[2] - 4*U[3]) + (10*f_36_2*sin2th*f[24]*f[26]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*f_37_2*sin2th*f[24]*f[26]*f[56]*f[59])/(U[2] - 4*U[3]) - (10*cos2th*f_36_2*f[25]*f[26]*f[56]*f[59])/(U[2] - 4*U[3]) - (10*cos2th*f_37_2*f[25]*f[26]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_36_2*f[24]*f[27]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_37_2*f[24]*f[27]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*f_36_2*sin2th*f[25]*f[27]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*f_37_2*sin2th*f[25]*f[27]*f[56]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_36_2*f[24]*f[26]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_37_2*f[24]*f[26]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*f_36_2*sin2th*f[25]*f[26]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*f_37_2*sin2th*f[25]*f[26]*f[57]*f[59])/(U[2] - 4*U[3]) - (10*f_36_2*sin2th*f[24]*f[27]*f[57]*f[59])/(U[2] - 4*U[3]) - (10*f_37_2*sin2th*f[24]*f[27]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_36_2*f[25]*f[27]*f[57]*f[59])/(U[2] - 4*U[3]) + (10*cos2th*f_37_2*f[25]*f[27]*f[57]*f[59])/(U[2] - 4*U[3]) + (15*cos2th*f_38_2*f[24]*f[26]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_39_2*f[24]*f[26]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*f_38_2*sin2th*f[25]*f[26]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*f_39_2*sin2th*f[25]*f[26]*f[56]*f[58])/(2*U[2] - 4*U[3]) - (15*f_38_2*sin2th*f[24]*f[27]*f[56]*f[58])/(2*U[2] - 4*U[3]) - (15*f_39_2*sin2th*f[24]*f[27]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_38_2*f[25]*f[27]*f[56]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_39_2*f[25]*f[27]*f[56]*f[58])/(2*U[2] - 4*U[3]) - (15*f_38_2*sin2th*f[24]*f[26]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*f_39_2*sin2th*f[24]*f[26]*f[57]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_38_2*f[25]*f[26]*f[57]*f[58])/(2*U[2] - 4*U[3]) + (15*cos2th*f_39_2*f[25]*f[26]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*cos2th*f_38_2*f[24]*f[27]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*cos2th*f_39_2*f[24]*f[27]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*f_38_2*sin2th*f[25]*f[27]*f[57]*f[58])/(2*U[2] - 4*U[3]) - (15*f_39_2*sin2th*f[25]*f[27]*f[57]*f[58])/(2*U[2] - 4*U[3]) + (15*f_38_2*sin2th*f[24]*f[26]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*f_39_2*sin2th*f[24]*f[26]*f[56]*f[59])/(2*U[2] - 4*U[3]) - (15*cos2th*f_38_2*f[25]*f[26]*f[56]*f[59])/(2*U[2] - 4*U[3]) - (15*cos2th*f_39_2*f[25]*f[26]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_38_2*f[24]*f[27]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_39_2*f[24]*f[27]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*f_38_2*sin2th*f[25]*f[27]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*f_39_2*sin2th*f[25]*f[27]*f[56]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_38_2*f[24]*f[26]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_39_2*f[24]*f[26]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*f_38_2*sin2th*f[25]*f[26]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*f_39_2*sin2th*f[25]*f[26]*f[57]*f[59])/(2*U[2] - 4*U[3]) - (15*f_38_2*sin2th*f[24]*f[27]*f[57]*f[59])/(2*U[2] - 4*U[3]) - (15*f_39_2*sin2th*f[24]*f[27]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_38_2*f[25]*f[27]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (15*cos2th*f_39_2*f[25]*f[27]*f[57]*f[59])/(2*U[2] - 4*U[3]) + (20*cos2th*f_40_2*f[24]*f[26]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_41_2*f[24]*f[26]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*f_40_2*sin2th*f[25]*f[26]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*f_41_2*sin2th*f[25]*f[26]*f[56]*f[58])/(3*U[2] - 4*U[3]) - (20*f_40_2*sin2th*f[24]*f[27]*f[56]*f[58])/(3*U[2] - 4*U[3]) - (20*f_41_2*sin2th*f[24]*f[27]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_40_2*f[25]*f[27]*f[56]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_41_2*f[25]*f[27]*f[56]*f[58])/(3*U[2] - 4*U[3]) - (20*f_40_2*sin2th*f[24]*f[26]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*f_41_2*sin2th*f[24]*f[26]*f[57]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_40_2*f[25]*f[26]*f[57]*f[58])/(3*U[2] - 4*U[3]) + (20*cos2th*f_41_2*f[25]*f[26]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*cos2th*f_40_2*f[24]*f[27]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*cos2th*f_41_2*f[24]*f[27]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*f_40_2*sin2th*f[25]*f[27]*f[57]*f[58])/(3*U[2] - 4*U[3]) - (20*f_41_2*sin2th*f[25]*f[27]*f[57]*f[58])/(3*U[2] - 4*U[3]) + (20*f_40_2*sin2th*f[24]*f[26]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*f_41_2*sin2th*f[24]*f[26]*f[56]*f[59])/(3*U[2] - 4*U[3]) - (20*cos2th*f_40_2*f[25]*f[26]*f[56]*f[59])/(3*U[2] - 4*U[3]) - (20*cos2th*f_41_2*f[25]*f[26]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_40_2*f[24]*f[27]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_41_2*f[24]*f[27]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*f_40_2*sin2th*f[25]*f[27]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*f_41_2*sin2th*f[25]*f[27]*f[56]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_40_2*f[24]*f[26]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_41_2*f[24]*f[26]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*f_40_2*sin2th*f[25]*f[26]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*f_41_2*sin2th*f[25]*f[26]*f[57]*f[59])/(3*U[2] - 4*U[3]) - (20*f_40_2*sin2th*f[24]*f[27]*f[57]*f[59])/(3*U[2] - 4*U[3]) - (20*f_41_2*sin2th*f[24]*f[27]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_40_2*f[25]*f[27]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (20*cos2th*f_41_2*f[25]*f[27]*f[57]*f[59])/(3*U[2] - 4*U[3]) + (30*cos2th*f_44_2*f[24]*f[26]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_45_2*f[24]*f[26]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*f_44_2*sin2th*f[25]*f[26]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*f_45_2*sin2th*f[25]*f[26]*f[56]*f[58])/(5*U[2] - 4*U[3]) - (30*f_44_2*sin2th*f[24]*f[27]*f[56]*f[58])/(5*U[2] - 4*U[3]) - (30*f_45_2*sin2th*f[24]*f[27]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_44_2*f[25]*f[27]*f[56]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_45_2*f[25]*f[27]*f[56]*f[58])/(5*U[2] - 4*U[3]) - (30*f_44_2*sin2th*f[24]*f[26]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*f_45_2*sin2th*f[24]*f[26]*f[57]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_44_2*f[25]*f[26]*f[57]*f[58])/(5*U[2] - 4*U[3]) + (30*cos2th*f_45_2*f[25]*f[26]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*cos2th*f_44_2*f[24]*f[27]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*cos2th*f_45_2*f[24]*f[27]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*f_44_2*sin2th*f[25]*f[27]*f[57]*f[58])/(5*U[2] - 4*U[3]) - (30*f_45_2*sin2th*f[25]*f[27]*f[57]*f[58])/(5*U[2] - 4*U[3]) + (30*f_44_2*sin2th*f[24]*f[26]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*f_45_2*sin2th*f[24]*f[26]*f[56]*f[59])/(5*U[2] - 4*U[3]) - (30*cos2th*f_44_2*f[25]*f[26]*f[56]*f[59])/(5*U[2] - 4*U[3]) - (30*cos2th*f_45_2*f[25]*f[26]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_44_2*f[24]*f[27]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_45_2*f[24]*f[27]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*f_44_2*sin2th*f[25]*f[27]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*f_45_2*sin2th*f[25]*f[27]*f[56]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_44_2*f[24]*f[26]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_45_2*f[24]*f[26]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*f_44_2*sin2th*f[25]*f[26]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*f_45_2*sin2th*f[25]*f[26]*f[57]*f[59])/(5*U[2] - 4*U[3]) - (30*f_44_2*sin2th*f[24]*f[27]*f[57]*f[59])/(5*U[2] - 4*U[3]) - (30*f_45_2*sin2th*f[24]*f[27]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_44_2*f[25]*f[27]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (30*cos2th*f_45_2*f[25]*f[27]*f[57]*f[59])/(5*U[2] - 4*U[3]) + (35*cos2th*f_46_2*f[24]*f[26]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_47_2*f[24]*f[26]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*f_46_2*sin2th*f[25]*f[26]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*f_47_2*sin2th*f[25]*f[26]*f[56]*f[58])/(6*U[2] - 4*U[3]) - (35*f_46_2*sin2th*f[24]*f[27]*f[56]*f[58])/(6*U[2] - 4*U[3]) - (35*f_47_2*sin2th*f[24]*f[27]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_46_2*f[25]*f[27]*f[56]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_47_2*f[25]*f[27]*f[56]*f[58])/(6*U[2] - 4*U[3]) - (35*f_46_2*sin2th*f[24]*f[26]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*f_47_2*sin2th*f[24]*f[26]*f[57]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_46_2*f[25]*f[26]*f[57]*f[58])/(6*U[2] - 4*U[3]) + (35*cos2th*f_47_2*f[25]*f[26]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*cos2th*f_46_2*f[24]*f[27]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*cos2th*f_47_2*f[24]*f[27]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*f_46_2*sin2th*f[25]*f[27]*f[57]*f[58])/(6*U[2] - 4*U[3]) - (35*f_47_2*sin2th*f[25]*f[27]*f[57]*f[58])/(6*U[2] - 4*U[3]) + (35*f_46_2*sin2th*f[24]*f[26]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*f_47_2*sin2th*f[24]*f[26]*f[56]*f[59])/(6*U[2] - 4*U[3]) - (35*cos2th*f_46_2*f[25]*f[26]*f[56]*f[59])/(6*U[2] - 4*U[3]) - (35*cos2th*f_47_2*f[25]*f[26]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_46_2*f[24]*f[27]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_47_2*f[24]*f[27]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*f_46_2*sin2th*f[25]*f[27]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*f_47_2*sin2th*f[25]*f[27]*f[56]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_46_2*f[24]*f[26]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_47_2*f[24]*f[26]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*f_46_2*sin2th*f[25]*f[26]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*f_47_2*sin2th*f[25]*f[26]*f[57]*f[59])/(6*U[2] - 4*U[3]) - (35*f_46_2*sin2th*f[24]*f[27]*f[57]*f[59])/(6*U[2] - 4*U[3]) - (35*f_47_2*sin2th*f[24]*f[27]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_46_2*f[25]*f[27]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (35*cos2th*f_47_2*f[25]*f[27]*f[57]*f[59])/(6*U[2] - 4*U[3]) + (8*cos2th*f_36_2*f[22]*f[24]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_37_2*f[22]*f[24]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*f_36_2*sin2th*f[23]*f[24]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*f_37_2*sin2th*f[23]*f[24]*f[54]*f[56])/(U[2] - 3*U[3]) - (8*f_36_2*sin2th*f[22]*f[25]*f[54]*f[56])/(U[2] - 3*U[3]) - (8*f_37_2*sin2th*f[22]*f[25]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_36_2*f[23]*f[25]*f[54]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_37_2*f[23]*f[25]*f[54]*f[56])/(U[2] - 3*U[3]) - (8*f_36_2*sin2th*f[22]*f[24]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*f_37_2*sin2th*f[22]*f[24]*f[55]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_36_2*f[23]*f[24]*f[55]*f[56])/(U[2] - 3*U[3]) + (8*cos2th*f_37_2*f[23]*f[24]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*cos2th*f_36_2*f[22]*f[25]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*cos2th*f_37_2*f[22]*f[25]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*f_36_2*sin2th*f[23]*f[25]*f[55]*f[56])/(U[2] - 3*U[3]) - (8*f_37_2*sin2th*f[23]*f[25]*f[55]*f[56])/(U[2] - 3*U[3]) + (8*f_36_2*sin2th*f[22]*f[24]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*f_37_2*sin2th*f[22]*f[24]*f[54]*f[57])/(U[2] - 3*U[3]) - (8*cos2th*f_36_2*f[23]*f[24]*f[54]*f[57])/(U[2] - 3*U[3]) - (8*cos2th*f_37_2*f[23]*f[24]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_36_2*f[22]*f[25]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_37_2*f[22]*f[25]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*f_36_2*sin2th*f[23]*f[25]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*f_37_2*sin2th*f[23]*f[25]*f[54]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_36_2*f[22]*f[24]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_37_2*f[22]*f[24]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*f_36_2*sin2th*f[23]*f[24]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*f_37_2*sin2th*f[23]*f[24]*f[55]*f[57])/(U[2] - 3*U[3]) - (8*f_36_2*sin2th*f[22]*f[25]*f[55]*f[57])/(U[2] - 3*U[3]) - (8*f_37_2*sin2th*f[22]*f[25]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_36_2*f[23]*f[25]*f[55]*f[57])/(U[2] - 3*U[3]) + (8*cos2th*f_37_2*f[23]*f[25]*f[55]*f[57])/(U[2] - 3*U[3]) + (12*cos2th*f_38_2*f[22]*f[24]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_39_2*f[22]*f[24]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*f_38_2*sin2th*f[23]*f[24]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*f_39_2*sin2th*f[23]*f[24]*f[54]*f[56])/(2*U[2] - 3*U[3]) - (12*f_38_2*sin2th*f[22]*f[25]*f[54]*f[56])/(2*U[2] - 3*U[3]) - (12*f_39_2*sin2th*f[22]*f[25]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_38_2*f[23]*f[25]*f[54]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_39_2*f[23]*f[25]*f[54]*f[56])/(2*U[2] - 3*U[3]) - (12*f_38_2*sin2th*f[22]*f[24]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*f_39_2*sin2th*f[22]*f[24]*f[55]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_38_2*f[23]*f[24]*f[55]*f[56])/(2*U[2] - 3*U[3]) + (12*cos2th*f_39_2*f[23]*f[24]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*cos2th*f_38_2*f[22]*f[25]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*cos2th*f_39_2*f[22]*f[25]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*f_38_2*sin2th*f[23]*f[25]*f[55]*f[56])/(2*U[2] - 3*U[3]) - (12*f_39_2*sin2th*f[23]*f[25]*f[55]*f[56])/(2*U[2] - 3*U[3]) + (12*f_38_2*sin2th*f[22]*f[24]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*f_39_2*sin2th*f[22]*f[24]*f[54]*f[57])/(2*U[2] - 3*U[3]) - (12*cos2th*f_38_2*f[23]*f[24]*f[54]*f[57])/(2*U[2] - 3*U[3]) - (12*cos2th*f_39_2*f[23]*f[24]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_38_2*f[22]*f[25]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_39_2*f[22]*f[25]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*f_38_2*sin2th*f[23]*f[25]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*f_39_2*sin2th*f[23]*f[25]*f[54]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_38_2*f[22]*f[24]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_39_2*f[22]*f[24]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*f_38_2*sin2th*f[23]*f[24]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*f_39_2*sin2th*f[23]*f[24]*f[55]*f[57])/(2*U[2] - 3*U[3]) - (12*f_38_2*sin2th*f[22]*f[25]*f[55]*f[57])/(2*U[2] - 3*U[3]) - (12*f_39_2*sin2th*f[22]*f[25]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_38_2*f[23]*f[25]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (12*cos2th*f_39_2*f[23]*f[25]*f[55]*f[57])/(2*U[2] - 3*U[3]) + (20*cos2th*f_42_2*f[22]*f[24]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_43_2*f[22]*f[24]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*f_42_2*sin2th*f[23]*f[24]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*f_43_2*sin2th*f[23]*f[24]*f[54]*f[56])/(4*U[2] - 3*U[3]) - (20*f_42_2*sin2th*f[22]*f[25]*f[54]*f[56])/(4*U[2] - 3*U[3]) - (20*f_43_2*sin2th*f[22]*f[25]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_42_2*f[23]*f[25]*f[54]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_43_2*f[23]*f[25]*f[54]*f[56])/(4*U[2] - 3*U[3]) - (20*f_42_2*sin2th*f[22]*f[24]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*f_43_2*sin2th*f[22]*f[24]*f[55]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_42_2*f[23]*f[24]*f[55]*f[56])/(4*U[2] - 3*U[3]) + (20*cos2th*f_43_2*f[23]*f[24]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*cos2th*f_42_2*f[22]*f[25]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*cos2th*f_43_2*f[22]*f[25]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*f_42_2*sin2th*f[23]*f[25]*f[55]*f[56])/(4*U[2] - 3*U[3]) - (20*f_43_2*sin2th*f[23]*f[25]*f[55]*f[56])/(4*U[2] - 3*U[3]) + (20*f_42_2*sin2th*f[22]*f[24]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*f_43_2*sin2th*f[22]*f[24]*f[54]*f[57])/(4*U[2] - 3*U[3]) - (20*cos2th*f_42_2*f[23]*f[24]*f[54]*f[57])/(4*U[2] - 3*U[3]) - (20*cos2th*f_43_2*f[23]*f[24]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_42_2*f[22]*f[25]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_43_2*f[22]*f[25]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*f_42_2*sin2th*f[23]*f[25]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*f_43_2*sin2th*f[23]*f[25]*f[54]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_42_2*f[22]*f[24]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_43_2*f[22]*f[24]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*f_42_2*sin2th*f[23]*f[24]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*f_43_2*sin2th*f[23]*f[24]*f[55]*f[57])/(4*U[2] - 3*U[3]) - (20*f_42_2*sin2th*f[22]*f[25]*f[55]*f[57])/(4*U[2] - 3*U[3]) - (20*f_43_2*sin2th*f[22]*f[25]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_42_2*f[23]*f[25]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (20*cos2th*f_43_2*f[23]*f[25]*f[55]*f[57])/(4*U[2] - 3*U[3]) + (24*cos2th*f_44_2*f[22]*f[24]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_45_2*f[22]*f[24]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*f_44_2*sin2th*f[23]*f[24]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*f_45_2*sin2th*f[23]*f[24]*f[54]*f[56])/(5*U[2] - 3*U[3]) - (24*f_44_2*sin2th*f[22]*f[25]*f[54]*f[56])/(5*U[2] - 3*U[3]) - (24*f_45_2*sin2th*f[22]*f[25]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_44_2*f[23]*f[25]*f[54]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_45_2*f[23]*f[25]*f[54]*f[56])/(5*U[2] - 3*U[3]) - (24*f_44_2*sin2th*f[22]*f[24]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*f_45_2*sin2th*f[22]*f[24]*f[55]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_44_2*f[23]*f[24]*f[55]*f[56])/(5*U[2] - 3*U[3]) + (24*cos2th*f_45_2*f[23]*f[24]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*cos2th*f_44_2*f[22]*f[25]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*cos2th*f_45_2*f[22]*f[25]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*f_44_2*sin2th*f[23]*f[25]*f[55]*f[56])/(5*U[2] - 3*U[3]) - (24*f_45_2*sin2th*f[23]*f[25]*f[55]*f[56])/(5*U[2] - 3*U[3]) + (24*f_44_2*sin2th*f[22]*f[24]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*f_45_2*sin2th*f[22]*f[24]*f[54]*f[57])/(5*U[2] - 3*U[3]) - (24*cos2th*f_44_2*f[23]*f[24]*f[54]*f[57])/(5*U[2] - 3*U[3]) - (24*cos2th*f_45_2*f[23]*f[24]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_44_2*f[22]*f[25]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_45_2*f[22]*f[25]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*f_44_2*sin2th*f[23]*f[25]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*f_45_2*sin2th*f[23]*f[25]*f[54]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_44_2*f[22]*f[24]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_45_2*f[22]*f[24]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*f_44_2*sin2th*f[23]*f[24]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*f_45_2*sin2th*f[23]*f[24]*f[55]*f[57])/(5*U[2] - 3*U[3]) - (24*f_44_2*sin2th*f[22]*f[25]*f[55]*f[57])/(5*U[2] - 3*U[3]) - (24*f_45_2*sin2th*f[22]*f[25]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_44_2*f[23]*f[25]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (24*cos2th*f_45_2*f[23]*f[25]*f[55]*f[57])/(5*U[2] - 3*U[3]) + (28*cos2th*f_46_2*f[22]*f[24]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_47_2*f[22]*f[24]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*f_46_2*sin2th*f[23]*f[24]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*f_47_2*sin2th*f[23]*f[24]*f[54]*f[56])/(6*U[2] - 3*U[3]) - (28*f_46_2*sin2th*f[22]*f[25]*f[54]*f[56])/(6*U[2] - 3*U[3]) - (28*f_47_2*sin2th*f[22]*f[25]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_46_2*f[23]*f[25]*f[54]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_47_2*f[23]*f[25]*f[54]*f[56])/(6*U[2] - 3*U[3]) - (28*f_46_2*sin2th*f[22]*f[24]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*f_47_2*sin2th*f[22]*f[24]*f[55]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_46_2*f[23]*f[24]*f[55]*f[56])/(6*U[2] - 3*U[3]) + (28*cos2th*f_47_2*f[23]*f[24]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*cos2th*f_46_2*f[22]*f[25]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*cos2th*f_47_2*f[22]*f[25]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*f_46_2*sin2th*f[23]*f[25]*f[55]*f[56])/(6*U[2] - 3*U[3]) - (28*f_47_2*sin2th*f[23]*f[25]*f[55]*f[56])/(6*U[2] - 3*U[3]) + (28*f_46_2*sin2th*f[22]*f[24]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*f_47_2*sin2th*f[22]*f[24]*f[54]*f[57])/(6*U[2] - 3*U[3]) - (28*cos2th*f_46_2*f[23]*f[24]*f[54]*f[57])/(6*U[2] - 3*U[3]) - (28*cos2th*f_47_2*f[23]*f[24]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_46_2*f[22]*f[25]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_47_2*f[22]*f[25]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*f_46_2*sin2th*f[23]*f[25]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*f_47_2*sin2th*f[23]*f[25]*f[54]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_46_2*f[22]*f[24]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_47_2*f[22]*f[24]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*f_46_2*sin2th*f[23]*f[24]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*f_47_2*sin2th*f[23]*f[24]*f[55]*f[57])/(6*U[2] - 3*U[3]) - (28*f_46_2*sin2th*f[22]*f[25]*f[55]*f[57])/(6*U[2] - 3*U[3]) - (28*f_47_2*sin2th*f[22]*f[25]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_46_2*f[23]*f[25]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (28*cos2th*f_47_2*f[23]*f[25]*f[55]*f[57])/(6*U[2] - 3*U[3]) + (6*cos2th*f_36_2*f[20]*f[22]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_37_2*f[20]*f[22]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*f_36_2*sin2th*f[21]*f[22]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*f_37_2*sin2th*f[21]*f[22]*f[52]*f[54])/(U[2] - 2*U[3]) - (6*f_36_2*sin2th*f[20]*f[23]*f[52]*f[54])/(U[2] - 2*U[3]) - (6*f_37_2*sin2th*f[20]*f[23]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_36_2*f[21]*f[23]*f[52]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_37_2*f[21]*f[23]*f[52]*f[54])/(U[2] - 2*U[3]) - (6*f_36_2*sin2th*f[20]*f[22]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*f_37_2*sin2th*f[20]*f[22]*f[53]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_36_2*f[21]*f[22]*f[53]*f[54])/(U[2] - 2*U[3]) + (6*cos2th*f_37_2*f[21]*f[22]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*cos2th*f_36_2*f[20]*f[23]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*cos2th*f_37_2*f[20]*f[23]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*f_36_2*sin2th*f[21]*f[23]*f[53]*f[54])/(U[2] - 2*U[3]) - (6*f_37_2*sin2th*f[21]*f[23]*f[53]*f[54])/(U[2] - 2*U[3]) + (6*f_36_2*sin2th*f[20]*f[22]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*f_37_2*sin2th*f[20]*f[22]*f[52]*f[55])/(U[2] - 2*U[3]) - (6*cos2th*f_36_2*f[21]*f[22]*f[52]*f[55])/(U[2] - 2*U[3]) - (6*cos2th*f_37_2*f[21]*f[22]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_36_2*f[20]*f[23]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_37_2*f[20]*f[23]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*f_36_2*sin2th*f[21]*f[23]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*f_37_2*sin2th*f[21]*f[23]*f[52]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_36_2*f[20]*f[22]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_37_2*f[20]*f[22]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*f_36_2*sin2th*f[21]*f[22]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*f_37_2*sin2th*f[21]*f[22]*f[53]*f[55])/(U[2] - 2*U[3]) - (6*f_36_2*sin2th*f[20]*f[23]*f[53]*f[55])/(U[2] - 2*U[3]) - (6*f_37_2*sin2th*f[20]*f[23]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_36_2*f[21]*f[23]*f[53]*f[55])/(U[2] - 2*U[3]) + (6*cos2th*f_37_2*f[21]*f[23]*f[53]*f[55])/(U[2] - 2*U[3]) + (12*cos2th*f_40_2*f[20]*f[22]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_41_2*f[20]*f[22]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*f_40_2*sin2th*f[21]*f[22]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*f_41_2*sin2th*f[21]*f[22]*f[52]*f[54])/(3*U[2] - 2*U[3]) - (12*f_40_2*sin2th*f[20]*f[23]*f[52]*f[54])/(3*U[2] - 2*U[3]) - (12*f_41_2*sin2th*f[20]*f[23]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_40_2*f[21]*f[23]*f[52]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_41_2*f[21]*f[23]*f[52]*f[54])/(3*U[2] - 2*U[3]) - (12*f_40_2*sin2th*f[20]*f[22]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*f_41_2*sin2th*f[20]*f[22]*f[53]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_40_2*f[21]*f[22]*f[53]*f[54])/(3*U[2] - 2*U[3]) + (12*cos2th*f_41_2*f[21]*f[22]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*cos2th*f_40_2*f[20]*f[23]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*cos2th*f_41_2*f[20]*f[23]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*f_40_2*sin2th*f[21]*f[23]*f[53]*f[54])/(3*U[2] - 2*U[3]) - (12*f_41_2*sin2th*f[21]*f[23]*f[53]*f[54])/(3*U[2] - 2*U[3]) + (12*f_40_2*sin2th*f[20]*f[22]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*f_41_2*sin2th*f[20]*f[22]*f[52]*f[55])/(3*U[2] - 2*U[3]) - (12*cos2th*f_40_2*f[21]*f[22]*f[52]*f[55])/(3*U[2] - 2*U[3]) - (12*cos2th*f_41_2*f[21]*f[22]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_40_2*f[20]*f[23]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_41_2*f[20]*f[23]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*f_40_2*sin2th*f[21]*f[23]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*f_41_2*sin2th*f[21]*f[23]*f[52]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_40_2*f[20]*f[22]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_41_2*f[20]*f[22]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*f_40_2*sin2th*f[21]*f[22]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*f_41_2*sin2th*f[21]*f[22]*f[53]*f[55])/(3*U[2] - 2*U[3]) - (12*f_40_2*sin2th*f[20]*f[23]*f[53]*f[55])/(3*U[2] - 2*U[3]) - (12*f_41_2*sin2th*f[20]*f[23]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_40_2*f[21]*f[23]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (12*cos2th*f_41_2*f[21]*f[23]*f[53]*f[55])/(3*U[2] - 2*U[3]) + (15*cos2th*f_42_2*f[20]*f[22]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_43_2*f[20]*f[22]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*f_42_2*sin2th*f[21]*f[22]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*f_43_2*sin2th*f[21]*f[22]*f[52]*f[54])/(4*U[2] - 2*U[3]) - (15*f_42_2*sin2th*f[20]*f[23]*f[52]*f[54])/(4*U[2] - 2*U[3]) - (15*f_43_2*sin2th*f[20]*f[23]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_42_2*f[21]*f[23]*f[52]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_43_2*f[21]*f[23]*f[52]*f[54])/(4*U[2] - 2*U[3]) - (15*f_42_2*sin2th*f[20]*f[22]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*f_43_2*sin2th*f[20]*f[22]*f[53]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_42_2*f[21]*f[22]*f[53]*f[54])/(4*U[2] - 2*U[3]) + (15*cos2th*f_43_2*f[21]*f[22]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*cos2th*f_42_2*f[20]*f[23]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*cos2th*f_43_2*f[20]*f[23]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*f_42_2*sin2th*f[21]*f[23]*f[53]*f[54])/(4*U[2] - 2*U[3]) - (15*f_43_2*sin2th*f[21]*f[23]*f[53]*f[54])/(4*U[2] - 2*U[3]) + (15*f_42_2*sin2th*f[20]*f[22]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*f_43_2*sin2th*f[20]*f[22]*f[52]*f[55])/(4*U[2] - 2*U[3]) - (15*cos2th*f_42_2*f[21]*f[22]*f[52]*f[55])/(4*U[2] - 2*U[3]) - (15*cos2th*f_43_2*f[21]*f[22]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_42_2*f[20]*f[23]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_43_2*f[20]*f[23]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*f_42_2*sin2th*f[21]*f[23]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*f_43_2*sin2th*f[21]*f[23]*f[52]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_42_2*f[20]*f[22]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_43_2*f[20]*f[22]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*f_42_2*sin2th*f[21]*f[22]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*f_43_2*sin2th*f[21]*f[22]*f[53]*f[55])/(4*U[2] - 2*U[3]) - (15*f_42_2*sin2th*f[20]*f[23]*f[53]*f[55])/(4*U[2] - 2*U[3]) - (15*f_43_2*sin2th*f[20]*f[23]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_42_2*f[21]*f[23]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (15*cos2th*f_43_2*f[21]*f[23]*f[53]*f[55])/(4*U[2] - 2*U[3]) + (18*cos2th*f_44_2*f[20]*f[22]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_45_2*f[20]*f[22]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*f_44_2*sin2th*f[21]*f[22]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*f_45_2*sin2th*f[21]*f[22]*f[52]*f[54])/(5*U[2] - 2*U[3]) - (18*f_44_2*sin2th*f[20]*f[23]*f[52]*f[54])/(5*U[2] - 2*U[3]) - (18*f_45_2*sin2th*f[20]*f[23]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_44_2*f[21]*f[23]*f[52]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_45_2*f[21]*f[23]*f[52]*f[54])/(5*U[2] - 2*U[3]) - (18*f_44_2*sin2th*f[20]*f[22]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*f_45_2*sin2th*f[20]*f[22]*f[53]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_44_2*f[21]*f[22]*f[53]*f[54])/(5*U[2] - 2*U[3]) + (18*cos2th*f_45_2*f[21]*f[22]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*cos2th*f_44_2*f[20]*f[23]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*cos2th*f_45_2*f[20]*f[23]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*f_44_2*sin2th*f[21]*f[23]*f[53]*f[54])/(5*U[2] - 2*U[3]) - (18*f_45_2*sin2th*f[21]*f[23]*f[53]*f[54])/(5*U[2] - 2*U[3]) + (18*f_44_2*sin2th*f[20]*f[22]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*f_45_2*sin2th*f[20]*f[22]*f[52]*f[55])/(5*U[2] - 2*U[3]) - (18*cos2th*f_44_2*f[21]*f[22]*f[52]*f[55])/(5*U[2] - 2*U[3]) - (18*cos2th*f_45_2*f[21]*f[22]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_44_2*f[20]*f[23]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_45_2*f[20]*f[23]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*f_44_2*sin2th*f[21]*f[23]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*f_45_2*sin2th*f[21]*f[23]*f[52]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_44_2*f[20]*f[22]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_45_2*f[20]*f[22]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*f_44_2*sin2th*f[21]*f[22]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*f_45_2*sin2th*f[21]*f[22]*f[53]*f[55])/(5*U[2] - 2*U[3]) - (18*f_44_2*sin2th*f[20]*f[23]*f[53]*f[55])/(5*U[2] - 2*U[3]) - (18*f_45_2*sin2th*f[20]*f[23]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_44_2*f[21]*f[23]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (18*cos2th*f_45_2*f[21]*f[23]*f[53]*f[55])/(5*U[2] - 2*U[3]) + (21*cos2th*f_46_2*f[20]*f[22]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_47_2*f[20]*f[22]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*f_46_2*sin2th*f[21]*f[22]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*f_47_2*sin2th*f[21]*f[22]*f[52]*f[54])/(6*U[2] - 2*U[3]) - (21*f_46_2*sin2th*f[20]*f[23]*f[52]*f[54])/(6*U[2] - 2*U[3]) - (21*f_47_2*sin2th*f[20]*f[23]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_46_2*f[21]*f[23]*f[52]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_47_2*f[21]*f[23]*f[52]*f[54])/(6*U[2] - 2*U[3]) - (21*f_46_2*sin2th*f[20]*f[22]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*f_47_2*sin2th*f[20]*f[22]*f[53]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_46_2*f[21]*f[22]*f[53]*f[54])/(6*U[2] - 2*U[3]) + (21*cos2th*f_47_2*f[21]*f[22]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*cos2th*f_46_2*f[20]*f[23]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*cos2th*f_47_2*f[20]*f[23]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*f_46_2*sin2th*f[21]*f[23]*f[53]*f[54])/(6*U[2] - 2*U[3]) - (21*f_47_2*sin2th*f[21]*f[23]*f[53]*f[54])/(6*U[2] - 2*U[3]) + (21*f_46_2*sin2th*f[20]*f[22]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*f_47_2*sin2th*f[20]*f[22]*f[52]*f[55])/(6*U[2] - 2*U[3]) - (21*cos2th*f_46_2*f[21]*f[22]*f[52]*f[55])/(6*U[2] - 2*U[3]) - (21*cos2th*f_47_2*f[21]*f[22]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_46_2*f[20]*f[23]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_47_2*f[20]*f[23]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*f_46_2*sin2th*f[21]*f[23]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*f_47_2*sin2th*f[21]*f[23]*f[52]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_46_2*f[20]*f[22]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_47_2*f[20]*f[22]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*f_46_2*sin2th*f[21]*f[22]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*f_47_2*sin2th*f[21]*f[22]*f[53]*f[55])/(6*U[2] - 2*U[3]) - (21*f_46_2*sin2th*f[20]*f[23]*f[53]*f[55])/(6*U[2] - 2*U[3]) - (21*f_47_2*sin2th*f[20]*f[23]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_46_2*f[21]*f[23]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (21*cos2th*f_47_2*f[21]*f[23]*f[53]*f[55])/(6*U[2] - 2*U[3]) + (6*cos2th*f_38_2*f[18]*f[20]*f[50]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_39_2*f[18]*f[20]*f[50]*f[52])/(2*U[2] - U[3]) + (6*f_38_2*sin2th*f[19]*f[20]*f[50]*f[52])/(2*U[2] - U[3]) + (6*f_39_2*sin2th*f[19]*f[20]*f[50]*f[52])/(2*U[2] - U[3]) - (6*f_38_2*sin2th*f[18]*f[21]*f[50]*f[52])/(2*U[2] - U[3]) - (6*f_39_2*sin2th*f[18]*f[21]*f[50]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_38_2*f[19]*f[21]*f[50]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_39_2*f[19]*f[21]*f[50]*f[52])/(2*U[2] - U[3]) - (6*f_38_2*sin2th*f[18]*f[20]*f[51]*f[52])/(2*U[2] - U[3]) - (6*f_39_2*sin2th*f[18]*f[20]*f[51]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_38_2*f[19]*f[20]*f[51]*f[52])/(2*U[2] - U[3]) + (6*cos2th*f_39_2*f[19]*f[20]*f[51]*f[52])/(2*U[2] - U[3]) - (6*cos2th*f_38_2*f[18]*f[21]*f[51]*f[52])/(2*U[2] - U[3]) - (6*cos2th*f_39_2*f[18]*f[21]*f[51]*f[52])/(2*U[2] - U[3]) - (6*f_38_2*sin2th*f[19]*f[21]*f[51]*f[52])/(2*U[2] - U[3]) - (6*f_39_2*sin2th*f[19]*f[21]*f[51]*f[52])/(2*U[2] - U[3]) + (6*f_38_2*sin2th*f[18]*f[20]*f[50]*f[53])/(2*U[2] - U[3]) + (6*f_39_2*sin2th*f[18]*f[20]*f[50]*f[53])/(2*U[2] - U[3]) - (6*cos2th*f_38_2*f[19]*f[20]*f[50]*f[53])/(2*U[2] - U[3]) - (6*cos2th*f_39_2*f[19]*f[20]*f[50]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_38_2*f[18]*f[21]*f[50]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_39_2*f[18]*f[21]*f[50]*f[53])/(2*U[2] - U[3]) + (6*f_38_2*sin2th*f[19]*f[21]*f[50]*f[53])/(2*U[2] - U[3]) + (6*f_39_2*sin2th*f[19]*f[21]*f[50]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_38_2*f[18]*f[20]*f[51]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_39_2*f[18]*f[20]*f[51]*f[53])/(2*U[2] - U[3]) + (6*f_38_2*sin2th*f[19]*f[20]*f[51]*f[53])/(2*U[2] - U[3]) + (6*f_39_2*sin2th*f[19]*f[20]*f[51]*f[53])/(2*U[2] - U[3]) - (6*f_38_2*sin2th*f[18]*f[21]*f[51]*f[53])/(2*U[2] - U[3]) - (6*f_39_2*sin2th*f[18]*f[21]*f[51]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_38_2*f[19]*f[21]*f[51]*f[53])/(2*U[2] - U[3]) + (6*cos2th*f_39_2*f[19]*f[21]*f[51]*f[53])/(2*U[2] - U[3]) + (8*cos2th*f_40_2*f[18]*f[20]*f[50]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_41_2*f[18]*f[20]*f[50]*f[52])/(3*U[2] - U[3]) + (8*f_40_2*sin2th*f[19]*f[20]*f[50]*f[52])/(3*U[2] - U[3]) + (8*f_41_2*sin2th*f[19]*f[20]*f[50]*f[52])/(3*U[2] - U[3]) - (8*f_40_2*sin2th*f[18]*f[21]*f[50]*f[52])/(3*U[2] - U[3]) - (8*f_41_2*sin2th*f[18]*f[21]*f[50]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_40_2*f[19]*f[21]*f[50]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_41_2*f[19]*f[21]*f[50]*f[52])/(3*U[2] - U[3]) - (8*f_40_2*sin2th*f[18]*f[20]*f[51]*f[52])/(3*U[2] - U[3]) - (8*f_41_2*sin2th*f[18]*f[20]*f[51]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_40_2*f[19]*f[20]*f[51]*f[52])/(3*U[2] - U[3]) + (8*cos2th*f_41_2*f[19]*f[20]*f[51]*f[52])/(3*U[2] - U[3]) - (8*cos2th*f_40_2*f[18]*f[21]*f[51]*f[52])/(3*U[2] - U[3]) - (8*cos2th*f_41_2*f[18]*f[21]*f[51]*f[52])/(3*U[2] - U[3]) - (8*f_40_2*sin2th*f[19]*f[21]*f[51]*f[52])/(3*U[2] - U[3]) - (8*f_41_2*sin2th*f[19]*f[21]*f[51]*f[52])/(3*U[2] - U[3]) + (8*f_40_2*sin2th*f[18]*f[20]*f[50]*f[53])/(3*U[2] - U[3]) + (8*f_41_2*sin2th*f[18]*f[20]*f[50]*f[53])/(3*U[2] - U[3]) - (8*cos2th*f_40_2*f[19]*f[20]*f[50]*f[53])/(3*U[2] - U[3]) - (8*cos2th*f_41_2*f[19]*f[20]*f[50]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_40_2*f[18]*f[21]*f[50]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_41_2*f[18]*f[21]*f[50]*f[53])/(3*U[2] - U[3]) + (8*f_40_2*sin2th*f[19]*f[21]*f[50]*f[53])/(3*U[2] - U[3]) + (8*f_41_2*sin2th*f[19]*f[21]*f[50]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_40_2*f[18]*f[20]*f[51]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_41_2*f[18]*f[20]*f[51]*f[53])/(3*U[2] - U[3]) + (8*f_40_2*sin2th*f[19]*f[20]*f[51]*f[53])/(3*U[2] - U[3]) + (8*f_41_2*sin2th*f[19]*f[20]*f[51]*f[53])/(3*U[2] - U[3]) - (8*f_40_2*sin2th*f[18]*f[21]*f[51]*f[53])/(3*U[2] - U[3]) - (8*f_41_2*sin2th*f[18]*f[21]*f[51]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_40_2*f[19]*f[21]*f[51]*f[53])/(3*U[2] - U[3]) + (8*cos2th*f_41_2*f[19]*f[21]*f[51]*f[53])/(3*U[2] - U[3]) + (10*cos2th*f_42_2*f[18]*f[20]*f[50]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_43_2*f[18]*f[20]*f[50]*f[52])/(4*U[2] - U[3]) + (10*f_42_2*sin2th*f[19]*f[20]*f[50]*f[52])/(4*U[2] - U[3]) + (10*f_43_2*sin2th*f[19]*f[20]*f[50]*f[52])/(4*U[2] - U[3]) - (10*f_42_2*sin2th*f[18]*f[21]*f[50]*f[52])/(4*U[2] - U[3]) - (10*f_43_2*sin2th*f[18]*f[21]*f[50]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_42_2*f[19]*f[21]*f[50]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_43_2*f[19]*f[21]*f[50]*f[52])/(4*U[2] - U[3]) - (10*f_42_2*sin2th*f[18]*f[20]*f[51]*f[52])/(4*U[2] - U[3]) - (10*f_43_2*sin2th*f[18]*f[20]*f[51]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_42_2*f[19]*f[20]*f[51]*f[52])/(4*U[2] - U[3]) + (10*cos2th*f_43_2*f[19]*f[20]*f[51]*f[52])/(4*U[2] - U[3]) - (10*cos2th*f_42_2*f[18]*f[21]*f[51]*f[52])/(4*U[2] - U[3]) - (10*cos2th*f_43_2*f[18]*f[21]*f[51]*f[52])/(4*U[2] - U[3]) - (10*f_42_2*sin2th*f[19]*f[21]*f[51]*f[52])/(4*U[2] - U[3]) - (10*f_43_2*sin2th*f[19]*f[21]*f[51]*f[52])/(4*U[2] - U[3]) + (10*f_42_2*sin2th*f[18]*f[20]*f[50]*f[53])/(4*U[2] - U[3]) + (10*f_43_2*sin2th*f[18]*f[20]*f[50]*f[53])/(4*U[2] - U[3]) - (10*cos2th*f_42_2*f[19]*f[20]*f[50]*f[53])/(4*U[2] - U[3]) - (10*cos2th*f_43_2*f[19]*f[20]*f[50]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_42_2*f[18]*f[21]*f[50]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_43_2*f[18]*f[21]*f[50]*f[53])/(4*U[2] - U[3]) + (10*f_42_2*sin2th*f[19]*f[21]*f[50]*f[53])/(4*U[2] - U[3]) + (10*f_43_2*sin2th*f[19]*f[21]*f[50]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_42_2*f[18]*f[20]*f[51]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_43_2*f[18]*f[20]*f[51]*f[53])/(4*U[2] - U[3]) + (10*f_42_2*sin2th*f[19]*f[20]*f[51]*f[53])/(4*U[2] - U[3]) + (10*f_43_2*sin2th*f[19]*f[20]*f[51]*f[53])/(4*U[2] - U[3]) - (10*f_42_2*sin2th*f[18]*f[21]*f[51]*f[53])/(4*U[2] - U[3]) - (10*f_43_2*sin2th*f[18]*f[21]*f[51]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_42_2*f[19]*f[21]*f[51]*f[53])/(4*U[2] - U[3]) + (10*cos2th*f_43_2*f[19]*f[21]*f[51]*f[53])/(4*U[2] - U[3]) + (12*cos2th*f_44_2*f[18]*f[20]*f[50]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_45_2*f[18]*f[20]*f[50]*f[52])/(5*U[2] - U[3]) + (12*f_44_2*sin2th*f[19]*f[20]*f[50]*f[52])/(5*U[2] - U[3]) + (12*f_45_2*sin2th*f[19]*f[20]*f[50]*f[52])/(5*U[2] - U[3]) - (12*f_44_2*sin2th*f[18]*f[21]*f[50]*f[52])/(5*U[2] - U[3]) - (12*f_45_2*sin2th*f[18]*f[21]*f[50]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_44_2*f[19]*f[21]*f[50]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_45_2*f[19]*f[21]*f[50]*f[52])/(5*U[2] - U[3]) - (12*f_44_2*sin2th*f[18]*f[20]*f[51]*f[52])/(5*U[2] - U[3]) - (12*f_45_2*sin2th*f[18]*f[20]*f[51]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_44_2*f[19]*f[20]*f[51]*f[52])/(5*U[2] - U[3]) + (12*cos2th*f_45_2*f[19]*f[20]*f[51]*f[52])/(5*U[2] - U[3]) - (12*cos2th*f_44_2*f[18]*f[21]*f[51]*f[52])/(5*U[2] - U[3]) - (12*cos2th*f_45_2*f[18]*f[21]*f[51]*f[52])/(5*U[2] - U[3]) - (12*f_44_2*sin2th*f[19]*f[21]*f[51]*f[52])/(5*U[2] - U[3]) - (12*f_45_2*sin2th*f[19]*f[21]*f[51]*f[52])/(5*U[2] - U[3]) + (12*f_44_2*sin2th*f[18]*f[20]*f[50]*f[53])/(5*U[2] - U[3]) + (12*f_45_2*sin2th*f[18]*f[20]*f[50]*f[53])/(5*U[2] - U[3]) - (12*cos2th*f_44_2*f[19]*f[20]*f[50]*f[53])/(5*U[2] - U[3]) - (12*cos2th*f_45_2*f[19]*f[20]*f[50]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_44_2*f[18]*f[21]*f[50]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_45_2*f[18]*f[21]*f[50]*f[53])/(5*U[2] - U[3]) + (12*f_44_2*sin2th*f[19]*f[21]*f[50]*f[53])/(5*U[2] - U[3]) + (12*f_45_2*sin2th*f[19]*f[21]*f[50]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_44_2*f[18]*f[20]*f[51]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_45_2*f[18]*f[20]*f[51]*f[53])/(5*U[2] - U[3]) + (12*f_44_2*sin2th*f[19]*f[20]*f[51]*f[53])/(5*U[2] - U[3]) + (12*f_45_2*sin2th*f[19]*f[20]*f[51]*f[53])/(5*U[2] - U[3]) - (12*f_44_2*sin2th*f[18]*f[21]*f[51]*f[53])/(5*U[2] - U[3]) - (12*f_45_2*sin2th*f[18]*f[21]*f[51]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_44_2*f[19]*f[21]*f[51]*f[53])/(5*U[2] - U[3]) + (12*cos2th*f_45_2*f[19]*f[21]*f[51]*f[53])/(5*U[2] - U[3]) + (14*cos2th*f_46_2*f[18]*f[20]*f[50]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_47_2*f[18]*f[20]*f[50]*f[52])/(6*U[2] - U[3]) + (14*f_46_2*sin2th*f[19]*f[20]*f[50]*f[52])/(6*U[2] - U[3]) + (14*f_47_2*sin2th*f[19]*f[20]*f[50]*f[52])/(6*U[2] - U[3]) - (14*f_46_2*sin2th*f[18]*f[21]*f[50]*f[52])/(6*U[2] - U[3]) - (14*f_47_2*sin2th*f[18]*f[21]*f[50]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_46_2*f[19]*f[21]*f[50]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_47_2*f[19]*f[21]*f[50]*f[52])/(6*U[2] - U[3]) - (14*f_46_2*sin2th*f[18]*f[20]*f[51]*f[52])/(6*U[2] - U[3]) - (14*f_47_2*sin2th*f[18]*f[20]*f[51]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_46_2*f[19]*f[20]*f[51]*f[52])/(6*U[2] - U[3]) + (14*cos2th*f_47_2*f[19]*f[20]*f[51]*f[52])/(6*U[2] - U[3]) - (14*cos2th*f_46_2*f[18]*f[21]*f[51]*f[52])/(6*U[2] - U[3]) - (14*cos2th*f_47_2*f[18]*f[21]*f[51]*f[52])/(6*U[2] - U[3]) - (14*f_46_2*sin2th*f[19]*f[21]*f[51]*f[52])/(6*U[2] - U[3]) - (14*f_47_2*sin2th*f[19]*f[21]*f[51]*f[52])/(6*U[2] - U[3]) + (14*f_46_2*sin2th*f[18]*f[20]*f[50]*f[53])/(6*U[2] - U[3]) + (14*f_47_2*sin2th*f[18]*f[20]*f[50]*f[53])/(6*U[2] - U[3]) - (14*cos2th*f_46_2*f[19]*f[20]*f[50]*f[53])/(6*U[2] - U[3]) - (14*cos2th*f_47_2*f[19]*f[20]*f[50]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_46_2*f[18]*f[21]*f[50]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_47_2*f[18]*f[21]*f[50]*f[53])/(6*U[2] - U[3]) + (14*f_46_2*sin2th*f[19]*f[21]*f[50]*f[53])/(6*U[2] - U[3]) + (14*f_47_2*sin2th*f[19]*f[21]*f[50]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_46_2*f[18]*f[20]*f[51]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_47_2*f[18]*f[20]*f[51]*f[53])/(6*U[2] - U[3]) + (14*f_46_2*sin2th*f[19]*f[20]*f[51]*f[53])/(6*U[2] - U[3]) + (14*f_47_2*sin2th*f[19]*f[20]*f[51]*f[53])/(6*U[2] - U[3]) - (14*f_46_2*sin2th*f[18]*f[21]*f[51]*f[53])/(6*U[2] - U[3]) - (14*f_47_2*sin2th*f[18]*f[21]*f[51]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_46_2*f[19]*f[21]*f[51]*f[53])/(6*U[2] - U[3]) + (14*cos2th*f_47_2*f[19]*f[21]*f[51]*f[53])/(6*U[2] - U[3]) - (2*cos2th*f_34_2*f[18]*f[20]*f[50]*f[52])/U[3] - (2*cos2th*f_35_2*f[18]*f[20]*f[50]*f[52])/U[3] - (2*f_34_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[3] - (2*f_35_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[3] + (2*f_34_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[3] + (2*f_35_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[3] - (2*cos2th*f_34_2*f[19]*f[21]*f[50]*f[52])/U[3] - (2*cos2th*f_35_2*f[19]*f[21]*f[50]*f[52])/U[3] + (2*f_34_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[3] + (2*f_35_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[3] - (2*cos2th*f_34_2*f[19]*f[20]*f[51]*f[52])/U[3] - (2*cos2th*f_35_2*f[19]*f[20]*f[51]*f[52])/U[3] + (2*cos2th*f_34_2*f[18]*f[21]*f[51]*f[52])/U[3] + (2*cos2th*f_35_2*f[18]*f[21]*f[51]*f[52])/U[3] + (2*f_34_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[3] + (2*f_35_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[3] - (2*f_34_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[3] - (2*f_35_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[3] + (2*cos2th*f_34_2*f[19]*f[20]*f[50]*f[53])/U[3] + (2*cos2th*f_35_2*f[19]*f[20]*f[50]*f[53])/U[3] - (2*cos2th*f_34_2*f[18]*f[21]*f[50]*f[53])/U[3] - (2*cos2th*f_35_2*f[18]*f[21]*f[50]*f[53])/U[3] - (2*f_34_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[3] - (2*f_35_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[3] - (2*cos2th*f_34_2*f[18]*f[20]*f[51]*f[53])/U[3] - (2*cos2th*f_35_2*f[18]*f[20]*f[51]*f[53])/U[3] - (2*f_34_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[3] - (2*f_35_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[3] + (2*f_34_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[3] + (2*f_35_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[3] - (2*cos2th*f_34_2*f[19]*f[21]*f[51]*f[53])/U[3] - (2*cos2th*f_35_2*f[19]*f[21]*f[51]*f[53])/U[3] - (3*cos2th*f_34_2*f[20]*f[22]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_35_2*f[20]*f[22]*f[52]*f[54])/(2.*U[3]) - (3*f_34_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[3]) - (3*f_35_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[3]) + (3*f_34_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[3]) + (3*f_35_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_34_2*f[21]*f[23]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_35_2*f[21]*f[23]*f[52]*f[54])/(2.*U[3]) + (3*f_34_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[3]) + (3*f_35_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_34_2*f[21]*f[22]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_35_2*f[21]*f[22]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_34_2*f[20]*f[23]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_35_2*f[20]*f[23]*f[53]*f[54])/(2.*U[3]) + (3*f_34_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[3]) + (3*f_35_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[3]) - (3*f_34_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[3]) - (3*f_35_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_34_2*f[21]*f[22]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_35_2*f[21]*f[22]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_34_2*f[20]*f[23]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_35_2*f[20]*f[23]*f[52]*f[55])/(2.*U[3]) - (3*f_34_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[3]) - (3*f_35_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_34_2*f[20]*f[22]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_35_2*f[20]*f[22]*f[53]*f[55])/(2.*U[3]) - (3*f_34_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[3]) - (3*f_35_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[3]) + (3*f_34_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[3]) + (3*f_35_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_34_2*f[21]*f[23]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_35_2*f[21]*f[23]*f[53]*f[55])/(2.*U[3]) - (4*cos2th*f_34_2*f[22]*f[24]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_35_2*f[22]*f[24]*f[54]*f[56])/(3.*U[3]) - (4*f_34_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[3]) - (4*f_35_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[3]) + (4*f_34_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[3]) + (4*f_35_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_34_2*f[23]*f[25]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_35_2*f[23]*f[25]*f[54]*f[56])/(3.*U[3]) + (4*f_34_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[3]) + (4*f_35_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_34_2*f[23]*f[24]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_35_2*f[23]*f[24]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_34_2*f[22]*f[25]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_35_2*f[22]*f[25]*f[55]*f[56])/(3.*U[3]) + (4*f_34_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[3]) + (4*f_35_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[3]) - (4*f_34_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[3]) - (4*f_35_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_34_2*f[23]*f[24]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_35_2*f[23]*f[24]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_34_2*f[22]*f[25]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_35_2*f[22]*f[25]*f[54]*f[57])/(3.*U[3]) - (4*f_34_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[3]) - (4*f_35_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_34_2*f[22]*f[24]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_35_2*f[22]*f[24]*f[55]*f[57])/(3.*U[3]) - (4*f_34_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[3]) - (4*f_35_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[3]) + (4*f_34_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[3]) + (4*f_35_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_34_2*f[23]*f[25]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_35_2*f[23]*f[25]*f[55]*f[57])/(3.*U[3]) - (5*cos2th*f_34_2*f[24]*f[26]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_35_2*f[24]*f[26]*f[56]*f[58])/(4.*U[3]) - (5*f_34_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[3]) - (5*f_35_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[3]) + (5*f_34_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[3]) + (5*f_35_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_34_2*f[25]*f[27]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_35_2*f[25]*f[27]*f[56]*f[58])/(4.*U[3]) + (5*f_34_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[3]) + (5*f_35_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_34_2*f[25]*f[26]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_35_2*f[25]*f[26]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_34_2*f[24]*f[27]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_35_2*f[24]*f[27]*f[57]*f[58])/(4.*U[3]) + (5*f_34_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[3]) + (5*f_35_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[3]) - (5*f_34_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[3]) - (5*f_35_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_34_2*f[25]*f[26]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_35_2*f[25]*f[26]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_34_2*f[24]*f[27]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_35_2*f[24]*f[27]*f[56]*f[59])/(4.*U[3]) - (5*f_34_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[3]) - (5*f_35_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_34_2*f[24]*f[26]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_35_2*f[24]*f[26]*f[57]*f[59])/(4.*U[3]) - (5*f_34_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[3]) - (5*f_35_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[3]) + (5*f_34_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[3]) + (5*f_35_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_34_2*f[25]*f[27]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_35_2*f[25]*f[27]*f[57]*f[59])/(4.*U[3]) - (6*cos2th*f_34_2*f[26]*f[28]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_35_2*f[26]*f[28]*f[58]*f[60])/(5.*U[3]) - (6*f_34_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[3]) - (6*f_35_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[3]) + (6*f_34_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[3]) + (6*f_35_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_34_2*f[27]*f[29]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_35_2*f[27]*f[29]*f[58]*f[60])/(5.*U[3]) + (6*f_34_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[3]) + (6*f_35_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_34_2*f[27]*f[28]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_35_2*f[27]*f[28]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_34_2*f[26]*f[29]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_35_2*f[26]*f[29]*f[59]*f[60])/(5.*U[3]) + (6*f_34_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[3]) + (6*f_35_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[3]) - (6*f_34_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[3]) - (6*f_35_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_34_2*f[27]*f[28]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_35_2*f[27]*f[28]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_34_2*f[26]*f[29]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_35_2*f[26]*f[29]*f[58]*f[61])/(5.*U[3]) - (6*f_34_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[3]) - (6*f_35_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_34_2*f[26]*f[28]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_35_2*f[26]*f[28]*f[59]*f[61])/(5.*U[3]) - (6*f_34_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[3]) - (6*f_35_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[3]) + (6*f_34_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[3]) + (6*f_35_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_34_2*f[27]*f[29]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_35_2*f[27]*f[29]*f[59]*f[61])/(5.*U[3]) - (7*cos2th*f_34_2*f[28]*f[30]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_35_2*f[28]*f[30]*f[60]*f[62])/(6.*U[3]) - (7*f_34_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[3]) - (7*f_35_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[3]) + (7*f_34_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[3]) + (7*f_35_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_34_2*f[29]*f[31]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_35_2*f[29]*f[31]*f[60]*f[62])/(6.*U[3]) + (7*f_34_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[3]) + (7*f_35_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_34_2*f[29]*f[30]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_35_2*f[29]*f[30]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_34_2*f[28]*f[31]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_35_2*f[28]*f[31]*f[61]*f[62])/(6.*U[3]) + (7*f_34_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[3]) + (7*f_35_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[3]) - (7*f_34_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[3]) - (7*f_35_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_34_2*f[29]*f[30]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_35_2*f[29]*f[30]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_34_2*f[28]*f[31]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_35_2*f[28]*f[31]*f[60]*f[63])/(6.*U[3]) - (7*f_34_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[3]) - (7*f_35_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_34_2*f[28]*f[30]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_35_2*f[28]*f[30]*f[61]*f[63])/(6.*U[3]) - (7*f_34_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[3]) - (7*f_35_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[3]) + (7*f_34_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[3]) + (7*f_35_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_34_2*f[29]*f[31]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_35_2*f[29]*f[31]*f[61]*f[63])/(6.*U[3])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + (J[2]*J[3]*((2*cos2th*f_48_2*f[34]*f[36]*f[66]*f[68])/U[2] + (2*cos2th*f_49_2*f[34]*f[36]*f[66]*f[68])/U[2] + (2*f_48_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[2] + (2*f_49_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[2] - (2*f_48_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[2] - (2*f_49_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[2] + (2*cos2th*f_48_2*f[35]*f[37]*f[66]*f[68])/U[2] + (2*cos2th*f_49_2*f[35]*f[37]*f[66]*f[68])/U[2] - (2*f_48_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[2] - (2*f_49_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[2] + (2*cos2th*f_48_2*f[35]*f[36]*f[67]*f[68])/U[2] + (2*cos2th*f_49_2*f[35]*f[36]*f[67]*f[68])/U[2] - (2*cos2th*f_48_2*f[34]*f[37]*f[67]*f[68])/U[2] - (2*cos2th*f_49_2*f[34]*f[37]*f[67]*f[68])/U[2] - (2*f_48_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[2] - (2*f_49_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[2] + (2*f_48_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[2] + (2*f_49_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[2] - (2*cos2th*f_48_2*f[35]*f[36]*f[66]*f[69])/U[2] - (2*cos2th*f_49_2*f[35]*f[36]*f[66]*f[69])/U[2] + (2*cos2th*f_48_2*f[34]*f[37]*f[66]*f[69])/U[2] + (2*cos2th*f_49_2*f[34]*f[37]*f[66]*f[69])/U[2] + (2*f_48_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[2] + (2*f_49_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[2] + (2*cos2th*f_48_2*f[34]*f[36]*f[67]*f[69])/U[2] + (2*cos2th*f_49_2*f[34]*f[36]*f[67]*f[69])/U[2] + (2*f_48_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[2] + (2*f_49_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[2] - (2*f_48_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[2] - (2*f_49_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[2] + (2*cos2th*f_48_2*f[35]*f[37]*f[67]*f[69])/U[2] + (2*cos2th*f_49_2*f[35]*f[37]*f[67]*f[69])/U[2] + (3*cos2th*f_48_2*f[36]*f[38]*f[68]*f[70])/(2.*U[2]) + (3*cos2th*f_49_2*f[36]*f[38]*f[68]*f[70])/(2.*U[2]) + (3*f_48_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[2]) + (3*f_49_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[2]) - (3*f_48_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[2]) - (3*f_49_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[2]) + (3*cos2th*f_48_2*f[37]*f[39]*f[68]*f[70])/(2.*U[2]) + (3*cos2th*f_49_2*f[37]*f[39]*f[68]*f[70])/(2.*U[2]) - (3*f_48_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[2]) - (3*f_49_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[2]) + (3*cos2th*f_48_2*f[37]*f[38]*f[69]*f[70])/(2.*U[2]) + (3*cos2th*f_49_2*f[37]*f[38]*f[69]*f[70])/(2.*U[2]) - (3*cos2th*f_48_2*f[36]*f[39]*f[69]*f[70])/(2.*U[2]) - (3*cos2th*f_49_2*f[36]*f[39]*f[69]*f[70])/(2.*U[2]) - (3*f_48_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[2]) - (3*f_49_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[2]) + (3*f_48_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[2]) + (3*f_49_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_48_2*f[37]*f[38]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_49_2*f[37]*f[38]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_48_2*f[36]*f[39]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_49_2*f[36]*f[39]*f[68]*f[71])/(2.*U[2]) + (3*f_48_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[2]) + (3*f_49_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_48_2*f[36]*f[38]*f[69]*f[71])/(2.*U[2]) + (3*cos2th*f_49_2*f[36]*f[38]*f[69]*f[71])/(2.*U[2]) + (3*f_48_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[2]) + (3*f_49_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[2]) - (3*f_48_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[2]) - (3*f_49_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[2]) + (3*cos2th*f_48_2*f[37]*f[39]*f[69]*f[71])/(2.*U[2]) + (3*cos2th*f_49_2*f[37]*f[39]*f[69]*f[71])/(2.*U[2]) + (4*cos2th*f_48_2*f[38]*f[40]*f[70]*f[72])/(3.*U[2]) + (4*cos2th*f_49_2*f[38]*f[40]*f[70]*f[72])/(3.*U[2]) + (4*f_48_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[2]) + (4*f_49_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[2]) - (4*f_48_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[2]) - (4*f_49_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[2]) + (4*cos2th*f_48_2*f[39]*f[41]*f[70]*f[72])/(3.*U[2]) + (4*cos2th*f_49_2*f[39]*f[41]*f[70]*f[72])/(3.*U[2]) - (4*f_48_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[2]) - (4*f_49_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[2]) + (4*cos2th*f_48_2*f[39]*f[40]*f[71]*f[72])/(3.*U[2]) + (4*cos2th*f_49_2*f[39]*f[40]*f[71]*f[72])/(3.*U[2]) - (4*cos2th*f_48_2*f[38]*f[41]*f[71]*f[72])/(3.*U[2]) - (4*cos2th*f_49_2*f[38]*f[41]*f[71]*f[72])/(3.*U[2]) - (4*f_48_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[2]) - (4*f_49_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[2]) + (4*f_48_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[2]) + (4*f_49_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_48_2*f[39]*f[40]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_49_2*f[39]*f[40]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_48_2*f[38]*f[41]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_49_2*f[38]*f[41]*f[70]*f[73])/(3.*U[2]) + (4*f_48_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[2]) + (4*f_49_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_48_2*f[38]*f[40]*f[71]*f[73])/(3.*U[2]) + (4*cos2th*f_49_2*f[38]*f[40]*f[71]*f[73])/(3.*U[2]) + (4*f_48_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[2]) + (4*f_49_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[2]) - (4*f_48_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[2]) - (4*f_49_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[2]) + (4*cos2th*f_48_2*f[39]*f[41]*f[71]*f[73])/(3.*U[2]) + (4*cos2th*f_49_2*f[39]*f[41]*f[71]*f[73])/(3.*U[2]) + (5*cos2th*f_48_2*f[40]*f[42]*f[72]*f[74])/(4.*U[2]) + (5*cos2th*f_49_2*f[40]*f[42]*f[72]*f[74])/(4.*U[2]) + (5*f_48_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[2]) + (5*f_49_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[2]) - (5*f_48_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[2]) - (5*f_49_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[2]) + (5*cos2th*f_48_2*f[41]*f[43]*f[72]*f[74])/(4.*U[2]) + (5*cos2th*f_49_2*f[41]*f[43]*f[72]*f[74])/(4.*U[2]) - (5*f_48_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[2]) - (5*f_49_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[2]) + (5*cos2th*f_48_2*f[41]*f[42]*f[73]*f[74])/(4.*U[2]) + (5*cos2th*f_49_2*f[41]*f[42]*f[73]*f[74])/(4.*U[2]) - (5*cos2th*f_48_2*f[40]*f[43]*f[73]*f[74])/(4.*U[2]) - (5*cos2th*f_49_2*f[40]*f[43]*f[73]*f[74])/(4.*U[2]) - (5*f_48_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[2]) - (5*f_49_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[2]) + (5*f_48_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[2]) + (5*f_49_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_48_2*f[41]*f[42]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_49_2*f[41]*f[42]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_48_2*f[40]*f[43]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_49_2*f[40]*f[43]*f[72]*f[75])/(4.*U[2]) + (5*f_48_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[2]) + (5*f_49_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_48_2*f[40]*f[42]*f[73]*f[75])/(4.*U[2]) + (5*cos2th*f_49_2*f[40]*f[42]*f[73]*f[75])/(4.*U[2]) + (5*f_48_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[2]) + (5*f_49_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[2]) - (5*f_48_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[2]) - (5*f_49_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[2]) + (5*cos2th*f_48_2*f[41]*f[43]*f[73]*f[75])/(4.*U[2]) + (5*cos2th*f_49_2*f[41]*f[43]*f[73]*f[75])/(4.*U[2]) + (6*cos2th*f_48_2*f[42]*f[44]*f[74]*f[76])/(5.*U[2]) + (6*cos2th*f_49_2*f[42]*f[44]*f[74]*f[76])/(5.*U[2]) + (6*f_48_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[2]) + (6*f_49_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[2]) - (6*f_48_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[2]) - (6*f_49_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[2]) + (6*cos2th*f_48_2*f[43]*f[45]*f[74]*f[76])/(5.*U[2]) + (6*cos2th*f_49_2*f[43]*f[45]*f[74]*f[76])/(5.*U[2]) - (6*f_48_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[2]) - (6*f_49_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[2]) + (6*cos2th*f_48_2*f[43]*f[44]*f[75]*f[76])/(5.*U[2]) + (6*cos2th*f_49_2*f[43]*f[44]*f[75]*f[76])/(5.*U[2]) - (6*cos2th*f_48_2*f[42]*f[45]*f[75]*f[76])/(5.*U[2]) - (6*cos2th*f_49_2*f[42]*f[45]*f[75]*f[76])/(5.*U[2]) - (6*f_48_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[2]) - (6*f_49_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[2]) + (6*f_48_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[2]) + (6*f_49_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_48_2*f[43]*f[44]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_49_2*f[43]*f[44]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_48_2*f[42]*f[45]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_49_2*f[42]*f[45]*f[74]*f[77])/(5.*U[2]) + (6*f_48_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[2]) + (6*f_49_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_48_2*f[42]*f[44]*f[75]*f[77])/(5.*U[2]) + (6*cos2th*f_49_2*f[42]*f[44]*f[75]*f[77])/(5.*U[2]) + (6*f_48_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[2]) + (6*f_49_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[2]) - (6*f_48_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[2]) - (6*f_49_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[2]) + (6*cos2th*f_48_2*f[43]*f[45]*f[75]*f[77])/(5.*U[2]) + (6*cos2th*f_49_2*f[43]*f[45]*f[75]*f[77])/(5.*U[2]) + (7*cos2th*f_48_2*f[44]*f[46]*f[76]*f[78])/(6.*U[2]) + (7*cos2th*f_49_2*f[44]*f[46]*f[76]*f[78])/(6.*U[2]) + (7*f_48_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[2]) + (7*f_49_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[2]) - (7*f_48_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[2]) - (7*f_49_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[2]) + (7*cos2th*f_48_2*f[45]*f[47]*f[76]*f[78])/(6.*U[2]) + (7*cos2th*f_49_2*f[45]*f[47]*f[76]*f[78])/(6.*U[2]) - (7*f_48_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[2]) - (7*f_49_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[2]) + (7*cos2th*f_48_2*f[45]*f[46]*f[77]*f[78])/(6.*U[2]) + (7*cos2th*f_49_2*f[45]*f[46]*f[77]*f[78])/(6.*U[2]) - (7*cos2th*f_48_2*f[44]*f[47]*f[77]*f[78])/(6.*U[2]) - (7*cos2th*f_49_2*f[44]*f[47]*f[77]*f[78])/(6.*U[2]) - (7*f_48_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[2]) - (7*f_49_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[2]) + (7*f_48_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[2]) + (7*f_49_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_48_2*f[45]*f[46]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_49_2*f[45]*f[46]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_48_2*f[44]*f[47]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_49_2*f[44]*f[47]*f[76]*f[79])/(6.*U[2]) + (7*f_48_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[2]) + (7*f_49_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_48_2*f[44]*f[46]*f[77]*f[79])/(6.*U[2]) + (7*cos2th*f_49_2*f[44]*f[46]*f[77]*f[79])/(6.*U[2]) + (7*f_48_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[2]) + (7*f_49_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[2]) - (7*f_48_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[2]) - (7*f_49_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[2]) + (7*cos2th*f_48_2*f[45]*f[47]*f[77]*f[79])/(6.*U[2]) + (7*cos2th*f_49_2*f[45]*f[47]*f[77]*f[79])/(6.*U[2]) + (14*cos2th*f_60_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_61_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*f_60_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*f_61_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 6*U[3]) - (14*f_60_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 6*U[3]) - (14*f_61_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_60_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_61_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 6*U[3]) - (14*f_60_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*f_61_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_60_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_61_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*cos2th*f_60_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*cos2th*f_61_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*f_60_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*f_61_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 6*U[3]) + (14*f_60_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*f_61_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 6*U[3]) - (14*cos2th*f_60_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 6*U[3]) - (14*cos2th*f_61_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_60_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_61_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*f_60_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*f_61_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_60_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_61_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*f_60_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*f_61_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 6*U[3]) - (14*f_60_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 6*U[3]) - (14*f_61_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_60_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_61_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 6*U[3]) + (21*cos2th*f_60_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_61_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*f_60_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*f_61_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 6*U[3]) - (21*f_60_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 6*U[3]) - (21*f_61_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_60_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_61_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 6*U[3]) - (21*f_60_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*f_61_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_60_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_61_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*cos2th*f_60_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*cos2th*f_61_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*f_60_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*f_61_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 6*U[3]) + (21*f_60_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*f_61_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 6*U[3]) - (21*cos2th*f_60_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 6*U[3]) - (21*cos2th*f_61_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_60_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_61_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*f_60_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*f_61_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_60_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_61_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*f_60_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*f_61_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 6*U[3]) - (21*f_60_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 6*U[3]) - (21*f_61_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_60_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_61_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (28*cos2th*f_60_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_61_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*f_60_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*f_61_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 6*U[3]) - (28*f_60_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 6*U[3]) - (28*f_61_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_60_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_61_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 6*U[3]) - (28*f_60_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*f_61_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_60_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_61_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*cos2th*f_60_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*cos2th*f_61_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*f_60_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*f_61_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 6*U[3]) + (28*f_60_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*f_61_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 6*U[3]) - (28*cos2th*f_60_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 6*U[3]) - (28*cos2th*f_61_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_60_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_61_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*f_60_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*f_61_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_60_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_61_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*f_60_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*f_61_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 6*U[3]) - (28*f_60_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 6*U[3]) - (28*f_61_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_60_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_61_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (35*cos2th*f_60_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_61_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*f_60_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*f_61_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 6*U[3]) - (35*f_60_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 6*U[3]) - (35*f_61_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_60_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_61_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 6*U[3]) - (35*f_60_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*f_61_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_60_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_61_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*cos2th*f_60_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*cos2th*f_61_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*f_60_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*f_61_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 6*U[3]) + (35*f_60_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*f_61_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 6*U[3]) - (35*cos2th*f_60_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 6*U[3]) - (35*cos2th*f_61_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_60_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_61_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*f_60_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*f_61_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_60_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_61_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*f_60_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*f_61_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 6*U[3]) - (35*f_60_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 6*U[3]) - (35*f_61_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_60_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_61_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (42*cos2th*f_60_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_61_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*f_60_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*f_61_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 6*U[3]) - (42*f_60_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 6*U[3]) - (42*f_61_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_60_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_61_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 6*U[3]) - (42*f_60_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*f_61_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_60_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_61_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*cos2th*f_60_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*cos2th*f_61_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*f_60_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*f_61_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 6*U[3]) + (42*f_60_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*f_61_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 6*U[3]) - (42*cos2th*f_60_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 6*U[3]) - (42*cos2th*f_61_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_60_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_61_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*f_60_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*f_61_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_60_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_61_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*f_60_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*f_61_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 6*U[3]) - (42*f_60_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 6*U[3]) - (42*f_61_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_60_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_61_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (12*cos2th*f_58_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_59_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*f_58_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*f_59_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 5*U[3]) - (12*f_58_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 5*U[3]) - (12*f_59_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_58_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_59_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 5*U[3]) - (12*f_58_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*f_59_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_58_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_59_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*cos2th*f_58_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*cos2th*f_59_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*f_58_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*f_59_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 5*U[3]) + (12*f_58_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*f_59_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 5*U[3]) - (12*cos2th*f_58_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 5*U[3]) - (12*cos2th*f_59_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_58_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_59_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*f_58_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*f_59_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_58_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_59_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*f_58_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*f_59_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 5*U[3]) - (12*f_58_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 5*U[3]) - (12*f_59_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_58_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_59_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 5*U[3]) + (18*cos2th*f_58_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_59_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*f_58_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*f_59_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 5*U[3]) - (18*f_58_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 5*U[3]) - (18*f_59_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_58_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_59_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 5*U[3]) - (18*f_58_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*f_59_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_58_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_59_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*cos2th*f_58_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*cos2th*f_59_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*f_58_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*f_59_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 5*U[3]) + (18*f_58_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*f_59_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 5*U[3]) - (18*cos2th*f_58_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 5*U[3]) - (18*cos2th*f_59_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_58_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_59_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*f_58_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*f_59_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_58_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_59_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*f_58_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*f_59_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 5*U[3]) - (18*f_58_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 5*U[3]) - (18*f_59_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_58_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_59_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (24*cos2th*f_58_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_59_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*f_58_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*f_59_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 5*U[3]) - (24*f_58_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 5*U[3]) - (24*f_59_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_58_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_59_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 5*U[3]) - (24*f_58_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*f_59_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_58_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_59_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*cos2th*f_58_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*cos2th*f_59_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*f_58_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*f_59_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 5*U[3]) + (24*f_58_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*f_59_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 5*U[3]) - (24*cos2th*f_58_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 5*U[3]) - (24*cos2th*f_59_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_58_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_59_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*f_58_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*f_59_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_58_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_59_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*f_58_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*f_59_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 5*U[3]) - (24*f_58_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 5*U[3]) - (24*f_59_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_58_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_59_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (30*cos2th*f_58_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_59_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*f_58_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*f_59_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 5*U[3]) - (30*f_58_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 5*U[3]) - (30*f_59_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_58_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_59_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 5*U[3]) - (30*f_58_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*f_59_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_58_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_59_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*cos2th*f_58_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*cos2th*f_59_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*f_58_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*f_59_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 5*U[3]) + (30*f_58_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*f_59_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 5*U[3]) - (30*cos2th*f_58_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 5*U[3]) - (30*cos2th*f_59_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_58_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_59_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*f_58_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*f_59_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_58_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_59_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*f_58_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*f_59_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 5*U[3]) - (30*f_58_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 5*U[3]) - (30*f_59_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_58_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_59_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (42*cos2th*f_58_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_59_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*f_58_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*f_59_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 5*U[3]) - (42*f_58_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 5*U[3]) - (42*f_59_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_58_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_59_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 5*U[3]) - (42*f_58_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*f_59_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_58_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_59_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*cos2th*f_58_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*cos2th*f_59_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*f_58_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*f_59_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 5*U[3]) + (42*f_58_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*f_59_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 5*U[3]) - (42*cos2th*f_58_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 5*U[3]) - (42*cos2th*f_59_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_58_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_59_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*f_58_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*f_59_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_58_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_59_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*f_58_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*f_59_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 5*U[3]) - (42*f_58_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 5*U[3]) - (42*f_59_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_58_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_59_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (10*cos2th*f_56_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_57_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*f_56_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*f_57_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 4*U[3]) - (10*f_56_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 4*U[3]) - (10*f_57_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_56_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_57_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 4*U[3]) - (10*f_56_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*f_57_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_56_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_57_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*cos2th*f_56_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*cos2th*f_57_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*f_56_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*f_57_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 4*U[3]) + (10*f_56_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*f_57_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 4*U[3]) - (10*cos2th*f_56_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 4*U[3]) - (10*cos2th*f_57_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_56_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_57_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*f_56_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*f_57_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_56_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_57_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*f_56_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*f_57_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 4*U[3]) - (10*f_56_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 4*U[3]) - (10*f_57_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_56_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_57_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 4*U[3]) + (15*cos2th*f_56_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_57_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*f_56_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*f_57_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 4*U[3]) - (15*f_56_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 4*U[3]) - (15*f_57_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_56_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_57_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 4*U[3]) - (15*f_56_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*f_57_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_56_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_57_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*cos2th*f_56_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*cos2th*f_57_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*f_56_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*f_57_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 4*U[3]) + (15*f_56_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*f_57_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 4*U[3]) - (15*cos2th*f_56_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 4*U[3]) - (15*cos2th*f_57_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_56_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_57_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*f_56_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*f_57_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_56_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_57_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*f_56_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*f_57_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 4*U[3]) - (15*f_56_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 4*U[3]) - (15*f_57_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_56_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_57_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (20*cos2th*f_56_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_57_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*f_56_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*f_57_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 4*U[3]) - (20*f_56_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 4*U[3]) - (20*f_57_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_56_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_57_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 4*U[3]) - (20*f_56_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*f_57_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_56_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_57_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*cos2th*f_56_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*cos2th*f_57_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*f_56_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*f_57_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 4*U[3]) + (20*f_56_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*f_57_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 4*U[3]) - (20*cos2th*f_56_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 4*U[3]) - (20*cos2th*f_57_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_56_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_57_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*f_56_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*f_57_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_56_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_57_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*f_56_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*f_57_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 4*U[3]) - (20*f_56_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 4*U[3]) - (20*f_57_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_56_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_57_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (30*cos2th*f_56_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_57_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*f_56_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*f_57_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 4*U[3]) - (30*f_56_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 4*U[3]) - (30*f_57_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_56_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_57_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 4*U[3]) - (30*f_56_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*f_57_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_56_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_57_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*cos2th*f_56_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*cos2th*f_57_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*f_56_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*f_57_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 4*U[3]) + (30*f_56_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*f_57_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 4*U[3]) - (30*cos2th*f_56_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 4*U[3]) - (30*cos2th*f_57_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_56_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_57_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*f_56_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*f_57_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_56_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_57_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*f_56_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*f_57_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 4*U[3]) - (30*f_56_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 4*U[3]) - (30*f_57_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_56_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_57_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (35*cos2th*f_56_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_57_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*f_56_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*f_57_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 4*U[3]) - (35*f_56_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 4*U[3]) - (35*f_57_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_56_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_57_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 4*U[3]) - (35*f_56_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*f_57_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_56_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_57_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*cos2th*f_56_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*cos2th*f_57_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*f_56_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*f_57_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 4*U[3]) + (35*f_56_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*f_57_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 4*U[3]) - (35*cos2th*f_56_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 4*U[3]) - (35*cos2th*f_57_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_56_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_57_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*f_56_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*f_57_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_56_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_57_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*f_56_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*f_57_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 4*U[3]) - (35*f_56_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 4*U[3]) - (35*f_57_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_56_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_57_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (8*cos2th*f_54_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_55_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*f_54_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*f_55_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 3*U[3]) - (8*f_54_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 3*U[3]) - (8*f_55_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_54_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_55_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 3*U[3]) - (8*f_54_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*f_55_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_54_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_55_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*cos2th*f_54_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*cos2th*f_55_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*f_54_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*f_55_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 3*U[3]) + (8*f_54_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*f_55_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 3*U[3]) - (8*cos2th*f_54_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 3*U[3]) - (8*cos2th*f_55_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_54_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_55_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*f_54_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*f_55_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_54_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_55_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*f_54_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*f_55_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 3*U[3]) - (8*f_54_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 3*U[3]) - (8*f_55_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_54_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_55_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 3*U[3]) + (12*cos2th*f_54_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_55_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*f_54_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*f_55_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 3*U[3]) - (12*f_54_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 3*U[3]) - (12*f_55_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_54_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_55_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 3*U[3]) - (12*f_54_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*f_55_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_54_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_55_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*cos2th*f_54_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*cos2th*f_55_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*f_54_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*f_55_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 3*U[3]) + (12*f_54_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*f_55_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 3*U[3]) - (12*cos2th*f_54_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 3*U[3]) - (12*cos2th*f_55_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_54_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_55_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*f_54_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*f_55_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_54_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_55_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*f_54_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*f_55_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 3*U[3]) - (12*f_54_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 3*U[3]) - (12*f_55_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_54_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_55_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (20*cos2th*f_54_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_55_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*f_54_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*f_55_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 3*U[3]) - (20*f_54_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 3*U[3]) - (20*f_55_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_54_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_55_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 3*U[3]) - (20*f_54_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*f_55_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_54_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_55_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*cos2th*f_54_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*cos2th*f_55_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*f_54_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*f_55_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 3*U[3]) + (20*f_54_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*f_55_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 3*U[3]) - (20*cos2th*f_54_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 3*U[3]) - (20*cos2th*f_55_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_54_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_55_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*f_54_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*f_55_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_54_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_55_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*f_54_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*f_55_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 3*U[3]) - (20*f_54_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 3*U[3]) - (20*f_55_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_54_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_55_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (24*cos2th*f_54_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_55_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*f_54_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*f_55_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 3*U[3]) - (24*f_54_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 3*U[3]) - (24*f_55_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_54_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_55_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 3*U[3]) - (24*f_54_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*f_55_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_54_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_55_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*cos2th*f_54_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*cos2th*f_55_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*f_54_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*f_55_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 3*U[3]) + (24*f_54_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*f_55_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 3*U[3]) - (24*cos2th*f_54_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 3*U[3]) - (24*cos2th*f_55_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_54_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_55_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*f_54_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*f_55_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_54_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_55_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*f_54_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*f_55_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 3*U[3]) - (24*f_54_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 3*U[3]) - (24*f_55_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_54_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_55_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (28*cos2th*f_54_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_55_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*f_54_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*f_55_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 3*U[3]) - (28*f_54_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 3*U[3]) - (28*f_55_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_54_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_55_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 3*U[3]) - (28*f_54_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*f_55_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_54_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_55_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*cos2th*f_54_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*cos2th*f_55_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*f_54_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*f_55_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 3*U[3]) + (28*f_54_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*f_55_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 3*U[3]) - (28*cos2th*f_54_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 3*U[3]) - (28*cos2th*f_55_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_54_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_55_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*f_54_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*f_55_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_54_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_55_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*f_54_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*f_55_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 3*U[3]) - (28*f_54_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 3*U[3]) - (28*f_55_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_54_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_55_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (6*cos2th*f_52_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_53_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*f_52_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*f_53_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 2*U[3]) - (6*f_52_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 2*U[3]) - (6*f_53_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_52_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_53_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 2*U[3]) - (6*f_52_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*f_53_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_52_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_53_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*cos2th*f_52_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*cos2th*f_53_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*f_52_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*f_53_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 2*U[3]) + (6*f_52_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*f_53_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 2*U[3]) - (6*cos2th*f_52_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 2*U[3]) - (6*cos2th*f_53_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_52_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_53_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*f_52_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*f_53_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_52_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_53_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*f_52_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*f_53_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 2*U[3]) - (6*f_52_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 2*U[3]) - (6*f_53_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_52_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_53_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 2*U[3]) + (12*cos2th*f_52_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_53_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*f_52_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*f_53_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 2*U[3]) - (12*f_52_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 2*U[3]) - (12*f_53_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_52_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_53_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 2*U[3]) - (12*f_52_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*f_53_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_52_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_53_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*cos2th*f_52_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*cos2th*f_53_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*f_52_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*f_53_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 2*U[3]) + (12*f_52_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*f_53_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 2*U[3]) - (12*cos2th*f_52_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 2*U[3]) - (12*cos2th*f_53_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_52_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_53_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*f_52_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*f_53_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_52_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_53_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*f_52_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*f_53_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 2*U[3]) - (12*f_52_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 2*U[3]) - (12*f_53_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_52_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_53_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (15*cos2th*f_52_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_53_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*f_52_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*f_53_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 2*U[3]) - (15*f_52_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 2*U[3]) - (15*f_53_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_52_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_53_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 2*U[3]) - (15*f_52_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*f_53_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_52_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_53_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*cos2th*f_52_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*cos2th*f_53_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*f_52_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*f_53_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 2*U[3]) + (15*f_52_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*f_53_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 2*U[3]) - (15*cos2th*f_52_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 2*U[3]) - (15*cos2th*f_53_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_52_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_53_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*f_52_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*f_53_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_52_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_53_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*f_52_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*f_53_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 2*U[3]) - (15*f_52_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 2*U[3]) - (15*f_53_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_52_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_53_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (18*cos2th*f_52_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_53_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*f_52_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*f_53_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 2*U[3]) - (18*f_52_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 2*U[3]) - (18*f_53_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_52_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_53_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 2*U[3]) - (18*f_52_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*f_53_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_52_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_53_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*cos2th*f_52_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*cos2th*f_53_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*f_52_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*f_53_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 2*U[3]) + (18*f_52_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*f_53_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 2*U[3]) - (18*cos2th*f_52_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 2*U[3]) - (18*cos2th*f_53_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_52_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_53_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*f_52_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*f_53_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_52_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_53_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*f_52_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*f_53_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 2*U[3]) - (18*f_52_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 2*U[3]) - (18*f_53_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_52_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_53_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (21*cos2th*f_52_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_53_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*f_52_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*f_53_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 2*U[3]) - (21*f_52_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 2*U[3]) - (21*f_53_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_52_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_53_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 2*U[3]) - (21*f_52_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*f_53_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_52_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_53_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*cos2th*f_52_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*cos2th*f_53_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*f_52_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*f_53_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 2*U[3]) + (21*f_52_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*f_53_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 2*U[3]) - (21*cos2th*f_52_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 2*U[3]) - (21*cos2th*f_53_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_52_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_53_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*f_52_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*f_53_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_52_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_53_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*f_52_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*f_53_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 2*U[3]) - (21*f_52_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 2*U[3]) - (21*f_53_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_52_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_53_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (6*cos2th*f_50_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_51_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - U[3]) + (6*f_50_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - U[3]) + (6*f_51_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - U[3]) - (6*f_50_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - U[3]) - (6*f_51_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_50_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_51_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - U[3]) - (6*f_50_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - U[3]) - (6*f_51_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_50_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_51_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - U[3]) - (6*cos2th*f_50_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - U[3]) - (6*cos2th*f_51_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - U[3]) - (6*f_50_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - U[3]) - (6*f_51_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - U[3]) + (6*f_50_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - U[3]) + (6*f_51_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - U[3]) - (6*cos2th*f_50_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - U[3]) - (6*cos2th*f_51_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_50_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_51_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - U[3]) + (6*f_50_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - U[3]) + (6*f_51_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_50_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_51_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - U[3]) + (6*f_50_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - U[3]) + (6*f_51_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - U[3]) - (6*f_50_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - U[3]) - (6*f_51_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_50_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_51_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - U[3]) + (8*cos2th*f_50_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_51_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - U[3]) + (8*f_50_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - U[3]) + (8*f_51_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - U[3]) - (8*f_50_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - U[3]) - (8*f_51_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_50_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_51_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - U[3]) - (8*f_50_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - U[3]) - (8*f_51_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_50_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_51_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - U[3]) - (8*cos2th*f_50_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - U[3]) - (8*cos2th*f_51_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - U[3]) - (8*f_50_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - U[3]) - (8*f_51_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - U[3]) + (8*f_50_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - U[3]) + (8*f_51_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - U[3]) - (8*cos2th*f_50_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - U[3]) - (8*cos2th*f_51_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_50_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_51_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - U[3]) + (8*f_50_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - U[3]) + (8*f_51_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_50_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_51_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - U[3]) + (8*f_50_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - U[3]) + (8*f_51_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - U[3]) - (8*f_50_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - U[3]) - (8*f_51_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_50_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_51_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - U[3]) + (10*cos2th*f_50_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_51_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - U[3]) + (10*f_50_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - U[3]) + (10*f_51_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - U[3]) - (10*f_50_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - U[3]) - (10*f_51_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_50_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_51_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - U[3]) - (10*f_50_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - U[3]) - (10*f_51_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_50_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_51_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - U[3]) - (10*cos2th*f_50_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - U[3]) - (10*cos2th*f_51_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - U[3]) - (10*f_50_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - U[3]) - (10*f_51_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - U[3]) + (10*f_50_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - U[3]) + (10*f_51_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - U[3]) - (10*cos2th*f_50_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - U[3]) - (10*cos2th*f_51_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_50_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_51_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - U[3]) + (10*f_50_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - U[3]) + (10*f_51_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_50_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_51_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - U[3]) + (10*f_50_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - U[3]) + (10*f_51_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - U[3]) - (10*f_50_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - U[3]) - (10*f_51_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_50_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_51_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - U[3]) + (12*cos2th*f_50_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_51_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - U[3]) + (12*f_50_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - U[3]) + (12*f_51_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - U[3]) - (12*f_50_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - U[3]) - (12*f_51_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_50_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_51_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - U[3]) - (12*f_50_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - U[3]) - (12*f_51_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_50_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_51_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - U[3]) - (12*cos2th*f_50_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - U[3]) - (12*cos2th*f_51_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - U[3]) - (12*f_50_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - U[3]) - (12*f_51_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - U[3]) + (12*f_50_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - U[3]) + (12*f_51_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - U[3]) - (12*cos2th*f_50_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - U[3]) - (12*cos2th*f_51_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_50_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_51_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - U[3]) + (12*f_50_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - U[3]) + (12*f_51_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_50_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_51_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - U[3]) + (12*f_50_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - U[3]) + (12*f_51_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - U[3]) - (12*f_50_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - U[3]) - (12*f_51_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_50_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_51_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - U[3]) + (14*cos2th*f_50_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_51_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - U[3]) + (14*f_50_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - U[3]) + (14*f_51_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - U[3]) - (14*f_50_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - U[3]) - (14*f_51_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_50_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_51_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - U[3]) - (14*f_50_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - U[3]) - (14*f_51_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_50_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_51_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - U[3]) - (14*cos2th*f_50_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - U[3]) - (14*cos2th*f_51_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - U[3]) - (14*f_50_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - U[3]) - (14*f_51_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - U[3]) + (14*f_50_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - U[3]) + (14*f_51_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - U[3]) - (14*cos2th*f_50_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - U[3]) - (14*cos2th*f_51_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_50_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_51_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - U[3]) + (14*f_50_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - U[3]) + (14*f_51_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_50_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_51_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - U[3]) + (14*f_50_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - U[3]) + (14*f_51_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - U[3]) - (14*f_50_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - U[3]) - (14*f_51_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_50_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_51_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - U[3]) - (2*cos2th*f_50_2*f[32]*f[34]*f[64]*f[66])/U[3] - (2*cos2th*f_51_2*f[32]*f[34]*f[64]*f[66])/U[3] - (3*cos2th*f_52_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) - (3*cos2th*f_53_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) - (4*cos2th*f_54_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) - (4*cos2th*f_55_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) - (5*cos2th*f_56_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) - (5*cos2th*f_57_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) - (6*cos2th*f_58_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) - (6*cos2th*f_59_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) - (7*cos2th*f_60_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) - (7*cos2th*f_61_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] - (2*f_51_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] - (3*f_52_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) - (3*f_53_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) - (4*f_54_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) - (4*f_55_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) - (5*f_56_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) - (5*f_57_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) - (6*f_58_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) - (6*f_59_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) - (7*f_60_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) - (7*f_61_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] + (2*f_51_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] + (3*f_52_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) + (3*f_53_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) + (4*f_54_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) + (4*f_55_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) + (5*f_56_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) + (5*f_57_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) + (6*f_58_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) + (6*f_59_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) + (7*f_60_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) + (7*f_61_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) - (2*cos2th*f_50_2*f[33]*f[35]*f[64]*f[66])/U[3] - (2*cos2th*f_51_2*f[33]*f[35]*f[64]*f[66])/U[3] - (3*cos2th*f_52_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) - (3*cos2th*f_53_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) - (4*cos2th*f_54_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) - (4*cos2th*f_55_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) - (5*cos2th*f_56_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) - (5*cos2th*f_57_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) - (6*cos2th*f_58_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) - (6*cos2th*f_59_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) - (7*cos2th*f_60_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) - (7*cos2th*f_61_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] + (2*f_51_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] + (3*f_52_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) + (3*f_53_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) + (4*f_54_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) + (4*f_55_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) + (5*f_56_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) + (5*f_57_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) + (6*f_58_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) + (6*f_59_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) + (7*f_60_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) + (7*f_61_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) - (2*cos2th*f_50_2*f[33]*f[34]*f[65]*f[66])/U[3] - (2*cos2th*f_51_2*f[33]*f[34]*f[65]*f[66])/U[3] - (3*cos2th*f_52_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) - (3*cos2th*f_53_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) - (4*cos2th*f_54_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) - (4*cos2th*f_55_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) - (5*cos2th*f_56_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) - (5*cos2th*f_57_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) - (6*cos2th*f_58_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) - (6*cos2th*f_59_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) - (7*cos2th*f_60_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) - (7*cos2th*f_61_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) + (2*cos2th*f_50_2*f[32]*f[35]*f[65]*f[66])/U[3] + (2*cos2th*f_51_2*f[32]*f[35]*f[65]*f[66])/U[3] + (3*cos2th*f_52_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) + (3*cos2th*f_53_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) + (4*cos2th*f_54_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) + (4*cos2th*f_55_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) + (5*cos2th*f_56_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) + (5*cos2th*f_57_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) + (6*cos2th*f_58_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) + (6*cos2th*f_59_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) + (7*cos2th*f_60_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) + (7*cos2th*f_61_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] + (2*f_51_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] + (3*f_52_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) + (3*f_53_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) + (4*f_54_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) + (4*f_55_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) + (5*f_56_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) + (5*f_57_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) + (6*f_58_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) + (6*f_59_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) + (7*f_60_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) + (7*f_61_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] - (2*f_51_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] - (3*f_52_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) - (3*f_53_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) - (4*f_54_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) - (4*f_55_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) - (5*f_56_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) - (5*f_57_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) - (6*f_58_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) - (6*f_59_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) - (7*f_60_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) - (7*f_61_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[33]*f[34]*f[64]*f[67])/U[3] + (2*cos2th*f_51_2*f[33]*f[34]*f[64]*f[67])/U[3] + (3*cos2th*f_52_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) + (3*cos2th*f_53_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) + (4*cos2th*f_54_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) + (4*cos2th*f_55_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) + (5*cos2th*f_56_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) + (5*cos2th*f_57_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) + (6*cos2th*f_58_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) + (6*cos2th*f_59_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) + (7*cos2th*f_60_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) + (7*cos2th*f_61_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_50_2*f[32]*f[35]*f[64]*f[67])/U[3] - (2*cos2th*f_51_2*f[32]*f[35]*f[64]*f[67])/U[3] - (3*cos2th*f_52_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) - (3*cos2th*f_53_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) - (4*cos2th*f_54_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) - (4*cos2th*f_55_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) - (5*cos2th*f_56_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) - (5*cos2th*f_57_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) - (6*cos2th*f_58_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) - (6*cos2th*f_59_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) - (7*cos2th*f_60_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) - (7*cos2th*f_61_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) - (2*f_50_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] - (2*f_51_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] - (3*f_52_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) - (3*f_53_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) - (4*f_54_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) - (4*f_55_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) - (5*f_56_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) - (5*f_57_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) - (6*f_58_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) - (6*f_59_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) - (7*f_60_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) - (7*f_61_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_50_2*f[32]*f[34]*f[65]*f[67])/U[3] - (2*cos2th*f_51_2*f[32]*f[34]*f[65]*f[67])/U[3] - (3*cos2th*f_52_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) - (3*cos2th*f_53_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) - (4*cos2th*f_54_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) - (4*cos2th*f_55_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) - (5*cos2th*f_56_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) - (5*cos2th*f_57_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) - (6*cos2th*f_58_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) - (6*cos2th*f_59_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) - (7*cos2th*f_60_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) - (7*cos2th*f_61_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) - (2*f_50_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] - (2*f_51_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] - (3*f_52_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) - (3*f_53_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) - (4*f_54_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) - (4*f_55_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) - (5*f_56_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) - (5*f_57_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) - (6*f_58_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) - (6*f_59_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) - (7*f_60_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) - (7*f_61_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) + (2*f_50_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] + (2*f_51_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] + (3*f_52_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) + (3*f_53_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) + (4*f_54_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) + (4*f_55_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) + (5*f_56_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) + (5*f_57_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) + (6*f_58_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) + (6*f_59_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) + (7*f_60_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) + (7*f_61_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) - (2*cos2th*f_50_2*f[33]*f[35]*f[65]*f[67])/U[3] - (2*cos2th*f_51_2*f[33]*f[35]*f[65]*f[67])/U[3] - (3*cos2th*f_52_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) - (3*cos2th*f_53_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) - (4*cos2th*f_54_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) - (4*cos2th*f_55_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) - (5*cos2th*f_56_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) - (5*cos2th*f_57_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) - (6*cos2th*f_58_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) - (6*cos2th*f_59_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) - (7*cos2th*f_60_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) - (7*cos2th*f_61_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) - (J[2]*J[3]*((2*cos2th*f_50_2*f[34]*f[36]*f[66]*f[68])/U[2] + (2*cos2th*f_51_2*f[34]*f[36]*f[66]*f[68])/U[2] + (2*f_50_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[2] + (2*f_51_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[2] - (2*f_50_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[2] - (2*f_51_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[2] + (2*cos2th*f_50_2*f[35]*f[37]*f[66]*f[68])/U[2] + (2*cos2th*f_51_2*f[35]*f[37]*f[66]*f[68])/U[2] - (2*f_50_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[2] - (2*f_51_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[2] + (2*cos2th*f_50_2*f[35]*f[36]*f[67]*f[68])/U[2] + (2*cos2th*f_51_2*f[35]*f[36]*f[67]*f[68])/U[2] - (2*cos2th*f_50_2*f[34]*f[37]*f[67]*f[68])/U[2] - (2*cos2th*f_51_2*f[34]*f[37]*f[67]*f[68])/U[2] - (2*f_50_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[2] - (2*f_51_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[2] + (2*f_50_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[2] + (2*f_51_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[2] - (2*cos2th*f_50_2*f[35]*f[36]*f[66]*f[69])/U[2] - (2*cos2th*f_51_2*f[35]*f[36]*f[66]*f[69])/U[2] + (2*cos2th*f_50_2*f[34]*f[37]*f[66]*f[69])/U[2] + (2*cos2th*f_51_2*f[34]*f[37]*f[66]*f[69])/U[2] + (2*f_50_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[2] + (2*f_51_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[2] + (2*cos2th*f_50_2*f[34]*f[36]*f[67]*f[69])/U[2] + (2*cos2th*f_51_2*f[34]*f[36]*f[67]*f[69])/U[2] + (2*f_50_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[2] + (2*f_51_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[2] - (2*f_50_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[2] - (2*f_51_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[2] + (2*cos2th*f_50_2*f[35]*f[37]*f[67]*f[69])/U[2] + (2*cos2th*f_51_2*f[35]*f[37]*f[67]*f[69])/U[2] + (3*cos2th*f_50_2*f[36]*f[38]*f[68]*f[70])/(2.*U[2]) + (3*cos2th*f_51_2*f[36]*f[38]*f[68]*f[70])/(2.*U[2]) + (3*f_50_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[2]) + (3*f_51_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[2]) - (3*f_50_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[2]) - (3*f_51_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[2]) + (3*cos2th*f_50_2*f[37]*f[39]*f[68]*f[70])/(2.*U[2]) + (3*cos2th*f_51_2*f[37]*f[39]*f[68]*f[70])/(2.*U[2]) - (3*f_50_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[2]) - (3*f_51_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[2]) + (3*cos2th*f_50_2*f[37]*f[38]*f[69]*f[70])/(2.*U[2]) + (3*cos2th*f_51_2*f[37]*f[38]*f[69]*f[70])/(2.*U[2]) - (3*cos2th*f_50_2*f[36]*f[39]*f[69]*f[70])/(2.*U[2]) - (3*cos2th*f_51_2*f[36]*f[39]*f[69]*f[70])/(2.*U[2]) - (3*f_50_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[2]) - (3*f_51_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[2]) + (3*f_50_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[2]) + (3*f_51_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_50_2*f[37]*f[38]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_51_2*f[37]*f[38]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_50_2*f[36]*f[39]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_51_2*f[36]*f[39]*f[68]*f[71])/(2.*U[2]) + (3*f_50_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[2]) + (3*f_51_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_50_2*f[36]*f[38]*f[69]*f[71])/(2.*U[2]) + (3*cos2th*f_51_2*f[36]*f[38]*f[69]*f[71])/(2.*U[2]) + (3*f_50_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[2]) + (3*f_51_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[2]) - (3*f_50_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[2]) - (3*f_51_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[2]) + (3*cos2th*f_50_2*f[37]*f[39]*f[69]*f[71])/(2.*U[2]) + (3*cos2th*f_51_2*f[37]*f[39]*f[69]*f[71])/(2.*U[2]) + (4*cos2th*f_50_2*f[38]*f[40]*f[70]*f[72])/(3.*U[2]) + (4*cos2th*f_51_2*f[38]*f[40]*f[70]*f[72])/(3.*U[2]) + (4*f_50_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[2]) + (4*f_51_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[2]) - (4*f_50_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[2]) - (4*f_51_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[2]) + (4*cos2th*f_50_2*f[39]*f[41]*f[70]*f[72])/(3.*U[2]) + (4*cos2th*f_51_2*f[39]*f[41]*f[70]*f[72])/(3.*U[2]) - (4*f_50_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[2]) - (4*f_51_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[2]) + (4*cos2th*f_50_2*f[39]*f[40]*f[71]*f[72])/(3.*U[2]) + (4*cos2th*f_51_2*f[39]*f[40]*f[71]*f[72])/(3.*U[2]) - (4*cos2th*f_50_2*f[38]*f[41]*f[71]*f[72])/(3.*U[2]) - (4*cos2th*f_51_2*f[38]*f[41]*f[71]*f[72])/(3.*U[2]) - (4*f_50_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[2]) - (4*f_51_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[2]) + (4*f_50_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[2]) + (4*f_51_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_50_2*f[39]*f[40]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_51_2*f[39]*f[40]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_50_2*f[38]*f[41]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_51_2*f[38]*f[41]*f[70]*f[73])/(3.*U[2]) + (4*f_50_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[2]) + (4*f_51_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_50_2*f[38]*f[40]*f[71]*f[73])/(3.*U[2]) + (4*cos2th*f_51_2*f[38]*f[40]*f[71]*f[73])/(3.*U[2]) + (4*f_50_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[2]) + (4*f_51_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[2]) - (4*f_50_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[2]) - (4*f_51_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[2]) + (4*cos2th*f_50_2*f[39]*f[41]*f[71]*f[73])/(3.*U[2]) + (4*cos2th*f_51_2*f[39]*f[41]*f[71]*f[73])/(3.*U[2]) + (5*cos2th*f_50_2*f[40]*f[42]*f[72]*f[74])/(4.*U[2]) + (5*cos2th*f_51_2*f[40]*f[42]*f[72]*f[74])/(4.*U[2]) + (5*f_50_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[2]) + (5*f_51_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[2]) - (5*f_50_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[2]) - (5*f_51_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[2]) + (5*cos2th*f_50_2*f[41]*f[43]*f[72]*f[74])/(4.*U[2]) + (5*cos2th*f_51_2*f[41]*f[43]*f[72]*f[74])/(4.*U[2]) - (5*f_50_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[2]) - (5*f_51_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[2]) + (5*cos2th*f_50_2*f[41]*f[42]*f[73]*f[74])/(4.*U[2]) + (5*cos2th*f_51_2*f[41]*f[42]*f[73]*f[74])/(4.*U[2]) - (5*cos2th*f_50_2*f[40]*f[43]*f[73]*f[74])/(4.*U[2]) - (5*cos2th*f_51_2*f[40]*f[43]*f[73]*f[74])/(4.*U[2]) - (5*f_50_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[2]) - (5*f_51_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[2]) + (5*f_50_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[2]) + (5*f_51_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_50_2*f[41]*f[42]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_51_2*f[41]*f[42]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_50_2*f[40]*f[43]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_51_2*f[40]*f[43]*f[72]*f[75])/(4.*U[2]) + (5*f_50_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[2]) + (5*f_51_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_50_2*f[40]*f[42]*f[73]*f[75])/(4.*U[2]) + (5*cos2th*f_51_2*f[40]*f[42]*f[73]*f[75])/(4.*U[2]) + (5*f_50_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[2]) + (5*f_51_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[2]) - (5*f_50_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[2]) - (5*f_51_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[2]) + (5*cos2th*f_50_2*f[41]*f[43]*f[73]*f[75])/(4.*U[2]) + (5*cos2th*f_51_2*f[41]*f[43]*f[73]*f[75])/(4.*U[2]) + (6*cos2th*f_50_2*f[42]*f[44]*f[74]*f[76])/(5.*U[2]) + (6*cos2th*f_51_2*f[42]*f[44]*f[74]*f[76])/(5.*U[2]) + (6*f_50_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[2]) + (6*f_51_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[2]) - (6*f_50_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[2]) - (6*f_51_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[2]) + (6*cos2th*f_50_2*f[43]*f[45]*f[74]*f[76])/(5.*U[2]) + (6*cos2th*f_51_2*f[43]*f[45]*f[74]*f[76])/(5.*U[2]) - (6*f_50_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[2]) - (6*f_51_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[2]) + (6*cos2th*f_50_2*f[43]*f[44]*f[75]*f[76])/(5.*U[2]) + (6*cos2th*f_51_2*f[43]*f[44]*f[75]*f[76])/(5.*U[2]) - (6*cos2th*f_50_2*f[42]*f[45]*f[75]*f[76])/(5.*U[2]) - (6*cos2th*f_51_2*f[42]*f[45]*f[75]*f[76])/(5.*U[2]) - (6*f_50_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[2]) - (6*f_51_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[2]) + (6*f_50_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[2]) + (6*f_51_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_50_2*f[43]*f[44]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_51_2*f[43]*f[44]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_50_2*f[42]*f[45]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_51_2*f[42]*f[45]*f[74]*f[77])/(5.*U[2]) + (6*f_50_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[2]) + (6*f_51_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_50_2*f[42]*f[44]*f[75]*f[77])/(5.*U[2]) + (6*cos2th*f_51_2*f[42]*f[44]*f[75]*f[77])/(5.*U[2]) + (6*f_50_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[2]) + (6*f_51_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[2]) - (6*f_50_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[2]) - (6*f_51_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[2]) + (6*cos2th*f_50_2*f[43]*f[45]*f[75]*f[77])/(5.*U[2]) + (6*cos2th*f_51_2*f[43]*f[45]*f[75]*f[77])/(5.*U[2]) + (7*cos2th*f_50_2*f[44]*f[46]*f[76]*f[78])/(6.*U[2]) + (7*cos2th*f_51_2*f[44]*f[46]*f[76]*f[78])/(6.*U[2]) + (7*f_50_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[2]) + (7*f_51_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[2]) - (7*f_50_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[2]) - (7*f_51_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[2]) + (7*cos2th*f_50_2*f[45]*f[47]*f[76]*f[78])/(6.*U[2]) + (7*cos2th*f_51_2*f[45]*f[47]*f[76]*f[78])/(6.*U[2]) - (7*f_50_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[2]) - (7*f_51_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[2]) + (7*cos2th*f_50_2*f[45]*f[46]*f[77]*f[78])/(6.*U[2]) + (7*cos2th*f_51_2*f[45]*f[46]*f[77]*f[78])/(6.*U[2]) - (7*cos2th*f_50_2*f[44]*f[47]*f[77]*f[78])/(6.*U[2]) - (7*cos2th*f_51_2*f[44]*f[47]*f[77]*f[78])/(6.*U[2]) - (7*f_50_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[2]) - (7*f_51_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[2]) + (7*f_50_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[2]) + (7*f_51_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_50_2*f[45]*f[46]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_51_2*f[45]*f[46]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_50_2*f[44]*f[47]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_51_2*f[44]*f[47]*f[76]*f[79])/(6.*U[2]) + (7*f_50_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[2]) + (7*f_51_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_50_2*f[44]*f[46]*f[77]*f[79])/(6.*U[2]) + (7*cos2th*f_51_2*f[44]*f[46]*f[77]*f[79])/(6.*U[2]) + (7*f_50_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[2]) + (7*f_51_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[2]) - (7*f_50_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[2]) - (7*f_51_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[2]) + (7*cos2th*f_50_2*f[45]*f[47]*f[77]*f[79])/(6.*U[2]) + (7*cos2th*f_51_2*f[45]*f[47]*f[77]*f[79])/(6.*U[2]) + (14*cos2th*f_62_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_63_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*f_62_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*f_63_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 6*U[3]) - (14*f_62_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 6*U[3]) - (14*f_63_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_62_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_63_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 6*U[3]) - (14*f_62_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*f_63_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_62_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 6*U[3]) + (14*cos2th*f_63_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*cos2th*f_62_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*cos2th*f_63_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*f_62_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 6*U[3]) - (14*f_63_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 6*U[3]) + (14*f_62_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*f_63_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 6*U[3]) - (14*cos2th*f_62_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 6*U[3]) - (14*cos2th*f_63_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_62_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_63_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*f_62_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*f_63_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_62_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_63_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*f_62_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*f_63_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 6*U[3]) - (14*f_62_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 6*U[3]) - (14*f_63_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_62_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 6*U[3]) + (14*cos2th*f_63_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 6*U[3]) + (21*cos2th*f_62_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_63_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*f_62_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*f_63_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 6*U[3]) - (21*f_62_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 6*U[3]) - (21*f_63_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_62_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_63_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 6*U[3]) - (21*f_62_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*f_63_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_62_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 6*U[3]) + (21*cos2th*f_63_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*cos2th*f_62_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*cos2th*f_63_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*f_62_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 6*U[3]) - (21*f_63_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 6*U[3]) + (21*f_62_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*f_63_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 6*U[3]) - (21*cos2th*f_62_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 6*U[3]) - (21*cos2th*f_63_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_62_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_63_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*f_62_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*f_63_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_62_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_63_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*f_62_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*f_63_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 6*U[3]) - (21*f_62_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 6*U[3]) - (21*f_63_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_62_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (21*cos2th*f_63_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 6*U[3]) + (28*cos2th*f_62_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_63_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*f_62_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*f_63_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 6*U[3]) - (28*f_62_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 6*U[3]) - (28*f_63_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_62_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_63_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 6*U[3]) - (28*f_62_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*f_63_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_62_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 6*U[3]) + (28*cos2th*f_63_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*cos2th*f_62_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*cos2th*f_63_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*f_62_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 6*U[3]) - (28*f_63_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 6*U[3]) + (28*f_62_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*f_63_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 6*U[3]) - (28*cos2th*f_62_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 6*U[3]) - (28*cos2th*f_63_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_62_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_63_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*f_62_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*f_63_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_62_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_63_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*f_62_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*f_63_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 6*U[3]) - (28*f_62_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 6*U[3]) - (28*f_63_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_62_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (28*cos2th*f_63_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 6*U[3]) + (35*cos2th*f_62_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_63_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*f_62_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*f_63_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 6*U[3]) - (35*f_62_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 6*U[3]) - (35*f_63_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_62_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_63_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 6*U[3]) - (35*f_62_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*f_63_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_62_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 6*U[3]) + (35*cos2th*f_63_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*cos2th*f_62_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*cos2th*f_63_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*f_62_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 6*U[3]) - (35*f_63_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 6*U[3]) + (35*f_62_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*f_63_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 6*U[3]) - (35*cos2th*f_62_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 6*U[3]) - (35*cos2th*f_63_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_62_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_63_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*f_62_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*f_63_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_62_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_63_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*f_62_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*f_63_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 6*U[3]) - (35*f_62_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 6*U[3]) - (35*f_63_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_62_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (35*cos2th*f_63_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 6*U[3]) + (42*cos2th*f_62_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_63_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*f_62_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*f_63_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 6*U[3]) - (42*f_62_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 6*U[3]) - (42*f_63_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_62_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_63_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 6*U[3]) - (42*f_62_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*f_63_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_62_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 6*U[3]) + (42*cos2th*f_63_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*cos2th*f_62_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*cos2th*f_63_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*f_62_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 6*U[3]) - (42*f_63_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 6*U[3]) + (42*f_62_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*f_63_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 6*U[3]) - (42*cos2th*f_62_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 6*U[3]) - (42*cos2th*f_63_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_62_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_63_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*f_62_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*f_63_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_62_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_63_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*f_62_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*f_63_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 6*U[3]) - (42*f_62_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 6*U[3]) - (42*f_63_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_62_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (42*cos2th*f_63_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 6*U[3]) + (12*cos2th*f_60_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_61_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*f_60_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*f_61_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 5*U[3]) - (12*f_60_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 5*U[3]) - (12*f_61_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_60_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_61_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 5*U[3]) - (12*f_60_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*f_61_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_60_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 5*U[3]) + (12*cos2th*f_61_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*cos2th*f_60_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*cos2th*f_61_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*f_60_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 5*U[3]) - (12*f_61_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 5*U[3]) + (12*f_60_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*f_61_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 5*U[3]) - (12*cos2th*f_60_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 5*U[3]) - (12*cos2th*f_61_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_60_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_61_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*f_60_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*f_61_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_60_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_61_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*f_60_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*f_61_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 5*U[3]) - (12*f_60_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 5*U[3]) - (12*f_61_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_60_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 5*U[3]) + (12*cos2th*f_61_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 5*U[3]) + (18*cos2th*f_60_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_61_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*f_60_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*f_61_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 5*U[3]) - (18*f_60_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 5*U[3]) - (18*f_61_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_60_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_61_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 5*U[3]) - (18*f_60_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*f_61_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_60_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 5*U[3]) + (18*cos2th*f_61_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*cos2th*f_60_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*cos2th*f_61_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*f_60_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 5*U[3]) - (18*f_61_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 5*U[3]) + (18*f_60_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*f_61_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 5*U[3]) - (18*cos2th*f_60_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 5*U[3]) - (18*cos2th*f_61_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_60_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_61_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*f_60_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*f_61_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_60_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_61_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*f_60_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*f_61_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 5*U[3]) - (18*f_60_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 5*U[3]) - (18*f_61_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_60_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (18*cos2th*f_61_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 5*U[3]) + (24*cos2th*f_60_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_61_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*f_60_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*f_61_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 5*U[3]) - (24*f_60_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 5*U[3]) - (24*f_61_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_60_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_61_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 5*U[3]) - (24*f_60_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*f_61_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_60_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 5*U[3]) + (24*cos2th*f_61_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*cos2th*f_60_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*cos2th*f_61_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*f_60_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 5*U[3]) - (24*f_61_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 5*U[3]) + (24*f_60_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*f_61_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 5*U[3]) - (24*cos2th*f_60_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 5*U[3]) - (24*cos2th*f_61_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_60_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_61_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*f_60_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*f_61_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_60_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_61_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*f_60_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*f_61_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 5*U[3]) - (24*f_60_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 5*U[3]) - (24*f_61_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_60_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (24*cos2th*f_61_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 5*U[3]) + (30*cos2th*f_60_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_61_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*f_60_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*f_61_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 5*U[3]) - (30*f_60_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 5*U[3]) - (30*f_61_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_60_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_61_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 5*U[3]) - (30*f_60_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*f_61_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_60_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 5*U[3]) + (30*cos2th*f_61_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*cos2th*f_60_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*cos2th*f_61_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*f_60_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 5*U[3]) - (30*f_61_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 5*U[3]) + (30*f_60_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*f_61_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 5*U[3]) - (30*cos2th*f_60_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 5*U[3]) - (30*cos2th*f_61_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_60_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_61_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*f_60_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*f_61_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_60_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_61_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*f_60_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*f_61_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 5*U[3]) - (30*f_60_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 5*U[3]) - (30*f_61_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_60_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (30*cos2th*f_61_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 5*U[3]) + (42*cos2th*f_60_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_61_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*f_60_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*f_61_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 5*U[3]) - (42*f_60_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 5*U[3]) - (42*f_61_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_60_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_61_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 5*U[3]) - (42*f_60_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*f_61_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_60_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 5*U[3]) + (42*cos2th*f_61_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*cos2th*f_60_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*cos2th*f_61_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*f_60_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 5*U[3]) - (42*f_61_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 5*U[3]) + (42*f_60_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*f_61_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 5*U[3]) - (42*cos2th*f_60_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 5*U[3]) - (42*cos2th*f_61_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_60_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_61_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*f_60_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*f_61_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_60_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_61_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*f_60_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*f_61_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 5*U[3]) - (42*f_60_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 5*U[3]) - (42*f_61_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_60_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (42*cos2th*f_61_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 5*U[3]) + (10*cos2th*f_58_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_59_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*f_58_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*f_59_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 4*U[3]) - (10*f_58_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 4*U[3]) - (10*f_59_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_58_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_59_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 4*U[3]) - (10*f_58_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*f_59_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_58_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 4*U[3]) + (10*cos2th*f_59_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*cos2th*f_58_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*cos2th*f_59_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*f_58_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 4*U[3]) - (10*f_59_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 4*U[3]) + (10*f_58_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*f_59_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 4*U[3]) - (10*cos2th*f_58_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 4*U[3]) - (10*cos2th*f_59_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_58_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_59_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*f_58_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*f_59_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_58_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_59_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*f_58_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*f_59_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 4*U[3]) - (10*f_58_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 4*U[3]) - (10*f_59_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_58_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 4*U[3]) + (10*cos2th*f_59_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 4*U[3]) + (15*cos2th*f_58_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_59_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*f_58_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*f_59_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 4*U[3]) - (15*f_58_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 4*U[3]) - (15*f_59_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_58_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_59_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 4*U[3]) - (15*f_58_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*f_59_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_58_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 4*U[3]) + (15*cos2th*f_59_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*cos2th*f_58_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*cos2th*f_59_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*f_58_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 4*U[3]) - (15*f_59_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 4*U[3]) + (15*f_58_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*f_59_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 4*U[3]) - (15*cos2th*f_58_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 4*U[3]) - (15*cos2th*f_59_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_58_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_59_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*f_58_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*f_59_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_58_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_59_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*f_58_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*f_59_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 4*U[3]) - (15*f_58_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 4*U[3]) - (15*f_59_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_58_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (15*cos2th*f_59_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 4*U[3]) + (20*cos2th*f_58_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_59_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*f_58_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*f_59_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 4*U[3]) - (20*f_58_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 4*U[3]) - (20*f_59_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_58_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_59_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 4*U[3]) - (20*f_58_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*f_59_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_58_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 4*U[3]) + (20*cos2th*f_59_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*cos2th*f_58_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*cos2th*f_59_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*f_58_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 4*U[3]) - (20*f_59_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 4*U[3]) + (20*f_58_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*f_59_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 4*U[3]) - (20*cos2th*f_58_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 4*U[3]) - (20*cos2th*f_59_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_58_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_59_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*f_58_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*f_59_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_58_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_59_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*f_58_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*f_59_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 4*U[3]) - (20*f_58_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 4*U[3]) - (20*f_59_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_58_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (20*cos2th*f_59_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 4*U[3]) + (30*cos2th*f_58_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_59_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*f_58_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*f_59_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 4*U[3]) - (30*f_58_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 4*U[3]) - (30*f_59_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_58_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_59_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 4*U[3]) - (30*f_58_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*f_59_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_58_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 4*U[3]) + (30*cos2th*f_59_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*cos2th*f_58_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*cos2th*f_59_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*f_58_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 4*U[3]) - (30*f_59_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 4*U[3]) + (30*f_58_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*f_59_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 4*U[3]) - (30*cos2th*f_58_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 4*U[3]) - (30*cos2th*f_59_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_58_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_59_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*f_58_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*f_59_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_58_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_59_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*f_58_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*f_59_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 4*U[3]) - (30*f_58_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 4*U[3]) - (30*f_59_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_58_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (30*cos2th*f_59_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 4*U[3]) + (35*cos2th*f_58_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_59_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*f_58_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*f_59_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 4*U[3]) - (35*f_58_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 4*U[3]) - (35*f_59_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_58_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_59_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 4*U[3]) - (35*f_58_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*f_59_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_58_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 4*U[3]) + (35*cos2th*f_59_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*cos2th*f_58_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*cos2th*f_59_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*f_58_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 4*U[3]) - (35*f_59_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 4*U[3]) + (35*f_58_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*f_59_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 4*U[3]) - (35*cos2th*f_58_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 4*U[3]) - (35*cos2th*f_59_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_58_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_59_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*f_58_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*f_59_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_58_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_59_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*f_58_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*f_59_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 4*U[3]) - (35*f_58_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 4*U[3]) - (35*f_59_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_58_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (35*cos2th*f_59_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 4*U[3]) + (8*cos2th*f_56_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_57_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*f_56_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*f_57_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 3*U[3]) - (8*f_56_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 3*U[3]) - (8*f_57_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_56_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_57_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 3*U[3]) - (8*f_56_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*f_57_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_56_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 3*U[3]) + (8*cos2th*f_57_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*cos2th*f_56_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*cos2th*f_57_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*f_56_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 3*U[3]) - (8*f_57_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 3*U[3]) + (8*f_56_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*f_57_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 3*U[3]) - (8*cos2th*f_56_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 3*U[3]) - (8*cos2th*f_57_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_56_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_57_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*f_56_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*f_57_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_56_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_57_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*f_56_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*f_57_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 3*U[3]) - (8*f_56_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 3*U[3]) - (8*f_57_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_56_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 3*U[3]) + (8*cos2th*f_57_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 3*U[3]) + (12*cos2th*f_56_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_57_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*f_56_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*f_57_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - 3*U[3]) - (12*f_56_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 3*U[3]) - (12*f_57_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_56_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_57_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - 3*U[3]) - (12*f_56_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*f_57_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_56_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 3*U[3]) + (12*cos2th*f_57_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*cos2th*f_56_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*cos2th*f_57_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*f_56_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 3*U[3]) - (12*f_57_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - 3*U[3]) + (12*f_56_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*f_57_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - 3*U[3]) - (12*cos2th*f_56_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 3*U[3]) - (12*cos2th*f_57_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_56_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_57_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*f_56_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*f_57_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_56_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_57_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*f_56_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*f_57_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - 3*U[3]) - (12*f_56_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 3*U[3]) - (12*f_57_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_56_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (12*cos2th*f_57_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - 3*U[3]) + (20*cos2th*f_56_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_57_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*f_56_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*f_57_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 3*U[3]) - (20*f_56_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 3*U[3]) - (20*f_57_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_56_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_57_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 3*U[3]) - (20*f_56_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*f_57_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_56_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 3*U[3]) + (20*cos2th*f_57_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*cos2th*f_56_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*cos2th*f_57_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*f_56_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 3*U[3]) - (20*f_57_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 3*U[3]) + (20*f_56_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*f_57_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 3*U[3]) - (20*cos2th*f_56_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 3*U[3]) - (20*cos2th*f_57_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_56_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_57_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*f_56_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*f_57_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_56_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_57_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*f_56_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*f_57_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 3*U[3]) - (20*f_56_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 3*U[3]) - (20*f_57_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_56_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (20*cos2th*f_57_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 3*U[3]) + (24*cos2th*f_56_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_57_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*f_56_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*f_57_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 3*U[3]) - (24*f_56_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 3*U[3]) - (24*f_57_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_56_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_57_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 3*U[3]) - (24*f_56_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*f_57_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_56_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 3*U[3]) + (24*cos2th*f_57_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*cos2th*f_56_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*cos2th*f_57_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*f_56_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 3*U[3]) - (24*f_57_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 3*U[3]) + (24*f_56_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*f_57_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 3*U[3]) - (24*cos2th*f_56_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 3*U[3]) - (24*cos2th*f_57_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_56_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_57_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*f_56_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*f_57_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_56_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_57_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*f_56_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*f_57_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 3*U[3]) - (24*f_56_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 3*U[3]) - (24*f_57_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_56_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (24*cos2th*f_57_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 3*U[3]) + (28*cos2th*f_56_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_57_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*f_56_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*f_57_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 3*U[3]) - (28*f_56_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 3*U[3]) - (28*f_57_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_56_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_57_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 3*U[3]) - (28*f_56_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*f_57_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_56_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 3*U[3]) + (28*cos2th*f_57_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*cos2th*f_56_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*cos2th*f_57_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*f_56_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 3*U[3]) - (28*f_57_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 3*U[3]) + (28*f_56_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*f_57_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 3*U[3]) - (28*cos2th*f_56_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 3*U[3]) - (28*cos2th*f_57_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_56_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_57_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*f_56_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*f_57_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_56_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_57_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*f_56_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*f_57_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 3*U[3]) - (28*f_56_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 3*U[3]) - (28*f_57_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_56_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (28*cos2th*f_57_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 3*U[3]) + (6*cos2th*f_54_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_55_2*f[34]*f[36]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*f_54_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*f_55_2*sin2th*f[35]*f[36]*f[66]*f[68])/(U[2] - 2*U[3]) - (6*f_54_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 2*U[3]) - (6*f_55_2*sin2th*f[34]*f[37]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_54_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_55_2*f[35]*f[37]*f[66]*f[68])/(U[2] - 2*U[3]) - (6*f_54_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*f_55_2*sin2th*f[34]*f[36]*f[67]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_54_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 2*U[3]) + (6*cos2th*f_55_2*f[35]*f[36]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*cos2th*f_54_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*cos2th*f_55_2*f[34]*f[37]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*f_54_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 2*U[3]) - (6*f_55_2*sin2th*f[35]*f[37]*f[67]*f[68])/(U[2] - 2*U[3]) + (6*f_54_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*f_55_2*sin2th*f[34]*f[36]*f[66]*f[69])/(U[2] - 2*U[3]) - (6*cos2th*f_54_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 2*U[3]) - (6*cos2th*f_55_2*f[35]*f[36]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_54_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_55_2*f[34]*f[37]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*f_54_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*f_55_2*sin2th*f[35]*f[37]*f[66]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_54_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_55_2*f[34]*f[36]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*f_54_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*f_55_2*sin2th*f[35]*f[36]*f[67]*f[69])/(U[2] - 2*U[3]) - (6*f_54_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 2*U[3]) - (6*f_55_2*sin2th*f[34]*f[37]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_54_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 2*U[3]) + (6*cos2th*f_55_2*f[35]*f[37]*f[67]*f[69])/(U[2] - 2*U[3]) + (12*cos2th*f_54_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_55_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*f_54_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*f_55_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - 2*U[3]) - (12*f_54_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 2*U[3]) - (12*f_55_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_54_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_55_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - 2*U[3]) - (12*f_54_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*f_55_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_54_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 2*U[3]) + (12*cos2th*f_55_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*cos2th*f_54_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*cos2th*f_55_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*f_54_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 2*U[3]) - (12*f_55_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - 2*U[3]) + (12*f_54_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*f_55_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - 2*U[3]) - (12*cos2th*f_54_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 2*U[3]) - (12*cos2th*f_55_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_54_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_55_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*f_54_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*f_55_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_54_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_55_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*f_54_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*f_55_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - 2*U[3]) - (12*f_54_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 2*U[3]) - (12*f_55_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_54_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (12*cos2th*f_55_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - 2*U[3]) + (15*cos2th*f_54_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_55_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*f_54_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*f_55_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - 2*U[3]) - (15*f_54_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 2*U[3]) - (15*f_55_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_54_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_55_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - 2*U[3]) - (15*f_54_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*f_55_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_54_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 2*U[3]) + (15*cos2th*f_55_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*cos2th*f_54_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*cos2th*f_55_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*f_54_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 2*U[3]) - (15*f_55_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - 2*U[3]) + (15*f_54_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*f_55_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - 2*U[3]) - (15*cos2th*f_54_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 2*U[3]) - (15*cos2th*f_55_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_54_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_55_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*f_54_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*f_55_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_54_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_55_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*f_54_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*f_55_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - 2*U[3]) - (15*f_54_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 2*U[3]) - (15*f_55_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_54_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (15*cos2th*f_55_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - 2*U[3]) + (18*cos2th*f_54_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_55_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*f_54_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*f_55_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - 2*U[3]) - (18*f_54_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 2*U[3]) - (18*f_55_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_54_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_55_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - 2*U[3]) - (18*f_54_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*f_55_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_54_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 2*U[3]) + (18*cos2th*f_55_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*cos2th*f_54_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*cos2th*f_55_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*f_54_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 2*U[3]) - (18*f_55_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - 2*U[3]) + (18*f_54_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*f_55_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - 2*U[3]) - (18*cos2th*f_54_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 2*U[3]) - (18*cos2th*f_55_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_54_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_55_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*f_54_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*f_55_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_54_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_55_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*f_54_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*f_55_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - 2*U[3]) - (18*f_54_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 2*U[3]) - (18*f_55_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_54_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (18*cos2th*f_55_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - 2*U[3]) + (21*cos2th*f_54_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_55_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*f_54_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*f_55_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - 2*U[3]) - (21*f_54_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 2*U[3]) - (21*f_55_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_54_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_55_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - 2*U[3]) - (21*f_54_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*f_55_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_54_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 2*U[3]) + (21*cos2th*f_55_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*cos2th*f_54_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*cos2th*f_55_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*f_54_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 2*U[3]) - (21*f_55_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - 2*U[3]) + (21*f_54_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*f_55_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - 2*U[3]) - (21*cos2th*f_54_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 2*U[3]) - (21*cos2th*f_55_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_54_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_55_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*f_54_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*f_55_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_54_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_55_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*f_54_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*f_55_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - 2*U[3]) - (21*f_54_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 2*U[3]) - (21*f_55_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_54_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (21*cos2th*f_55_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - 2*U[3]) + (6*cos2th*f_52_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_53_2*f[36]*f[38]*f[68]*f[70])/(2*U[2] - U[3]) + (6*f_52_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - U[3]) + (6*f_53_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2*U[2] - U[3]) - (6*f_52_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - U[3]) - (6*f_53_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_52_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_53_2*f[37]*f[39]*f[68]*f[70])/(2*U[2] - U[3]) - (6*f_52_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - U[3]) - (6*f_53_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_52_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - U[3]) + (6*cos2th*f_53_2*f[37]*f[38]*f[69]*f[70])/(2*U[2] - U[3]) - (6*cos2th*f_52_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - U[3]) - (6*cos2th*f_53_2*f[36]*f[39]*f[69]*f[70])/(2*U[2] - U[3]) - (6*f_52_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - U[3]) - (6*f_53_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2*U[2] - U[3]) + (6*f_52_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - U[3]) + (6*f_53_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2*U[2] - U[3]) - (6*cos2th*f_52_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - U[3]) - (6*cos2th*f_53_2*f[37]*f[38]*f[68]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_52_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_53_2*f[36]*f[39]*f[68]*f[71])/(2*U[2] - U[3]) + (6*f_52_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - U[3]) + (6*f_53_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_52_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_53_2*f[36]*f[38]*f[69]*f[71])/(2*U[2] - U[3]) + (6*f_52_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - U[3]) + (6*f_53_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2*U[2] - U[3]) - (6*f_52_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - U[3]) - (6*f_53_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_52_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - U[3]) + (6*cos2th*f_53_2*f[37]*f[39]*f[69]*f[71])/(2*U[2] - U[3]) + (8*cos2th*f_52_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_53_2*f[38]*f[40]*f[70]*f[72])/(3*U[2] - U[3]) + (8*f_52_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - U[3]) + (8*f_53_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3*U[2] - U[3]) - (8*f_52_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - U[3]) - (8*f_53_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_52_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_53_2*f[39]*f[41]*f[70]*f[72])/(3*U[2] - U[3]) - (8*f_52_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - U[3]) - (8*f_53_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_52_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - U[3]) + (8*cos2th*f_53_2*f[39]*f[40]*f[71]*f[72])/(3*U[2] - U[3]) - (8*cos2th*f_52_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - U[3]) - (8*cos2th*f_53_2*f[38]*f[41]*f[71]*f[72])/(3*U[2] - U[3]) - (8*f_52_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - U[3]) - (8*f_53_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3*U[2] - U[3]) + (8*f_52_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - U[3]) + (8*f_53_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3*U[2] - U[3]) - (8*cos2th*f_52_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - U[3]) - (8*cos2th*f_53_2*f[39]*f[40]*f[70]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_52_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_53_2*f[38]*f[41]*f[70]*f[73])/(3*U[2] - U[3]) + (8*f_52_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - U[3]) + (8*f_53_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_52_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_53_2*f[38]*f[40]*f[71]*f[73])/(3*U[2] - U[3]) + (8*f_52_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - U[3]) + (8*f_53_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3*U[2] - U[3]) - (8*f_52_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - U[3]) - (8*f_53_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_52_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - U[3]) + (8*cos2th*f_53_2*f[39]*f[41]*f[71]*f[73])/(3*U[2] - U[3]) + (10*cos2th*f_52_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_53_2*f[40]*f[42]*f[72]*f[74])/(4*U[2] - U[3]) + (10*f_52_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - U[3]) + (10*f_53_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4*U[2] - U[3]) - (10*f_52_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - U[3]) - (10*f_53_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_52_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_53_2*f[41]*f[43]*f[72]*f[74])/(4*U[2] - U[3]) - (10*f_52_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - U[3]) - (10*f_53_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_52_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - U[3]) + (10*cos2th*f_53_2*f[41]*f[42]*f[73]*f[74])/(4*U[2] - U[3]) - (10*cos2th*f_52_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - U[3]) - (10*cos2th*f_53_2*f[40]*f[43]*f[73]*f[74])/(4*U[2] - U[3]) - (10*f_52_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - U[3]) - (10*f_53_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4*U[2] - U[3]) + (10*f_52_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - U[3]) + (10*f_53_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4*U[2] - U[3]) - (10*cos2th*f_52_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - U[3]) - (10*cos2th*f_53_2*f[41]*f[42]*f[72]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_52_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_53_2*f[40]*f[43]*f[72]*f[75])/(4*U[2] - U[3]) + (10*f_52_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - U[3]) + (10*f_53_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_52_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_53_2*f[40]*f[42]*f[73]*f[75])/(4*U[2] - U[3]) + (10*f_52_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - U[3]) + (10*f_53_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4*U[2] - U[3]) - (10*f_52_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - U[3]) - (10*f_53_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_52_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - U[3]) + (10*cos2th*f_53_2*f[41]*f[43]*f[73]*f[75])/(4*U[2] - U[3]) + (12*cos2th*f_52_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_53_2*f[42]*f[44]*f[74]*f[76])/(5*U[2] - U[3]) + (12*f_52_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - U[3]) + (12*f_53_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5*U[2] - U[3]) - (12*f_52_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - U[3]) - (12*f_53_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_52_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_53_2*f[43]*f[45]*f[74]*f[76])/(5*U[2] - U[3]) - (12*f_52_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - U[3]) - (12*f_53_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_52_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - U[3]) + (12*cos2th*f_53_2*f[43]*f[44]*f[75]*f[76])/(5*U[2] - U[3]) - (12*cos2th*f_52_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - U[3]) - (12*cos2th*f_53_2*f[42]*f[45]*f[75]*f[76])/(5*U[2] - U[3]) - (12*f_52_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - U[3]) - (12*f_53_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5*U[2] - U[3]) + (12*f_52_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - U[3]) + (12*f_53_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5*U[2] - U[3]) - (12*cos2th*f_52_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - U[3]) - (12*cos2th*f_53_2*f[43]*f[44]*f[74]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_52_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_53_2*f[42]*f[45]*f[74]*f[77])/(5*U[2] - U[3]) + (12*f_52_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - U[3]) + (12*f_53_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_52_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_53_2*f[42]*f[44]*f[75]*f[77])/(5*U[2] - U[3]) + (12*f_52_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - U[3]) + (12*f_53_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5*U[2] - U[3]) - (12*f_52_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - U[3]) - (12*f_53_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_52_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - U[3]) + (12*cos2th*f_53_2*f[43]*f[45]*f[75]*f[77])/(5*U[2] - U[3]) + (14*cos2th*f_52_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_53_2*f[44]*f[46]*f[76]*f[78])/(6*U[2] - U[3]) + (14*f_52_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - U[3]) + (14*f_53_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6*U[2] - U[3]) - (14*f_52_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - U[3]) - (14*f_53_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_52_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_53_2*f[45]*f[47]*f[76]*f[78])/(6*U[2] - U[3]) - (14*f_52_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - U[3]) - (14*f_53_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_52_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - U[3]) + (14*cos2th*f_53_2*f[45]*f[46]*f[77]*f[78])/(6*U[2] - U[3]) - (14*cos2th*f_52_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - U[3]) - (14*cos2th*f_53_2*f[44]*f[47]*f[77]*f[78])/(6*U[2] - U[3]) - (14*f_52_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - U[3]) - (14*f_53_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6*U[2] - U[3]) + (14*f_52_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - U[3]) + (14*f_53_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6*U[2] - U[3]) - (14*cos2th*f_52_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - U[3]) - (14*cos2th*f_53_2*f[45]*f[46]*f[76]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_52_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_53_2*f[44]*f[47]*f[76]*f[79])/(6*U[2] - U[3]) + (14*f_52_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - U[3]) + (14*f_53_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_52_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_53_2*f[44]*f[46]*f[77]*f[79])/(6*U[2] - U[3]) + (14*f_52_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - U[3]) + (14*f_53_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6*U[2] - U[3]) - (14*f_52_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - U[3]) - (14*f_53_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_52_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - U[3]) + (14*cos2th*f_53_2*f[45]*f[47]*f[77]*f[79])/(6*U[2] - U[3]) - (2*cos2th*f_52_2*f[32]*f[34]*f[64]*f[66])/U[3] - (2*cos2th*f_53_2*f[32]*f[34]*f[64]*f[66])/U[3] - (3*cos2th*f_54_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) - (3*cos2th*f_55_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) - (4*cos2th*f_56_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) - (4*cos2th*f_57_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) - (5*cos2th*f_58_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) - (5*cos2th*f_59_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) - (6*cos2th*f_60_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) - (6*cos2th*f_61_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) - (7*cos2th*f_62_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) - (7*cos2th*f_63_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] - (2*f_53_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] - (3*f_54_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) - (3*f_55_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) - (4*f_56_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) - (4*f_57_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) - (5*f_58_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) - (5*f_59_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) - (6*f_60_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) - (6*f_61_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) - (7*f_62_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) - (7*f_63_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] + (2*f_53_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] + (3*f_54_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) + (3*f_55_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) + (4*f_56_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) + (4*f_57_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) + (5*f_58_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) + (5*f_59_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) + (6*f_60_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) + (6*f_61_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) + (7*f_62_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) + (7*f_63_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) - (2*cos2th*f_52_2*f[33]*f[35]*f[64]*f[66])/U[3] - (2*cos2th*f_53_2*f[33]*f[35]*f[64]*f[66])/U[3] - (3*cos2th*f_54_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) - (3*cos2th*f_55_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) - (4*cos2th*f_56_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) - (4*cos2th*f_57_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) - (5*cos2th*f_58_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) - (5*cos2th*f_59_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) - (6*cos2th*f_60_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) - (6*cos2th*f_61_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) - (7*cos2th*f_62_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) - (7*cos2th*f_63_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] + (2*f_53_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] + (3*f_54_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) + (3*f_55_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) + (4*f_56_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) + (4*f_57_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) + (5*f_58_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) + (5*f_59_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) + (6*f_60_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) + (6*f_61_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) + (7*f_62_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) + (7*f_63_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) - (2*cos2th*f_52_2*f[33]*f[34]*f[65]*f[66])/U[3] - (2*cos2th*f_53_2*f[33]*f[34]*f[65]*f[66])/U[3] - (3*cos2th*f_54_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) - (3*cos2th*f_55_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) - (4*cos2th*f_56_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) - (4*cos2th*f_57_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) - (5*cos2th*f_58_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) - (5*cos2th*f_59_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) - (6*cos2th*f_60_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) - (6*cos2th*f_61_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) - (7*cos2th*f_62_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) - (7*cos2th*f_63_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) + (2*cos2th*f_52_2*f[32]*f[35]*f[65]*f[66])/U[3] + (2*cos2th*f_53_2*f[32]*f[35]*f[65]*f[66])/U[3] + (3*cos2th*f_54_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) + (3*cos2th*f_55_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) + (4*cos2th*f_56_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) + (4*cos2th*f_57_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) + (5*cos2th*f_58_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) + (5*cos2th*f_59_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) + (6*cos2th*f_60_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) + (6*cos2th*f_61_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) + (7*cos2th*f_62_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) + (7*cos2th*f_63_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] + (2*f_53_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] + (3*f_54_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) + (3*f_55_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) + (4*f_56_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) + (4*f_57_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) + (5*f_58_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) + (5*f_59_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) + (6*f_60_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) + (6*f_61_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) + (7*f_62_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) + (7*f_63_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] - (2*f_53_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] - (3*f_54_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) - (3*f_55_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) - (4*f_56_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) - (4*f_57_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) - (5*f_58_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) - (5*f_59_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) - (6*f_60_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) - (6*f_61_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) - (7*f_62_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) - (7*f_63_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_52_2*f[33]*f[34]*f[64]*f[67])/U[3] + (2*cos2th*f_53_2*f[33]*f[34]*f[64]*f[67])/U[3] + (3*cos2th*f_54_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) + (3*cos2th*f_55_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) + (4*cos2th*f_56_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) + (4*cos2th*f_57_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) + (5*cos2th*f_58_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) + (5*cos2th*f_59_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) + (6*cos2th*f_60_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) + (6*cos2th*f_61_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) + (7*cos2th*f_62_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) + (7*cos2th*f_63_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_52_2*f[32]*f[35]*f[64]*f[67])/U[3] - (2*cos2th*f_53_2*f[32]*f[35]*f[64]*f[67])/U[3] - (3*cos2th*f_54_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) - (3*cos2th*f_55_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) - (4*cos2th*f_56_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) - (4*cos2th*f_57_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) - (5*cos2th*f_58_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) - (5*cos2th*f_59_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) - (6*cos2th*f_60_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) - (6*cos2th*f_61_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) - (7*cos2th*f_62_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) - (7*cos2th*f_63_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) - (2*f_52_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] - (2*f_53_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] - (3*f_54_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) - (3*f_55_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) - (4*f_56_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) - (4*f_57_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) - (5*f_58_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) - (5*f_59_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) - (6*f_60_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) - (6*f_61_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) - (7*f_62_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) - (7*f_63_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_52_2*f[32]*f[34]*f[65]*f[67])/U[3] - (2*cos2th*f_53_2*f[32]*f[34]*f[65]*f[67])/U[3] - (3*cos2th*f_54_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) - (3*cos2th*f_55_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) - (4*cos2th*f_56_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) - (4*cos2th*f_57_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) - (5*cos2th*f_58_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) - (5*cos2th*f_59_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) - (6*cos2th*f_60_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) - (6*cos2th*f_61_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) - (7*cos2th*f_62_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) - (7*cos2th*f_63_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) - (2*f_52_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] - (2*f_53_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] - (3*f_54_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) - (3*f_55_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) - (4*f_56_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) - (4*f_57_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) - (5*f_58_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) - (5*f_59_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) - (6*f_60_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) - (6*f_61_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) - (7*f_62_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) - (7*f_63_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) + (2*f_52_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] + (2*f_53_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] + (3*f_54_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) + (3*f_55_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) + (4*f_56_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) + (4*f_57_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) + (5*f_58_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) + (5*f_59_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) + (6*f_60_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) + (6*f_61_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) + (7*f_62_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) + (7*f_63_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) - (2*cos2th*f_52_2*f[33]*f[35]*f[65]*f[67])/U[3] - (2*cos2th*f_53_2*f[33]*f[35]*f[65]*f[67])/U[3] - (3*cos2th*f_54_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) - (3*cos2th*f_55_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) - (4*cos2th*f_56_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) - (4*cos2th*f_57_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) - (5*cos2th*f_58_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) - (5*cos2th*f_59_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) - (6*cos2th*f_60_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) - (6*cos2th*f_61_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) - (7*cos2th*f_62_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) - (7*cos2th*f_63_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + (J[1]*J[2]*((-2*cos2th*f_34_2*f[16]*f[18]*f[48]*f[50])/U[2] - (2*cos2th*f_35_2*f[16]*f[18]*f[48]*f[50])/U[2] - (3*cos2th*f_36_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) - (3*cos2th*f_37_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) - (4*cos2th*f_38_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) - (4*cos2th*f_39_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) - (5*cos2th*f_40_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) - (5*cos2th*f_41_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) - (6*cos2th*f_42_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) - (6*cos2th*f_43_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) - (7*cos2th*f_44_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) - (7*cos2th*f_45_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] - (2*f_35_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] - (3*f_36_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) - (3*f_37_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) - (4*f_38_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) - (4*f_39_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) - (5*f_40_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) - (5*f_41_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) - (6*f_42_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) - (6*f_43_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) - (7*f_44_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) - (7*f_45_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] + (2*f_35_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] + (3*f_36_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) + (3*f_37_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) + (4*f_38_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) + (4*f_39_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) + (5*f_40_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) + (5*f_41_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) + (6*f_42_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) + (6*f_43_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) + (7*f_44_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) + (7*f_45_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) - (2*cos2th*f_34_2*f[17]*f[19]*f[48]*f[50])/U[2] - (2*cos2th*f_35_2*f[17]*f[19]*f[48]*f[50])/U[2] - (3*cos2th*f_36_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) - (3*cos2th*f_37_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) - (4*cos2th*f_38_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) - (4*cos2th*f_39_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) - (5*cos2th*f_40_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) - (5*cos2th*f_41_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) - (6*cos2th*f_42_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) - (6*cos2th*f_43_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) - (7*cos2th*f_44_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) - (7*cos2th*f_45_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] + (2*f_35_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] + (3*f_36_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) + (3*f_37_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) + (4*f_38_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) + (4*f_39_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) + (5*f_40_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) + (5*f_41_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) + (6*f_42_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) + (6*f_43_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) + (7*f_44_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) + (7*f_45_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) - (2*cos2th*f_34_2*f[17]*f[18]*f[49]*f[50])/U[2] - (2*cos2th*f_35_2*f[17]*f[18]*f[49]*f[50])/U[2] - (3*cos2th*f_36_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) - (3*cos2th*f_37_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) - (4*cos2th*f_38_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) - (4*cos2th*f_39_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) - (5*cos2th*f_40_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) - (5*cos2th*f_41_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) - (6*cos2th*f_42_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) - (6*cos2th*f_43_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) - (7*cos2th*f_44_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) - (7*cos2th*f_45_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) + (2*cos2th*f_34_2*f[16]*f[19]*f[49]*f[50])/U[2] + (2*cos2th*f_35_2*f[16]*f[19]*f[49]*f[50])/U[2] + (3*cos2th*f_36_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) + (3*cos2th*f_37_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) + (4*cos2th*f_38_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) + (4*cos2th*f_39_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) + (5*cos2th*f_40_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) + (5*cos2th*f_41_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) + (6*cos2th*f_42_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) + (6*cos2th*f_43_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) + (7*cos2th*f_44_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) + (7*cos2th*f_45_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) + (2*f_34_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] + (2*f_35_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] + (3*f_36_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) + (3*f_37_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) + (4*f_38_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) + (4*f_39_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) + (5*f_40_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) + (5*f_41_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) + (6*f_42_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) + (6*f_43_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) + (7*f_44_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) + (7*f_45_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) - (2*f_34_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] - (2*f_35_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] - (3*f_36_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) - (3*f_37_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) - (4*f_38_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) - (4*f_39_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) - (5*f_40_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) - (5*f_41_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) - (6*f_42_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) - (6*f_43_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) - (7*f_44_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) - (7*f_45_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[17]*f[18]*f[48]*f[51])/U[2] + (2*cos2th*f_35_2*f[17]*f[18]*f[48]*f[51])/U[2] + (3*cos2th*f_36_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) + (3*cos2th*f_37_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) + (4*cos2th*f_38_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) + (4*cos2th*f_39_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) + (5*cos2th*f_40_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) + (5*cos2th*f_41_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) + (6*cos2th*f_42_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) + (6*cos2th*f_43_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) + (7*cos2th*f_44_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) + (7*cos2th*f_45_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_34_2*f[16]*f[19]*f[48]*f[51])/U[2] - (2*cos2th*f_35_2*f[16]*f[19]*f[48]*f[51])/U[2] - (3*cos2th*f_36_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) - (3*cos2th*f_37_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) - (4*cos2th*f_38_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) - (4*cos2th*f_39_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) - (5*cos2th*f_40_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) - (5*cos2th*f_41_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) - (6*cos2th*f_42_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) - (6*cos2th*f_43_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) - (7*cos2th*f_44_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) - (7*cos2th*f_45_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) - (2*f_34_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] - (2*f_35_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] - (3*f_36_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) - (3*f_37_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) - (4*f_38_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) - (4*f_39_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) - (5*f_40_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) - (5*f_41_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) - (6*f_42_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) - (6*f_43_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) - (7*f_44_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) - (7*f_45_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_34_2*f[16]*f[18]*f[49]*f[51])/U[2] - (2*cos2th*f_35_2*f[16]*f[18]*f[49]*f[51])/U[2] - (3*cos2th*f_36_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) - (3*cos2th*f_37_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) - (4*cos2th*f_38_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) - (4*cos2th*f_39_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) - (5*cos2th*f_40_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) - (5*cos2th*f_41_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) - (6*cos2th*f_42_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) - (6*cos2th*f_43_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) - (7*cos2th*f_44_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) - (7*cos2th*f_45_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) - (2*f_34_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] - (2*f_35_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] - (3*f_36_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) - (3*f_37_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) - (4*f_38_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) - (4*f_39_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) - (5*f_40_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) - (5*f_41_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) - (6*f_42_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) - (6*f_43_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) - (7*f_44_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) - (7*f_45_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) + (2*f_34_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] + (2*f_35_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] + (3*f_36_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) + (3*f_37_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) + (4*f_38_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) + (4*f_39_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) + (5*f_40_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) + (5*f_41_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) + (6*f_42_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) + (6*f_43_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) + (7*f_44_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) + (7*f_45_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) - (2*cos2th*f_34_2*f[17]*f[19]*f[49]*f[51])/U[2] - (2*cos2th*f_35_2*f[17]*f[19]*f[49]*f[51])/U[2] - (3*cos2th*f_36_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) - (3*cos2th*f_37_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) - (4*cos2th*f_38_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) - (4*cos2th*f_39_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) - (5*cos2th*f_40_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) - (5*cos2th*f_41_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) - (6*cos2th*f_42_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) - (6*cos2th*f_43_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) - (7*cos2th*f_44_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) - (7*cos2th*f_45_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (2*cos2th*f_32_2*f[18]*f[20]*f[50]*f[52])/U[3] + (2*cos2th*f_33_2*f[18]*f[20]*f[50]*f[52])/U[3] + (2*f_32_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[3] + (2*f_33_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[3] - (2*f_32_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[3] - (2*f_33_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[3] + (2*cos2th*f_32_2*f[19]*f[21]*f[50]*f[52])/U[3] + (2*cos2th*f_33_2*f[19]*f[21]*f[50]*f[52])/U[3] - (2*f_32_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[3] - (2*f_33_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[3] + (2*cos2th*f_32_2*f[19]*f[20]*f[51]*f[52])/U[3] + (2*cos2th*f_33_2*f[19]*f[20]*f[51]*f[52])/U[3] - (2*cos2th*f_32_2*f[18]*f[21]*f[51]*f[52])/U[3] - (2*cos2th*f_33_2*f[18]*f[21]*f[51]*f[52])/U[3] - (2*f_32_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[3] - (2*f_33_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[3] + (2*f_32_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[3] + (2*f_33_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[3] - (2*cos2th*f_32_2*f[19]*f[20]*f[50]*f[53])/U[3] - (2*cos2th*f_33_2*f[19]*f[20]*f[50]*f[53])/U[3] + (2*cos2th*f_32_2*f[18]*f[21]*f[50]*f[53])/U[3] + (2*cos2th*f_33_2*f[18]*f[21]*f[50]*f[53])/U[3] + (2*f_32_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[3] + (2*f_33_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[3] + (2*cos2th*f_32_2*f[18]*f[20]*f[51]*f[53])/U[3] + (2*cos2th*f_33_2*f[18]*f[20]*f[51]*f[53])/U[3] + (2*f_32_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[3] + (2*f_33_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[3] - (2*f_32_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[3] - (2*f_33_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[3] + (2*cos2th*f_32_2*f[19]*f[21]*f[51]*f[53])/U[3] + (2*cos2th*f_33_2*f[19]*f[21]*f[51]*f[53])/U[3] + (3*cos2th*f_32_2*f[20]*f[22]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_33_2*f[20]*f[22]*f[52]*f[54])/(2.*U[3]) + (3*f_32_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[3]) + (3*f_33_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[3]) - (3*f_32_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[3]) - (3*f_33_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_32_2*f[21]*f[23]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_33_2*f[21]*f[23]*f[52]*f[54])/(2.*U[3]) - (3*f_32_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[3]) - (3*f_33_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_32_2*f[21]*f[22]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_33_2*f[21]*f[22]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_32_2*f[20]*f[23]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_33_2*f[20]*f[23]*f[53]*f[54])/(2.*U[3]) - (3*f_32_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[3]) - (3*f_33_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[3]) + (3*f_32_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[3]) + (3*f_33_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_32_2*f[21]*f[22]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_33_2*f[21]*f[22]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_32_2*f[20]*f[23]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_33_2*f[20]*f[23]*f[52]*f[55])/(2.*U[3]) + (3*f_32_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[3]) + (3*f_33_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_32_2*f[20]*f[22]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_33_2*f[20]*f[22]*f[53]*f[55])/(2.*U[3]) + (3*f_32_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[3]) + (3*f_33_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[3]) - (3*f_32_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[3]) - (3*f_33_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_32_2*f[21]*f[23]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_33_2*f[21]*f[23]*f[53]*f[55])/(2.*U[3]) + (4*cos2th*f_32_2*f[22]*f[24]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_33_2*f[22]*f[24]*f[54]*f[56])/(3.*U[3]) + (4*f_32_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[3]) + (4*f_33_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[3]) - (4*f_32_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[3]) - (4*f_33_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_32_2*f[23]*f[25]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_33_2*f[23]*f[25]*f[54]*f[56])/(3.*U[3]) - (4*f_32_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[3]) - (4*f_33_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_32_2*f[23]*f[24]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_33_2*f[23]*f[24]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_32_2*f[22]*f[25]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_33_2*f[22]*f[25]*f[55]*f[56])/(3.*U[3]) - (4*f_32_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[3]) - (4*f_33_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[3]) + (4*f_32_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[3]) + (4*f_33_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_32_2*f[23]*f[24]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_33_2*f[23]*f[24]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_32_2*f[22]*f[25]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_33_2*f[22]*f[25]*f[54]*f[57])/(3.*U[3]) + (4*f_32_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[3]) + (4*f_33_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_32_2*f[22]*f[24]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_33_2*f[22]*f[24]*f[55]*f[57])/(3.*U[3]) + (4*f_32_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[3]) + (4*f_33_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[3]) - (4*f_32_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[3]) - (4*f_33_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_32_2*f[23]*f[25]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_33_2*f[23]*f[25]*f[55]*f[57])/(3.*U[3]) + (5*cos2th*f_32_2*f[24]*f[26]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_33_2*f[24]*f[26]*f[56]*f[58])/(4.*U[3]) + (5*f_32_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[3]) + (5*f_33_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[3]) - (5*f_32_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[3]) - (5*f_33_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_32_2*f[25]*f[27]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_33_2*f[25]*f[27]*f[56]*f[58])/(4.*U[3]) - (5*f_32_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[3]) - (5*f_33_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_32_2*f[25]*f[26]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_33_2*f[25]*f[26]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_32_2*f[24]*f[27]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_33_2*f[24]*f[27]*f[57]*f[58])/(4.*U[3]) - (5*f_32_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[3]) - (5*f_33_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[3]) + (5*f_32_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[3]) + (5*f_33_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_32_2*f[25]*f[26]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_33_2*f[25]*f[26]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_32_2*f[24]*f[27]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_33_2*f[24]*f[27]*f[56]*f[59])/(4.*U[3]) + (5*f_32_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[3]) + (5*f_33_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_32_2*f[24]*f[26]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_33_2*f[24]*f[26]*f[57]*f[59])/(4.*U[3]) + (5*f_32_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[3]) + (5*f_33_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[3]) - (5*f_32_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[3]) - (5*f_33_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_32_2*f[25]*f[27]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_33_2*f[25]*f[27]*f[57]*f[59])/(4.*U[3]) + (6*cos2th*f_32_2*f[26]*f[28]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_33_2*f[26]*f[28]*f[58]*f[60])/(5.*U[3]) + (6*f_32_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[3]) + (6*f_33_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[3]) - (6*f_32_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[3]) - (6*f_33_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_32_2*f[27]*f[29]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_33_2*f[27]*f[29]*f[58]*f[60])/(5.*U[3]) - (6*f_32_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[3]) - (6*f_33_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_32_2*f[27]*f[28]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_33_2*f[27]*f[28]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_32_2*f[26]*f[29]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_33_2*f[26]*f[29]*f[59]*f[60])/(5.*U[3]) - (6*f_32_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[3]) - (6*f_33_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[3]) + (6*f_32_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[3]) + (6*f_33_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_32_2*f[27]*f[28]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_33_2*f[27]*f[28]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_32_2*f[26]*f[29]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_33_2*f[26]*f[29]*f[58]*f[61])/(5.*U[3]) + (6*f_32_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[3]) + (6*f_33_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_32_2*f[26]*f[28]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_33_2*f[26]*f[28]*f[59]*f[61])/(5.*U[3]) + (6*f_32_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[3]) + (6*f_33_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[3]) - (6*f_32_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[3]) - (6*f_33_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_32_2*f[27]*f[29]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_33_2*f[27]*f[29]*f[59]*f[61])/(5.*U[3]) + (7*cos2th*f_32_2*f[28]*f[30]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_33_2*f[28]*f[30]*f[60]*f[62])/(6.*U[3]) + (7*f_32_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[3]) + (7*f_33_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[3]) - (7*f_32_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[3]) - (7*f_33_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_32_2*f[29]*f[31]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_33_2*f[29]*f[31]*f[60]*f[62])/(6.*U[3]) - (7*f_32_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[3]) - (7*f_33_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_32_2*f[29]*f[30]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_33_2*f[29]*f[30]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_32_2*f[28]*f[31]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_33_2*f[28]*f[31]*f[61]*f[62])/(6.*U[3]) - (7*f_32_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[3]) - (7*f_33_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[3]) + (7*f_32_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[3]) + (7*f_33_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_32_2*f[29]*f[30]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_33_2*f[29]*f[30]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_32_2*f[28]*f[31]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_33_2*f[28]*f[31]*f[60]*f[63])/(6.*U[3]) + (7*f_32_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[3]) + (7*f_33_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_32_2*f[28]*f[30]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_33_2*f[28]*f[30]*f[61]*f[63])/(6.*U[3]) + (7*f_32_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[3]) + (7*f_33_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[3]) - (7*f_32_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[3]) - (7*f_33_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_32_2*f[29]*f[31]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_33_2*f[29]*f[31]*f[61]*f[63])/(6.*U[3]) + (14*cos2th*f_44_2*f[18]*f[20]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_45_2*f[18]*f[20]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*f_44_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*f_45_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-6*U[2] + U[3]) - (14*f_44_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-6*U[2] + U[3]) - (14*f_45_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_44_2*f[19]*f[21]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_45_2*f[19]*f[21]*f[50]*f[52])/(-6*U[2] + U[3]) - (14*f_44_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*f_45_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_44_2*f[19]*f[20]*f[51]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_45_2*f[19]*f[20]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*cos2th*f_44_2*f[18]*f[21]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*cos2th*f_45_2*f[18]*f[21]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*f_44_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*f_45_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-6*U[2] + U[3]) + (14*f_44_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*f_45_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-6*U[2] + U[3]) - (14*cos2th*f_44_2*f[19]*f[20]*f[50]*f[53])/(-6*U[2] + U[3]) - (14*cos2th*f_45_2*f[19]*f[20]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_44_2*f[18]*f[21]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_45_2*f[18]*f[21]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*f_44_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*f_45_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_44_2*f[18]*f[20]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_45_2*f[18]*f[20]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*f_44_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*f_45_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-6*U[2] + U[3]) - (14*f_44_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-6*U[2] + U[3]) - (14*f_45_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_44_2*f[19]*f[21]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_45_2*f[19]*f[21]*f[51]*f[53])/(-6*U[2] + U[3]) + (12*cos2th*f_42_2*f[18]*f[20]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_43_2*f[18]*f[20]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*f_42_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*f_43_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-5*U[2] + U[3]) - (12*f_42_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-5*U[2] + U[3]) - (12*f_43_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_42_2*f[19]*f[21]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_43_2*f[19]*f[21]*f[50]*f[52])/(-5*U[2] + U[3]) - (12*f_42_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*f_43_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_42_2*f[19]*f[20]*f[51]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_43_2*f[19]*f[20]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*cos2th*f_42_2*f[18]*f[21]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*cos2th*f_43_2*f[18]*f[21]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*f_42_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*f_43_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-5*U[2] + U[3]) + (12*f_42_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*f_43_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-5*U[2] + U[3]) - (12*cos2th*f_42_2*f[19]*f[20]*f[50]*f[53])/(-5*U[2] + U[3]) - (12*cos2th*f_43_2*f[19]*f[20]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_42_2*f[18]*f[21]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_43_2*f[18]*f[21]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*f_42_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*f_43_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_42_2*f[18]*f[20]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_43_2*f[18]*f[20]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*f_42_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*f_43_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-5*U[2] + U[3]) - (12*f_42_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-5*U[2] + U[3]) - (12*f_43_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_42_2*f[19]*f[21]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_43_2*f[19]*f[21]*f[51]*f[53])/(-5*U[2] + U[3]) + (10*cos2th*f_40_2*f[18]*f[20]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_41_2*f[18]*f[20]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*f_40_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*f_41_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-4*U[2] + U[3]) - (10*f_40_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-4*U[2] + U[3]) - (10*f_41_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_40_2*f[19]*f[21]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_41_2*f[19]*f[21]*f[50]*f[52])/(-4*U[2] + U[3]) - (10*f_40_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*f_41_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_40_2*f[19]*f[20]*f[51]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_41_2*f[19]*f[20]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*cos2th*f_40_2*f[18]*f[21]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*cos2th*f_41_2*f[18]*f[21]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*f_40_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*f_41_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-4*U[2] + U[3]) + (10*f_40_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*f_41_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-4*U[2] + U[3]) - (10*cos2th*f_40_2*f[19]*f[20]*f[50]*f[53])/(-4*U[2] + U[3]) - (10*cos2th*f_41_2*f[19]*f[20]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_40_2*f[18]*f[21]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_41_2*f[18]*f[21]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*f_40_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*f_41_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_40_2*f[18]*f[20]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_41_2*f[18]*f[20]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*f_40_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*f_41_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-4*U[2] + U[3]) - (10*f_40_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-4*U[2] + U[3]) - (10*f_41_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_40_2*f[19]*f[21]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_41_2*f[19]*f[21]*f[51]*f[53])/(-4*U[2] + U[3]) + (8*cos2th*f_38_2*f[18]*f[20]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_39_2*f[18]*f[20]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*f_38_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*f_39_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-3*U[2] + U[3]) - (8*f_38_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-3*U[2] + U[3]) - (8*f_39_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_38_2*f[19]*f[21]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_39_2*f[19]*f[21]*f[50]*f[52])/(-3*U[2] + U[3]) - (8*f_38_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*f_39_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_38_2*f[19]*f[20]*f[51]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_39_2*f[19]*f[20]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*cos2th*f_38_2*f[18]*f[21]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*cos2th*f_39_2*f[18]*f[21]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*f_38_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*f_39_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-3*U[2] + U[3]) + (8*f_38_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*f_39_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-3*U[2] + U[3]) - (8*cos2th*f_38_2*f[19]*f[20]*f[50]*f[53])/(-3*U[2] + U[3]) - (8*cos2th*f_39_2*f[19]*f[20]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_38_2*f[18]*f[21]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_39_2*f[18]*f[21]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*f_38_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*f_39_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_38_2*f[18]*f[20]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_39_2*f[18]*f[20]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*f_38_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*f_39_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-3*U[2] + U[3]) - (8*f_38_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-3*U[2] + U[3]) - (8*f_39_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_38_2*f[19]*f[21]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_39_2*f[19]*f[21]*f[51]*f[53])/(-3*U[2] + U[3]) + (6*cos2th*f_36_2*f[18]*f[20]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_37_2*f[18]*f[20]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*f_36_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*f_37_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-2*U[2] + U[3]) - (6*f_36_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-2*U[2] + U[3]) - (6*f_37_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_36_2*f[19]*f[21]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_37_2*f[19]*f[21]*f[50]*f[52])/(-2*U[2] + U[3]) - (6*f_36_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*f_37_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_36_2*f[19]*f[20]*f[51]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_37_2*f[19]*f[20]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*cos2th*f_36_2*f[18]*f[21]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*cos2th*f_37_2*f[18]*f[21]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*f_36_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*f_37_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-2*U[2] + U[3]) + (6*f_36_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*f_37_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-2*U[2] + U[3]) - (6*cos2th*f_36_2*f[19]*f[20]*f[50]*f[53])/(-2*U[2] + U[3]) - (6*cos2th*f_37_2*f[19]*f[20]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_36_2*f[18]*f[21]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_37_2*f[18]*f[21]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*f_36_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*f_37_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_36_2*f[18]*f[20]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_37_2*f[18]*f[20]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*f_36_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*f_37_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-2*U[2] + U[3]) - (6*f_36_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-2*U[2] + U[3]) - (6*f_37_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_36_2*f[19]*f[21]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_37_2*f[19]*f[21]*f[51]*f[53])/(-2*U[2] + U[3]) + (21*cos2th*f_44_2*f[20]*f[22]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_45_2*f[20]*f[22]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*f_44_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*f_45_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_44_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_45_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_44_2*f[21]*f[23]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_45_2*f[21]*f[23]*f[52]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_44_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_45_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_44_2*f[21]*f[22]*f[53]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_45_2*f[21]*f[22]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_44_2*f[20]*f[23]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_45_2*f[20]*f[23]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_44_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_45_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-6*U[2] + 2*U[3]) + (21*f_44_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_45_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_44_2*f[21]*f[22]*f[52]*f[55])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_45_2*f[21]*f[22]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_44_2*f[20]*f[23]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_45_2*f[20]*f[23]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_44_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_45_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_44_2*f[20]*f[22]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_45_2*f[20]*f[22]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_44_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_45_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-6*U[2] + 2*U[3]) - (21*f_44_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-6*U[2] + 2*U[3]) - (21*f_45_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_44_2*f[21]*f[23]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_45_2*f[21]*f[23]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (18*cos2th*f_42_2*f[20]*f[22]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_43_2*f[20]*f[22]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*f_42_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*f_43_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_42_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_43_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_42_2*f[21]*f[23]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_43_2*f[21]*f[23]*f[52]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_42_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_43_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_42_2*f[21]*f[22]*f[53]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_43_2*f[21]*f[22]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_42_2*f[20]*f[23]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_43_2*f[20]*f[23]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_42_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_43_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-5*U[2] + 2*U[3]) + (18*f_42_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_43_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_42_2*f[21]*f[22]*f[52]*f[55])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_43_2*f[21]*f[22]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_42_2*f[20]*f[23]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_43_2*f[20]*f[23]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_42_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_43_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_42_2*f[20]*f[22]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_43_2*f[20]*f[22]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_42_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_43_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-5*U[2] + 2*U[3]) - (18*f_42_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-5*U[2] + 2*U[3]) - (18*f_43_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_42_2*f[21]*f[23]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_43_2*f[21]*f[23]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (15*cos2th*f_40_2*f[20]*f[22]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_41_2*f[20]*f[22]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*f_40_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*f_41_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_40_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_41_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_40_2*f[21]*f[23]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_41_2*f[21]*f[23]*f[52]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_40_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_41_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_40_2*f[21]*f[22]*f[53]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_41_2*f[21]*f[22]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_40_2*f[20]*f[23]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_41_2*f[20]*f[23]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_40_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_41_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-4*U[2] + 2*U[3]) + (15*f_40_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_41_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_40_2*f[21]*f[22]*f[52]*f[55])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_41_2*f[21]*f[22]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_40_2*f[20]*f[23]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_41_2*f[20]*f[23]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_40_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_41_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_40_2*f[20]*f[22]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_41_2*f[20]*f[22]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_40_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_41_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-4*U[2] + 2*U[3]) - (15*f_40_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-4*U[2] + 2*U[3]) - (15*f_41_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_40_2*f[21]*f[23]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_41_2*f[21]*f[23]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (12*cos2th*f_38_2*f[20]*f[22]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_39_2*f[20]*f[22]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*f_38_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*f_39_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_38_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_39_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_38_2*f[21]*f[23]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_39_2*f[21]*f[23]*f[52]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_38_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_39_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_38_2*f[21]*f[22]*f[53]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_39_2*f[21]*f[22]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_38_2*f[20]*f[23]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_39_2*f[20]*f[23]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_38_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_39_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-3*U[2] + 2*U[3]) + (12*f_38_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_39_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_38_2*f[21]*f[22]*f[52]*f[55])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_39_2*f[21]*f[22]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_38_2*f[20]*f[23]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_39_2*f[20]*f[23]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_38_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_39_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_38_2*f[20]*f[22]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_39_2*f[20]*f[22]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_38_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_39_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-3*U[2] + 2*U[3]) - (12*f_38_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-3*U[2] + 2*U[3]) - (12*f_39_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_38_2*f[21]*f[23]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_39_2*f[21]*f[23]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (6*cos2th*f_34_2*f[20]*f[22]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_35_2*f[20]*f[22]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*f_34_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*f_35_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-U[2] + 2*U[3]) - (6*f_34_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-U[2] + 2*U[3]) - (6*f_35_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_34_2*f[21]*f[23]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_35_2*f[21]*f[23]*f[52]*f[54])/(-U[2] + 2*U[3]) - (6*f_34_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*f_35_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_34_2*f[21]*f[22]*f[53]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_35_2*f[21]*f[22]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*cos2th*f_34_2*f[20]*f[23]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*cos2th*f_35_2*f[20]*f[23]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*f_34_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*f_35_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-U[2] + 2*U[3]) + (6*f_34_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*f_35_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-U[2] + 2*U[3]) - (6*cos2th*f_34_2*f[21]*f[22]*f[52]*f[55])/(-U[2] + 2*U[3]) - (6*cos2th*f_35_2*f[21]*f[22]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_34_2*f[20]*f[23]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_35_2*f[20]*f[23]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*f_34_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*f_35_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_34_2*f[20]*f[22]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_35_2*f[20]*f[22]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*f_34_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*f_35_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-U[2] + 2*U[3]) - (6*f_34_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-U[2] + 2*U[3]) - (6*f_35_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_34_2*f[21]*f[23]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_35_2*f[21]*f[23]*f[53]*f[55])/(-U[2] + 2*U[3]) + (28*cos2th*f_44_2*f[22]*f[24]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_45_2*f[22]*f[24]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*f_44_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*f_45_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_44_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_45_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_44_2*f[23]*f[25]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_45_2*f[23]*f[25]*f[54]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_44_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_45_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_44_2*f[23]*f[24]*f[55]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_45_2*f[23]*f[24]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_44_2*f[22]*f[25]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_45_2*f[22]*f[25]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_44_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_45_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-6*U[2] + 3*U[3]) + (28*f_44_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_45_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_44_2*f[23]*f[24]*f[54]*f[57])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_45_2*f[23]*f[24]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_44_2*f[22]*f[25]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_45_2*f[22]*f[25]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_44_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_45_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_44_2*f[22]*f[24]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_45_2*f[22]*f[24]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_44_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_45_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-6*U[2] + 3*U[3]) - (28*f_44_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-6*U[2] + 3*U[3]) - (28*f_45_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_44_2*f[23]*f[25]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_45_2*f[23]*f[25]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (24*cos2th*f_42_2*f[22]*f[24]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_43_2*f[22]*f[24]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*f_42_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*f_43_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_42_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_43_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_42_2*f[23]*f[25]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_43_2*f[23]*f[25]*f[54]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_42_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_43_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_42_2*f[23]*f[24]*f[55]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_43_2*f[23]*f[24]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_42_2*f[22]*f[25]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_43_2*f[22]*f[25]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_42_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_43_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-5*U[2] + 3*U[3]) + (24*f_42_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_43_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_42_2*f[23]*f[24]*f[54]*f[57])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_43_2*f[23]*f[24]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_42_2*f[22]*f[25]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_43_2*f[22]*f[25]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_42_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_43_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_42_2*f[22]*f[24]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_43_2*f[22]*f[24]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_42_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_43_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-5*U[2] + 3*U[3]) - (24*f_42_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-5*U[2] + 3*U[3]) - (24*f_43_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_42_2*f[23]*f[25]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_43_2*f[23]*f[25]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (20*cos2th*f_40_2*f[22]*f[24]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_41_2*f[22]*f[24]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*f_40_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*f_41_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_40_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_41_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_40_2*f[23]*f[25]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_41_2*f[23]*f[25]*f[54]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_40_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_41_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_40_2*f[23]*f[24]*f[55]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_41_2*f[23]*f[24]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_40_2*f[22]*f[25]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_41_2*f[22]*f[25]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_40_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_41_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-4*U[2] + 3*U[3]) + (20*f_40_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_41_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_40_2*f[23]*f[24]*f[54]*f[57])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_41_2*f[23]*f[24]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_40_2*f[22]*f[25]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_41_2*f[22]*f[25]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_40_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_41_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_40_2*f[22]*f[24]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_41_2*f[22]*f[24]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_40_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_41_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-4*U[2] + 3*U[3]) - (20*f_40_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-4*U[2] + 3*U[3]) - (20*f_41_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_40_2*f[23]*f[25]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_41_2*f[23]*f[25]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (12*cos2th*f_36_2*f[22]*f[24]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_37_2*f[22]*f[24]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*f_36_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*f_37_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_36_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_37_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_36_2*f[23]*f[25]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_37_2*f[23]*f[25]*f[54]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_36_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_37_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_36_2*f[23]*f[24]*f[55]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_37_2*f[23]*f[24]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_36_2*f[22]*f[25]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_37_2*f[22]*f[25]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_36_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_37_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-2*U[2] + 3*U[3]) + (12*f_36_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_37_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_36_2*f[23]*f[24]*f[54]*f[57])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_37_2*f[23]*f[24]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_36_2*f[22]*f[25]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_37_2*f[22]*f[25]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_36_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_37_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_36_2*f[22]*f[24]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_37_2*f[22]*f[24]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_36_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_37_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-2*U[2] + 3*U[3]) - (12*f_36_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-2*U[2] + 3*U[3]) - (12*f_37_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_36_2*f[23]*f[25]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_37_2*f[23]*f[25]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (8*cos2th*f_34_2*f[22]*f[24]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_35_2*f[22]*f[24]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*f_34_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*f_35_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-U[2] + 3*U[3]) - (8*f_34_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-U[2] + 3*U[3]) - (8*f_35_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_34_2*f[23]*f[25]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_35_2*f[23]*f[25]*f[54]*f[56])/(-U[2] + 3*U[3]) - (8*f_34_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*f_35_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_34_2*f[23]*f[24]*f[55]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_35_2*f[23]*f[24]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*cos2th*f_34_2*f[22]*f[25]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*cos2th*f_35_2*f[22]*f[25]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*f_34_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*f_35_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-U[2] + 3*U[3]) + (8*f_34_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*f_35_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-U[2] + 3*U[3]) - (8*cos2th*f_34_2*f[23]*f[24]*f[54]*f[57])/(-U[2] + 3*U[3]) - (8*cos2th*f_35_2*f[23]*f[24]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_34_2*f[22]*f[25]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_35_2*f[22]*f[25]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*f_34_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*f_35_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_34_2*f[22]*f[24]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_35_2*f[22]*f[24]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*f_34_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*f_35_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-U[2] + 3*U[3]) - (8*f_34_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-U[2] + 3*U[3]) - (8*f_35_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_34_2*f[23]*f[25]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_35_2*f[23]*f[25]*f[55]*f[57])/(-U[2] + 3*U[3]) + (35*cos2th*f_44_2*f[24]*f[26]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_45_2*f[24]*f[26]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*f_44_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*f_45_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_44_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_45_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_44_2*f[25]*f[27]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_45_2*f[25]*f[27]*f[56]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_44_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_45_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_44_2*f[25]*f[26]*f[57]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_45_2*f[25]*f[26]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_44_2*f[24]*f[27]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_45_2*f[24]*f[27]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_44_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_45_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-6*U[2] + 4*U[3]) + (35*f_44_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_45_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_44_2*f[25]*f[26]*f[56]*f[59])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_45_2*f[25]*f[26]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_44_2*f[24]*f[27]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_45_2*f[24]*f[27]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_44_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_45_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_44_2*f[24]*f[26]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_45_2*f[24]*f[26]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_44_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_45_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-6*U[2] + 4*U[3]) - (35*f_44_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-6*U[2] + 4*U[3]) - (35*f_45_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_44_2*f[25]*f[27]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_45_2*f[25]*f[27]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (30*cos2th*f_42_2*f[24]*f[26]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_43_2*f[24]*f[26]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*f_42_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*f_43_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_42_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_43_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_42_2*f[25]*f[27]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_43_2*f[25]*f[27]*f[56]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_42_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_43_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_42_2*f[25]*f[26]*f[57]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_43_2*f[25]*f[26]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_42_2*f[24]*f[27]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_43_2*f[24]*f[27]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_42_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_43_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-5*U[2] + 4*U[3]) + (30*f_42_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_43_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_42_2*f[25]*f[26]*f[56]*f[59])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_43_2*f[25]*f[26]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_42_2*f[24]*f[27]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_43_2*f[24]*f[27]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_42_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_43_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_42_2*f[24]*f[26]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_43_2*f[24]*f[26]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_42_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_43_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-5*U[2] + 4*U[3]) - (30*f_42_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-5*U[2] + 4*U[3]) - (30*f_43_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_42_2*f[25]*f[27]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_43_2*f[25]*f[27]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (20*cos2th*f_38_2*f[24]*f[26]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_39_2*f[24]*f[26]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*f_38_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*f_39_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_38_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_39_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_38_2*f[25]*f[27]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_39_2*f[25]*f[27]*f[56]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_38_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_39_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_38_2*f[25]*f[26]*f[57]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_39_2*f[25]*f[26]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_38_2*f[24]*f[27]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_39_2*f[24]*f[27]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_38_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_39_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-3*U[2] + 4*U[3]) + (20*f_38_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_39_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_38_2*f[25]*f[26]*f[56]*f[59])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_39_2*f[25]*f[26]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_38_2*f[24]*f[27]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_39_2*f[24]*f[27]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_38_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_39_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_38_2*f[24]*f[26]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_39_2*f[24]*f[26]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_38_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_39_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-3*U[2] + 4*U[3]) - (20*f_38_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-3*U[2] + 4*U[3]) - (20*f_39_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_38_2*f[25]*f[27]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_39_2*f[25]*f[27]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (15*cos2th*f_36_2*f[24]*f[26]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_37_2*f[24]*f[26]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*f_36_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*f_37_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_36_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_37_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_36_2*f[25]*f[27]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_37_2*f[25]*f[27]*f[56]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_36_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_37_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_36_2*f[25]*f[26]*f[57]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_37_2*f[25]*f[26]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_36_2*f[24]*f[27]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_37_2*f[24]*f[27]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_36_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_37_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-2*U[2] + 4*U[3]) + (15*f_36_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_37_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_36_2*f[25]*f[26]*f[56]*f[59])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_37_2*f[25]*f[26]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_36_2*f[24]*f[27]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_37_2*f[24]*f[27]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_36_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_37_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_36_2*f[24]*f[26]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_37_2*f[24]*f[26]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_36_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_37_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-2*U[2] + 4*U[3]) - (15*f_36_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-2*U[2] + 4*U[3]) - (15*f_37_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_36_2*f[25]*f[27]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_37_2*f[25]*f[27]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (10*cos2th*f_34_2*f[24]*f[26]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_35_2*f[24]*f[26]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*f_34_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*f_35_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-U[2] + 4*U[3]) - (10*f_34_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-U[2] + 4*U[3]) - (10*f_35_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_34_2*f[25]*f[27]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_35_2*f[25]*f[27]*f[56]*f[58])/(-U[2] + 4*U[3]) - (10*f_34_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*f_35_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_34_2*f[25]*f[26]*f[57]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_35_2*f[25]*f[26]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*cos2th*f_34_2*f[24]*f[27]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*cos2th*f_35_2*f[24]*f[27]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*f_34_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*f_35_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-U[2] + 4*U[3]) + (10*f_34_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*f_35_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-U[2] + 4*U[3]) - (10*cos2th*f_34_2*f[25]*f[26]*f[56]*f[59])/(-U[2] + 4*U[3]) - (10*cos2th*f_35_2*f[25]*f[26]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_34_2*f[24]*f[27]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_35_2*f[24]*f[27]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*f_34_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*f_35_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_34_2*f[24]*f[26]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_35_2*f[24]*f[26]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*f_34_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*f_35_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-U[2] + 4*U[3]) - (10*f_34_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-U[2] + 4*U[3]) - (10*f_35_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_34_2*f[25]*f[27]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_35_2*f[25]*f[27]*f[57]*f[59])/(-U[2] + 4*U[3]) + (42*cos2th*f_44_2*f[26]*f[28]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_45_2*f[26]*f[28]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*f_44_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*f_45_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_44_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_45_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_44_2*f[27]*f[29]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_45_2*f[27]*f[29]*f[58]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_44_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_45_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_44_2*f[27]*f[28]*f[59]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_45_2*f[27]*f[28]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_44_2*f[26]*f[29]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_45_2*f[26]*f[29]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_44_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_45_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-6*U[2] + 5*U[3]) + (42*f_44_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_45_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_44_2*f[27]*f[28]*f[58]*f[61])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_45_2*f[27]*f[28]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_44_2*f[26]*f[29]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_45_2*f[26]*f[29]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_44_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_45_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_44_2*f[26]*f[28]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_45_2*f[26]*f[28]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_44_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_45_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-6*U[2] + 5*U[3]) - (42*f_44_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-6*U[2] + 5*U[3]) - (42*f_45_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_44_2*f[27]*f[29]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_45_2*f[27]*f[29]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (30*cos2th*f_40_2*f[26]*f[28]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_41_2*f[26]*f[28]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*f_40_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*f_41_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_40_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_41_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_40_2*f[27]*f[29]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_41_2*f[27]*f[29]*f[58]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_40_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_41_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_40_2*f[27]*f[28]*f[59]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_41_2*f[27]*f[28]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_40_2*f[26]*f[29]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_41_2*f[26]*f[29]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_40_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_41_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-4*U[2] + 5*U[3]) + (30*f_40_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_41_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_40_2*f[27]*f[28]*f[58]*f[61])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_41_2*f[27]*f[28]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_40_2*f[26]*f[29]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_41_2*f[26]*f[29]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_40_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_41_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_40_2*f[26]*f[28]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_41_2*f[26]*f[28]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_40_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_41_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-4*U[2] + 5*U[3]) - (30*f_40_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-4*U[2] + 5*U[3]) - (30*f_41_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_40_2*f[27]*f[29]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_41_2*f[27]*f[29]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (24*cos2th*f_38_2*f[26]*f[28]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_39_2*f[26]*f[28]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*f_38_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*f_39_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_38_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_39_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_38_2*f[27]*f[29]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_39_2*f[27]*f[29]*f[58]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_38_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_39_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_38_2*f[27]*f[28]*f[59]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_39_2*f[27]*f[28]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_38_2*f[26]*f[29]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_39_2*f[26]*f[29]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_38_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_39_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-3*U[2] + 5*U[3]) + (24*f_38_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_39_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_38_2*f[27]*f[28]*f[58]*f[61])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_39_2*f[27]*f[28]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_38_2*f[26]*f[29]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_39_2*f[26]*f[29]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_38_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_39_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_38_2*f[26]*f[28]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_39_2*f[26]*f[28]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_38_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_39_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-3*U[2] + 5*U[3]) - (24*f_38_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-3*U[2] + 5*U[3]) - (24*f_39_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_38_2*f[27]*f[29]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_39_2*f[27]*f[29]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (18*cos2th*f_36_2*f[26]*f[28]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_37_2*f[26]*f[28]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*f_36_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*f_37_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_36_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_37_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_36_2*f[27]*f[29]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_37_2*f[27]*f[29]*f[58]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_36_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_37_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_36_2*f[27]*f[28]*f[59]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_37_2*f[27]*f[28]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_36_2*f[26]*f[29]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_37_2*f[26]*f[29]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_36_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_37_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-2*U[2] + 5*U[3]) + (18*f_36_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_37_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_36_2*f[27]*f[28]*f[58]*f[61])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_37_2*f[27]*f[28]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_36_2*f[26]*f[29]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_37_2*f[26]*f[29]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_36_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_37_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_36_2*f[26]*f[28]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_37_2*f[26]*f[28]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_36_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_37_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-2*U[2] + 5*U[3]) - (18*f_36_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-2*U[2] + 5*U[3]) - (18*f_37_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_36_2*f[27]*f[29]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_37_2*f[27]*f[29]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (12*cos2th*f_34_2*f[26]*f[28]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_35_2*f[26]*f[28]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*f_34_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*f_35_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-U[2] + 5*U[3]) - (12*f_34_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-U[2] + 5*U[3]) - (12*f_35_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_34_2*f[27]*f[29]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_35_2*f[27]*f[29]*f[58]*f[60])/(-U[2] + 5*U[3]) - (12*f_34_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*f_35_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_34_2*f[27]*f[28]*f[59]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_35_2*f[27]*f[28]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*cos2th*f_34_2*f[26]*f[29]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*cos2th*f_35_2*f[26]*f[29]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*f_34_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*f_35_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-U[2] + 5*U[3]) + (12*f_34_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*f_35_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-U[2] + 5*U[3]) - (12*cos2th*f_34_2*f[27]*f[28]*f[58]*f[61])/(-U[2] + 5*U[3]) - (12*cos2th*f_35_2*f[27]*f[28]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_34_2*f[26]*f[29]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_35_2*f[26]*f[29]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*f_34_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*f_35_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_34_2*f[26]*f[28]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_35_2*f[26]*f[28]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*f_34_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*f_35_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-U[2] + 5*U[3]) - (12*f_34_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-U[2] + 5*U[3]) - (12*f_35_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_34_2*f[27]*f[29]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_35_2*f[27]*f[29]*f[59]*f[61])/(-U[2] + 5*U[3]) + (42*cos2th*f_42_2*f[28]*f[30]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_43_2*f[28]*f[30]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*f_42_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*f_43_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_42_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_43_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_42_2*f[29]*f[31]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_43_2*f[29]*f[31]*f[60]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_42_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_43_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_42_2*f[29]*f[30]*f[61]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_43_2*f[29]*f[30]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_42_2*f[28]*f[31]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_43_2*f[28]*f[31]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_42_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_43_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-5*U[2] + 6*U[3]) + (42*f_42_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_43_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_42_2*f[29]*f[30]*f[60]*f[63])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_43_2*f[29]*f[30]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_42_2*f[28]*f[31]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_43_2*f[28]*f[31]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_42_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_43_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_42_2*f[28]*f[30]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_43_2*f[28]*f[30]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_42_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_43_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-5*U[2] + 6*U[3]) - (42*f_42_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-5*U[2] + 6*U[3]) - (42*f_43_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_42_2*f[29]*f[31]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_43_2*f[29]*f[31]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (35*cos2th*f_40_2*f[28]*f[30]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_41_2*f[28]*f[30]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*f_40_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*f_41_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_40_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_41_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_40_2*f[29]*f[31]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_41_2*f[29]*f[31]*f[60]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_40_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_41_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_40_2*f[29]*f[30]*f[61]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_41_2*f[29]*f[30]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_40_2*f[28]*f[31]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_41_2*f[28]*f[31]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_40_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_41_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-4*U[2] + 6*U[3]) + (35*f_40_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_41_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_40_2*f[29]*f[30]*f[60]*f[63])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_41_2*f[29]*f[30]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_40_2*f[28]*f[31]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_41_2*f[28]*f[31]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_40_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_41_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_40_2*f[28]*f[30]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_41_2*f[28]*f[30]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_40_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_41_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-4*U[2] + 6*U[3]) - (35*f_40_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-4*U[2] + 6*U[3]) - (35*f_41_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_40_2*f[29]*f[31]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_41_2*f[29]*f[31]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (28*cos2th*f_38_2*f[28]*f[30]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_39_2*f[28]*f[30]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*f_38_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*f_39_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_38_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_39_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_38_2*f[29]*f[31]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_39_2*f[29]*f[31]*f[60]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_38_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_39_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_38_2*f[29]*f[30]*f[61]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_39_2*f[29]*f[30]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_38_2*f[28]*f[31]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_39_2*f[28]*f[31]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_38_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_39_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-3*U[2] + 6*U[3]) + (28*f_38_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_39_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_38_2*f[29]*f[30]*f[60]*f[63])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_39_2*f[29]*f[30]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_38_2*f[28]*f[31]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_39_2*f[28]*f[31]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_38_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_39_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_38_2*f[28]*f[30]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_39_2*f[28]*f[30]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_38_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_39_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-3*U[2] + 6*U[3]) - (28*f_38_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-3*U[2] + 6*U[3]) - (28*f_39_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_38_2*f[29]*f[31]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_39_2*f[29]*f[31]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (21*cos2th*f_36_2*f[28]*f[30]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_37_2*f[28]*f[30]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*f_36_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*f_37_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_36_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_37_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_36_2*f[29]*f[31]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_37_2*f[29]*f[31]*f[60]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_36_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_37_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_36_2*f[29]*f[30]*f[61]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_37_2*f[29]*f[30]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_36_2*f[28]*f[31]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_37_2*f[28]*f[31]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_36_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_37_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-2*U[2] + 6*U[3]) + (21*f_36_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_37_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_36_2*f[29]*f[30]*f[60]*f[63])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_37_2*f[29]*f[30]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_36_2*f[28]*f[31]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_37_2*f[28]*f[31]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_36_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_37_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_36_2*f[28]*f[30]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_37_2*f[28]*f[30]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_36_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_37_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-2*U[2] + 6*U[3]) - (21*f_36_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-2*U[2] + 6*U[3]) - (21*f_37_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_36_2*f[29]*f[31]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_37_2*f[29]*f[31]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (14*cos2th*f_34_2*f[28]*f[30]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_35_2*f[28]*f[30]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*f_34_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*f_35_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-U[2] + 6*U[3]) - (14*f_34_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-U[2] + 6*U[3]) - (14*f_35_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_34_2*f[29]*f[31]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_35_2*f[29]*f[31]*f[60]*f[62])/(-U[2] + 6*U[3]) - (14*f_34_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*f_35_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_34_2*f[29]*f[30]*f[61]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_35_2*f[29]*f[30]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*cos2th*f_34_2*f[28]*f[31]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*cos2th*f_35_2*f[28]*f[31]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*f_34_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*f_35_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-U[2] + 6*U[3]) + (14*f_34_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*f_35_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-U[2] + 6*U[3]) - (14*cos2th*f_34_2*f[29]*f[30]*f[60]*f[63])/(-U[2] + 6*U[3]) - (14*cos2th*f_35_2*f[29]*f[30]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_34_2*f[28]*f[31]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_35_2*f[28]*f[31]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*f_34_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*f_35_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_34_2*f[28]*f[30]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_35_2*f[28]*f[30]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*f_34_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*f_35_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-U[2] + 6*U[3]) - (14*f_34_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-U[2] + 6*U[3]) - (14*f_35_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_34_2*f[29]*f[31]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_35_2*f[29]*f[31]*f[61]*f[63])/(-U[2] + 6*U[3])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - (J[1]*J[2]*((-2*cos2th*f_36_2*f[16]*f[18]*f[48]*f[50])/U[2] - (2*cos2th*f_37_2*f[16]*f[18]*f[48]*f[50])/U[2] - (3*cos2th*f_38_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) - (3*cos2th*f_39_2*f[16]*f[18]*f[48]*f[50])/(2.*U[2]) - (4*cos2th*f_40_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) - (4*cos2th*f_41_2*f[16]*f[18]*f[48]*f[50])/(3.*U[2]) - (5*cos2th*f_42_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) - (5*cos2th*f_43_2*f[16]*f[18]*f[48]*f[50])/(4.*U[2]) - (6*cos2th*f_44_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) - (6*cos2th*f_45_2*f[16]*f[18]*f[48]*f[50])/(5.*U[2]) - (7*cos2th*f_46_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) - (7*cos2th*f_47_2*f[16]*f[18]*f[48]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] - (2*f_37_2*sin2th*f[17]*f[18]*f[48]*f[50])/U[2] - (3*f_38_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) - (3*f_39_2*sin2th*f[17]*f[18]*f[48]*f[50])/(2.*U[2]) - (4*f_40_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) - (4*f_41_2*sin2th*f[17]*f[18]*f[48]*f[50])/(3.*U[2]) - (5*f_42_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) - (5*f_43_2*sin2th*f[17]*f[18]*f[48]*f[50])/(4.*U[2]) - (6*f_44_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) - (6*f_45_2*sin2th*f[17]*f[18]*f[48]*f[50])/(5.*U[2]) - (7*f_46_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) - (7*f_47_2*sin2th*f[17]*f[18]*f[48]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] + (2*f_37_2*sin2th*f[16]*f[19]*f[48]*f[50])/U[2] + (3*f_38_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) + (3*f_39_2*sin2th*f[16]*f[19]*f[48]*f[50])/(2.*U[2]) + (4*f_40_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) + (4*f_41_2*sin2th*f[16]*f[19]*f[48]*f[50])/(3.*U[2]) + (5*f_42_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) + (5*f_43_2*sin2th*f[16]*f[19]*f[48]*f[50])/(4.*U[2]) + (6*f_44_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) + (6*f_45_2*sin2th*f[16]*f[19]*f[48]*f[50])/(5.*U[2]) + (7*f_46_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) + (7*f_47_2*sin2th*f[16]*f[19]*f[48]*f[50])/(6.*U[2]) - (2*cos2th*f_36_2*f[17]*f[19]*f[48]*f[50])/U[2] - (2*cos2th*f_37_2*f[17]*f[19]*f[48]*f[50])/U[2] - (3*cos2th*f_38_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) - (3*cos2th*f_39_2*f[17]*f[19]*f[48]*f[50])/(2.*U[2]) - (4*cos2th*f_40_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) - (4*cos2th*f_41_2*f[17]*f[19]*f[48]*f[50])/(3.*U[2]) - (5*cos2th*f_42_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) - (5*cos2th*f_43_2*f[17]*f[19]*f[48]*f[50])/(4.*U[2]) - (6*cos2th*f_44_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) - (6*cos2th*f_45_2*f[17]*f[19]*f[48]*f[50])/(5.*U[2]) - (7*cos2th*f_46_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) - (7*cos2th*f_47_2*f[17]*f[19]*f[48]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] + (2*f_37_2*sin2th*f[16]*f[18]*f[49]*f[50])/U[2] + (3*f_38_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) + (3*f_39_2*sin2th*f[16]*f[18]*f[49]*f[50])/(2.*U[2]) + (4*f_40_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) + (4*f_41_2*sin2th*f[16]*f[18]*f[49]*f[50])/(3.*U[2]) + (5*f_42_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) + (5*f_43_2*sin2th*f[16]*f[18]*f[49]*f[50])/(4.*U[2]) + (6*f_44_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) + (6*f_45_2*sin2th*f[16]*f[18]*f[49]*f[50])/(5.*U[2]) + (7*f_46_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) + (7*f_47_2*sin2th*f[16]*f[18]*f[49]*f[50])/(6.*U[2]) - (2*cos2th*f_36_2*f[17]*f[18]*f[49]*f[50])/U[2] - (2*cos2th*f_37_2*f[17]*f[18]*f[49]*f[50])/U[2] - (3*cos2th*f_38_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) - (3*cos2th*f_39_2*f[17]*f[18]*f[49]*f[50])/(2.*U[2]) - (4*cos2th*f_40_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) - (4*cos2th*f_41_2*f[17]*f[18]*f[49]*f[50])/(3.*U[2]) - (5*cos2th*f_42_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) - (5*cos2th*f_43_2*f[17]*f[18]*f[49]*f[50])/(4.*U[2]) - (6*cos2th*f_44_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) - (6*cos2th*f_45_2*f[17]*f[18]*f[49]*f[50])/(5.*U[2]) - (7*cos2th*f_46_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) - (7*cos2th*f_47_2*f[17]*f[18]*f[49]*f[50])/(6.*U[2]) + (2*cos2th*f_36_2*f[16]*f[19]*f[49]*f[50])/U[2] + (2*cos2th*f_37_2*f[16]*f[19]*f[49]*f[50])/U[2] + (3*cos2th*f_38_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) + (3*cos2th*f_39_2*f[16]*f[19]*f[49]*f[50])/(2.*U[2]) + (4*cos2th*f_40_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) + (4*cos2th*f_41_2*f[16]*f[19]*f[49]*f[50])/(3.*U[2]) + (5*cos2th*f_42_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) + (5*cos2th*f_43_2*f[16]*f[19]*f[49]*f[50])/(4.*U[2]) + (6*cos2th*f_44_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) + (6*cos2th*f_45_2*f[16]*f[19]*f[49]*f[50])/(5.*U[2]) + (7*cos2th*f_46_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) + (7*cos2th*f_47_2*f[16]*f[19]*f[49]*f[50])/(6.*U[2]) + (2*f_36_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] + (2*f_37_2*sin2th*f[17]*f[19]*f[49]*f[50])/U[2] + (3*f_38_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) + (3*f_39_2*sin2th*f[17]*f[19]*f[49]*f[50])/(2.*U[2]) + (4*f_40_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) + (4*f_41_2*sin2th*f[17]*f[19]*f[49]*f[50])/(3.*U[2]) + (5*f_42_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) + (5*f_43_2*sin2th*f[17]*f[19]*f[49]*f[50])/(4.*U[2]) + (6*f_44_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) + (6*f_45_2*sin2th*f[17]*f[19]*f[49]*f[50])/(5.*U[2]) + (7*f_46_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) + (7*f_47_2*sin2th*f[17]*f[19]*f[49]*f[50])/(6.*U[2]) - (2*f_36_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] - (2*f_37_2*sin2th*f[16]*f[18]*f[48]*f[51])/U[2] - (3*f_38_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) - (3*f_39_2*sin2th*f[16]*f[18]*f[48]*f[51])/(2.*U[2]) - (4*f_40_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) - (4*f_41_2*sin2th*f[16]*f[18]*f[48]*f[51])/(3.*U[2]) - (5*f_42_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) - (5*f_43_2*sin2th*f[16]*f[18]*f[48]*f[51])/(4.*U[2]) - (6*f_44_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) - (6*f_45_2*sin2th*f[16]*f[18]*f[48]*f[51])/(5.*U[2]) - (7*f_46_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) - (7*f_47_2*sin2th*f[16]*f[18]*f[48]*f[51])/(6.*U[2]) + (2*cos2th*f_36_2*f[17]*f[18]*f[48]*f[51])/U[2] + (2*cos2th*f_37_2*f[17]*f[18]*f[48]*f[51])/U[2] + (3*cos2th*f_38_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) + (3*cos2th*f_39_2*f[17]*f[18]*f[48]*f[51])/(2.*U[2]) + (4*cos2th*f_40_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) + (4*cos2th*f_41_2*f[17]*f[18]*f[48]*f[51])/(3.*U[2]) + (5*cos2th*f_42_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) + (5*cos2th*f_43_2*f[17]*f[18]*f[48]*f[51])/(4.*U[2]) + (6*cos2th*f_44_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) + (6*cos2th*f_45_2*f[17]*f[18]*f[48]*f[51])/(5.*U[2]) + (7*cos2th*f_46_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) + (7*cos2th*f_47_2*f[17]*f[18]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_36_2*f[16]*f[19]*f[48]*f[51])/U[2] - (2*cos2th*f_37_2*f[16]*f[19]*f[48]*f[51])/U[2] - (3*cos2th*f_38_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) - (3*cos2th*f_39_2*f[16]*f[19]*f[48]*f[51])/(2.*U[2]) - (4*cos2th*f_40_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) - (4*cos2th*f_41_2*f[16]*f[19]*f[48]*f[51])/(3.*U[2]) - (5*cos2th*f_42_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) - (5*cos2th*f_43_2*f[16]*f[19]*f[48]*f[51])/(4.*U[2]) - (6*cos2th*f_44_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) - (6*cos2th*f_45_2*f[16]*f[19]*f[48]*f[51])/(5.*U[2]) - (7*cos2th*f_46_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) - (7*cos2th*f_47_2*f[16]*f[19]*f[48]*f[51])/(6.*U[2]) - (2*f_36_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] - (2*f_37_2*sin2th*f[17]*f[19]*f[48]*f[51])/U[2] - (3*f_38_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) - (3*f_39_2*sin2th*f[17]*f[19]*f[48]*f[51])/(2.*U[2]) - (4*f_40_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) - (4*f_41_2*sin2th*f[17]*f[19]*f[48]*f[51])/(3.*U[2]) - (5*f_42_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) - (5*f_43_2*sin2th*f[17]*f[19]*f[48]*f[51])/(4.*U[2]) - (6*f_44_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) - (6*f_45_2*sin2th*f[17]*f[19]*f[48]*f[51])/(5.*U[2]) - (7*f_46_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) - (7*f_47_2*sin2th*f[17]*f[19]*f[48]*f[51])/(6.*U[2]) - (2*cos2th*f_36_2*f[16]*f[18]*f[49]*f[51])/U[2] - (2*cos2th*f_37_2*f[16]*f[18]*f[49]*f[51])/U[2] - (3*cos2th*f_38_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) - (3*cos2th*f_39_2*f[16]*f[18]*f[49]*f[51])/(2.*U[2]) - (4*cos2th*f_40_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) - (4*cos2th*f_41_2*f[16]*f[18]*f[49]*f[51])/(3.*U[2]) - (5*cos2th*f_42_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) - (5*cos2th*f_43_2*f[16]*f[18]*f[49]*f[51])/(4.*U[2]) - (6*cos2th*f_44_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) - (6*cos2th*f_45_2*f[16]*f[18]*f[49]*f[51])/(5.*U[2]) - (7*cos2th*f_46_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) - (7*cos2th*f_47_2*f[16]*f[18]*f[49]*f[51])/(6.*U[2]) - (2*f_36_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] - (2*f_37_2*sin2th*f[17]*f[18]*f[49]*f[51])/U[2] - (3*f_38_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) - (3*f_39_2*sin2th*f[17]*f[18]*f[49]*f[51])/(2.*U[2]) - (4*f_40_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) - (4*f_41_2*sin2th*f[17]*f[18]*f[49]*f[51])/(3.*U[2]) - (5*f_42_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) - (5*f_43_2*sin2th*f[17]*f[18]*f[49]*f[51])/(4.*U[2]) - (6*f_44_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) - (6*f_45_2*sin2th*f[17]*f[18]*f[49]*f[51])/(5.*U[2]) - (7*f_46_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) - (7*f_47_2*sin2th*f[17]*f[18]*f[49]*f[51])/(6.*U[2]) + (2*f_36_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] + (2*f_37_2*sin2th*f[16]*f[19]*f[49]*f[51])/U[2] + (3*f_38_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) + (3*f_39_2*sin2th*f[16]*f[19]*f[49]*f[51])/(2.*U[2]) + (4*f_40_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) + (4*f_41_2*sin2th*f[16]*f[19]*f[49]*f[51])/(3.*U[2]) + (5*f_42_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) + (5*f_43_2*sin2th*f[16]*f[19]*f[49]*f[51])/(4.*U[2]) + (6*f_44_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) + (6*f_45_2*sin2th*f[16]*f[19]*f[49]*f[51])/(5.*U[2]) + (7*f_46_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) + (7*f_47_2*sin2th*f[16]*f[19]*f[49]*f[51])/(6.*U[2]) - (2*cos2th*f_36_2*f[17]*f[19]*f[49]*f[51])/U[2] - (2*cos2th*f_37_2*f[17]*f[19]*f[49]*f[51])/U[2] - (3*cos2th*f_38_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) - (3*cos2th*f_39_2*f[17]*f[19]*f[49]*f[51])/(2.*U[2]) - (4*cos2th*f_40_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) - (4*cos2th*f_41_2*f[17]*f[19]*f[49]*f[51])/(3.*U[2]) - (5*cos2th*f_42_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) - (5*cos2th*f_43_2*f[17]*f[19]*f[49]*f[51])/(4.*U[2]) - (6*cos2th*f_44_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) - (6*cos2th*f_45_2*f[17]*f[19]*f[49]*f[51])/(5.*U[2]) - (7*cos2th*f_46_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) - (7*cos2th*f_47_2*f[17]*f[19]*f[49]*f[51])/(6.*U[2]) + (2*cos2th*f_34_2*f[18]*f[20]*f[50]*f[52])/U[3] + (2*cos2th*f_35_2*f[18]*f[20]*f[50]*f[52])/U[3] + (2*f_34_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[3] + (2*f_35_2*sin2th*f[19]*f[20]*f[50]*f[52])/U[3] - (2*f_34_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[3] - (2*f_35_2*sin2th*f[18]*f[21]*f[50]*f[52])/U[3] + (2*cos2th*f_34_2*f[19]*f[21]*f[50]*f[52])/U[3] + (2*cos2th*f_35_2*f[19]*f[21]*f[50]*f[52])/U[3] - (2*f_34_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[3] - (2*f_35_2*sin2th*f[18]*f[20]*f[51]*f[52])/U[3] + (2*cos2th*f_34_2*f[19]*f[20]*f[51]*f[52])/U[3] + (2*cos2th*f_35_2*f[19]*f[20]*f[51]*f[52])/U[3] - (2*cos2th*f_34_2*f[18]*f[21]*f[51]*f[52])/U[3] - (2*cos2th*f_35_2*f[18]*f[21]*f[51]*f[52])/U[3] - (2*f_34_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[3] - (2*f_35_2*sin2th*f[19]*f[21]*f[51]*f[52])/U[3] + (2*f_34_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[3] + (2*f_35_2*sin2th*f[18]*f[20]*f[50]*f[53])/U[3] - (2*cos2th*f_34_2*f[19]*f[20]*f[50]*f[53])/U[3] - (2*cos2th*f_35_2*f[19]*f[20]*f[50]*f[53])/U[3] + (2*cos2th*f_34_2*f[18]*f[21]*f[50]*f[53])/U[3] + (2*cos2th*f_35_2*f[18]*f[21]*f[50]*f[53])/U[3] + (2*f_34_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[3] + (2*f_35_2*sin2th*f[19]*f[21]*f[50]*f[53])/U[3] + (2*cos2th*f_34_2*f[18]*f[20]*f[51]*f[53])/U[3] + (2*cos2th*f_35_2*f[18]*f[20]*f[51]*f[53])/U[3] + (2*f_34_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[3] + (2*f_35_2*sin2th*f[19]*f[20]*f[51]*f[53])/U[3] - (2*f_34_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[3] - (2*f_35_2*sin2th*f[18]*f[21]*f[51]*f[53])/U[3] + (2*cos2th*f_34_2*f[19]*f[21]*f[51]*f[53])/U[3] + (2*cos2th*f_35_2*f[19]*f[21]*f[51]*f[53])/U[3] + (3*cos2th*f_34_2*f[20]*f[22]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_35_2*f[20]*f[22]*f[52]*f[54])/(2.*U[3]) + (3*f_34_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[3]) + (3*f_35_2*sin2th*f[21]*f[22]*f[52]*f[54])/(2.*U[3]) - (3*f_34_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[3]) - (3*f_35_2*sin2th*f[20]*f[23]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_34_2*f[21]*f[23]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_35_2*f[21]*f[23]*f[52]*f[54])/(2.*U[3]) - (3*f_34_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[3]) - (3*f_35_2*sin2th*f[20]*f[22]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_34_2*f[21]*f[22]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_35_2*f[21]*f[22]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_34_2*f[20]*f[23]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_35_2*f[20]*f[23]*f[53]*f[54])/(2.*U[3]) - (3*f_34_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[3]) - (3*f_35_2*sin2th*f[21]*f[23]*f[53]*f[54])/(2.*U[3]) + (3*f_34_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[3]) + (3*f_35_2*sin2th*f[20]*f[22]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_34_2*f[21]*f[22]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_35_2*f[21]*f[22]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_34_2*f[20]*f[23]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_35_2*f[20]*f[23]*f[52]*f[55])/(2.*U[3]) + (3*f_34_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[3]) + (3*f_35_2*sin2th*f[21]*f[23]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_34_2*f[20]*f[22]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_35_2*f[20]*f[22]*f[53]*f[55])/(2.*U[3]) + (3*f_34_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[3]) + (3*f_35_2*sin2th*f[21]*f[22]*f[53]*f[55])/(2.*U[3]) - (3*f_34_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[3]) - (3*f_35_2*sin2th*f[20]*f[23]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_34_2*f[21]*f[23]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_35_2*f[21]*f[23]*f[53]*f[55])/(2.*U[3]) + (4*cos2th*f_34_2*f[22]*f[24]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_35_2*f[22]*f[24]*f[54]*f[56])/(3.*U[3]) + (4*f_34_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[3]) + (4*f_35_2*sin2th*f[23]*f[24]*f[54]*f[56])/(3.*U[3]) - (4*f_34_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[3]) - (4*f_35_2*sin2th*f[22]*f[25]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_34_2*f[23]*f[25]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_35_2*f[23]*f[25]*f[54]*f[56])/(3.*U[3]) - (4*f_34_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[3]) - (4*f_35_2*sin2th*f[22]*f[24]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_34_2*f[23]*f[24]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_35_2*f[23]*f[24]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_34_2*f[22]*f[25]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_35_2*f[22]*f[25]*f[55]*f[56])/(3.*U[3]) - (4*f_34_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[3]) - (4*f_35_2*sin2th*f[23]*f[25]*f[55]*f[56])/(3.*U[3]) + (4*f_34_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[3]) + (4*f_35_2*sin2th*f[22]*f[24]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_34_2*f[23]*f[24]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_35_2*f[23]*f[24]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_34_2*f[22]*f[25]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_35_2*f[22]*f[25]*f[54]*f[57])/(3.*U[3]) + (4*f_34_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[3]) + (4*f_35_2*sin2th*f[23]*f[25]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_34_2*f[22]*f[24]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_35_2*f[22]*f[24]*f[55]*f[57])/(3.*U[3]) + (4*f_34_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[3]) + (4*f_35_2*sin2th*f[23]*f[24]*f[55]*f[57])/(3.*U[3]) - (4*f_34_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[3]) - (4*f_35_2*sin2th*f[22]*f[25]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_34_2*f[23]*f[25]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_35_2*f[23]*f[25]*f[55]*f[57])/(3.*U[3]) + (5*cos2th*f_34_2*f[24]*f[26]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_35_2*f[24]*f[26]*f[56]*f[58])/(4.*U[3]) + (5*f_34_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[3]) + (5*f_35_2*sin2th*f[25]*f[26]*f[56]*f[58])/(4.*U[3]) - (5*f_34_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[3]) - (5*f_35_2*sin2th*f[24]*f[27]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_34_2*f[25]*f[27]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_35_2*f[25]*f[27]*f[56]*f[58])/(4.*U[3]) - (5*f_34_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[3]) - (5*f_35_2*sin2th*f[24]*f[26]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_34_2*f[25]*f[26]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_35_2*f[25]*f[26]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_34_2*f[24]*f[27]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_35_2*f[24]*f[27]*f[57]*f[58])/(4.*U[3]) - (5*f_34_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[3]) - (5*f_35_2*sin2th*f[25]*f[27]*f[57]*f[58])/(4.*U[3]) + (5*f_34_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[3]) + (5*f_35_2*sin2th*f[24]*f[26]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_34_2*f[25]*f[26]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_35_2*f[25]*f[26]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_34_2*f[24]*f[27]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_35_2*f[24]*f[27]*f[56]*f[59])/(4.*U[3]) + (5*f_34_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[3]) + (5*f_35_2*sin2th*f[25]*f[27]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_34_2*f[24]*f[26]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_35_2*f[24]*f[26]*f[57]*f[59])/(4.*U[3]) + (5*f_34_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[3]) + (5*f_35_2*sin2th*f[25]*f[26]*f[57]*f[59])/(4.*U[3]) - (5*f_34_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[3]) - (5*f_35_2*sin2th*f[24]*f[27]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_34_2*f[25]*f[27]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_35_2*f[25]*f[27]*f[57]*f[59])/(4.*U[3]) + (6*cos2th*f_34_2*f[26]*f[28]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_35_2*f[26]*f[28]*f[58]*f[60])/(5.*U[3]) + (6*f_34_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[3]) + (6*f_35_2*sin2th*f[27]*f[28]*f[58]*f[60])/(5.*U[3]) - (6*f_34_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[3]) - (6*f_35_2*sin2th*f[26]*f[29]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_34_2*f[27]*f[29]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_35_2*f[27]*f[29]*f[58]*f[60])/(5.*U[3]) - (6*f_34_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[3]) - (6*f_35_2*sin2th*f[26]*f[28]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_34_2*f[27]*f[28]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_35_2*f[27]*f[28]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_34_2*f[26]*f[29]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_35_2*f[26]*f[29]*f[59]*f[60])/(5.*U[3]) - (6*f_34_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[3]) - (6*f_35_2*sin2th*f[27]*f[29]*f[59]*f[60])/(5.*U[3]) + (6*f_34_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[3]) + (6*f_35_2*sin2th*f[26]*f[28]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_34_2*f[27]*f[28]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_35_2*f[27]*f[28]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_34_2*f[26]*f[29]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_35_2*f[26]*f[29]*f[58]*f[61])/(5.*U[3]) + (6*f_34_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[3]) + (6*f_35_2*sin2th*f[27]*f[29]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_34_2*f[26]*f[28]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_35_2*f[26]*f[28]*f[59]*f[61])/(5.*U[3]) + (6*f_34_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[3]) + (6*f_35_2*sin2th*f[27]*f[28]*f[59]*f[61])/(5.*U[3]) - (6*f_34_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[3]) - (6*f_35_2*sin2th*f[26]*f[29]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_34_2*f[27]*f[29]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_35_2*f[27]*f[29]*f[59]*f[61])/(5.*U[3]) + (7*cos2th*f_34_2*f[28]*f[30]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_35_2*f[28]*f[30]*f[60]*f[62])/(6.*U[3]) + (7*f_34_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[3]) + (7*f_35_2*sin2th*f[29]*f[30]*f[60]*f[62])/(6.*U[3]) - (7*f_34_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[3]) - (7*f_35_2*sin2th*f[28]*f[31]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_34_2*f[29]*f[31]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_35_2*f[29]*f[31]*f[60]*f[62])/(6.*U[3]) - (7*f_34_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[3]) - (7*f_35_2*sin2th*f[28]*f[30]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_34_2*f[29]*f[30]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_35_2*f[29]*f[30]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_34_2*f[28]*f[31]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_35_2*f[28]*f[31]*f[61]*f[62])/(6.*U[3]) - (7*f_34_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[3]) - (7*f_35_2*sin2th*f[29]*f[31]*f[61]*f[62])/(6.*U[3]) + (7*f_34_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[3]) + (7*f_35_2*sin2th*f[28]*f[30]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_34_2*f[29]*f[30]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_35_2*f[29]*f[30]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_34_2*f[28]*f[31]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_35_2*f[28]*f[31]*f[60]*f[63])/(6.*U[3]) + (7*f_34_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[3]) + (7*f_35_2*sin2th*f[29]*f[31]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_34_2*f[28]*f[30]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_35_2*f[28]*f[30]*f[61]*f[63])/(6.*U[3]) + (7*f_34_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[3]) + (7*f_35_2*sin2th*f[29]*f[30]*f[61]*f[63])/(6.*U[3]) - (7*f_34_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[3]) - (7*f_35_2*sin2th*f[28]*f[31]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_34_2*f[29]*f[31]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_35_2*f[29]*f[31]*f[61]*f[63])/(6.*U[3]) + (14*cos2th*f_46_2*f[18]*f[20]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_47_2*f[18]*f[20]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*f_46_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*f_47_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-6*U[2] + U[3]) - (14*f_46_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-6*U[2] + U[3]) - (14*f_47_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_46_2*f[19]*f[21]*f[50]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_47_2*f[19]*f[21]*f[50]*f[52])/(-6*U[2] + U[3]) - (14*f_46_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*f_47_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_46_2*f[19]*f[20]*f[51]*f[52])/(-6*U[2] + U[3]) + (14*cos2th*f_47_2*f[19]*f[20]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*cos2th*f_46_2*f[18]*f[21]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*cos2th*f_47_2*f[18]*f[21]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*f_46_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-6*U[2] + U[3]) - (14*f_47_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-6*U[2] + U[3]) + (14*f_46_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*f_47_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-6*U[2] + U[3]) - (14*cos2th*f_46_2*f[19]*f[20]*f[50]*f[53])/(-6*U[2] + U[3]) - (14*cos2th*f_47_2*f[19]*f[20]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_46_2*f[18]*f[21]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_47_2*f[18]*f[21]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*f_46_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*f_47_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_46_2*f[18]*f[20]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_47_2*f[18]*f[20]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*f_46_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*f_47_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-6*U[2] + U[3]) - (14*f_46_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-6*U[2] + U[3]) - (14*f_47_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_46_2*f[19]*f[21]*f[51]*f[53])/(-6*U[2] + U[3]) + (14*cos2th*f_47_2*f[19]*f[21]*f[51]*f[53])/(-6*U[2] + U[3]) + (12*cos2th*f_44_2*f[18]*f[20]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_45_2*f[18]*f[20]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*f_44_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*f_45_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-5*U[2] + U[3]) - (12*f_44_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-5*U[2] + U[3]) - (12*f_45_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_44_2*f[19]*f[21]*f[50]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_45_2*f[19]*f[21]*f[50]*f[52])/(-5*U[2] + U[3]) - (12*f_44_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*f_45_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_44_2*f[19]*f[20]*f[51]*f[52])/(-5*U[2] + U[3]) + (12*cos2th*f_45_2*f[19]*f[20]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*cos2th*f_44_2*f[18]*f[21]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*cos2th*f_45_2*f[18]*f[21]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*f_44_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-5*U[2] + U[3]) - (12*f_45_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-5*U[2] + U[3]) + (12*f_44_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*f_45_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-5*U[2] + U[3]) - (12*cos2th*f_44_2*f[19]*f[20]*f[50]*f[53])/(-5*U[2] + U[3]) - (12*cos2th*f_45_2*f[19]*f[20]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_44_2*f[18]*f[21]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_45_2*f[18]*f[21]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*f_44_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*f_45_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_44_2*f[18]*f[20]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_45_2*f[18]*f[20]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*f_44_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*f_45_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-5*U[2] + U[3]) - (12*f_44_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-5*U[2] + U[3]) - (12*f_45_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_44_2*f[19]*f[21]*f[51]*f[53])/(-5*U[2] + U[3]) + (12*cos2th*f_45_2*f[19]*f[21]*f[51]*f[53])/(-5*U[2] + U[3]) + (10*cos2th*f_42_2*f[18]*f[20]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_43_2*f[18]*f[20]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*f_42_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*f_43_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-4*U[2] + U[3]) - (10*f_42_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-4*U[2] + U[3]) - (10*f_43_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_42_2*f[19]*f[21]*f[50]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_43_2*f[19]*f[21]*f[50]*f[52])/(-4*U[2] + U[3]) - (10*f_42_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*f_43_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_42_2*f[19]*f[20]*f[51]*f[52])/(-4*U[2] + U[3]) + (10*cos2th*f_43_2*f[19]*f[20]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*cos2th*f_42_2*f[18]*f[21]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*cos2th*f_43_2*f[18]*f[21]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*f_42_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-4*U[2] + U[3]) - (10*f_43_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-4*U[2] + U[3]) + (10*f_42_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*f_43_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-4*U[2] + U[3]) - (10*cos2th*f_42_2*f[19]*f[20]*f[50]*f[53])/(-4*U[2] + U[3]) - (10*cos2th*f_43_2*f[19]*f[20]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_42_2*f[18]*f[21]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_43_2*f[18]*f[21]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*f_42_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*f_43_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_42_2*f[18]*f[20]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_43_2*f[18]*f[20]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*f_42_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*f_43_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-4*U[2] + U[3]) - (10*f_42_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-4*U[2] + U[3]) - (10*f_43_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_42_2*f[19]*f[21]*f[51]*f[53])/(-4*U[2] + U[3]) + (10*cos2th*f_43_2*f[19]*f[21]*f[51]*f[53])/(-4*U[2] + U[3]) + (8*cos2th*f_40_2*f[18]*f[20]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_41_2*f[18]*f[20]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*f_40_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*f_41_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-3*U[2] + U[3]) - (8*f_40_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-3*U[2] + U[3]) - (8*f_41_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_40_2*f[19]*f[21]*f[50]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_41_2*f[19]*f[21]*f[50]*f[52])/(-3*U[2] + U[3]) - (8*f_40_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*f_41_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_40_2*f[19]*f[20]*f[51]*f[52])/(-3*U[2] + U[3]) + (8*cos2th*f_41_2*f[19]*f[20]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*cos2th*f_40_2*f[18]*f[21]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*cos2th*f_41_2*f[18]*f[21]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*f_40_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-3*U[2] + U[3]) - (8*f_41_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-3*U[2] + U[3]) + (8*f_40_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*f_41_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-3*U[2] + U[3]) - (8*cos2th*f_40_2*f[19]*f[20]*f[50]*f[53])/(-3*U[2] + U[3]) - (8*cos2th*f_41_2*f[19]*f[20]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_40_2*f[18]*f[21]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_41_2*f[18]*f[21]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*f_40_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*f_41_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_40_2*f[18]*f[20]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_41_2*f[18]*f[20]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*f_40_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*f_41_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-3*U[2] + U[3]) - (8*f_40_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-3*U[2] + U[3]) - (8*f_41_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_40_2*f[19]*f[21]*f[51]*f[53])/(-3*U[2] + U[3]) + (8*cos2th*f_41_2*f[19]*f[21]*f[51]*f[53])/(-3*U[2] + U[3]) + (6*cos2th*f_38_2*f[18]*f[20]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_39_2*f[18]*f[20]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*f_38_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*f_39_2*sin2th*f[19]*f[20]*f[50]*f[52])/(-2*U[2] + U[3]) - (6*f_38_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-2*U[2] + U[3]) - (6*f_39_2*sin2th*f[18]*f[21]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_38_2*f[19]*f[21]*f[50]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_39_2*f[19]*f[21]*f[50]*f[52])/(-2*U[2] + U[3]) - (6*f_38_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*f_39_2*sin2th*f[18]*f[20]*f[51]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_38_2*f[19]*f[20]*f[51]*f[52])/(-2*U[2] + U[3]) + (6*cos2th*f_39_2*f[19]*f[20]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*cos2th*f_38_2*f[18]*f[21]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*cos2th*f_39_2*f[18]*f[21]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*f_38_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-2*U[2] + U[3]) - (6*f_39_2*sin2th*f[19]*f[21]*f[51]*f[52])/(-2*U[2] + U[3]) + (6*f_38_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*f_39_2*sin2th*f[18]*f[20]*f[50]*f[53])/(-2*U[2] + U[3]) - (6*cos2th*f_38_2*f[19]*f[20]*f[50]*f[53])/(-2*U[2] + U[3]) - (6*cos2th*f_39_2*f[19]*f[20]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_38_2*f[18]*f[21]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_39_2*f[18]*f[21]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*f_38_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*f_39_2*sin2th*f[19]*f[21]*f[50]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_38_2*f[18]*f[20]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_39_2*f[18]*f[20]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*f_38_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*f_39_2*sin2th*f[19]*f[20]*f[51]*f[53])/(-2*U[2] + U[3]) - (6*f_38_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-2*U[2] + U[3]) - (6*f_39_2*sin2th*f[18]*f[21]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_38_2*f[19]*f[21]*f[51]*f[53])/(-2*U[2] + U[3]) + (6*cos2th*f_39_2*f[19]*f[21]*f[51]*f[53])/(-2*U[2] + U[3]) + (21*cos2th*f_46_2*f[20]*f[22]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_47_2*f[20]*f[22]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*f_46_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*f_47_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_46_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_47_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_46_2*f[21]*f[23]*f[52]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_47_2*f[21]*f[23]*f[52]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_46_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_47_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_46_2*f[21]*f[22]*f[53]*f[54])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_47_2*f[21]*f[22]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_46_2*f[20]*f[23]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_47_2*f[20]*f[23]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_46_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-6*U[2] + 2*U[3]) - (21*f_47_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-6*U[2] + 2*U[3]) + (21*f_46_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_47_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_46_2*f[21]*f[22]*f[52]*f[55])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_47_2*f[21]*f[22]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_46_2*f[20]*f[23]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_47_2*f[20]*f[23]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_46_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_47_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_46_2*f[20]*f[22]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_47_2*f[20]*f[22]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_46_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*f_47_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-6*U[2] + 2*U[3]) - (21*f_46_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-6*U[2] + 2*U[3]) - (21*f_47_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_46_2*f[21]*f[23]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_47_2*f[21]*f[23]*f[53]*f[55])/(-6*U[2] + 2*U[3]) + (18*cos2th*f_44_2*f[20]*f[22]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_45_2*f[20]*f[22]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*f_44_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*f_45_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_44_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_45_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_44_2*f[21]*f[23]*f[52]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_45_2*f[21]*f[23]*f[52]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_44_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_45_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_44_2*f[21]*f[22]*f[53]*f[54])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_45_2*f[21]*f[22]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_44_2*f[20]*f[23]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_45_2*f[20]*f[23]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_44_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-5*U[2] + 2*U[3]) - (18*f_45_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-5*U[2] + 2*U[3]) + (18*f_44_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_45_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_44_2*f[21]*f[22]*f[52]*f[55])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_45_2*f[21]*f[22]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_44_2*f[20]*f[23]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_45_2*f[20]*f[23]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_44_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_45_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_44_2*f[20]*f[22]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_45_2*f[20]*f[22]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_44_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*f_45_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-5*U[2] + 2*U[3]) - (18*f_44_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-5*U[2] + 2*U[3]) - (18*f_45_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_44_2*f[21]*f[23]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_45_2*f[21]*f[23]*f[53]*f[55])/(-5*U[2] + 2*U[3]) + (15*cos2th*f_42_2*f[20]*f[22]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_43_2*f[20]*f[22]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*f_42_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*f_43_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_42_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_43_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_42_2*f[21]*f[23]*f[52]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_43_2*f[21]*f[23]*f[52]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_42_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_43_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_42_2*f[21]*f[22]*f[53]*f[54])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_43_2*f[21]*f[22]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_42_2*f[20]*f[23]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_43_2*f[20]*f[23]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_42_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-4*U[2] + 2*U[3]) - (15*f_43_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-4*U[2] + 2*U[3]) + (15*f_42_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_43_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_42_2*f[21]*f[22]*f[52]*f[55])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_43_2*f[21]*f[22]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_42_2*f[20]*f[23]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_43_2*f[20]*f[23]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_42_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_43_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_42_2*f[20]*f[22]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_43_2*f[20]*f[22]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_42_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*f_43_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-4*U[2] + 2*U[3]) - (15*f_42_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-4*U[2] + 2*U[3]) - (15*f_43_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_42_2*f[21]*f[23]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_43_2*f[21]*f[23]*f[53]*f[55])/(-4*U[2] + 2*U[3]) + (12*cos2th*f_40_2*f[20]*f[22]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_41_2*f[20]*f[22]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*f_40_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*f_41_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_40_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_41_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_40_2*f[21]*f[23]*f[52]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_41_2*f[21]*f[23]*f[52]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_40_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_41_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_40_2*f[21]*f[22]*f[53]*f[54])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_41_2*f[21]*f[22]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_40_2*f[20]*f[23]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_41_2*f[20]*f[23]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_40_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-3*U[2] + 2*U[3]) - (12*f_41_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-3*U[2] + 2*U[3]) + (12*f_40_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_41_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_40_2*f[21]*f[22]*f[52]*f[55])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_41_2*f[21]*f[22]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_40_2*f[20]*f[23]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_41_2*f[20]*f[23]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_40_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_41_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_40_2*f[20]*f[22]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_41_2*f[20]*f[22]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_40_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*f_41_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-3*U[2] + 2*U[3]) - (12*f_40_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-3*U[2] + 2*U[3]) - (12*f_41_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_40_2*f[21]*f[23]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_41_2*f[21]*f[23]*f[53]*f[55])/(-3*U[2] + 2*U[3]) + (6*cos2th*f_36_2*f[20]*f[22]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_37_2*f[20]*f[22]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*f_36_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*f_37_2*sin2th*f[21]*f[22]*f[52]*f[54])/(-U[2] + 2*U[3]) - (6*f_36_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-U[2] + 2*U[3]) - (6*f_37_2*sin2th*f[20]*f[23]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_36_2*f[21]*f[23]*f[52]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_37_2*f[21]*f[23]*f[52]*f[54])/(-U[2] + 2*U[3]) - (6*f_36_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*f_37_2*sin2th*f[20]*f[22]*f[53]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_36_2*f[21]*f[22]*f[53]*f[54])/(-U[2] + 2*U[3]) + (6*cos2th*f_37_2*f[21]*f[22]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*cos2th*f_36_2*f[20]*f[23]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*cos2th*f_37_2*f[20]*f[23]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*f_36_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-U[2] + 2*U[3]) - (6*f_37_2*sin2th*f[21]*f[23]*f[53]*f[54])/(-U[2] + 2*U[3]) + (6*f_36_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*f_37_2*sin2th*f[20]*f[22]*f[52]*f[55])/(-U[2] + 2*U[3]) - (6*cos2th*f_36_2*f[21]*f[22]*f[52]*f[55])/(-U[2] + 2*U[3]) - (6*cos2th*f_37_2*f[21]*f[22]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_36_2*f[20]*f[23]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_37_2*f[20]*f[23]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*f_36_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*f_37_2*sin2th*f[21]*f[23]*f[52]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_36_2*f[20]*f[22]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_37_2*f[20]*f[22]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*f_36_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*f_37_2*sin2th*f[21]*f[22]*f[53]*f[55])/(-U[2] + 2*U[3]) - (6*f_36_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-U[2] + 2*U[3]) - (6*f_37_2*sin2th*f[20]*f[23]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_36_2*f[21]*f[23]*f[53]*f[55])/(-U[2] + 2*U[3]) + (6*cos2th*f_37_2*f[21]*f[23]*f[53]*f[55])/(-U[2] + 2*U[3]) + (28*cos2th*f_46_2*f[22]*f[24]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_47_2*f[22]*f[24]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*f_46_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*f_47_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_46_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_47_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_46_2*f[23]*f[25]*f[54]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_47_2*f[23]*f[25]*f[54]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_46_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_47_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_46_2*f[23]*f[24]*f[55]*f[56])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_47_2*f[23]*f[24]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_46_2*f[22]*f[25]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_47_2*f[22]*f[25]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_46_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-6*U[2] + 3*U[3]) - (28*f_47_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-6*U[2] + 3*U[3]) + (28*f_46_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_47_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_46_2*f[23]*f[24]*f[54]*f[57])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_47_2*f[23]*f[24]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_46_2*f[22]*f[25]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_47_2*f[22]*f[25]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_46_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_47_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_46_2*f[22]*f[24]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_47_2*f[22]*f[24]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_46_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*f_47_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-6*U[2] + 3*U[3]) - (28*f_46_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-6*U[2] + 3*U[3]) - (28*f_47_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_46_2*f[23]*f[25]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_47_2*f[23]*f[25]*f[55]*f[57])/(-6*U[2] + 3*U[3]) + (24*cos2th*f_44_2*f[22]*f[24]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_45_2*f[22]*f[24]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*f_44_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*f_45_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_44_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_45_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_44_2*f[23]*f[25]*f[54]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_45_2*f[23]*f[25]*f[54]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_44_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_45_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_44_2*f[23]*f[24]*f[55]*f[56])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_45_2*f[23]*f[24]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_44_2*f[22]*f[25]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_45_2*f[22]*f[25]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_44_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-5*U[2] + 3*U[3]) - (24*f_45_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-5*U[2] + 3*U[3]) + (24*f_44_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_45_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_44_2*f[23]*f[24]*f[54]*f[57])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_45_2*f[23]*f[24]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_44_2*f[22]*f[25]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_45_2*f[22]*f[25]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_44_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_45_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_44_2*f[22]*f[24]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_45_2*f[22]*f[24]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_44_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*f_45_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-5*U[2] + 3*U[3]) - (24*f_44_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-5*U[2] + 3*U[3]) - (24*f_45_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_44_2*f[23]*f[25]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_45_2*f[23]*f[25]*f[55]*f[57])/(-5*U[2] + 3*U[3]) + (20*cos2th*f_42_2*f[22]*f[24]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_43_2*f[22]*f[24]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*f_42_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*f_43_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_42_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_43_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_42_2*f[23]*f[25]*f[54]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_43_2*f[23]*f[25]*f[54]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_42_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_43_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_42_2*f[23]*f[24]*f[55]*f[56])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_43_2*f[23]*f[24]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_42_2*f[22]*f[25]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_43_2*f[22]*f[25]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_42_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-4*U[2] + 3*U[3]) - (20*f_43_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-4*U[2] + 3*U[3]) + (20*f_42_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_43_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_42_2*f[23]*f[24]*f[54]*f[57])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_43_2*f[23]*f[24]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_42_2*f[22]*f[25]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_43_2*f[22]*f[25]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_42_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_43_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_42_2*f[22]*f[24]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_43_2*f[22]*f[24]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_42_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*f_43_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-4*U[2] + 3*U[3]) - (20*f_42_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-4*U[2] + 3*U[3]) - (20*f_43_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_42_2*f[23]*f[25]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_43_2*f[23]*f[25]*f[55]*f[57])/(-4*U[2] + 3*U[3]) + (12*cos2th*f_38_2*f[22]*f[24]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_39_2*f[22]*f[24]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*f_38_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*f_39_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_38_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_39_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_38_2*f[23]*f[25]*f[54]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_39_2*f[23]*f[25]*f[54]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_38_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_39_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_38_2*f[23]*f[24]*f[55]*f[56])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_39_2*f[23]*f[24]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_38_2*f[22]*f[25]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_39_2*f[22]*f[25]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_38_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-2*U[2] + 3*U[3]) - (12*f_39_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-2*U[2] + 3*U[3]) + (12*f_38_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_39_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_38_2*f[23]*f[24]*f[54]*f[57])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_39_2*f[23]*f[24]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_38_2*f[22]*f[25]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_39_2*f[22]*f[25]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_38_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_39_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_38_2*f[22]*f[24]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_39_2*f[22]*f[24]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_38_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*f_39_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-2*U[2] + 3*U[3]) - (12*f_38_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-2*U[2] + 3*U[3]) - (12*f_39_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_38_2*f[23]*f[25]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_39_2*f[23]*f[25]*f[55]*f[57])/(-2*U[2] + 3*U[3]) + (8*cos2th*f_36_2*f[22]*f[24]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_37_2*f[22]*f[24]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*f_36_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*f_37_2*sin2th*f[23]*f[24]*f[54]*f[56])/(-U[2] + 3*U[3]) - (8*f_36_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-U[2] + 3*U[3]) - (8*f_37_2*sin2th*f[22]*f[25]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_36_2*f[23]*f[25]*f[54]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_37_2*f[23]*f[25]*f[54]*f[56])/(-U[2] + 3*U[3]) - (8*f_36_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*f_37_2*sin2th*f[22]*f[24]*f[55]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_36_2*f[23]*f[24]*f[55]*f[56])/(-U[2] + 3*U[3]) + (8*cos2th*f_37_2*f[23]*f[24]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*cos2th*f_36_2*f[22]*f[25]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*cos2th*f_37_2*f[22]*f[25]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*f_36_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-U[2] + 3*U[3]) - (8*f_37_2*sin2th*f[23]*f[25]*f[55]*f[56])/(-U[2] + 3*U[3]) + (8*f_36_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*f_37_2*sin2th*f[22]*f[24]*f[54]*f[57])/(-U[2] + 3*U[3]) - (8*cos2th*f_36_2*f[23]*f[24]*f[54]*f[57])/(-U[2] + 3*U[3]) - (8*cos2th*f_37_2*f[23]*f[24]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_36_2*f[22]*f[25]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_37_2*f[22]*f[25]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*f_36_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*f_37_2*sin2th*f[23]*f[25]*f[54]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_36_2*f[22]*f[24]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_37_2*f[22]*f[24]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*f_36_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*f_37_2*sin2th*f[23]*f[24]*f[55]*f[57])/(-U[2] + 3*U[3]) - (8*f_36_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-U[2] + 3*U[3]) - (8*f_37_2*sin2th*f[22]*f[25]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_36_2*f[23]*f[25]*f[55]*f[57])/(-U[2] + 3*U[3]) + (8*cos2th*f_37_2*f[23]*f[25]*f[55]*f[57])/(-U[2] + 3*U[3]) + (35*cos2th*f_46_2*f[24]*f[26]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_47_2*f[24]*f[26]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*f_46_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*f_47_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_46_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_47_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_46_2*f[25]*f[27]*f[56]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_47_2*f[25]*f[27]*f[56]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_46_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_47_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_46_2*f[25]*f[26]*f[57]*f[58])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_47_2*f[25]*f[26]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_46_2*f[24]*f[27]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_47_2*f[24]*f[27]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_46_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-6*U[2] + 4*U[3]) - (35*f_47_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-6*U[2] + 4*U[3]) + (35*f_46_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_47_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_46_2*f[25]*f[26]*f[56]*f[59])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_47_2*f[25]*f[26]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_46_2*f[24]*f[27]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_47_2*f[24]*f[27]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_46_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_47_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_46_2*f[24]*f[26]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_47_2*f[24]*f[26]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_46_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*f_47_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-6*U[2] + 4*U[3]) - (35*f_46_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-6*U[2] + 4*U[3]) - (35*f_47_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_46_2*f[25]*f[27]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_47_2*f[25]*f[27]*f[57]*f[59])/(-6*U[2] + 4*U[3]) + (30*cos2th*f_44_2*f[24]*f[26]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_45_2*f[24]*f[26]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*f_44_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*f_45_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_44_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_45_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_44_2*f[25]*f[27]*f[56]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_45_2*f[25]*f[27]*f[56]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_44_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_45_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_44_2*f[25]*f[26]*f[57]*f[58])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_45_2*f[25]*f[26]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_44_2*f[24]*f[27]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_45_2*f[24]*f[27]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_44_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-5*U[2] + 4*U[3]) - (30*f_45_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-5*U[2] + 4*U[3]) + (30*f_44_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_45_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_44_2*f[25]*f[26]*f[56]*f[59])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_45_2*f[25]*f[26]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_44_2*f[24]*f[27]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_45_2*f[24]*f[27]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_44_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_45_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_44_2*f[24]*f[26]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_45_2*f[24]*f[26]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_44_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*f_45_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-5*U[2] + 4*U[3]) - (30*f_44_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-5*U[2] + 4*U[3]) - (30*f_45_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_44_2*f[25]*f[27]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_45_2*f[25]*f[27]*f[57]*f[59])/(-5*U[2] + 4*U[3]) + (20*cos2th*f_40_2*f[24]*f[26]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_41_2*f[24]*f[26]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*f_40_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*f_41_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_40_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_41_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_40_2*f[25]*f[27]*f[56]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_41_2*f[25]*f[27]*f[56]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_40_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_41_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_40_2*f[25]*f[26]*f[57]*f[58])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_41_2*f[25]*f[26]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_40_2*f[24]*f[27]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_41_2*f[24]*f[27]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_40_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-3*U[2] + 4*U[3]) - (20*f_41_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-3*U[2] + 4*U[3]) + (20*f_40_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_41_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_40_2*f[25]*f[26]*f[56]*f[59])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_41_2*f[25]*f[26]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_40_2*f[24]*f[27]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_41_2*f[24]*f[27]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_40_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_41_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_40_2*f[24]*f[26]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_41_2*f[24]*f[26]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_40_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*f_41_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-3*U[2] + 4*U[3]) - (20*f_40_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-3*U[2] + 4*U[3]) - (20*f_41_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_40_2*f[25]*f[27]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_41_2*f[25]*f[27]*f[57]*f[59])/(-3*U[2] + 4*U[3]) + (15*cos2th*f_38_2*f[24]*f[26]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_39_2*f[24]*f[26]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*f_38_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*f_39_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_38_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_39_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_38_2*f[25]*f[27]*f[56]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_39_2*f[25]*f[27]*f[56]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_38_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_39_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_38_2*f[25]*f[26]*f[57]*f[58])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_39_2*f[25]*f[26]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_38_2*f[24]*f[27]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_39_2*f[24]*f[27]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_38_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-2*U[2] + 4*U[3]) - (15*f_39_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-2*U[2] + 4*U[3]) + (15*f_38_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_39_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_38_2*f[25]*f[26]*f[56]*f[59])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_39_2*f[25]*f[26]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_38_2*f[24]*f[27]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_39_2*f[24]*f[27]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_38_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_39_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_38_2*f[24]*f[26]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_39_2*f[24]*f[26]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_38_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*f_39_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-2*U[2] + 4*U[3]) - (15*f_38_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-2*U[2] + 4*U[3]) - (15*f_39_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_38_2*f[25]*f[27]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_39_2*f[25]*f[27]*f[57]*f[59])/(-2*U[2] + 4*U[3]) + (10*cos2th*f_36_2*f[24]*f[26]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_37_2*f[24]*f[26]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*f_36_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*f_37_2*sin2th*f[25]*f[26]*f[56]*f[58])/(-U[2] + 4*U[3]) - (10*f_36_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-U[2] + 4*U[3]) - (10*f_37_2*sin2th*f[24]*f[27]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_36_2*f[25]*f[27]*f[56]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_37_2*f[25]*f[27]*f[56]*f[58])/(-U[2] + 4*U[3]) - (10*f_36_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*f_37_2*sin2th*f[24]*f[26]*f[57]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_36_2*f[25]*f[26]*f[57]*f[58])/(-U[2] + 4*U[3]) + (10*cos2th*f_37_2*f[25]*f[26]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*cos2th*f_36_2*f[24]*f[27]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*cos2th*f_37_2*f[24]*f[27]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*f_36_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-U[2] + 4*U[3]) - (10*f_37_2*sin2th*f[25]*f[27]*f[57]*f[58])/(-U[2] + 4*U[3]) + (10*f_36_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*f_37_2*sin2th*f[24]*f[26]*f[56]*f[59])/(-U[2] + 4*U[3]) - (10*cos2th*f_36_2*f[25]*f[26]*f[56]*f[59])/(-U[2] + 4*U[3]) - (10*cos2th*f_37_2*f[25]*f[26]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_36_2*f[24]*f[27]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_37_2*f[24]*f[27]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*f_36_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*f_37_2*sin2th*f[25]*f[27]*f[56]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_36_2*f[24]*f[26]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_37_2*f[24]*f[26]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*f_36_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*f_37_2*sin2th*f[25]*f[26]*f[57]*f[59])/(-U[2] + 4*U[3]) - (10*f_36_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-U[2] + 4*U[3]) - (10*f_37_2*sin2th*f[24]*f[27]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_36_2*f[25]*f[27]*f[57]*f[59])/(-U[2] + 4*U[3]) + (10*cos2th*f_37_2*f[25]*f[27]*f[57]*f[59])/(-U[2] + 4*U[3]) + (42*cos2th*f_46_2*f[26]*f[28]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_47_2*f[26]*f[28]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*f_46_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*f_47_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_46_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_47_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_46_2*f[27]*f[29]*f[58]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_47_2*f[27]*f[29]*f[58]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_46_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_47_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_46_2*f[27]*f[28]*f[59]*f[60])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_47_2*f[27]*f[28]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_46_2*f[26]*f[29]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_47_2*f[26]*f[29]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_46_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-6*U[2] + 5*U[3]) - (42*f_47_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-6*U[2] + 5*U[3]) + (42*f_46_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_47_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_46_2*f[27]*f[28]*f[58]*f[61])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_47_2*f[27]*f[28]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_46_2*f[26]*f[29]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_47_2*f[26]*f[29]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_46_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_47_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_46_2*f[26]*f[28]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_47_2*f[26]*f[28]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_46_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*f_47_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-6*U[2] + 5*U[3]) - (42*f_46_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-6*U[2] + 5*U[3]) - (42*f_47_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_46_2*f[27]*f[29]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_47_2*f[27]*f[29]*f[59]*f[61])/(-6*U[2] + 5*U[3]) + (30*cos2th*f_42_2*f[26]*f[28]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_43_2*f[26]*f[28]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*f_42_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*f_43_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_42_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_43_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_42_2*f[27]*f[29]*f[58]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_43_2*f[27]*f[29]*f[58]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_42_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_43_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_42_2*f[27]*f[28]*f[59]*f[60])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_43_2*f[27]*f[28]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_42_2*f[26]*f[29]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_43_2*f[26]*f[29]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_42_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-4*U[2] + 5*U[3]) - (30*f_43_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-4*U[2] + 5*U[3]) + (30*f_42_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_43_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_42_2*f[27]*f[28]*f[58]*f[61])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_43_2*f[27]*f[28]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_42_2*f[26]*f[29]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_43_2*f[26]*f[29]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_42_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_43_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_42_2*f[26]*f[28]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_43_2*f[26]*f[28]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_42_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*f_43_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-4*U[2] + 5*U[3]) - (30*f_42_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-4*U[2] + 5*U[3]) - (30*f_43_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_42_2*f[27]*f[29]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_43_2*f[27]*f[29]*f[59]*f[61])/(-4*U[2] + 5*U[3]) + (24*cos2th*f_40_2*f[26]*f[28]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_41_2*f[26]*f[28]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*f_40_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*f_41_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_40_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_41_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_40_2*f[27]*f[29]*f[58]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_41_2*f[27]*f[29]*f[58]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_40_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_41_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_40_2*f[27]*f[28]*f[59]*f[60])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_41_2*f[27]*f[28]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_40_2*f[26]*f[29]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_41_2*f[26]*f[29]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_40_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-3*U[2] + 5*U[3]) - (24*f_41_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-3*U[2] + 5*U[3]) + (24*f_40_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_41_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_40_2*f[27]*f[28]*f[58]*f[61])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_41_2*f[27]*f[28]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_40_2*f[26]*f[29]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_41_2*f[26]*f[29]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_40_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_41_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_40_2*f[26]*f[28]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_41_2*f[26]*f[28]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_40_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*f_41_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-3*U[2] + 5*U[3]) - (24*f_40_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-3*U[2] + 5*U[3]) - (24*f_41_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_40_2*f[27]*f[29]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_41_2*f[27]*f[29]*f[59]*f[61])/(-3*U[2] + 5*U[3]) + (18*cos2th*f_38_2*f[26]*f[28]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_39_2*f[26]*f[28]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*f_38_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*f_39_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_38_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_39_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_38_2*f[27]*f[29]*f[58]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_39_2*f[27]*f[29]*f[58]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_38_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_39_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_38_2*f[27]*f[28]*f[59]*f[60])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_39_2*f[27]*f[28]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_38_2*f[26]*f[29]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_39_2*f[26]*f[29]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_38_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-2*U[2] + 5*U[3]) - (18*f_39_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-2*U[2] + 5*U[3]) + (18*f_38_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_39_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_38_2*f[27]*f[28]*f[58]*f[61])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_39_2*f[27]*f[28]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_38_2*f[26]*f[29]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_39_2*f[26]*f[29]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_38_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_39_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_38_2*f[26]*f[28]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_39_2*f[26]*f[28]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_38_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*f_39_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-2*U[2] + 5*U[3]) - (18*f_38_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-2*U[2] + 5*U[3]) - (18*f_39_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_38_2*f[27]*f[29]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_39_2*f[27]*f[29]*f[59]*f[61])/(-2*U[2] + 5*U[3]) + (12*cos2th*f_36_2*f[26]*f[28]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_37_2*f[26]*f[28]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*f_36_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*f_37_2*sin2th*f[27]*f[28]*f[58]*f[60])/(-U[2] + 5*U[3]) - (12*f_36_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-U[2] + 5*U[3]) - (12*f_37_2*sin2th*f[26]*f[29]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_36_2*f[27]*f[29]*f[58]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_37_2*f[27]*f[29]*f[58]*f[60])/(-U[2] + 5*U[3]) - (12*f_36_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*f_37_2*sin2th*f[26]*f[28]*f[59]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_36_2*f[27]*f[28]*f[59]*f[60])/(-U[2] + 5*U[3]) + (12*cos2th*f_37_2*f[27]*f[28]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*cos2th*f_36_2*f[26]*f[29]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*cos2th*f_37_2*f[26]*f[29]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*f_36_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-U[2] + 5*U[3]) - (12*f_37_2*sin2th*f[27]*f[29]*f[59]*f[60])/(-U[2] + 5*U[3]) + (12*f_36_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*f_37_2*sin2th*f[26]*f[28]*f[58]*f[61])/(-U[2] + 5*U[3]) - (12*cos2th*f_36_2*f[27]*f[28]*f[58]*f[61])/(-U[2] + 5*U[3]) - (12*cos2th*f_37_2*f[27]*f[28]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_36_2*f[26]*f[29]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_37_2*f[26]*f[29]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*f_36_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*f_37_2*sin2th*f[27]*f[29]*f[58]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_36_2*f[26]*f[28]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_37_2*f[26]*f[28]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*f_36_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*f_37_2*sin2th*f[27]*f[28]*f[59]*f[61])/(-U[2] + 5*U[3]) - (12*f_36_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-U[2] + 5*U[3]) - (12*f_37_2*sin2th*f[26]*f[29]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_36_2*f[27]*f[29]*f[59]*f[61])/(-U[2] + 5*U[3]) + (12*cos2th*f_37_2*f[27]*f[29]*f[59]*f[61])/(-U[2] + 5*U[3]) + (42*cos2th*f_44_2*f[28]*f[30]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_45_2*f[28]*f[30]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*f_44_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*f_45_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_44_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_45_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_44_2*f[29]*f[31]*f[60]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_45_2*f[29]*f[31]*f[60]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_44_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_45_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_44_2*f[29]*f[30]*f[61]*f[62])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_45_2*f[29]*f[30]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_44_2*f[28]*f[31]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_45_2*f[28]*f[31]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_44_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-5*U[2] + 6*U[3]) - (42*f_45_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-5*U[2] + 6*U[3]) + (42*f_44_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_45_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_44_2*f[29]*f[30]*f[60]*f[63])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_45_2*f[29]*f[30]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_44_2*f[28]*f[31]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_45_2*f[28]*f[31]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_44_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_45_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_44_2*f[28]*f[30]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_45_2*f[28]*f[30]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_44_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*f_45_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-5*U[2] + 6*U[3]) - (42*f_44_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-5*U[2] + 6*U[3]) - (42*f_45_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_44_2*f[29]*f[31]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_45_2*f[29]*f[31]*f[61]*f[63])/(-5*U[2] + 6*U[3]) + (35*cos2th*f_42_2*f[28]*f[30]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_43_2*f[28]*f[30]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*f_42_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*f_43_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_42_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_43_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_42_2*f[29]*f[31]*f[60]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_43_2*f[29]*f[31]*f[60]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_42_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_43_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_42_2*f[29]*f[30]*f[61]*f[62])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_43_2*f[29]*f[30]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_42_2*f[28]*f[31]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_43_2*f[28]*f[31]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_42_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-4*U[2] + 6*U[3]) - (35*f_43_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-4*U[2] + 6*U[3]) + (35*f_42_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_43_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_42_2*f[29]*f[30]*f[60]*f[63])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_43_2*f[29]*f[30]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_42_2*f[28]*f[31]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_43_2*f[28]*f[31]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_42_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_43_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_42_2*f[28]*f[30]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_43_2*f[28]*f[30]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_42_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*f_43_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-4*U[2] + 6*U[3]) - (35*f_42_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-4*U[2] + 6*U[3]) - (35*f_43_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_42_2*f[29]*f[31]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_43_2*f[29]*f[31]*f[61]*f[63])/(-4*U[2] + 6*U[3]) + (28*cos2th*f_40_2*f[28]*f[30]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_41_2*f[28]*f[30]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*f_40_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*f_41_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_40_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_41_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_40_2*f[29]*f[31]*f[60]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_41_2*f[29]*f[31]*f[60]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_40_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_41_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_40_2*f[29]*f[30]*f[61]*f[62])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_41_2*f[29]*f[30]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_40_2*f[28]*f[31]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_41_2*f[28]*f[31]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_40_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-3*U[2] + 6*U[3]) - (28*f_41_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-3*U[2] + 6*U[3]) + (28*f_40_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_41_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_40_2*f[29]*f[30]*f[60]*f[63])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_41_2*f[29]*f[30]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_40_2*f[28]*f[31]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_41_2*f[28]*f[31]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_40_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_41_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_40_2*f[28]*f[30]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_41_2*f[28]*f[30]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_40_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*f_41_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-3*U[2] + 6*U[3]) - (28*f_40_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-3*U[2] + 6*U[3]) - (28*f_41_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_40_2*f[29]*f[31]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_41_2*f[29]*f[31]*f[61]*f[63])/(-3*U[2] + 6*U[3]) + (21*cos2th*f_38_2*f[28]*f[30]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_39_2*f[28]*f[30]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*f_38_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*f_39_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_38_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_39_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_38_2*f[29]*f[31]*f[60]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_39_2*f[29]*f[31]*f[60]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_38_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_39_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_38_2*f[29]*f[30]*f[61]*f[62])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_39_2*f[29]*f[30]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_38_2*f[28]*f[31]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_39_2*f[28]*f[31]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_38_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-2*U[2] + 6*U[3]) - (21*f_39_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-2*U[2] + 6*U[3]) + (21*f_38_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_39_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_38_2*f[29]*f[30]*f[60]*f[63])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_39_2*f[29]*f[30]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_38_2*f[28]*f[31]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_39_2*f[28]*f[31]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_38_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_39_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_38_2*f[28]*f[30]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_39_2*f[28]*f[30]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_38_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*f_39_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-2*U[2] + 6*U[3]) - (21*f_38_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-2*U[2] + 6*U[3]) - (21*f_39_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_38_2*f[29]*f[31]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_39_2*f[29]*f[31]*f[61]*f[63])/(-2*U[2] + 6*U[3]) + (14*cos2th*f_36_2*f[28]*f[30]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_37_2*f[28]*f[30]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*f_36_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*f_37_2*sin2th*f[29]*f[30]*f[60]*f[62])/(-U[2] + 6*U[3]) - (14*f_36_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-U[2] + 6*U[3]) - (14*f_37_2*sin2th*f[28]*f[31]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_36_2*f[29]*f[31]*f[60]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_37_2*f[29]*f[31]*f[60]*f[62])/(-U[2] + 6*U[3]) - (14*f_36_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*f_37_2*sin2th*f[28]*f[30]*f[61]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_36_2*f[29]*f[30]*f[61]*f[62])/(-U[2] + 6*U[3]) + (14*cos2th*f_37_2*f[29]*f[30]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*cos2th*f_36_2*f[28]*f[31]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*cos2th*f_37_2*f[28]*f[31]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*f_36_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-U[2] + 6*U[3]) - (14*f_37_2*sin2th*f[29]*f[31]*f[61]*f[62])/(-U[2] + 6*U[3]) + (14*f_36_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*f_37_2*sin2th*f[28]*f[30]*f[60]*f[63])/(-U[2] + 6*U[3]) - (14*cos2th*f_36_2*f[29]*f[30]*f[60]*f[63])/(-U[2] + 6*U[3]) - (14*cos2th*f_37_2*f[29]*f[30]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_36_2*f[28]*f[31]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_37_2*f[28]*f[31]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*f_36_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*f_37_2*sin2th*f[29]*f[31]*f[60]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_36_2*f[28]*f[30]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_37_2*f[28]*f[30]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*f_36_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*f_37_2*sin2th*f[29]*f[30]*f[61]*f[63])/(-U[2] + 6*U[3]) - (14*f_36_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-U[2] + 6*U[3]) - (14*f_37_2*sin2th*f[28]*f[31]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_36_2*f[29]*f[31]*f[61]*f[63])/(-U[2] + 6*U[3]) + (14*cos2th*f_37_2*f[29]*f[31]*f[61]*f[63])/(-U[2] + 6*U[3])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) - (J[2]*J[3]*((-2*cos2th*f_48_2*f[34]*f[36]*f[66]*f[68])/U[2] - (2*cos2th*f_49_2*f[34]*f[36]*f[66]*f[68])/U[2] - (2*f_48_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[2] - (2*f_49_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[2] + (2*f_48_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[2] + (2*f_49_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[2] - (2*cos2th*f_48_2*f[35]*f[37]*f[66]*f[68])/U[2] - (2*cos2th*f_49_2*f[35]*f[37]*f[66]*f[68])/U[2] + (2*f_48_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[2] + (2*f_49_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[2] - (2*cos2th*f_48_2*f[35]*f[36]*f[67]*f[68])/U[2] - (2*cos2th*f_49_2*f[35]*f[36]*f[67]*f[68])/U[2] + (2*cos2th*f_48_2*f[34]*f[37]*f[67]*f[68])/U[2] + (2*cos2th*f_49_2*f[34]*f[37]*f[67]*f[68])/U[2] + (2*f_48_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[2] + (2*f_49_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[2] - (2*f_48_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[2] - (2*f_49_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[2] + (2*cos2th*f_48_2*f[35]*f[36]*f[66]*f[69])/U[2] + (2*cos2th*f_49_2*f[35]*f[36]*f[66]*f[69])/U[2] - (2*cos2th*f_48_2*f[34]*f[37]*f[66]*f[69])/U[2] - (2*cos2th*f_49_2*f[34]*f[37]*f[66]*f[69])/U[2] - (2*f_48_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[2] - (2*f_49_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[2] - (2*cos2th*f_48_2*f[34]*f[36]*f[67]*f[69])/U[2] - (2*cos2th*f_49_2*f[34]*f[36]*f[67]*f[69])/U[2] - (2*f_48_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[2] - (2*f_49_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[2] + (2*f_48_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[2] + (2*f_49_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[2] - (2*cos2th*f_48_2*f[35]*f[37]*f[67]*f[69])/U[2] - (2*cos2th*f_49_2*f[35]*f[37]*f[67]*f[69])/U[2] - (3*cos2th*f_48_2*f[36]*f[38]*f[68]*f[70])/(2.*U[2]) - (3*cos2th*f_49_2*f[36]*f[38]*f[68]*f[70])/(2.*U[2]) - (3*f_48_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[2]) - (3*f_49_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[2]) + (3*f_48_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[2]) + (3*f_49_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[2]) - (3*cos2th*f_48_2*f[37]*f[39]*f[68]*f[70])/(2.*U[2]) - (3*cos2th*f_49_2*f[37]*f[39]*f[68]*f[70])/(2.*U[2]) + (3*f_48_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[2]) + (3*f_49_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[2]) - (3*cos2th*f_48_2*f[37]*f[38]*f[69]*f[70])/(2.*U[2]) - (3*cos2th*f_49_2*f[37]*f[38]*f[69]*f[70])/(2.*U[2]) + (3*cos2th*f_48_2*f[36]*f[39]*f[69]*f[70])/(2.*U[2]) + (3*cos2th*f_49_2*f[36]*f[39]*f[69]*f[70])/(2.*U[2]) + (3*f_48_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[2]) + (3*f_49_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[2]) - (3*f_48_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[2]) - (3*f_49_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_48_2*f[37]*f[38]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_49_2*f[37]*f[38]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_48_2*f[36]*f[39]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_49_2*f[36]*f[39]*f[68]*f[71])/(2.*U[2]) - (3*f_48_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[2]) - (3*f_49_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_48_2*f[36]*f[38]*f[69]*f[71])/(2.*U[2]) - (3*cos2th*f_49_2*f[36]*f[38]*f[69]*f[71])/(2.*U[2]) - (3*f_48_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[2]) - (3*f_49_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[2]) + (3*f_48_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[2]) + (3*f_49_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[2]) - (3*cos2th*f_48_2*f[37]*f[39]*f[69]*f[71])/(2.*U[2]) - (3*cos2th*f_49_2*f[37]*f[39]*f[69]*f[71])/(2.*U[2]) - (4*cos2th*f_48_2*f[38]*f[40]*f[70]*f[72])/(3.*U[2]) - (4*cos2th*f_49_2*f[38]*f[40]*f[70]*f[72])/(3.*U[2]) - (4*f_48_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[2]) - (4*f_49_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[2]) + (4*f_48_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[2]) + (4*f_49_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[2]) - (4*cos2th*f_48_2*f[39]*f[41]*f[70]*f[72])/(3.*U[2]) - (4*cos2th*f_49_2*f[39]*f[41]*f[70]*f[72])/(3.*U[2]) + (4*f_48_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[2]) + (4*f_49_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[2]) - (4*cos2th*f_48_2*f[39]*f[40]*f[71]*f[72])/(3.*U[2]) - (4*cos2th*f_49_2*f[39]*f[40]*f[71]*f[72])/(3.*U[2]) + (4*cos2th*f_48_2*f[38]*f[41]*f[71]*f[72])/(3.*U[2]) + (4*cos2th*f_49_2*f[38]*f[41]*f[71]*f[72])/(3.*U[2]) + (4*f_48_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[2]) + (4*f_49_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[2]) - (4*f_48_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[2]) - (4*f_49_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_48_2*f[39]*f[40]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_49_2*f[39]*f[40]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_48_2*f[38]*f[41]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_49_2*f[38]*f[41]*f[70]*f[73])/(3.*U[2]) - (4*f_48_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[2]) - (4*f_49_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_48_2*f[38]*f[40]*f[71]*f[73])/(3.*U[2]) - (4*cos2th*f_49_2*f[38]*f[40]*f[71]*f[73])/(3.*U[2]) - (4*f_48_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[2]) - (4*f_49_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[2]) + (4*f_48_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[2]) + (4*f_49_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[2]) - (4*cos2th*f_48_2*f[39]*f[41]*f[71]*f[73])/(3.*U[2]) - (4*cos2th*f_49_2*f[39]*f[41]*f[71]*f[73])/(3.*U[2]) - (5*cos2th*f_48_2*f[40]*f[42]*f[72]*f[74])/(4.*U[2]) - (5*cos2th*f_49_2*f[40]*f[42]*f[72]*f[74])/(4.*U[2]) - (5*f_48_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[2]) - (5*f_49_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[2]) + (5*f_48_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[2]) + (5*f_49_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[2]) - (5*cos2th*f_48_2*f[41]*f[43]*f[72]*f[74])/(4.*U[2]) - (5*cos2th*f_49_2*f[41]*f[43]*f[72]*f[74])/(4.*U[2]) + (5*f_48_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[2]) + (5*f_49_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[2]) - (5*cos2th*f_48_2*f[41]*f[42]*f[73]*f[74])/(4.*U[2]) - (5*cos2th*f_49_2*f[41]*f[42]*f[73]*f[74])/(4.*U[2]) + (5*cos2th*f_48_2*f[40]*f[43]*f[73]*f[74])/(4.*U[2]) + (5*cos2th*f_49_2*f[40]*f[43]*f[73]*f[74])/(4.*U[2]) + (5*f_48_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[2]) + (5*f_49_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[2]) - (5*f_48_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[2]) - (5*f_49_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_48_2*f[41]*f[42]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_49_2*f[41]*f[42]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_48_2*f[40]*f[43]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_49_2*f[40]*f[43]*f[72]*f[75])/(4.*U[2]) - (5*f_48_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[2]) - (5*f_49_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_48_2*f[40]*f[42]*f[73]*f[75])/(4.*U[2]) - (5*cos2th*f_49_2*f[40]*f[42]*f[73]*f[75])/(4.*U[2]) - (5*f_48_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[2]) - (5*f_49_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[2]) + (5*f_48_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[2]) + (5*f_49_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[2]) - (5*cos2th*f_48_2*f[41]*f[43]*f[73]*f[75])/(4.*U[2]) - (5*cos2th*f_49_2*f[41]*f[43]*f[73]*f[75])/(4.*U[2]) - (6*cos2th*f_48_2*f[42]*f[44]*f[74]*f[76])/(5.*U[2]) - (6*cos2th*f_49_2*f[42]*f[44]*f[74]*f[76])/(5.*U[2]) - (6*f_48_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[2]) - (6*f_49_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[2]) + (6*f_48_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[2]) + (6*f_49_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[2]) - (6*cos2th*f_48_2*f[43]*f[45]*f[74]*f[76])/(5.*U[2]) - (6*cos2th*f_49_2*f[43]*f[45]*f[74]*f[76])/(5.*U[2]) + (6*f_48_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[2]) + (6*f_49_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[2]) - (6*cos2th*f_48_2*f[43]*f[44]*f[75]*f[76])/(5.*U[2]) - (6*cos2th*f_49_2*f[43]*f[44]*f[75]*f[76])/(5.*U[2]) + (6*cos2th*f_48_2*f[42]*f[45]*f[75]*f[76])/(5.*U[2]) + (6*cos2th*f_49_2*f[42]*f[45]*f[75]*f[76])/(5.*U[2]) + (6*f_48_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[2]) + (6*f_49_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[2]) - (6*f_48_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[2]) - (6*f_49_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_48_2*f[43]*f[44]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_49_2*f[43]*f[44]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_48_2*f[42]*f[45]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_49_2*f[42]*f[45]*f[74]*f[77])/(5.*U[2]) - (6*f_48_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[2]) - (6*f_49_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_48_2*f[42]*f[44]*f[75]*f[77])/(5.*U[2]) - (6*cos2th*f_49_2*f[42]*f[44]*f[75]*f[77])/(5.*U[2]) - (6*f_48_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[2]) - (6*f_49_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[2]) + (6*f_48_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[2]) + (6*f_49_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[2]) - (6*cos2th*f_48_2*f[43]*f[45]*f[75]*f[77])/(5.*U[2]) - (6*cos2th*f_49_2*f[43]*f[45]*f[75]*f[77])/(5.*U[2]) - (7*cos2th*f_48_2*f[44]*f[46]*f[76]*f[78])/(6.*U[2]) - (7*cos2th*f_49_2*f[44]*f[46]*f[76]*f[78])/(6.*U[2]) - (7*f_48_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[2]) - (7*f_49_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[2]) + (7*f_48_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[2]) + (7*f_49_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[2]) - (7*cos2th*f_48_2*f[45]*f[47]*f[76]*f[78])/(6.*U[2]) - (7*cos2th*f_49_2*f[45]*f[47]*f[76]*f[78])/(6.*U[2]) + (7*f_48_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[2]) + (7*f_49_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[2]) - (7*cos2th*f_48_2*f[45]*f[46]*f[77]*f[78])/(6.*U[2]) - (7*cos2th*f_49_2*f[45]*f[46]*f[77]*f[78])/(6.*U[2]) + (7*cos2th*f_48_2*f[44]*f[47]*f[77]*f[78])/(6.*U[2]) + (7*cos2th*f_49_2*f[44]*f[47]*f[77]*f[78])/(6.*U[2]) + (7*f_48_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[2]) + (7*f_49_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[2]) - (7*f_48_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[2]) - (7*f_49_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_48_2*f[45]*f[46]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_49_2*f[45]*f[46]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_48_2*f[44]*f[47]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_49_2*f[44]*f[47]*f[76]*f[79])/(6.*U[2]) - (7*f_48_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[2]) - (7*f_49_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_48_2*f[44]*f[46]*f[77]*f[79])/(6.*U[2]) - (7*cos2th*f_49_2*f[44]*f[46]*f[77]*f[79])/(6.*U[2]) - (7*f_48_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[2]) - (7*f_49_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[2]) + (7*f_48_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[2]) + (7*f_49_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[2]) - (7*cos2th*f_48_2*f[45]*f[47]*f[77]*f[79])/(6.*U[2]) - (7*cos2th*f_49_2*f[45]*f[47]*f[77]*f[79])/(6.*U[2]) + (2*cos2th*f_50_2*f[32]*f[34]*f[64]*f[66])/U[3] + (2*cos2th*f_51_2*f[32]*f[34]*f[64]*f[66])/U[3] + (3*cos2th*f_52_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) + (3*cos2th*f_53_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) + (4*cos2th*f_54_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) + (4*cos2th*f_55_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) + (5*cos2th*f_56_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) + (5*cos2th*f_57_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) + (6*cos2th*f_58_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) + (6*cos2th*f_59_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) + (7*cos2th*f_60_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) + (7*cos2th*f_61_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] + (2*f_51_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] + (3*f_52_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) + (3*f_53_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) + (4*f_54_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) + (4*f_55_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) + (5*f_56_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) + (5*f_57_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) + (6*f_58_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) + (6*f_59_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) + (7*f_60_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) + (7*f_61_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] - (2*f_51_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] - (3*f_52_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) - (3*f_53_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) - (4*f_54_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) - (4*f_55_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) - (5*f_56_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) - (5*f_57_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) - (6*f_58_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) - (6*f_59_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) - (7*f_60_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) - (7*f_61_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) + (2*cos2th*f_50_2*f[33]*f[35]*f[64]*f[66])/U[3] + (2*cos2th*f_51_2*f[33]*f[35]*f[64]*f[66])/U[3] + (3*cos2th*f_52_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) + (3*cos2th*f_53_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) + (4*cos2th*f_54_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) + (4*cos2th*f_55_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) + (5*cos2th*f_56_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) + (5*cos2th*f_57_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) + (6*cos2th*f_58_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) + (6*cos2th*f_59_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) + (7*cos2th*f_60_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) + (7*cos2th*f_61_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] - (2*f_51_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] - (3*f_52_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) - (3*f_53_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) - (4*f_54_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) - (4*f_55_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) - (5*f_56_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) - (5*f_57_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) - (6*f_58_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) - (6*f_59_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) - (7*f_60_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) - (7*f_61_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) + (2*cos2th*f_50_2*f[33]*f[34]*f[65]*f[66])/U[3] + (2*cos2th*f_51_2*f[33]*f[34]*f[65]*f[66])/U[3] + (3*cos2th*f_52_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) + (3*cos2th*f_53_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) + (4*cos2th*f_54_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) + (4*cos2th*f_55_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) + (5*cos2th*f_56_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) + (5*cos2th*f_57_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) + (6*cos2th*f_58_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) + (6*cos2th*f_59_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) + (7*cos2th*f_60_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) + (7*cos2th*f_61_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) - (2*cos2th*f_50_2*f[32]*f[35]*f[65]*f[66])/U[3] - (2*cos2th*f_51_2*f[32]*f[35]*f[65]*f[66])/U[3] - (3*cos2th*f_52_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) - (3*cos2th*f_53_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) - (4*cos2th*f_54_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) - (4*cos2th*f_55_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) - (5*cos2th*f_56_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) - (5*cos2th*f_57_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) - (6*cos2th*f_58_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) - (6*cos2th*f_59_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) - (7*cos2th*f_60_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) - (7*cos2th*f_61_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] - (2*f_51_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] - (3*f_52_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) - (3*f_53_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) - (4*f_54_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) - (4*f_55_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) - (5*f_56_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) - (5*f_57_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) - (6*f_58_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) - (6*f_59_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) - (7*f_60_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) - (7*f_61_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] + (2*f_51_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] + (3*f_52_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) + (3*f_53_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) + (4*f_54_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) + (4*f_55_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) + (5*f_56_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) + (5*f_57_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) + (6*f_58_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) + (6*f_59_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) + (7*f_60_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) + (7*f_61_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_50_2*f[33]*f[34]*f[64]*f[67])/U[3] - (2*cos2th*f_51_2*f[33]*f[34]*f[64]*f[67])/U[3] - (3*cos2th*f_52_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) - (3*cos2th*f_53_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) - (4*cos2th*f_54_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) - (4*cos2th*f_55_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) - (5*cos2th*f_56_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) - (5*cos2th*f_57_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) - (6*cos2th*f_58_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) - (6*cos2th*f_59_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) - (7*cos2th*f_60_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) - (7*cos2th*f_61_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[32]*f[35]*f[64]*f[67])/U[3] + (2*cos2th*f_51_2*f[32]*f[35]*f[64]*f[67])/U[3] + (3*cos2th*f_52_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) + (3*cos2th*f_53_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) + (4*cos2th*f_54_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) + (4*cos2th*f_55_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) + (5*cos2th*f_56_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) + (5*cos2th*f_57_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) + (6*cos2th*f_58_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) + (6*cos2th*f_59_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) + (7*cos2th*f_60_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) + (7*cos2th*f_61_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) + (2*f_50_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] + (2*f_51_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] + (3*f_52_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) + (3*f_53_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) + (4*f_54_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) + (4*f_55_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) + (5*f_56_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) + (5*f_57_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) + (6*f_58_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) + (6*f_59_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) + (7*f_60_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) + (7*f_61_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[32]*f[34]*f[65]*f[67])/U[3] + (2*cos2th*f_51_2*f[32]*f[34]*f[65]*f[67])/U[3] + (3*cos2th*f_52_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) + (3*cos2th*f_53_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) + (4*cos2th*f_54_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) + (4*cos2th*f_55_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) + (5*cos2th*f_56_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) + (5*cos2th*f_57_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) + (6*cos2th*f_58_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) + (6*cos2th*f_59_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) + (7*cos2th*f_60_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) + (7*cos2th*f_61_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) + (2*f_50_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] + (2*f_51_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] + (3*f_52_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) + (3*f_53_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) + (4*f_54_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) + (4*f_55_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) + (5*f_56_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) + (5*f_57_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) + (6*f_58_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) + (6*f_59_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) + (7*f_60_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) + (7*f_61_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) - (2*f_50_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] - (2*f_51_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] - (3*f_52_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) - (3*f_53_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) - (4*f_54_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) - (4*f_55_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) - (5*f_56_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) - (5*f_57_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) - (6*f_58_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) - (6*f_59_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) - (7*f_60_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) - (7*f_61_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[33]*f[35]*f[65]*f[67])/U[3] + (2*cos2th*f_51_2*f[33]*f[35]*f[65]*f[67])/U[3] + (3*cos2th*f_52_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) + (3*cos2th*f_53_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) + (4*cos2th*f_54_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) + (4*cos2th*f_55_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) + (5*cos2th*f_56_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) + (5*cos2th*f_57_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) + (6*cos2th*f_58_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) + (6*cos2th*f_59_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) + (7*cos2th*f_60_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (7*cos2th*f_61_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (14*cos2th*f_50_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_51_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*f_50_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*f_51_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + U[3]) - (14*f_50_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + U[3]) - (14*f_51_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_50_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_51_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + U[3]) - (14*f_50_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*f_51_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_50_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_51_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*cos2th*f_50_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*cos2th*f_51_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*f_50_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*f_51_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + U[3]) + (14*f_50_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*f_51_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + U[3]) - (14*cos2th*f_50_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + U[3]) - (14*cos2th*f_51_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_50_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_51_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*f_50_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*f_51_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_50_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_51_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*f_50_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*f_51_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + U[3]) - (14*f_50_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + U[3]) - (14*f_51_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_50_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_51_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + U[3]) + (12*cos2th*f_50_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_51_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*f_50_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*f_51_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + U[3]) - (12*f_50_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + U[3]) - (12*f_51_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_50_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_51_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + U[3]) - (12*f_50_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*f_51_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_50_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_51_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*cos2th*f_50_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*cos2th*f_51_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*f_50_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*f_51_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + U[3]) + (12*f_50_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*f_51_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + U[3]) - (12*cos2th*f_50_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + U[3]) - (12*cos2th*f_51_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_50_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_51_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*f_50_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*f_51_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_50_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_51_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*f_50_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*f_51_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + U[3]) - (12*f_50_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + U[3]) - (12*f_51_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_50_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_51_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + U[3]) + (10*cos2th*f_50_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_51_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*f_50_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*f_51_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + U[3]) - (10*f_50_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + U[3]) - (10*f_51_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_50_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_51_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + U[3]) - (10*f_50_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*f_51_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_50_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_51_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*cos2th*f_50_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*cos2th*f_51_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*f_50_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*f_51_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + U[3]) + (10*f_50_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*f_51_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + U[3]) - (10*cos2th*f_50_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + U[3]) - (10*cos2th*f_51_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_50_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_51_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*f_50_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*f_51_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_50_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_51_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*f_50_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*f_51_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + U[3]) - (10*f_50_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + U[3]) - (10*f_51_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_50_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_51_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + U[3]) + (8*cos2th*f_50_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_51_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*f_50_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*f_51_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + U[3]) - (8*f_50_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + U[3]) - (8*f_51_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_50_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_51_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + U[3]) - (8*f_50_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*f_51_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_50_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_51_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*cos2th*f_50_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*cos2th*f_51_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*f_50_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*f_51_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + U[3]) + (8*f_50_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*f_51_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + U[3]) - (8*cos2th*f_50_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + U[3]) - (8*cos2th*f_51_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_50_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_51_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*f_50_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*f_51_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_50_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_51_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*f_50_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*f_51_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + U[3]) - (8*f_50_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + U[3]) - (8*f_51_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_50_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_51_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + U[3]) + (6*cos2th*f_50_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_51_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*f_50_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*f_51_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + U[3]) - (6*f_50_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + U[3]) - (6*f_51_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_50_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_51_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + U[3]) - (6*f_50_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*f_51_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_50_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_51_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*cos2th*f_50_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*cos2th*f_51_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*f_50_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*f_51_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + U[3]) + (6*f_50_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*f_51_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + U[3]) - (6*cos2th*f_50_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + U[3]) - (6*cos2th*f_51_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_50_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_51_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*f_50_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*f_51_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_50_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_51_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*f_50_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*f_51_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + U[3]) - (6*f_50_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + U[3]) - (6*f_51_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_50_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_51_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + U[3]) + (21*cos2th*f_52_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_53_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*f_52_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*f_53_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_52_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_53_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_52_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_53_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_52_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_53_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_52_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_53_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_52_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_53_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_52_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_53_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 2*U[3]) + (21*f_52_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_53_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_52_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_53_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_52_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_53_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_52_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_53_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_52_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_53_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_52_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_53_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 2*U[3]) - (21*f_52_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 2*U[3]) - (21*f_53_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_52_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_53_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (18*cos2th*f_52_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_53_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*f_52_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*f_53_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_52_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_53_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_52_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_53_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_52_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_53_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_52_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_53_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_52_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_53_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_52_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_53_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 2*U[3]) + (18*f_52_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_53_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_52_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_53_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_52_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_53_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_52_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_53_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_52_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_53_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_52_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_53_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 2*U[3]) - (18*f_52_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 2*U[3]) - (18*f_53_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_52_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_53_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (15*cos2th*f_52_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_53_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*f_52_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*f_53_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_52_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_53_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_52_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_53_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_52_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_53_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_52_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_53_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_52_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_53_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_52_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_53_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 2*U[3]) + (15*f_52_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_53_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_52_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_53_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_52_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_53_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_52_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_53_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_52_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_53_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_52_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_53_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 2*U[3]) - (15*f_52_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 2*U[3]) - (15*f_53_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_52_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_53_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (12*cos2th*f_52_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_53_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*f_52_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*f_53_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_52_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_53_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_52_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_53_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_52_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_53_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_52_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_53_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_52_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_53_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_52_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_53_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 2*U[3]) + (12*f_52_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_53_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_52_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_53_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_52_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_53_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_52_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_53_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_52_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_53_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_52_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_53_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 2*U[3]) - (12*f_52_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 2*U[3]) - (12*f_53_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_52_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_53_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (6*cos2th*f_52_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_53_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*f_52_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*f_53_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 2*U[3]) - (6*f_52_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 2*U[3]) - (6*f_53_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_52_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_53_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 2*U[3]) - (6*f_52_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*f_53_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_52_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_53_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*cos2th*f_52_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*cos2th*f_53_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*f_52_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*f_53_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 2*U[3]) + (6*f_52_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*f_53_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 2*U[3]) - (6*cos2th*f_52_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 2*U[3]) - (6*cos2th*f_53_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_52_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_53_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*f_52_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*f_53_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_52_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_53_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*f_52_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*f_53_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 2*U[3]) - (6*f_52_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 2*U[3]) - (6*f_53_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_52_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_53_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 2*U[3]) + (28*cos2th*f_54_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_55_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*f_54_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*f_55_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_54_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_55_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_54_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_55_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_54_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_55_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_54_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_55_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_54_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_55_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_54_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_55_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 3*U[3]) + (28*f_54_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_55_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_54_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_55_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_54_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_55_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_54_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_55_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_54_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_55_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_54_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_55_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 3*U[3]) - (28*f_54_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 3*U[3]) - (28*f_55_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_54_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_55_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (24*cos2th*f_54_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_55_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*f_54_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*f_55_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_54_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_55_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_54_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_55_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_54_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_55_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_54_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_55_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_54_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_55_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_54_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_55_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 3*U[3]) + (24*f_54_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_55_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_54_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_55_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_54_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_55_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_54_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_55_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_54_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_55_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_54_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_55_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 3*U[3]) - (24*f_54_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 3*U[3]) - (24*f_55_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_54_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_55_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (20*cos2th*f_54_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_55_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*f_54_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*f_55_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_54_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_55_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_54_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_55_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_54_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_55_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_54_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_55_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_54_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_55_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_54_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_55_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 3*U[3]) + (20*f_54_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_55_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_54_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_55_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_54_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_55_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_54_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_55_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_54_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_55_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_54_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_55_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 3*U[3]) - (20*f_54_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 3*U[3]) - (20*f_55_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_54_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_55_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (12*cos2th*f_54_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_55_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*f_54_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*f_55_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_54_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_55_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_54_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_55_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_54_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_55_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_54_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_55_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_54_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_55_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_54_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_55_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 3*U[3]) + (12*f_54_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_55_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_54_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_55_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_54_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_55_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_54_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_55_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_54_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_55_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_54_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_55_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 3*U[3]) - (12*f_54_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 3*U[3]) - (12*f_55_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_54_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_55_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (8*cos2th*f_54_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_55_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*f_54_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*f_55_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 3*U[3]) - (8*f_54_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 3*U[3]) - (8*f_55_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_54_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_55_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 3*U[3]) - (8*f_54_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*f_55_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_54_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_55_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*cos2th*f_54_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*cos2th*f_55_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*f_54_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*f_55_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 3*U[3]) + (8*f_54_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*f_55_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 3*U[3]) - (8*cos2th*f_54_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 3*U[3]) - (8*cos2th*f_55_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_54_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_55_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*f_54_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*f_55_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_54_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_55_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*f_54_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*f_55_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 3*U[3]) - (8*f_54_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 3*U[3]) - (8*f_55_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_54_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_55_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 3*U[3]) + (35*cos2th*f_56_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_57_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*f_56_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*f_57_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_56_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_57_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_56_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_57_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_56_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_57_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_56_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_57_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_56_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_57_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_56_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_57_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 4*U[3]) + (35*f_56_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_57_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_56_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_57_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_56_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_57_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_56_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_57_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_56_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_57_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_56_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_57_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 4*U[3]) - (35*f_56_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 4*U[3]) - (35*f_57_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_56_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_57_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (30*cos2th*f_56_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_57_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*f_56_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*f_57_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_56_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_57_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_56_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_57_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_56_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_57_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_56_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_57_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_56_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_57_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_56_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_57_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 4*U[3]) + (30*f_56_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_57_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_56_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_57_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_56_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_57_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_56_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_57_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_56_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_57_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_56_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_57_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 4*U[3]) - (30*f_56_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 4*U[3]) - (30*f_57_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_56_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_57_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (20*cos2th*f_56_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_57_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*f_56_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*f_57_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_56_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_57_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_56_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_57_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_56_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_57_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_56_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_57_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_56_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_57_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_56_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_57_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 4*U[3]) + (20*f_56_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_57_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_56_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_57_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_56_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_57_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_56_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_57_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_56_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_57_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_56_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_57_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 4*U[3]) - (20*f_56_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 4*U[3]) - (20*f_57_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_56_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_57_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (15*cos2th*f_56_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_57_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*f_56_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*f_57_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_56_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_57_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_56_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_57_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_56_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_57_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_56_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_57_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_56_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_57_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_56_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_57_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 4*U[3]) + (15*f_56_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_57_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_56_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_57_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_56_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_57_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_56_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_57_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_56_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_57_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_56_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_57_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 4*U[3]) - (15*f_56_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 4*U[3]) - (15*f_57_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_56_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_57_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (10*cos2th*f_56_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_57_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*f_56_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*f_57_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 4*U[3]) - (10*f_56_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 4*U[3]) - (10*f_57_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_56_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_57_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 4*U[3]) - (10*f_56_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*f_57_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_56_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_57_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*cos2th*f_56_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*cos2th*f_57_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*f_56_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*f_57_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 4*U[3]) + (10*f_56_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*f_57_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 4*U[3]) - (10*cos2th*f_56_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 4*U[3]) - (10*cos2th*f_57_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_56_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_57_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*f_56_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*f_57_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_56_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_57_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*f_56_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*f_57_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 4*U[3]) - (10*f_56_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 4*U[3]) - (10*f_57_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_56_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_57_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 4*U[3]) + (42*cos2th*f_58_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_59_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*f_58_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*f_59_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_58_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_59_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_58_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_59_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_58_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_59_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_58_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_59_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_58_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_59_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_58_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_59_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 5*U[3]) + (42*f_58_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_59_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_58_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_59_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_58_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_59_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_58_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_59_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_58_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_59_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_58_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_59_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 5*U[3]) - (42*f_58_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 5*U[3]) - (42*f_59_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_58_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_59_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (30*cos2th*f_58_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_59_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*f_58_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*f_59_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_58_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_59_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_58_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_59_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_58_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_59_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_58_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_59_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_58_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_59_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_58_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_59_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 5*U[3]) + (30*f_58_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_59_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_58_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_59_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_58_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_59_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_58_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_59_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_58_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_59_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_58_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_59_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 5*U[3]) - (30*f_58_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 5*U[3]) - (30*f_59_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_58_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_59_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (24*cos2th*f_58_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_59_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*f_58_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*f_59_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_58_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_59_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_58_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_59_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_58_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_59_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_58_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_59_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_58_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_59_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_58_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_59_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 5*U[3]) + (24*f_58_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_59_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_58_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_59_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_58_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_59_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_58_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_59_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_58_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_59_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_58_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_59_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 5*U[3]) - (24*f_58_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 5*U[3]) - (24*f_59_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_58_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_59_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (18*cos2th*f_58_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_59_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*f_58_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*f_59_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_58_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_59_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_58_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_59_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_58_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_59_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_58_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_59_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_58_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_59_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_58_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_59_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 5*U[3]) + (18*f_58_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_59_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_58_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_59_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_58_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_59_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_58_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_59_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_58_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_59_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_58_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_59_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 5*U[3]) - (18*f_58_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 5*U[3]) - (18*f_59_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_58_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_59_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (12*cos2th*f_58_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_59_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*f_58_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*f_59_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 5*U[3]) - (12*f_58_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 5*U[3]) - (12*f_59_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_58_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_59_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 5*U[3]) - (12*f_58_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*f_59_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_58_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_59_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*cos2th*f_58_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*cos2th*f_59_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*f_58_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*f_59_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 5*U[3]) + (12*f_58_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*f_59_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 5*U[3]) - (12*cos2th*f_58_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 5*U[3]) - (12*cos2th*f_59_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_58_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_59_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*f_58_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*f_59_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_58_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_59_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*f_58_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*f_59_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 5*U[3]) - (12*f_58_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 5*U[3]) - (12*f_59_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_58_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_59_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 5*U[3]) + (42*cos2th*f_60_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_61_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*f_60_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*f_61_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_60_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_61_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_60_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_61_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_60_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_61_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_60_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_61_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_60_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_61_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_60_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_61_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 6*U[3]) + (42*f_60_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_61_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_60_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_61_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_60_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_61_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_60_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_61_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_60_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_61_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_60_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_61_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 6*U[3]) - (42*f_60_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 6*U[3]) - (42*f_61_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_60_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_61_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (35*cos2th*f_60_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_61_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*f_60_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*f_61_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_60_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_61_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_60_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_61_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_60_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_61_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_60_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_61_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_60_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_61_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_60_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_61_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 6*U[3]) + (35*f_60_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_61_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_60_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_61_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_60_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_61_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_60_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_61_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_60_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_61_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_60_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_61_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 6*U[3]) - (35*f_60_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 6*U[3]) - (35*f_61_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_60_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_61_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (28*cos2th*f_60_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_61_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*f_60_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*f_61_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_60_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_61_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_60_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_61_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_60_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_61_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_60_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_61_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_60_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_61_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_60_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_61_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 6*U[3]) + (28*f_60_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_61_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_60_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_61_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_60_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_61_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_60_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_61_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_60_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_61_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_60_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_61_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 6*U[3]) - (28*f_60_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 6*U[3]) - (28*f_61_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_60_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_61_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (21*cos2th*f_60_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_61_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*f_60_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*f_61_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_60_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_61_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_60_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_61_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_60_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_61_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_60_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_61_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_60_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_61_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_60_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_61_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 6*U[3]) + (21*f_60_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_61_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_60_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_61_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_60_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_61_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_60_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_61_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_60_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_61_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_60_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_61_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 6*U[3]) - (21*f_60_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 6*U[3]) - (21*f_61_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_60_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_61_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (14*cos2th*f_60_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_61_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*f_60_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*f_61_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 6*U[3]) - (14*f_60_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 6*U[3]) - (14*f_61_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_60_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_61_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 6*U[3]) - (14*f_60_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*f_61_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_60_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_61_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*cos2th*f_60_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*cos2th*f_61_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*f_60_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*f_61_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 6*U[3]) + (14*f_60_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*f_61_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 6*U[3]) - (14*cos2th*f_60_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 6*U[3]) - (14*cos2th*f_61_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_60_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_61_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*f_60_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*f_61_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_60_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_61_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*f_60_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*f_61_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 6*U[3]) - (14*f_60_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 6*U[3]) - (14*f_61_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_60_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_61_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 6*U[3])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + (J[2]*J[3]*((-2*cos2th*f_50_2*f[34]*f[36]*f[66]*f[68])/U[2] - (2*cos2th*f_51_2*f[34]*f[36]*f[66]*f[68])/U[2] - (2*f_50_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[2] - (2*f_51_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[2] + (2*f_50_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[2] + (2*f_51_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[2] - (2*cos2th*f_50_2*f[35]*f[37]*f[66]*f[68])/U[2] - (2*cos2th*f_51_2*f[35]*f[37]*f[66]*f[68])/U[2] + (2*f_50_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[2] + (2*f_51_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[2] - (2*cos2th*f_50_2*f[35]*f[36]*f[67]*f[68])/U[2] - (2*cos2th*f_51_2*f[35]*f[36]*f[67]*f[68])/U[2] + (2*cos2th*f_50_2*f[34]*f[37]*f[67]*f[68])/U[2] + (2*cos2th*f_51_2*f[34]*f[37]*f[67]*f[68])/U[2] + (2*f_50_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[2] + (2*f_51_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[2] - (2*f_50_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[2] - (2*f_51_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[2] + (2*cos2th*f_50_2*f[35]*f[36]*f[66]*f[69])/U[2] + (2*cos2th*f_51_2*f[35]*f[36]*f[66]*f[69])/U[2] - (2*cos2th*f_50_2*f[34]*f[37]*f[66]*f[69])/U[2] - (2*cos2th*f_51_2*f[34]*f[37]*f[66]*f[69])/U[2] - (2*f_50_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[2] - (2*f_51_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[2] - (2*cos2th*f_50_2*f[34]*f[36]*f[67]*f[69])/U[2] - (2*cos2th*f_51_2*f[34]*f[36]*f[67]*f[69])/U[2] - (2*f_50_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[2] - (2*f_51_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[2] + (2*f_50_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[2] + (2*f_51_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[2] - (2*cos2th*f_50_2*f[35]*f[37]*f[67]*f[69])/U[2] - (2*cos2th*f_51_2*f[35]*f[37]*f[67]*f[69])/U[2] - (3*cos2th*f_50_2*f[36]*f[38]*f[68]*f[70])/(2.*U[2]) - (3*cos2th*f_51_2*f[36]*f[38]*f[68]*f[70])/(2.*U[2]) - (3*f_50_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[2]) - (3*f_51_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[2]) + (3*f_50_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[2]) + (3*f_51_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[2]) - (3*cos2th*f_50_2*f[37]*f[39]*f[68]*f[70])/(2.*U[2]) - (3*cos2th*f_51_2*f[37]*f[39]*f[68]*f[70])/(2.*U[2]) + (3*f_50_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[2]) + (3*f_51_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[2]) - (3*cos2th*f_50_2*f[37]*f[38]*f[69]*f[70])/(2.*U[2]) - (3*cos2th*f_51_2*f[37]*f[38]*f[69]*f[70])/(2.*U[2]) + (3*cos2th*f_50_2*f[36]*f[39]*f[69]*f[70])/(2.*U[2]) + (3*cos2th*f_51_2*f[36]*f[39]*f[69]*f[70])/(2.*U[2]) + (3*f_50_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[2]) + (3*f_51_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[2]) - (3*f_50_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[2]) - (3*f_51_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_50_2*f[37]*f[38]*f[68]*f[71])/(2.*U[2]) + (3*cos2th*f_51_2*f[37]*f[38]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_50_2*f[36]*f[39]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_51_2*f[36]*f[39]*f[68]*f[71])/(2.*U[2]) - (3*f_50_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[2]) - (3*f_51_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[2]) - (3*cos2th*f_50_2*f[36]*f[38]*f[69]*f[71])/(2.*U[2]) - (3*cos2th*f_51_2*f[36]*f[38]*f[69]*f[71])/(2.*U[2]) - (3*f_50_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[2]) - (3*f_51_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[2]) + (3*f_50_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[2]) + (3*f_51_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[2]) - (3*cos2th*f_50_2*f[37]*f[39]*f[69]*f[71])/(2.*U[2]) - (3*cos2th*f_51_2*f[37]*f[39]*f[69]*f[71])/(2.*U[2]) - (4*cos2th*f_50_2*f[38]*f[40]*f[70]*f[72])/(3.*U[2]) - (4*cos2th*f_51_2*f[38]*f[40]*f[70]*f[72])/(3.*U[2]) - (4*f_50_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[2]) - (4*f_51_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[2]) + (4*f_50_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[2]) + (4*f_51_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[2]) - (4*cos2th*f_50_2*f[39]*f[41]*f[70]*f[72])/(3.*U[2]) - (4*cos2th*f_51_2*f[39]*f[41]*f[70]*f[72])/(3.*U[2]) + (4*f_50_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[2]) + (4*f_51_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[2]) - (4*cos2th*f_50_2*f[39]*f[40]*f[71]*f[72])/(3.*U[2]) - (4*cos2th*f_51_2*f[39]*f[40]*f[71]*f[72])/(3.*U[2]) + (4*cos2th*f_50_2*f[38]*f[41]*f[71]*f[72])/(3.*U[2]) + (4*cos2th*f_51_2*f[38]*f[41]*f[71]*f[72])/(3.*U[2]) + (4*f_50_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[2]) + (4*f_51_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[2]) - (4*f_50_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[2]) - (4*f_51_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_50_2*f[39]*f[40]*f[70]*f[73])/(3.*U[2]) + (4*cos2th*f_51_2*f[39]*f[40]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_50_2*f[38]*f[41]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_51_2*f[38]*f[41]*f[70]*f[73])/(3.*U[2]) - (4*f_50_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[2]) - (4*f_51_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[2]) - (4*cos2th*f_50_2*f[38]*f[40]*f[71]*f[73])/(3.*U[2]) - (4*cos2th*f_51_2*f[38]*f[40]*f[71]*f[73])/(3.*U[2]) - (4*f_50_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[2]) - (4*f_51_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[2]) + (4*f_50_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[2]) + (4*f_51_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[2]) - (4*cos2th*f_50_2*f[39]*f[41]*f[71]*f[73])/(3.*U[2]) - (4*cos2th*f_51_2*f[39]*f[41]*f[71]*f[73])/(3.*U[2]) - (5*cos2th*f_50_2*f[40]*f[42]*f[72]*f[74])/(4.*U[2]) - (5*cos2th*f_51_2*f[40]*f[42]*f[72]*f[74])/(4.*U[2]) - (5*f_50_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[2]) - (5*f_51_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[2]) + (5*f_50_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[2]) + (5*f_51_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[2]) - (5*cos2th*f_50_2*f[41]*f[43]*f[72]*f[74])/(4.*U[2]) - (5*cos2th*f_51_2*f[41]*f[43]*f[72]*f[74])/(4.*U[2]) + (5*f_50_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[2]) + (5*f_51_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[2]) - (5*cos2th*f_50_2*f[41]*f[42]*f[73]*f[74])/(4.*U[2]) - (5*cos2th*f_51_2*f[41]*f[42]*f[73]*f[74])/(4.*U[2]) + (5*cos2th*f_50_2*f[40]*f[43]*f[73]*f[74])/(4.*U[2]) + (5*cos2th*f_51_2*f[40]*f[43]*f[73]*f[74])/(4.*U[2]) + (5*f_50_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[2]) + (5*f_51_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[2]) - (5*f_50_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[2]) - (5*f_51_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_50_2*f[41]*f[42]*f[72]*f[75])/(4.*U[2]) + (5*cos2th*f_51_2*f[41]*f[42]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_50_2*f[40]*f[43]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_51_2*f[40]*f[43]*f[72]*f[75])/(4.*U[2]) - (5*f_50_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[2]) - (5*f_51_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[2]) - (5*cos2th*f_50_2*f[40]*f[42]*f[73]*f[75])/(4.*U[2]) - (5*cos2th*f_51_2*f[40]*f[42]*f[73]*f[75])/(4.*U[2]) - (5*f_50_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[2]) - (5*f_51_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[2]) + (5*f_50_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[2]) + (5*f_51_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[2]) - (5*cos2th*f_50_2*f[41]*f[43]*f[73]*f[75])/(4.*U[2]) - (5*cos2th*f_51_2*f[41]*f[43]*f[73]*f[75])/(4.*U[2]) - (6*cos2th*f_50_2*f[42]*f[44]*f[74]*f[76])/(5.*U[2]) - (6*cos2th*f_51_2*f[42]*f[44]*f[74]*f[76])/(5.*U[2]) - (6*f_50_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[2]) - (6*f_51_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[2]) + (6*f_50_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[2]) + (6*f_51_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[2]) - (6*cos2th*f_50_2*f[43]*f[45]*f[74]*f[76])/(5.*U[2]) - (6*cos2th*f_51_2*f[43]*f[45]*f[74]*f[76])/(5.*U[2]) + (6*f_50_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[2]) + (6*f_51_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[2]) - (6*cos2th*f_50_2*f[43]*f[44]*f[75]*f[76])/(5.*U[2]) - (6*cos2th*f_51_2*f[43]*f[44]*f[75]*f[76])/(5.*U[2]) + (6*cos2th*f_50_2*f[42]*f[45]*f[75]*f[76])/(5.*U[2]) + (6*cos2th*f_51_2*f[42]*f[45]*f[75]*f[76])/(5.*U[2]) + (6*f_50_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[2]) + (6*f_51_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[2]) - (6*f_50_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[2]) - (6*f_51_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_50_2*f[43]*f[44]*f[74]*f[77])/(5.*U[2]) + (6*cos2th*f_51_2*f[43]*f[44]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_50_2*f[42]*f[45]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_51_2*f[42]*f[45]*f[74]*f[77])/(5.*U[2]) - (6*f_50_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[2]) - (6*f_51_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[2]) - (6*cos2th*f_50_2*f[42]*f[44]*f[75]*f[77])/(5.*U[2]) - (6*cos2th*f_51_2*f[42]*f[44]*f[75]*f[77])/(5.*U[2]) - (6*f_50_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[2]) - (6*f_51_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[2]) + (6*f_50_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[2]) + (6*f_51_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[2]) - (6*cos2th*f_50_2*f[43]*f[45]*f[75]*f[77])/(5.*U[2]) - (6*cos2th*f_51_2*f[43]*f[45]*f[75]*f[77])/(5.*U[2]) - (7*cos2th*f_50_2*f[44]*f[46]*f[76]*f[78])/(6.*U[2]) - (7*cos2th*f_51_2*f[44]*f[46]*f[76]*f[78])/(6.*U[2]) - (7*f_50_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[2]) - (7*f_51_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[2]) + (7*f_50_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[2]) + (7*f_51_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[2]) - (7*cos2th*f_50_2*f[45]*f[47]*f[76]*f[78])/(6.*U[2]) - (7*cos2th*f_51_2*f[45]*f[47]*f[76]*f[78])/(6.*U[2]) + (7*f_50_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[2]) + (7*f_51_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[2]) - (7*cos2th*f_50_2*f[45]*f[46]*f[77]*f[78])/(6.*U[2]) - (7*cos2th*f_51_2*f[45]*f[46]*f[77]*f[78])/(6.*U[2]) + (7*cos2th*f_50_2*f[44]*f[47]*f[77]*f[78])/(6.*U[2]) + (7*cos2th*f_51_2*f[44]*f[47]*f[77]*f[78])/(6.*U[2]) + (7*f_50_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[2]) + (7*f_51_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[2]) - (7*f_50_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[2]) - (7*f_51_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_50_2*f[45]*f[46]*f[76]*f[79])/(6.*U[2]) + (7*cos2th*f_51_2*f[45]*f[46]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_50_2*f[44]*f[47]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_51_2*f[44]*f[47]*f[76]*f[79])/(6.*U[2]) - (7*f_50_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[2]) - (7*f_51_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[2]) - (7*cos2th*f_50_2*f[44]*f[46]*f[77]*f[79])/(6.*U[2]) - (7*cos2th*f_51_2*f[44]*f[46]*f[77]*f[79])/(6.*U[2]) - (7*f_50_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[2]) - (7*f_51_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[2]) + (7*f_50_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[2]) + (7*f_51_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[2]) - (7*cos2th*f_50_2*f[45]*f[47]*f[77]*f[79])/(6.*U[2]) - (7*cos2th*f_51_2*f[45]*f[47]*f[77]*f[79])/(6.*U[2]) + (2*cos2th*f_52_2*f[32]*f[34]*f[64]*f[66])/U[3] + (2*cos2th*f_53_2*f[32]*f[34]*f[64]*f[66])/U[3] + (3*cos2th*f_54_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) + (3*cos2th*f_55_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) + (4*cos2th*f_56_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) + (4*cos2th*f_57_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) + (5*cos2th*f_58_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) + (5*cos2th*f_59_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) + (6*cos2th*f_60_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) + (6*cos2th*f_61_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) + (7*cos2th*f_62_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) + (7*cos2th*f_63_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] + (2*f_53_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] + (3*f_54_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) + (3*f_55_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) + (4*f_56_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) + (4*f_57_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) + (5*f_58_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) + (5*f_59_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) + (6*f_60_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) + (6*f_61_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) + (7*f_62_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) + (7*f_63_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] - (2*f_53_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] - (3*f_54_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) - (3*f_55_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) - (4*f_56_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) - (4*f_57_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) - (5*f_58_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) - (5*f_59_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) - (6*f_60_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) - (6*f_61_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) - (7*f_62_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) - (7*f_63_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) + (2*cos2th*f_52_2*f[33]*f[35]*f[64]*f[66])/U[3] + (2*cos2th*f_53_2*f[33]*f[35]*f[64]*f[66])/U[3] + (3*cos2th*f_54_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) + (3*cos2th*f_55_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) + (4*cos2th*f_56_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) + (4*cos2th*f_57_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) + (5*cos2th*f_58_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) + (5*cos2th*f_59_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) + (6*cos2th*f_60_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) + (6*cos2th*f_61_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) + (7*cos2th*f_62_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) + (7*cos2th*f_63_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] - (2*f_53_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] - (3*f_54_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) - (3*f_55_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) - (4*f_56_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) - (4*f_57_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) - (5*f_58_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) - (5*f_59_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) - (6*f_60_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) - (6*f_61_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) - (7*f_62_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) - (7*f_63_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) + (2*cos2th*f_52_2*f[33]*f[34]*f[65]*f[66])/U[3] + (2*cos2th*f_53_2*f[33]*f[34]*f[65]*f[66])/U[3] + (3*cos2th*f_54_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) + (3*cos2th*f_55_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) + (4*cos2th*f_56_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) + (4*cos2th*f_57_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) + (5*cos2th*f_58_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) + (5*cos2th*f_59_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) + (6*cos2th*f_60_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) + (6*cos2th*f_61_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) + (7*cos2th*f_62_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) + (7*cos2th*f_63_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) - (2*cos2th*f_52_2*f[32]*f[35]*f[65]*f[66])/U[3] - (2*cos2th*f_53_2*f[32]*f[35]*f[65]*f[66])/U[3] - (3*cos2th*f_54_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) - (3*cos2th*f_55_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) - (4*cos2th*f_56_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) - (4*cos2th*f_57_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) - (5*cos2th*f_58_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) - (5*cos2th*f_59_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) - (6*cos2th*f_60_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) - (6*cos2th*f_61_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) - (7*cos2th*f_62_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) - (7*cos2th*f_63_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] - (2*f_53_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] - (3*f_54_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) - (3*f_55_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) - (4*f_56_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) - (4*f_57_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) - (5*f_58_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) - (5*f_59_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) - (6*f_60_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) - (6*f_61_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) - (7*f_62_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) - (7*f_63_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] + (2*f_53_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] + (3*f_54_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) + (3*f_55_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) + (4*f_56_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) + (4*f_57_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) + (5*f_58_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) + (5*f_59_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) + (6*f_60_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) + (6*f_61_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) + (7*f_62_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) + (7*f_63_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_52_2*f[33]*f[34]*f[64]*f[67])/U[3] - (2*cos2th*f_53_2*f[33]*f[34]*f[64]*f[67])/U[3] - (3*cos2th*f_54_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) - (3*cos2th*f_55_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) - (4*cos2th*f_56_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) - (4*cos2th*f_57_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) - (5*cos2th*f_58_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) - (5*cos2th*f_59_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) - (6*cos2th*f_60_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) - (6*cos2th*f_61_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) - (7*cos2th*f_62_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) - (7*cos2th*f_63_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_52_2*f[32]*f[35]*f[64]*f[67])/U[3] + (2*cos2th*f_53_2*f[32]*f[35]*f[64]*f[67])/U[3] + (3*cos2th*f_54_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) + (3*cos2th*f_55_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) + (4*cos2th*f_56_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) + (4*cos2th*f_57_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) + (5*cos2th*f_58_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) + (5*cos2th*f_59_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) + (6*cos2th*f_60_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) + (6*cos2th*f_61_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) + (7*cos2th*f_62_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) + (7*cos2th*f_63_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) + (2*f_52_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] + (2*f_53_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] + (3*f_54_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) + (3*f_55_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) + (4*f_56_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) + (4*f_57_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) + (5*f_58_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) + (5*f_59_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) + (6*f_60_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) + (6*f_61_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) + (7*f_62_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) + (7*f_63_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_52_2*f[32]*f[34]*f[65]*f[67])/U[3] + (2*cos2th*f_53_2*f[32]*f[34]*f[65]*f[67])/U[3] + (3*cos2th*f_54_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) + (3*cos2th*f_55_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) + (4*cos2th*f_56_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) + (4*cos2th*f_57_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) + (5*cos2th*f_58_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) + (5*cos2th*f_59_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) + (6*cos2th*f_60_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) + (6*cos2th*f_61_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) + (7*cos2th*f_62_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) + (7*cos2th*f_63_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) + (2*f_52_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] + (2*f_53_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] + (3*f_54_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) + (3*f_55_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) + (4*f_56_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) + (4*f_57_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) + (5*f_58_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) + (5*f_59_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) + (6*f_60_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) + (6*f_61_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) + (7*f_62_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) + (7*f_63_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) - (2*f_52_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] - (2*f_53_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] - (3*f_54_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) - (3*f_55_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) - (4*f_56_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) - (4*f_57_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) - (5*f_58_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) - (5*f_59_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) - (6*f_60_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) - (6*f_61_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) - (7*f_62_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) - (7*f_63_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) + (2*cos2th*f_52_2*f[33]*f[35]*f[65]*f[67])/U[3] + (2*cos2th*f_53_2*f[33]*f[35]*f[65]*f[67])/U[3] + (3*cos2th*f_54_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) + (3*cos2th*f_55_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) + (4*cos2th*f_56_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) + (4*cos2th*f_57_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) + (5*cos2th*f_58_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) + (5*cos2th*f_59_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) + (6*cos2th*f_60_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) + (6*cos2th*f_61_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) + (7*cos2th*f_62_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (7*cos2th*f_63_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (14*cos2th*f_52_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_53_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*f_52_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*f_53_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + U[3]) - (14*f_52_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + U[3]) - (14*f_53_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_52_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_53_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + U[3]) - (14*f_52_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*f_53_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_52_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + U[3]) + (14*cos2th*f_53_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*cos2th*f_52_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*cos2th*f_53_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*f_52_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + U[3]) - (14*f_53_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + U[3]) + (14*f_52_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*f_53_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + U[3]) - (14*cos2th*f_52_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + U[3]) - (14*cos2th*f_53_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_52_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_53_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*f_52_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*f_53_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_52_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_53_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*f_52_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*f_53_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + U[3]) - (14*f_52_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + U[3]) - (14*f_53_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_52_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + U[3]) + (14*cos2th*f_53_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + U[3]) + (12*cos2th*f_52_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_53_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*f_52_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*f_53_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + U[3]) - (12*f_52_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + U[3]) - (12*f_53_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_52_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_53_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + U[3]) - (12*f_52_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*f_53_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_52_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + U[3]) + (12*cos2th*f_53_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*cos2th*f_52_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*cos2th*f_53_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*f_52_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + U[3]) - (12*f_53_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + U[3]) + (12*f_52_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*f_53_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + U[3]) - (12*cos2th*f_52_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + U[3]) - (12*cos2th*f_53_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_52_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_53_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*f_52_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*f_53_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_52_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_53_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*f_52_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*f_53_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + U[3]) - (12*f_52_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + U[3]) - (12*f_53_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_52_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + U[3]) + (12*cos2th*f_53_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + U[3]) + (10*cos2th*f_52_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_53_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*f_52_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*f_53_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + U[3]) - (10*f_52_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + U[3]) - (10*f_53_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_52_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_53_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + U[3]) - (10*f_52_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*f_53_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_52_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + U[3]) + (10*cos2th*f_53_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*cos2th*f_52_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*cos2th*f_53_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*f_52_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + U[3]) - (10*f_53_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + U[3]) + (10*f_52_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*f_53_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + U[3]) - (10*cos2th*f_52_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + U[3]) - (10*cos2th*f_53_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_52_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_53_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*f_52_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*f_53_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_52_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_53_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*f_52_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*f_53_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + U[3]) - (10*f_52_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + U[3]) - (10*f_53_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_52_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + U[3]) + (10*cos2th*f_53_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + U[3]) + (8*cos2th*f_52_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_53_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*f_52_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*f_53_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + U[3]) - (8*f_52_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + U[3]) - (8*f_53_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_52_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_53_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + U[3]) - (8*f_52_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*f_53_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_52_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + U[3]) + (8*cos2th*f_53_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*cos2th*f_52_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*cos2th*f_53_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*f_52_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + U[3]) - (8*f_53_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + U[3]) + (8*f_52_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*f_53_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + U[3]) - (8*cos2th*f_52_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + U[3]) - (8*cos2th*f_53_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_52_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_53_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*f_52_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*f_53_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_52_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_53_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*f_52_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*f_53_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + U[3]) - (8*f_52_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + U[3]) - (8*f_53_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_52_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + U[3]) + (8*cos2th*f_53_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + U[3]) + (6*cos2th*f_52_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_53_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*f_52_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*f_53_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + U[3]) - (6*f_52_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + U[3]) - (6*f_53_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_52_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_53_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + U[3]) - (6*f_52_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*f_53_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_52_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + U[3]) + (6*cos2th*f_53_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*cos2th*f_52_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*cos2th*f_53_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*f_52_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + U[3]) - (6*f_53_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + U[3]) + (6*f_52_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*f_53_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + U[3]) - (6*cos2th*f_52_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + U[3]) - (6*cos2th*f_53_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_52_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_53_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*f_52_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*f_53_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_52_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_53_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*f_52_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*f_53_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + U[3]) - (6*f_52_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + U[3]) - (6*f_53_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_52_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + U[3]) + (6*cos2th*f_53_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + U[3]) + (21*cos2th*f_54_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_55_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*f_54_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*f_55_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_54_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_55_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_54_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_55_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_54_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_55_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_54_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_55_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_54_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_55_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_54_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 2*U[3]) - (21*f_55_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 2*U[3]) + (21*f_54_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_55_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_54_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 2*U[3]) - (21*cos2th*f_55_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_54_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_55_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_54_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_55_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_54_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_55_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_54_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*f_55_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 2*U[3]) - (21*f_54_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 2*U[3]) - (21*f_55_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_54_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (21*cos2th*f_55_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 2*U[3]) + (18*cos2th*f_54_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_55_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*f_54_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*f_55_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_54_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_55_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_54_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_55_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_54_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_55_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_54_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_55_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_54_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_55_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_54_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 2*U[3]) - (18*f_55_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 2*U[3]) + (18*f_54_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_55_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_54_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 2*U[3]) - (18*cos2th*f_55_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_54_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_55_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_54_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_55_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_54_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_55_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_54_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*f_55_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 2*U[3]) - (18*f_54_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 2*U[3]) - (18*f_55_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_54_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (18*cos2th*f_55_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 2*U[3]) + (15*cos2th*f_54_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_55_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*f_54_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*f_55_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_54_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_55_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_54_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_55_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_54_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_55_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_54_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_55_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_54_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_55_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_54_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 2*U[3]) - (15*f_55_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 2*U[3]) + (15*f_54_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_55_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_54_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 2*U[3]) - (15*cos2th*f_55_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_54_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_55_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_54_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_55_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_54_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_55_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_54_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*f_55_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 2*U[3]) - (15*f_54_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 2*U[3]) - (15*f_55_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_54_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (15*cos2th*f_55_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 2*U[3]) + (12*cos2th*f_54_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_55_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*f_54_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*f_55_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_54_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_55_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_54_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_55_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_54_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_55_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_54_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_55_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_54_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_55_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_54_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 2*U[3]) - (12*f_55_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 2*U[3]) + (12*f_54_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_55_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_54_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 2*U[3]) - (12*cos2th*f_55_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_54_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_55_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_54_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_55_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_54_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_55_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_54_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*f_55_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 2*U[3]) - (12*f_54_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 2*U[3]) - (12*f_55_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_54_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (12*cos2th*f_55_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 2*U[3]) + (6*cos2th*f_54_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_55_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*f_54_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*f_55_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 2*U[3]) - (6*f_54_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 2*U[3]) - (6*f_55_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_54_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_55_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 2*U[3]) - (6*f_54_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*f_55_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_54_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 2*U[3]) + (6*cos2th*f_55_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*cos2th*f_54_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*cos2th*f_55_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*f_54_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 2*U[3]) - (6*f_55_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 2*U[3]) + (6*f_54_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*f_55_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 2*U[3]) - (6*cos2th*f_54_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 2*U[3]) - (6*cos2th*f_55_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_54_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_55_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*f_54_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*f_55_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_54_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_55_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*f_54_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*f_55_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 2*U[3]) - (6*f_54_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 2*U[3]) - (6*f_55_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_54_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 2*U[3]) + (6*cos2th*f_55_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 2*U[3]) + (28*cos2th*f_56_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_57_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*f_56_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*f_57_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_56_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_57_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_56_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_57_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_56_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_57_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_56_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_57_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_56_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_57_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_56_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 3*U[3]) - (28*f_57_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 3*U[3]) + (28*f_56_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_57_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_56_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 3*U[3]) - (28*cos2th*f_57_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_56_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_57_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_56_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_57_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_56_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_57_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_56_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*f_57_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 3*U[3]) - (28*f_56_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 3*U[3]) - (28*f_57_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_56_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (28*cos2th*f_57_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 3*U[3]) + (24*cos2th*f_56_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_57_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*f_56_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*f_57_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_56_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_57_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_56_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_57_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_56_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_57_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_56_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_57_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_56_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_57_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_56_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 3*U[3]) - (24*f_57_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 3*U[3]) + (24*f_56_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_57_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_56_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 3*U[3]) - (24*cos2th*f_57_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_56_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_57_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_56_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_57_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_56_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_57_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_56_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*f_57_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 3*U[3]) - (24*f_56_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 3*U[3]) - (24*f_57_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_56_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (24*cos2th*f_57_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 3*U[3]) + (20*cos2th*f_56_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_57_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*f_56_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*f_57_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_56_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_57_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_56_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_57_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_56_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_57_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_56_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_57_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_56_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_57_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_56_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 3*U[3]) - (20*f_57_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 3*U[3]) + (20*f_56_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_57_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_56_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 3*U[3]) - (20*cos2th*f_57_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_56_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_57_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_56_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_57_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_56_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_57_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_56_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*f_57_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 3*U[3]) - (20*f_56_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 3*U[3]) - (20*f_57_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_56_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (20*cos2th*f_57_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 3*U[3]) + (12*cos2th*f_56_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_57_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*f_56_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*f_57_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_56_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_57_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_56_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_57_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_56_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_57_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_56_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_57_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_56_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_57_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_56_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 3*U[3]) - (12*f_57_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 3*U[3]) + (12*f_56_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_57_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_56_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 3*U[3]) - (12*cos2th*f_57_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_56_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_57_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_56_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_57_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_56_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_57_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_56_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*f_57_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 3*U[3]) - (12*f_56_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 3*U[3]) - (12*f_57_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_56_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (12*cos2th*f_57_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 3*U[3]) + (8*cos2th*f_56_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_57_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*f_56_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*f_57_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 3*U[3]) - (8*f_56_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 3*U[3]) - (8*f_57_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_56_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_57_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 3*U[3]) - (8*f_56_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*f_57_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_56_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 3*U[3]) + (8*cos2th*f_57_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*cos2th*f_56_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*cos2th*f_57_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*f_56_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 3*U[3]) - (8*f_57_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 3*U[3]) + (8*f_56_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*f_57_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 3*U[3]) - (8*cos2th*f_56_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 3*U[3]) - (8*cos2th*f_57_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_56_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_57_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*f_56_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*f_57_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_56_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_57_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*f_56_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*f_57_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 3*U[3]) - (8*f_56_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 3*U[3]) - (8*f_57_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_56_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 3*U[3]) + (8*cos2th*f_57_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 3*U[3]) + (35*cos2th*f_58_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_59_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*f_58_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*f_59_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_58_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_59_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_58_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_59_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_58_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_59_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_58_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_59_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_58_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_59_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_58_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 4*U[3]) - (35*f_59_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 4*U[3]) + (35*f_58_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_59_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_58_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 4*U[3]) - (35*cos2th*f_59_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_58_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_59_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_58_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_59_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_58_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_59_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_58_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*f_59_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 4*U[3]) - (35*f_58_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 4*U[3]) - (35*f_59_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_58_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (35*cos2th*f_59_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 4*U[3]) + (30*cos2th*f_58_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_59_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*f_58_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*f_59_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_58_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_59_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_58_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_59_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_58_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_59_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_58_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_59_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_58_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_59_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_58_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 4*U[3]) - (30*f_59_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 4*U[3]) + (30*f_58_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_59_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_58_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 4*U[3]) - (30*cos2th*f_59_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_58_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_59_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_58_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_59_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_58_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_59_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_58_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*f_59_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 4*U[3]) - (30*f_58_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 4*U[3]) - (30*f_59_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_58_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (30*cos2th*f_59_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 4*U[3]) + (20*cos2th*f_58_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_59_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*f_58_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*f_59_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_58_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_59_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_58_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_59_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_58_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_59_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_58_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_59_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_58_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_59_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_58_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 4*U[3]) - (20*f_59_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 4*U[3]) + (20*f_58_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_59_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_58_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 4*U[3]) - (20*cos2th*f_59_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_58_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_59_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_58_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_59_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_58_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_59_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_58_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*f_59_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 4*U[3]) - (20*f_58_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 4*U[3]) - (20*f_59_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_58_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (20*cos2th*f_59_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 4*U[3]) + (15*cos2th*f_58_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_59_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*f_58_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*f_59_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_58_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_59_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_58_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_59_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_58_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_59_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_58_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_59_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_58_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_59_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_58_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 4*U[3]) - (15*f_59_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 4*U[3]) + (15*f_58_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_59_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_58_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 4*U[3]) - (15*cos2th*f_59_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_58_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_59_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_58_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_59_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_58_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_59_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_58_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*f_59_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 4*U[3]) - (15*f_58_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 4*U[3]) - (15*f_59_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_58_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (15*cos2th*f_59_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 4*U[3]) + (10*cos2th*f_58_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_59_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*f_58_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*f_59_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 4*U[3]) - (10*f_58_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 4*U[3]) - (10*f_59_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_58_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_59_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 4*U[3]) - (10*f_58_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*f_59_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_58_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 4*U[3]) + (10*cos2th*f_59_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*cos2th*f_58_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*cos2th*f_59_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*f_58_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 4*U[3]) - (10*f_59_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 4*U[3]) + (10*f_58_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*f_59_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 4*U[3]) - (10*cos2th*f_58_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 4*U[3]) - (10*cos2th*f_59_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_58_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_59_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*f_58_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*f_59_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_58_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_59_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*f_58_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*f_59_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 4*U[3]) - (10*f_58_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 4*U[3]) - (10*f_59_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_58_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 4*U[3]) + (10*cos2th*f_59_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 4*U[3]) + (42*cos2th*f_60_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_61_2*f[44]*f[46]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*f_60_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*f_61_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_60_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_61_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_60_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_61_2*f[45]*f[47]*f[76]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_60_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_61_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_60_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_61_2*f[45]*f[46]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_60_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_61_2*f[44]*f[47]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_60_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 5*U[3]) - (42*f_61_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-6*U[2] + 5*U[3]) + (42*f_60_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_61_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_60_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 5*U[3]) - (42*cos2th*f_61_2*f[45]*f[46]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_60_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_61_2*f[44]*f[47]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_60_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_61_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_60_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_61_2*f[44]*f[46]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_60_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*f_61_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-6*U[2] + 5*U[3]) - (42*f_60_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 5*U[3]) - (42*f_61_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_60_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (42*cos2th*f_61_2*f[45]*f[47]*f[77]*f[79])/(-6*U[2] + 5*U[3]) + (30*cos2th*f_60_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_61_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*f_60_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*f_61_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_60_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_61_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_60_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_61_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_60_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_61_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_60_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_61_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_60_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_61_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_60_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 5*U[3]) - (30*f_61_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 5*U[3]) + (30*f_60_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_61_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_60_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 5*U[3]) - (30*cos2th*f_61_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_60_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_61_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_60_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_61_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_60_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_61_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_60_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*f_61_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 5*U[3]) - (30*f_60_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 5*U[3]) - (30*f_61_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_60_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (30*cos2th*f_61_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 5*U[3]) + (24*cos2th*f_60_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_61_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*f_60_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*f_61_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_60_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_61_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_60_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_61_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_60_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_61_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_60_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_61_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_60_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_61_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_60_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 5*U[3]) - (24*f_61_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 5*U[3]) + (24*f_60_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_61_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_60_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 5*U[3]) - (24*cos2th*f_61_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_60_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_61_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_60_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_61_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_60_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_61_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_60_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*f_61_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 5*U[3]) - (24*f_60_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 5*U[3]) - (24*f_61_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_60_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (24*cos2th*f_61_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 5*U[3]) + (18*cos2th*f_60_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_61_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*f_60_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*f_61_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_60_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_61_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_60_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_61_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_60_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_61_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_60_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_61_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_60_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_61_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_60_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 5*U[3]) - (18*f_61_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 5*U[3]) + (18*f_60_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_61_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_60_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 5*U[3]) - (18*cos2th*f_61_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_60_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_61_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_60_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_61_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_60_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_61_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_60_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*f_61_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 5*U[3]) - (18*f_60_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 5*U[3]) - (18*f_61_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_60_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (18*cos2th*f_61_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 5*U[3]) + (12*cos2th*f_60_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_61_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*f_60_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*f_61_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 5*U[3]) - (12*f_60_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 5*U[3]) - (12*f_61_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_60_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_61_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 5*U[3]) - (12*f_60_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*f_61_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_60_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 5*U[3]) + (12*cos2th*f_61_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*cos2th*f_60_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*cos2th*f_61_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*f_60_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 5*U[3]) - (12*f_61_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 5*U[3]) + (12*f_60_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*f_61_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 5*U[3]) - (12*cos2th*f_60_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 5*U[3]) - (12*cos2th*f_61_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_60_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_61_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*f_60_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*f_61_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_60_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_61_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*f_60_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*f_61_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 5*U[3]) - (12*f_60_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 5*U[3]) - (12*f_61_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_60_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 5*U[3]) + (12*cos2th*f_61_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 5*U[3]) + (42*cos2th*f_62_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_63_2*f[42]*f[44]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*f_62_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*f_63_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_62_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_63_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_62_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_63_2*f[43]*f[45]*f[74]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_62_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_63_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_62_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_63_2*f[43]*f[44]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_62_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_63_2*f[42]*f[45]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_62_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 6*U[3]) - (42*f_63_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-5*U[2] + 6*U[3]) + (42*f_62_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_63_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_62_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 6*U[3]) - (42*cos2th*f_63_2*f[43]*f[44]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_62_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_63_2*f[42]*f[45]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_62_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_63_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_62_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_63_2*f[42]*f[44]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_62_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*f_63_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-5*U[2] + 6*U[3]) - (42*f_62_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 6*U[3]) - (42*f_63_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_62_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (42*cos2th*f_63_2*f[43]*f[45]*f[75]*f[77])/(-5*U[2] + 6*U[3]) + (35*cos2th*f_62_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_63_2*f[40]*f[42]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*f_62_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*f_63_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_62_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_63_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_62_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_63_2*f[41]*f[43]*f[72]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_62_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_63_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_62_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_63_2*f[41]*f[42]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_62_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_63_2*f[40]*f[43]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_62_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 6*U[3]) - (35*f_63_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-4*U[2] + 6*U[3]) + (35*f_62_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_63_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_62_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 6*U[3]) - (35*cos2th*f_63_2*f[41]*f[42]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_62_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_63_2*f[40]*f[43]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_62_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_63_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_62_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_63_2*f[40]*f[42]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_62_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*f_63_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-4*U[2] + 6*U[3]) - (35*f_62_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 6*U[3]) - (35*f_63_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_62_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (35*cos2th*f_63_2*f[41]*f[43]*f[73]*f[75])/(-4*U[2] + 6*U[3]) + (28*cos2th*f_62_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_63_2*f[38]*f[40]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*f_62_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*f_63_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_62_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_63_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_62_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_63_2*f[39]*f[41]*f[70]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_62_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_63_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_62_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_63_2*f[39]*f[40]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_62_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_63_2*f[38]*f[41]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_62_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 6*U[3]) - (28*f_63_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-3*U[2] + 6*U[3]) + (28*f_62_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_63_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_62_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 6*U[3]) - (28*cos2th*f_63_2*f[39]*f[40]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_62_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_63_2*f[38]*f[41]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_62_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_63_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_62_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_63_2*f[38]*f[40]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_62_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*f_63_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-3*U[2] + 6*U[3]) - (28*f_62_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 6*U[3]) - (28*f_63_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_62_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (28*cos2th*f_63_2*f[39]*f[41]*f[71]*f[73])/(-3*U[2] + 6*U[3]) + (21*cos2th*f_62_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_63_2*f[36]*f[38]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*f_62_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*f_63_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_62_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_63_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_62_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_63_2*f[37]*f[39]*f[68]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_62_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_63_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_62_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_63_2*f[37]*f[38]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_62_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_63_2*f[36]*f[39]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_62_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 6*U[3]) - (21*f_63_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-2*U[2] + 6*U[3]) + (21*f_62_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_63_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_62_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 6*U[3]) - (21*cos2th*f_63_2*f[37]*f[38]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_62_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_63_2*f[36]*f[39]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_62_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_63_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_62_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_63_2*f[36]*f[38]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_62_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*f_63_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-2*U[2] + 6*U[3]) - (21*f_62_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 6*U[3]) - (21*f_63_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_62_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (21*cos2th*f_63_2*f[37]*f[39]*f[69]*f[71])/(-2*U[2] + 6*U[3]) + (14*cos2th*f_62_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_63_2*f[34]*f[36]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*f_62_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*f_63_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-U[2] + 6*U[3]) - (14*f_62_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 6*U[3]) - (14*f_63_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_62_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_63_2*f[35]*f[37]*f[66]*f[68])/(-U[2] + 6*U[3]) - (14*f_62_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*f_63_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_62_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 6*U[3]) + (14*cos2th*f_63_2*f[35]*f[36]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*cos2th*f_62_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*cos2th*f_63_2*f[34]*f[37]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*f_62_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 6*U[3]) - (14*f_63_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-U[2] + 6*U[3]) + (14*f_62_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*f_63_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-U[2] + 6*U[3]) - (14*cos2th*f_62_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 6*U[3]) - (14*cos2th*f_63_2*f[35]*f[36]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_62_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_63_2*f[34]*f[37]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*f_62_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*f_63_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_62_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_63_2*f[34]*f[36]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*f_62_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*f_63_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-U[2] + 6*U[3]) - (14*f_62_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 6*U[3]) - (14*f_63_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_62_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 6*U[3]) + (14*cos2th*f_63_2*f[35]*f[37]*f[67]*f[69])/(-U[2] + 6*U[3])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + (J[3]*J[4]*((2*cos2th*f_64_2*f[2]*f[4]*f[50]*f[52])/U[0] + (2*cos2th*f_65_2*f[2]*f[4]*f[50]*f[52])/U[0] - (2*f_64_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[0] - (2*f_65_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[0] + (2*f_64_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[0] + (2*f_65_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[0] + (2*cos2th*f_64_2*f[3]*f[5]*f[50]*f[52])/U[0] + (2*cos2th*f_65_2*f[3]*f[5]*f[50]*f[52])/U[0] + (2*f_64_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[0] + (2*f_65_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[0] + (2*cos2th*f_64_2*f[3]*f[4]*f[51]*f[52])/U[0] + (2*cos2th*f_65_2*f[3]*f[4]*f[51]*f[52])/U[0] - (2*cos2th*f_64_2*f[2]*f[5]*f[51]*f[52])/U[0] - (2*cos2th*f_65_2*f[2]*f[5]*f[51]*f[52])/U[0] + (2*f_64_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[0] + (2*f_65_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[0] - (2*f_64_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[0] - (2*f_65_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[0] - (2*cos2th*f_64_2*f[3]*f[4]*f[50]*f[53])/U[0] - (2*cos2th*f_65_2*f[3]*f[4]*f[50]*f[53])/U[0] + (2*cos2th*f_64_2*f[2]*f[5]*f[50]*f[53])/U[0] + (2*cos2th*f_65_2*f[2]*f[5]*f[50]*f[53])/U[0] - (2*f_64_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[0] - (2*f_65_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[0] + (2*cos2th*f_64_2*f[2]*f[4]*f[51]*f[53])/U[0] + (2*cos2th*f_65_2*f[2]*f[4]*f[51]*f[53])/U[0] - (2*f_64_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[0] - (2*f_65_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[0] + (2*f_64_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[0] + (2*f_65_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[0] + (2*cos2th*f_64_2*f[3]*f[5]*f[51]*f[53])/U[0] + (2*cos2th*f_65_2*f[3]*f[5]*f[51]*f[53])/U[0] + (3*cos2th*f_64_2*f[4]*f[6]*f[52]*f[54])/(2.*U[0]) + (3*cos2th*f_65_2*f[4]*f[6]*f[52]*f[54])/(2.*U[0]) - (3*f_64_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[0]) - (3*f_65_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[0]) + (3*f_64_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[0]) + (3*f_65_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[0]) + (3*cos2th*f_64_2*f[5]*f[7]*f[52]*f[54])/(2.*U[0]) + (3*cos2th*f_65_2*f[5]*f[7]*f[52]*f[54])/(2.*U[0]) + (3*f_64_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[0]) + (3*f_65_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[0]) + (3*cos2th*f_64_2*f[5]*f[6]*f[53]*f[54])/(2.*U[0]) + (3*cos2th*f_65_2*f[5]*f[6]*f[53]*f[54])/(2.*U[0]) - (3*cos2th*f_64_2*f[4]*f[7]*f[53]*f[54])/(2.*U[0]) - (3*cos2th*f_65_2*f[4]*f[7]*f[53]*f[54])/(2.*U[0]) + (3*f_64_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[0]) + (3*f_65_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[0]) - (3*f_64_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[0]) - (3*f_65_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_64_2*f[5]*f[6]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_65_2*f[5]*f[6]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_64_2*f[4]*f[7]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_65_2*f[4]*f[7]*f[52]*f[55])/(2.*U[0]) - (3*f_64_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[0]) - (3*f_65_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_64_2*f[4]*f[6]*f[53]*f[55])/(2.*U[0]) + (3*cos2th*f_65_2*f[4]*f[6]*f[53]*f[55])/(2.*U[0]) - (3*f_64_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[0]) - (3*f_65_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[0]) + (3*f_64_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[0]) + (3*f_65_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[0]) + (3*cos2th*f_64_2*f[5]*f[7]*f[53]*f[55])/(2.*U[0]) + (3*cos2th*f_65_2*f[5]*f[7]*f[53]*f[55])/(2.*U[0]) + (4*cos2th*f_64_2*f[6]*f[8]*f[54]*f[56])/(3.*U[0]) + (4*cos2th*f_65_2*f[6]*f[8]*f[54]*f[56])/(3.*U[0]) - (4*f_64_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[0]) - (4*f_65_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[0]) + (4*f_64_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[0]) + (4*f_65_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[0]) + (4*cos2th*f_64_2*f[7]*f[9]*f[54]*f[56])/(3.*U[0]) + (4*cos2th*f_65_2*f[7]*f[9]*f[54]*f[56])/(3.*U[0]) + (4*f_64_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[0]) + (4*f_65_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[0]) + (4*cos2th*f_64_2*f[7]*f[8]*f[55]*f[56])/(3.*U[0]) + (4*cos2th*f_65_2*f[7]*f[8]*f[55]*f[56])/(3.*U[0]) - (4*cos2th*f_64_2*f[6]*f[9]*f[55]*f[56])/(3.*U[0]) - (4*cos2th*f_65_2*f[6]*f[9]*f[55]*f[56])/(3.*U[0]) + (4*f_64_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[0]) + (4*f_65_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[0]) - (4*f_64_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[0]) - (4*f_65_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_64_2*f[7]*f[8]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_65_2*f[7]*f[8]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_64_2*f[6]*f[9]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_65_2*f[6]*f[9]*f[54]*f[57])/(3.*U[0]) - (4*f_64_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[0]) - (4*f_65_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_64_2*f[6]*f[8]*f[55]*f[57])/(3.*U[0]) + (4*cos2th*f_65_2*f[6]*f[8]*f[55]*f[57])/(3.*U[0]) - (4*f_64_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[0]) - (4*f_65_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[0]) + (4*f_64_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[0]) + (4*f_65_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[0]) + (4*cos2th*f_64_2*f[7]*f[9]*f[55]*f[57])/(3.*U[0]) + (4*cos2th*f_65_2*f[7]*f[9]*f[55]*f[57])/(3.*U[0]) + (5*cos2th*f_64_2*f[8]*f[10]*f[56]*f[58])/(4.*U[0]) + (5*cos2th*f_65_2*f[8]*f[10]*f[56]*f[58])/(4.*U[0]) - (5*f_64_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[0]) - (5*f_65_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[0]) + (5*f_64_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[0]) + (5*f_65_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[0]) + (5*cos2th*f_64_2*f[9]*f[11]*f[56]*f[58])/(4.*U[0]) + (5*cos2th*f_65_2*f[9]*f[11]*f[56]*f[58])/(4.*U[0]) + (5*f_64_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[0]) + (5*f_65_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[0]) + (5*cos2th*f_64_2*f[9]*f[10]*f[57]*f[58])/(4.*U[0]) + (5*cos2th*f_65_2*f[9]*f[10]*f[57]*f[58])/(4.*U[0]) - (5*cos2th*f_64_2*f[8]*f[11]*f[57]*f[58])/(4.*U[0]) - (5*cos2th*f_65_2*f[8]*f[11]*f[57]*f[58])/(4.*U[0]) + (5*f_64_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[0]) + (5*f_65_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[0]) - (5*f_64_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[0]) - (5*f_65_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_64_2*f[9]*f[10]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_65_2*f[9]*f[10]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_64_2*f[8]*f[11]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_65_2*f[8]*f[11]*f[56]*f[59])/(4.*U[0]) - (5*f_64_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[0]) - (5*f_65_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_64_2*f[8]*f[10]*f[57]*f[59])/(4.*U[0]) + (5*cos2th*f_65_2*f[8]*f[10]*f[57]*f[59])/(4.*U[0]) - (5*f_64_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[0]) - (5*f_65_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[0]) + (5*f_64_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[0]) + (5*f_65_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[0]) + (5*cos2th*f_64_2*f[9]*f[11]*f[57]*f[59])/(4.*U[0]) + (5*cos2th*f_65_2*f[9]*f[11]*f[57]*f[59])/(4.*U[0]) + (6*cos2th*f_64_2*f[10]*f[12]*f[58]*f[60])/(5.*U[0]) + (6*cos2th*f_65_2*f[10]*f[12]*f[58]*f[60])/(5.*U[0]) - (6*f_64_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[0]) - (6*f_65_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[0]) + (6*f_64_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[0]) + (6*f_65_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[0]) + (6*cos2th*f_64_2*f[11]*f[13]*f[58]*f[60])/(5.*U[0]) + (6*cos2th*f_65_2*f[11]*f[13]*f[58]*f[60])/(5.*U[0]) + (6*f_64_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[0]) + (6*f_65_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[0]) + (6*cos2th*f_64_2*f[11]*f[12]*f[59]*f[60])/(5.*U[0]) + (6*cos2th*f_65_2*f[11]*f[12]*f[59]*f[60])/(5.*U[0]) - (6*cos2th*f_64_2*f[10]*f[13]*f[59]*f[60])/(5.*U[0]) - (6*cos2th*f_65_2*f[10]*f[13]*f[59]*f[60])/(5.*U[0]) + (6*f_64_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[0]) + (6*f_65_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[0]) - (6*f_64_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[0]) - (6*f_65_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_64_2*f[11]*f[12]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_65_2*f[11]*f[12]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_64_2*f[10]*f[13]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_65_2*f[10]*f[13]*f[58]*f[61])/(5.*U[0]) - (6*f_64_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[0]) - (6*f_65_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_64_2*f[10]*f[12]*f[59]*f[61])/(5.*U[0]) + (6*cos2th*f_65_2*f[10]*f[12]*f[59]*f[61])/(5.*U[0]) - (6*f_64_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[0]) - (6*f_65_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[0]) + (6*f_64_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[0]) + (6*f_65_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[0]) + (6*cos2th*f_64_2*f[11]*f[13]*f[59]*f[61])/(5.*U[0]) + (6*cos2th*f_65_2*f[11]*f[13]*f[59]*f[61])/(5.*U[0]) + (7*cos2th*f_64_2*f[12]*f[14]*f[60]*f[62])/(6.*U[0]) + (7*cos2th*f_65_2*f[12]*f[14]*f[60]*f[62])/(6.*U[0]) - (7*f_64_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[0]) - (7*f_65_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[0]) + (7*f_64_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[0]) + (7*f_65_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[0]) + (7*cos2th*f_64_2*f[13]*f[15]*f[60]*f[62])/(6.*U[0]) + (7*cos2th*f_65_2*f[13]*f[15]*f[60]*f[62])/(6.*U[0]) + (7*f_64_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[0]) + (7*f_65_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[0]) + (7*cos2th*f_64_2*f[13]*f[14]*f[61]*f[62])/(6.*U[0]) + (7*cos2th*f_65_2*f[13]*f[14]*f[61]*f[62])/(6.*U[0]) - (7*cos2th*f_64_2*f[12]*f[15]*f[61]*f[62])/(6.*U[0]) - (7*cos2th*f_65_2*f[12]*f[15]*f[61]*f[62])/(6.*U[0]) + (7*f_64_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[0]) + (7*f_65_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[0]) - (7*f_64_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[0]) - (7*f_65_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_64_2*f[13]*f[14]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_65_2*f[13]*f[14]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_64_2*f[12]*f[15]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_65_2*f[12]*f[15]*f[60]*f[63])/(6.*U[0]) - (7*f_64_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[0]) - (7*f_65_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_64_2*f[12]*f[14]*f[61]*f[63])/(6.*U[0]) + (7*cos2th*f_65_2*f[12]*f[14]*f[61]*f[63])/(6.*U[0]) - (7*f_64_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[0]) - (7*f_65_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[0]) + (7*f_64_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[0]) + (7*f_65_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[0]) + (7*cos2th*f_64_2*f[13]*f[15]*f[61]*f[63])/(6.*U[0]) + (7*cos2th*f_65_2*f[13]*f[15]*f[61]*f[63])/(6.*U[0]) + (14*cos2th*f_76_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 6*U[4]) - (14*cos2th*f_76_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 6*U[4]) - (14*cos2th*f_77_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*f_76_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*f_77_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 6*U[4]) - (14*f_76_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*f_77_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*cos2th*f_76_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*cos2th*f_77_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 6*U[4]) - (21*cos2th*f_76_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 6*U[4]) - (21*cos2th*f_77_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*f_76_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*f_77_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 6*U[4]) - (21*f_76_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*f_77_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*cos2th*f_76_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*cos2th*f_77_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 6*U[4]) - (28*cos2th*f_76_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 6*U[4]) - (28*cos2th*f_77_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*f_76_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*f_77_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 6*U[4]) - (28*f_76_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*f_77_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*cos2th*f_76_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*cos2th*f_77_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 6*U[4]) - (35*cos2th*f_76_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 6*U[4]) - (35*cos2th*f_77_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*f_76_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*f_77_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 6*U[4]) - (35*f_76_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*f_77_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*cos2th*f_76_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*cos2th*f_77_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 6*U[4]) - (42*cos2th*f_76_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 6*U[4]) - (42*cos2th*f_77_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*f_76_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*f_77_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 6*U[4]) - (42*f_76_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*f_77_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*cos2th*f_76_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*cos2th*f_77_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (12*cos2th*f_74_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 5*U[4]) - (12*cos2th*f_74_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 5*U[4]) - (12*cos2th*f_75_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*f_74_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*f_75_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 5*U[4]) - (12*f_74_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*f_75_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*cos2th*f_74_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*cos2th*f_75_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 5*U[4]) - (18*cos2th*f_74_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 5*U[4]) - (18*cos2th*f_75_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*f_74_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*f_75_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 5*U[4]) - (18*f_74_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*f_75_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*cos2th*f_74_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*cos2th*f_75_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 5*U[4]) - (24*cos2th*f_74_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 5*U[4]) - (24*cos2th*f_75_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*f_74_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*f_75_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 5*U[4]) - (24*f_74_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*f_75_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*cos2th*f_74_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*cos2th*f_75_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 5*U[4]) - (30*cos2th*f_74_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 5*U[4]) - (30*cos2th*f_75_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*f_74_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*f_75_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 5*U[4]) - (30*f_74_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*f_75_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*cos2th*f_74_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*cos2th*f_75_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 5*U[4]) - (42*cos2th*f_74_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 5*U[4]) - (42*cos2th*f_75_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*f_74_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*f_75_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 5*U[4]) - (42*f_74_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*f_75_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*cos2th*f_74_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*cos2th*f_75_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (10*cos2th*f_72_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 4*U[4]) - (10*cos2th*f_72_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 4*U[4]) - (10*cos2th*f_73_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*f_72_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*f_73_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 4*U[4]) - (10*f_72_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*f_73_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*cos2th*f_72_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*cos2th*f_73_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 4*U[4]) - (15*cos2th*f_72_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 4*U[4]) - (15*cos2th*f_73_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*f_72_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*f_73_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 4*U[4]) - (15*f_72_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*f_73_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*cos2th*f_72_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*cos2th*f_73_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 4*U[4]) - (20*cos2th*f_72_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 4*U[4]) - (20*cos2th*f_73_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*f_72_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*f_73_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 4*U[4]) - (20*f_72_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*f_73_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*cos2th*f_72_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*cos2th*f_73_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 4*U[4]) - (30*cos2th*f_72_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 4*U[4]) - (30*cos2th*f_73_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*f_72_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*f_73_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 4*U[4]) - (30*f_72_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*f_73_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*cos2th*f_72_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*cos2th*f_73_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 4*U[4]) - (35*cos2th*f_72_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 4*U[4]) - (35*cos2th*f_73_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*f_72_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*f_73_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 4*U[4]) - (35*f_72_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*f_73_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*cos2th*f_72_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*cos2th*f_73_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (8*cos2th*f_70_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 3*U[4]) - (8*cos2th*f_70_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 3*U[4]) - (8*cos2th*f_71_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*f_70_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*f_71_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 3*U[4]) - (8*f_70_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*f_71_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*cos2th*f_70_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*cos2th*f_71_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 3*U[4]) - (12*cos2th*f_70_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 3*U[4]) - (12*cos2th*f_71_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*f_70_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*f_71_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 3*U[4]) - (12*f_70_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*f_71_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*cos2th*f_70_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*cos2th*f_71_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 3*U[4]) - (20*cos2th*f_70_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 3*U[4]) - (20*cos2th*f_71_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*f_70_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*f_71_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 3*U[4]) - (20*f_70_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*f_71_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*cos2th*f_70_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*cos2th*f_71_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 3*U[4]) - (24*cos2th*f_70_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 3*U[4]) - (24*cos2th*f_71_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*f_70_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*f_71_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 3*U[4]) - (24*f_70_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*f_71_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*cos2th*f_70_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*cos2th*f_71_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 3*U[4]) - (28*cos2th*f_70_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 3*U[4]) - (28*cos2th*f_71_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*f_70_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*f_71_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 3*U[4]) - (28*f_70_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*f_71_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*cos2th*f_70_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*cos2th*f_71_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (6*cos2th*f_68_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 2*U[4]) - (6*cos2th*f_68_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 2*U[4]) - (6*cos2th*f_69_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*f_68_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*f_69_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 2*U[4]) - (6*f_68_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*f_69_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*cos2th*f_68_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*cos2th*f_69_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 2*U[4]) - (12*cos2th*f_68_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 2*U[4]) - (12*cos2th*f_69_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*f_68_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*f_69_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 2*U[4]) - (12*f_68_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*f_69_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*cos2th*f_68_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*cos2th*f_69_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 2*U[4]) - (15*cos2th*f_68_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 2*U[4]) - (15*cos2th*f_69_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*f_68_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*f_69_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 2*U[4]) - (15*f_68_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*f_69_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*cos2th*f_68_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*cos2th*f_69_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 2*U[4]) - (18*cos2th*f_68_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 2*U[4]) - (18*cos2th*f_69_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*f_68_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*f_69_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 2*U[4]) - (18*f_68_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*f_69_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*cos2th*f_68_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*cos2th*f_69_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 2*U[4]) - (21*cos2th*f_68_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 2*U[4]) - (21*cos2th*f_69_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*f_68_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*f_69_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 2*U[4]) - (21*f_68_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*f_69_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*cos2th*f_68_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*cos2th*f_69_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (6*cos2th*f_66_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_67_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - U[4]) - (6*f_66_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - U[4]) - (6*f_67_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - U[4]) + (6*f_66_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - U[4]) + (6*f_67_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_66_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_67_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - U[4]) + (6*f_66_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - U[4]) + (6*f_67_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_66_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_67_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - U[4]) - (6*cos2th*f_66_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - U[4]) - (6*cos2th*f_67_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - U[4]) + (6*f_66_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - U[4]) + (6*f_67_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - U[4]) - (6*f_66_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - U[4]) - (6*f_67_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - U[4]) - (6*cos2th*f_66_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - U[4]) - (6*cos2th*f_67_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_66_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_67_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - U[4]) - (6*f_66_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - U[4]) - (6*f_67_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_66_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_67_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - U[4]) - (6*f_66_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - U[4]) - (6*f_67_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - U[4]) + (6*f_66_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - U[4]) + (6*f_67_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_66_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_67_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - U[4]) + (8*cos2th*f_66_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_67_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - U[4]) - (8*f_66_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - U[4]) - (8*f_67_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - U[4]) + (8*f_66_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - U[4]) + (8*f_67_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_66_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_67_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - U[4]) + (8*f_66_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - U[4]) + (8*f_67_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_66_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_67_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - U[4]) - (8*cos2th*f_66_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - U[4]) - (8*cos2th*f_67_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - U[4]) + (8*f_66_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - U[4]) + (8*f_67_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - U[4]) - (8*f_66_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - U[4]) - (8*f_67_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - U[4]) - (8*cos2th*f_66_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - U[4]) - (8*cos2th*f_67_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_66_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_67_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - U[4]) - (8*f_66_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - U[4]) - (8*f_67_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_66_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_67_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - U[4]) - (8*f_66_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - U[4]) - (8*f_67_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - U[4]) + (8*f_66_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - U[4]) + (8*f_67_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_66_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_67_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - U[4]) + (10*cos2th*f_66_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_67_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - U[4]) - (10*f_66_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - U[4]) - (10*f_67_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - U[4]) + (10*f_66_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - U[4]) + (10*f_67_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_66_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_67_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - U[4]) + (10*f_66_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - U[4]) + (10*f_67_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_66_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_67_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - U[4]) - (10*cos2th*f_66_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - U[4]) - (10*cos2th*f_67_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - U[4]) + (10*f_66_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - U[4]) + (10*f_67_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - U[4]) - (10*f_66_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - U[4]) - (10*f_67_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - U[4]) - (10*cos2th*f_66_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - U[4]) - (10*cos2th*f_67_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_66_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_67_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - U[4]) - (10*f_66_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - U[4]) - (10*f_67_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_66_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_67_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - U[4]) - (10*f_66_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - U[4]) - (10*f_67_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - U[4]) + (10*f_66_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - U[4]) + (10*f_67_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_66_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_67_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - U[4]) + (12*cos2th*f_66_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_67_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - U[4]) - (12*f_66_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - U[4]) - (12*f_67_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - U[4]) + (12*f_66_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - U[4]) + (12*f_67_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_66_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_67_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - U[4]) + (12*f_66_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - U[4]) + (12*f_67_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_66_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_67_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - U[4]) - (12*cos2th*f_66_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - U[4]) - (12*cos2th*f_67_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - U[4]) + (12*f_66_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - U[4]) + (12*f_67_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - U[4]) - (12*f_66_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - U[4]) - (12*f_67_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - U[4]) - (12*cos2th*f_66_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - U[4]) - (12*cos2th*f_67_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_66_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_67_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - U[4]) - (12*f_66_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - U[4]) - (12*f_67_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_66_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_67_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - U[4]) - (12*f_66_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - U[4]) - (12*f_67_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - U[4]) + (12*f_66_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - U[4]) + (12*f_67_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_66_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_67_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - U[4]) + (14*cos2th*f_66_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_67_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - U[4]) - (14*f_66_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - U[4]) - (14*f_67_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - U[4]) + (14*f_66_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - U[4]) + (14*f_67_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_66_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_67_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - U[4]) + (14*f_66_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - U[4]) + (14*f_67_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_66_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_67_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - U[4]) - (14*cos2th*f_66_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - U[4]) - (14*cos2th*f_67_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - U[4]) + (14*f_66_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - U[4]) + (14*f_67_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - U[4]) - (14*f_66_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - U[4]) - (14*f_67_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - U[4]) - (14*cos2th*f_66_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - U[4]) - (14*cos2th*f_67_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_66_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_67_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - U[4]) - (14*f_66_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - U[4]) - (14*f_67_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_66_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_67_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - U[4]) - (14*f_66_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - U[4]) - (14*f_67_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - U[4]) + (14*f_66_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - U[4]) + (14*f_67_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_66_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_67_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - U[4]) - (2*cos2th*f_66_2*f[0]*f[2]*f[48]*f[50])/U[4] - (2*cos2th*f_67_2*f[0]*f[2]*f[48]*f[50])/U[4] - (3*cos2th*f_68_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) - (3*cos2th*f_69_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) - (4*cos2th*f_70_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) - (4*cos2th*f_71_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) - (5*cos2th*f_72_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) - (5*cos2th*f_73_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) - (6*cos2th*f_74_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) - (6*cos2th*f_75_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) - (7*cos2th*f_76_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) - (7*cos2th*f_77_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] + (2*f_67_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] + (3*f_68_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) + (3*f_69_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) + (4*f_70_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) + (4*f_71_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) + (5*f_72_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) + (5*f_73_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) + (6*f_74_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) + (6*f_75_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) + (7*f_76_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) + (7*f_77_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] - (2*f_67_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] - (3*f_68_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) - (3*f_69_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) - (4*f_70_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) - (4*f_71_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) - (5*f_72_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) - (5*f_73_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) - (6*f_74_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) - (6*f_75_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) - (7*f_76_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) - (7*f_77_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) - (2*cos2th*f_66_2*f[1]*f[3]*f[48]*f[50])/U[4] - (2*cos2th*f_67_2*f[1]*f[3]*f[48]*f[50])/U[4] - (3*cos2th*f_68_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) - (3*cos2th*f_69_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) - (4*cos2th*f_70_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) - (4*cos2th*f_71_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) - (5*cos2th*f_72_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) - (5*cos2th*f_73_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) - (6*cos2th*f_74_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) - (6*cos2th*f_75_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) - (7*cos2th*f_76_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) - (7*cos2th*f_77_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] - (2*f_67_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] - (3*f_68_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) - (3*f_69_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) - (4*f_70_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) - (4*f_71_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) - (5*f_72_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) - (5*f_73_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) - (6*f_74_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) - (6*f_75_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) - (7*f_76_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) - (7*f_77_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) - (2*cos2th*f_66_2*f[1]*f[2]*f[49]*f[50])/U[4] - (2*cos2th*f_67_2*f[1]*f[2]*f[49]*f[50])/U[4] - (3*cos2th*f_68_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) - (3*cos2th*f_69_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) - (4*cos2th*f_70_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) - (4*cos2th*f_71_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) - (5*cos2th*f_72_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) - (5*cos2th*f_73_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) - (6*cos2th*f_74_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) - (6*cos2th*f_75_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) - (7*cos2th*f_76_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) - (7*cos2th*f_77_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) + (2*cos2th*f_66_2*f[0]*f[3]*f[49]*f[50])/U[4] + (2*cos2th*f_67_2*f[0]*f[3]*f[49]*f[50])/U[4] + (3*cos2th*f_68_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) + (3*cos2th*f_69_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) + (4*cos2th*f_70_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) + (4*cos2th*f_71_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) + (5*cos2th*f_72_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) + (5*cos2th*f_73_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) + (6*cos2th*f_74_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) + (6*cos2th*f_75_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) + (7*cos2th*f_76_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) + (7*cos2th*f_77_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] - (2*f_67_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] - (3*f_68_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) - (3*f_69_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) - (4*f_70_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) - (4*f_71_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) - (5*f_72_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) - (5*f_73_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) - (6*f_74_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) - (6*f_75_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) - (7*f_76_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) - (7*f_77_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] + (2*f_67_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] + (3*f_68_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) + (3*f_69_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) + (4*f_70_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) + (4*f_71_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) + (5*f_72_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) + (5*f_73_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) + (6*f_74_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) + (6*f_75_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) + (7*f_76_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) + (7*f_77_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_66_2*f[1]*f[2]*f[48]*f[51])/U[4] + (2*cos2th*f_67_2*f[1]*f[2]*f[48]*f[51])/U[4] + (3*cos2th*f_68_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) + (3*cos2th*f_69_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) + (4*cos2th*f_70_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) + (4*cos2th*f_71_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) + (5*cos2th*f_72_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) + (5*cos2th*f_73_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) + (6*cos2th*f_74_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) + (6*cos2th*f_75_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) + (7*cos2th*f_76_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) + (7*cos2th*f_77_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_66_2*f[0]*f[3]*f[48]*f[51])/U[4] - (2*cos2th*f_67_2*f[0]*f[3]*f[48]*f[51])/U[4] - (3*cos2th*f_68_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) - (3*cos2th*f_69_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) - (4*cos2th*f_70_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) - (4*cos2th*f_71_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) - (5*cos2th*f_72_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) - (5*cos2th*f_73_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) - (6*cos2th*f_74_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) - (6*cos2th*f_75_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) - (7*cos2th*f_76_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) - (7*cos2th*f_77_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) + (2*f_66_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] + (2*f_67_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] + (3*f_68_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) + (3*f_69_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) + (4*f_70_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) + (4*f_71_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) + (5*f_72_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) + (5*f_73_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) + (6*f_74_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) + (6*f_75_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) + (7*f_76_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) + (7*f_77_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_66_2*f[0]*f[2]*f[49]*f[51])/U[4] - (2*cos2th*f_67_2*f[0]*f[2]*f[49]*f[51])/U[4] - (3*cos2th*f_68_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) - (3*cos2th*f_69_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) - (4*cos2th*f_70_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) - (4*cos2th*f_71_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) - (5*cos2th*f_72_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) - (5*cos2th*f_73_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) - (6*cos2th*f_74_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) - (6*cos2th*f_75_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) - (7*cos2th*f_76_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) - (7*cos2th*f_77_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) + (2*f_66_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] + (2*f_67_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] + (3*f_68_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) + (3*f_69_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) + (4*f_70_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) + (4*f_71_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) + (5*f_72_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) + (5*f_73_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) + (6*f_74_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) + (6*f_75_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) + (7*f_76_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) + (7*f_77_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) - (2*f_66_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] - (2*f_67_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] - (3*f_68_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) - (3*f_69_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) - (4*f_70_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) - (4*f_71_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) - (5*f_72_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) - (5*f_73_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) - (6*f_74_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) - (6*f_75_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) - (7*f_76_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) - (7*f_77_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) - (2*cos2th*f_66_2*f[1]*f[3]*f[49]*f[51])/U[4] - (2*cos2th*f_67_2*f[1]*f[3]*f[49]*f[51])/U[4] - (3*cos2th*f_68_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) - (3*cos2th*f_69_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) - (4*cos2th*f_70_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) - (4*cos2th*f_71_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) - (5*cos2th*f_72_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) - (5*cos2th*f_73_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) - (6*cos2th*f_74_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) - (6*cos2th*f_75_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) - (7*cos2th*f_76_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) - (7*cos2th*f_77_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[3]*J[4]*((2*cos2th*f_64_2*f[2]*f[4]*f[50]*f[52])/U[3] + (2*cos2th*f_65_2*f[2]*f[4]*f[50]*f[52])/U[3] - (2*f_64_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[3] - (2*f_65_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[3] + (2*f_64_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[3] + (2*f_65_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[3] + (2*cos2th*f_64_2*f[3]*f[5]*f[50]*f[52])/U[3] + (2*cos2th*f_65_2*f[3]*f[5]*f[50]*f[52])/U[3] + (2*f_64_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[3] + (2*f_65_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[3] + (2*cos2th*f_64_2*f[3]*f[4]*f[51]*f[52])/U[3] + (2*cos2th*f_65_2*f[3]*f[4]*f[51]*f[52])/U[3] - (2*cos2th*f_64_2*f[2]*f[5]*f[51]*f[52])/U[3] - (2*cos2th*f_65_2*f[2]*f[5]*f[51]*f[52])/U[3] + (2*f_64_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[3] + (2*f_65_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[3] - (2*f_64_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[3] - (2*f_65_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[3] - (2*cos2th*f_64_2*f[3]*f[4]*f[50]*f[53])/U[3] - (2*cos2th*f_65_2*f[3]*f[4]*f[50]*f[53])/U[3] + (2*cos2th*f_64_2*f[2]*f[5]*f[50]*f[53])/U[3] + (2*cos2th*f_65_2*f[2]*f[5]*f[50]*f[53])/U[3] - (2*f_64_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[3] - (2*f_65_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[3] + (2*cos2th*f_64_2*f[2]*f[4]*f[51]*f[53])/U[3] + (2*cos2th*f_65_2*f[2]*f[4]*f[51]*f[53])/U[3] - (2*f_64_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[3] - (2*f_65_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[3] + (2*f_64_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[3] + (2*f_65_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[3] + (2*cos2th*f_64_2*f[3]*f[5]*f[51]*f[53])/U[3] + (2*cos2th*f_65_2*f[3]*f[5]*f[51]*f[53])/U[3] + (3*cos2th*f_64_2*f[4]*f[6]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_65_2*f[4]*f[6]*f[52]*f[54])/(2.*U[3]) - (3*f_64_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[3]) - (3*f_65_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[3]) + (3*f_64_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[3]) + (3*f_65_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_64_2*f[5]*f[7]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_65_2*f[5]*f[7]*f[52]*f[54])/(2.*U[3]) + (3*f_64_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[3]) + (3*f_65_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_64_2*f[5]*f[6]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_65_2*f[5]*f[6]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_64_2*f[4]*f[7]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_65_2*f[4]*f[7]*f[53]*f[54])/(2.*U[3]) + (3*f_64_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[3]) + (3*f_65_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[3]) - (3*f_64_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[3]) - (3*f_65_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_64_2*f[5]*f[6]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_65_2*f[5]*f[6]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_64_2*f[4]*f[7]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_65_2*f[4]*f[7]*f[52]*f[55])/(2.*U[3]) - (3*f_64_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[3]) - (3*f_65_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_64_2*f[4]*f[6]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_65_2*f[4]*f[6]*f[53]*f[55])/(2.*U[3]) - (3*f_64_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[3]) - (3*f_65_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[3]) + (3*f_64_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[3]) + (3*f_65_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_64_2*f[5]*f[7]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_65_2*f[5]*f[7]*f[53]*f[55])/(2.*U[3]) + (4*cos2th*f_64_2*f[6]*f[8]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_65_2*f[6]*f[8]*f[54]*f[56])/(3.*U[3]) - (4*f_64_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[3]) - (4*f_65_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[3]) + (4*f_64_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[3]) + (4*f_65_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_64_2*f[7]*f[9]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_65_2*f[7]*f[9]*f[54]*f[56])/(3.*U[3]) + (4*f_64_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[3]) + (4*f_65_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_64_2*f[7]*f[8]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_65_2*f[7]*f[8]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_64_2*f[6]*f[9]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_65_2*f[6]*f[9]*f[55]*f[56])/(3.*U[3]) + (4*f_64_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[3]) + (4*f_65_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[3]) - (4*f_64_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[3]) - (4*f_65_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_64_2*f[7]*f[8]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_65_2*f[7]*f[8]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_64_2*f[6]*f[9]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_65_2*f[6]*f[9]*f[54]*f[57])/(3.*U[3]) - (4*f_64_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[3]) - (4*f_65_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_64_2*f[6]*f[8]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_65_2*f[6]*f[8]*f[55]*f[57])/(3.*U[3]) - (4*f_64_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[3]) - (4*f_65_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[3]) + (4*f_64_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[3]) + (4*f_65_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_64_2*f[7]*f[9]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_65_2*f[7]*f[9]*f[55]*f[57])/(3.*U[3]) + (5*cos2th*f_64_2*f[8]*f[10]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_65_2*f[8]*f[10]*f[56]*f[58])/(4.*U[3]) - (5*f_64_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[3]) - (5*f_65_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[3]) + (5*f_64_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[3]) + (5*f_65_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_64_2*f[9]*f[11]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_65_2*f[9]*f[11]*f[56]*f[58])/(4.*U[3]) + (5*f_64_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[3]) + (5*f_65_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_64_2*f[9]*f[10]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_65_2*f[9]*f[10]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_64_2*f[8]*f[11]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_65_2*f[8]*f[11]*f[57]*f[58])/(4.*U[3]) + (5*f_64_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[3]) + (5*f_65_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[3]) - (5*f_64_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[3]) - (5*f_65_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_64_2*f[9]*f[10]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_65_2*f[9]*f[10]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_64_2*f[8]*f[11]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_65_2*f[8]*f[11]*f[56]*f[59])/(4.*U[3]) - (5*f_64_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[3]) - (5*f_65_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_64_2*f[8]*f[10]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_65_2*f[8]*f[10]*f[57]*f[59])/(4.*U[3]) - (5*f_64_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[3]) - (5*f_65_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[3]) + (5*f_64_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[3]) + (5*f_65_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_64_2*f[9]*f[11]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_65_2*f[9]*f[11]*f[57]*f[59])/(4.*U[3]) + (6*cos2th*f_64_2*f[10]*f[12]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_65_2*f[10]*f[12]*f[58]*f[60])/(5.*U[3]) - (6*f_64_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[3]) - (6*f_65_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[3]) + (6*f_64_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[3]) + (6*f_65_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_64_2*f[11]*f[13]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_65_2*f[11]*f[13]*f[58]*f[60])/(5.*U[3]) + (6*f_64_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[3]) + (6*f_65_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_64_2*f[11]*f[12]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_65_2*f[11]*f[12]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_64_2*f[10]*f[13]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_65_2*f[10]*f[13]*f[59]*f[60])/(5.*U[3]) + (6*f_64_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[3]) + (6*f_65_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[3]) - (6*f_64_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[3]) - (6*f_65_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_64_2*f[11]*f[12]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_65_2*f[11]*f[12]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_64_2*f[10]*f[13]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_65_2*f[10]*f[13]*f[58]*f[61])/(5.*U[3]) - (6*f_64_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[3]) - (6*f_65_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_64_2*f[10]*f[12]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_65_2*f[10]*f[12]*f[59]*f[61])/(5.*U[3]) - (6*f_64_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[3]) - (6*f_65_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[3]) + (6*f_64_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[3]) + (6*f_65_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_64_2*f[11]*f[13]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_65_2*f[11]*f[13]*f[59]*f[61])/(5.*U[3]) + (7*cos2th*f_64_2*f[12]*f[14]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_65_2*f[12]*f[14]*f[60]*f[62])/(6.*U[3]) - (7*f_64_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[3]) - (7*f_65_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[3]) + (7*f_64_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[3]) + (7*f_65_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_64_2*f[13]*f[15]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_65_2*f[13]*f[15]*f[60]*f[62])/(6.*U[3]) + (7*f_64_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[3]) + (7*f_65_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_64_2*f[13]*f[14]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_65_2*f[13]*f[14]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_64_2*f[12]*f[15]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_65_2*f[12]*f[15]*f[61]*f[62])/(6.*U[3]) + (7*f_64_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[3]) + (7*f_65_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[3]) - (7*f_64_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[3]) - (7*f_65_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_64_2*f[13]*f[14]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_65_2*f[13]*f[14]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_64_2*f[12]*f[15]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_65_2*f[12]*f[15]*f[60]*f[63])/(6.*U[3]) - (7*f_64_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[3]) - (7*f_65_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_64_2*f[12]*f[14]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_65_2*f[12]*f[14]*f[61]*f[63])/(6.*U[3]) - (7*f_64_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[3]) - (7*f_65_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[3]) + (7*f_64_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[3]) + (7*f_65_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_64_2*f[13]*f[15]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_65_2*f[13]*f[15]*f[61]*f[63])/(6.*U[3]) + (14*cos2th*f_76_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 6*U[4]) - (14*cos2th*f_76_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 6*U[4]) - (14*cos2th*f_77_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*f_76_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*f_77_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 6*U[4]) - (14*f_76_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*f_77_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*cos2th*f_76_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*cos2th*f_77_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 6*U[4]) - (21*cos2th*f_76_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 6*U[4]) - (21*cos2th*f_77_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*f_76_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*f_77_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 6*U[4]) - (21*f_76_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*f_77_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*cos2th*f_76_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*cos2th*f_77_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 6*U[4]) - (28*cos2th*f_76_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 6*U[4]) - (28*cos2th*f_77_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*f_76_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*f_77_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 6*U[4]) - (28*f_76_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*f_77_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*cos2th*f_76_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*cos2th*f_77_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 6*U[4]) - (35*cos2th*f_76_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 6*U[4]) - (35*cos2th*f_77_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*f_76_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*f_77_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 6*U[4]) - (35*f_76_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*f_77_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*cos2th*f_76_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*cos2th*f_77_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 6*U[4]) - (42*cos2th*f_76_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 6*U[4]) - (42*cos2th*f_77_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*f_76_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*f_77_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 6*U[4]) - (42*f_76_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*f_77_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*cos2th*f_76_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*cos2th*f_77_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (12*cos2th*f_74_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 5*U[4]) - (12*cos2th*f_74_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 5*U[4]) - (12*cos2th*f_75_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*f_74_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*f_75_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 5*U[4]) - (12*f_74_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*f_75_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*cos2th*f_74_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*cos2th*f_75_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 5*U[4]) - (18*cos2th*f_74_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 5*U[4]) - (18*cos2th*f_75_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*f_74_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*f_75_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 5*U[4]) - (18*f_74_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*f_75_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*cos2th*f_74_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*cos2th*f_75_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 5*U[4]) - (24*cos2th*f_74_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 5*U[4]) - (24*cos2th*f_75_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*f_74_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*f_75_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 5*U[4]) - (24*f_74_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*f_75_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*cos2th*f_74_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*cos2th*f_75_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 5*U[4]) - (30*cos2th*f_74_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 5*U[4]) - (30*cos2th*f_75_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*f_74_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*f_75_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 5*U[4]) - (30*f_74_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*f_75_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*cos2th*f_74_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*cos2th*f_75_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 5*U[4]) - (42*cos2th*f_74_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 5*U[4]) - (42*cos2th*f_75_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*f_74_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*f_75_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 5*U[4]) - (42*f_74_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*f_75_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*cos2th*f_74_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*cos2th*f_75_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (10*cos2th*f_72_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 4*U[4]) - (10*cos2th*f_72_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 4*U[4]) - (10*cos2th*f_73_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*f_72_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*f_73_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 4*U[4]) - (10*f_72_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*f_73_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*cos2th*f_72_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*cos2th*f_73_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 4*U[4]) - (15*cos2th*f_72_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 4*U[4]) - (15*cos2th*f_73_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*f_72_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*f_73_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 4*U[4]) - (15*f_72_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*f_73_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*cos2th*f_72_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*cos2th*f_73_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 4*U[4]) - (20*cos2th*f_72_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 4*U[4]) - (20*cos2th*f_73_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*f_72_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*f_73_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 4*U[4]) - (20*f_72_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*f_73_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*cos2th*f_72_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*cos2th*f_73_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 4*U[4]) - (30*cos2th*f_72_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 4*U[4]) - (30*cos2th*f_73_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*f_72_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*f_73_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 4*U[4]) - (30*f_72_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*f_73_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*cos2th*f_72_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*cos2th*f_73_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 4*U[4]) - (35*cos2th*f_72_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 4*U[4]) - (35*cos2th*f_73_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*f_72_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*f_73_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 4*U[4]) - (35*f_72_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*f_73_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*cos2th*f_72_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*cos2th*f_73_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (8*cos2th*f_70_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 3*U[4]) - (8*cos2th*f_70_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 3*U[4]) - (8*cos2th*f_71_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*f_70_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*f_71_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 3*U[4]) - (8*f_70_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*f_71_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*cos2th*f_70_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*cos2th*f_71_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 3*U[4]) - (12*cos2th*f_70_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 3*U[4]) - (12*cos2th*f_71_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*f_70_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*f_71_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 3*U[4]) - (12*f_70_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*f_71_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*cos2th*f_70_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*cos2th*f_71_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 3*U[4]) - (20*cos2th*f_70_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 3*U[4]) - (20*cos2th*f_71_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*f_70_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*f_71_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 3*U[4]) - (20*f_70_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*f_71_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*cos2th*f_70_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*cos2th*f_71_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 3*U[4]) - (24*cos2th*f_70_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 3*U[4]) - (24*cos2th*f_71_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*f_70_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*f_71_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 3*U[4]) - (24*f_70_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*f_71_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*cos2th*f_70_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*cos2th*f_71_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 3*U[4]) - (28*cos2th*f_70_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 3*U[4]) - (28*cos2th*f_71_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*f_70_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*f_71_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 3*U[4]) - (28*f_70_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*f_71_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*cos2th*f_70_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*cos2th*f_71_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (6*cos2th*f_68_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 2*U[4]) - (6*cos2th*f_68_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 2*U[4]) - (6*cos2th*f_69_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*f_68_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*f_69_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 2*U[4]) - (6*f_68_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*f_69_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*cos2th*f_68_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*cos2th*f_69_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 2*U[4]) - (12*cos2th*f_68_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 2*U[4]) - (12*cos2th*f_69_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*f_68_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*f_69_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 2*U[4]) - (12*f_68_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*f_69_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*cos2th*f_68_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*cos2th*f_69_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 2*U[4]) - (15*cos2th*f_68_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 2*U[4]) - (15*cos2th*f_69_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*f_68_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*f_69_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 2*U[4]) - (15*f_68_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*f_69_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*cos2th*f_68_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*cos2th*f_69_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 2*U[4]) - (18*cos2th*f_68_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 2*U[4]) - (18*cos2th*f_69_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*f_68_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*f_69_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 2*U[4]) - (18*f_68_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*f_69_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*cos2th*f_68_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*cos2th*f_69_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 2*U[4]) - (21*cos2th*f_68_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 2*U[4]) - (21*cos2th*f_69_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*f_68_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*f_69_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 2*U[4]) - (21*f_68_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*f_69_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*cos2th*f_68_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*cos2th*f_69_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (6*cos2th*f_66_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_67_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - U[4]) - (6*f_66_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - U[4]) - (6*f_67_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - U[4]) + (6*f_66_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - U[4]) + (6*f_67_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_66_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_67_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - U[4]) + (6*f_66_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - U[4]) + (6*f_67_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_66_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_67_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - U[4]) - (6*cos2th*f_66_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - U[4]) - (6*cos2th*f_67_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - U[4]) + (6*f_66_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - U[4]) + (6*f_67_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - U[4]) - (6*f_66_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - U[4]) - (6*f_67_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - U[4]) - (6*cos2th*f_66_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - U[4]) - (6*cos2th*f_67_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_66_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_67_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - U[4]) - (6*f_66_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - U[4]) - (6*f_67_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_66_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_67_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - U[4]) - (6*f_66_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - U[4]) - (6*f_67_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - U[4]) + (6*f_66_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - U[4]) + (6*f_67_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_66_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_67_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - U[4]) + (8*cos2th*f_66_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_67_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - U[4]) - (8*f_66_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - U[4]) - (8*f_67_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - U[4]) + (8*f_66_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - U[4]) + (8*f_67_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_66_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_67_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - U[4]) + (8*f_66_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - U[4]) + (8*f_67_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_66_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_67_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - U[4]) - (8*cos2th*f_66_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - U[4]) - (8*cos2th*f_67_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - U[4]) + (8*f_66_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - U[4]) + (8*f_67_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - U[4]) - (8*f_66_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - U[4]) - (8*f_67_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - U[4]) - (8*cos2th*f_66_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - U[4]) - (8*cos2th*f_67_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_66_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_67_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - U[4]) - (8*f_66_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - U[4]) - (8*f_67_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_66_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_67_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - U[4]) - (8*f_66_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - U[4]) - (8*f_67_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - U[4]) + (8*f_66_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - U[4]) + (8*f_67_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_66_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_67_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - U[4]) + (10*cos2th*f_66_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_67_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - U[4]) - (10*f_66_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - U[4]) - (10*f_67_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - U[4]) + (10*f_66_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - U[4]) + (10*f_67_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_66_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_67_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - U[4]) + (10*f_66_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - U[4]) + (10*f_67_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_66_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_67_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - U[4]) - (10*cos2th*f_66_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - U[4]) - (10*cos2th*f_67_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - U[4]) + (10*f_66_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - U[4]) + (10*f_67_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - U[4]) - (10*f_66_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - U[4]) - (10*f_67_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - U[4]) - (10*cos2th*f_66_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - U[4]) - (10*cos2th*f_67_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_66_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_67_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - U[4]) - (10*f_66_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - U[4]) - (10*f_67_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_66_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_67_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - U[4]) - (10*f_66_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - U[4]) - (10*f_67_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - U[4]) + (10*f_66_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - U[4]) + (10*f_67_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_66_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_67_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - U[4]) + (12*cos2th*f_66_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_67_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - U[4]) - (12*f_66_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - U[4]) - (12*f_67_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - U[4]) + (12*f_66_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - U[4]) + (12*f_67_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_66_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_67_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - U[4]) + (12*f_66_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - U[4]) + (12*f_67_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_66_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_67_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - U[4]) - (12*cos2th*f_66_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - U[4]) - (12*cos2th*f_67_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - U[4]) + (12*f_66_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - U[4]) + (12*f_67_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - U[4]) - (12*f_66_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - U[4]) - (12*f_67_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - U[4]) - (12*cos2th*f_66_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - U[4]) - (12*cos2th*f_67_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_66_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_67_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - U[4]) - (12*f_66_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - U[4]) - (12*f_67_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_66_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_67_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - U[4]) - (12*f_66_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - U[4]) - (12*f_67_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - U[4]) + (12*f_66_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - U[4]) + (12*f_67_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_66_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_67_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - U[4]) + (14*cos2th*f_66_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_67_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - U[4]) - (14*f_66_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - U[4]) - (14*f_67_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - U[4]) + (14*f_66_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - U[4]) + (14*f_67_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_66_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_67_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - U[4]) + (14*f_66_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - U[4]) + (14*f_67_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_66_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_67_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - U[4]) - (14*cos2th*f_66_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - U[4]) - (14*cos2th*f_67_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - U[4]) + (14*f_66_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - U[4]) + (14*f_67_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - U[4]) - (14*f_66_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - U[4]) - (14*f_67_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - U[4]) - (14*cos2th*f_66_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - U[4]) - (14*cos2th*f_67_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_66_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_67_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - U[4]) - (14*f_66_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - U[4]) - (14*f_67_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_66_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_67_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - U[4]) - (14*f_66_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - U[4]) - (14*f_67_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - U[4]) + (14*f_66_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - U[4]) + (14*f_67_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_66_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_67_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - U[4]) - (2*cos2th*f_66_2*f[0]*f[2]*f[48]*f[50])/U[4] - (2*cos2th*f_67_2*f[0]*f[2]*f[48]*f[50])/U[4] - (3*cos2th*f_68_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) - (3*cos2th*f_69_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) - (4*cos2th*f_70_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) - (4*cos2th*f_71_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) - (5*cos2th*f_72_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) - (5*cos2th*f_73_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) - (6*cos2th*f_74_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) - (6*cos2th*f_75_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) - (7*cos2th*f_76_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) - (7*cos2th*f_77_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] + (2*f_67_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] + (3*f_68_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) + (3*f_69_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) + (4*f_70_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) + (4*f_71_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) + (5*f_72_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) + (5*f_73_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) + (6*f_74_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) + (6*f_75_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) + (7*f_76_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) + (7*f_77_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] - (2*f_67_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] - (3*f_68_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) - (3*f_69_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) - (4*f_70_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) - (4*f_71_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) - (5*f_72_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) - (5*f_73_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) - (6*f_74_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) - (6*f_75_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) - (7*f_76_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) - (7*f_77_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) - (2*cos2th*f_66_2*f[1]*f[3]*f[48]*f[50])/U[4] - (2*cos2th*f_67_2*f[1]*f[3]*f[48]*f[50])/U[4] - (3*cos2th*f_68_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) - (3*cos2th*f_69_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) - (4*cos2th*f_70_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) - (4*cos2th*f_71_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) - (5*cos2th*f_72_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) - (5*cos2th*f_73_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) - (6*cos2th*f_74_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) - (6*cos2th*f_75_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) - (7*cos2th*f_76_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) - (7*cos2th*f_77_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] - (2*f_67_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] - (3*f_68_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) - (3*f_69_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) - (4*f_70_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) - (4*f_71_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) - (5*f_72_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) - (5*f_73_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) - (6*f_74_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) - (6*f_75_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) - (7*f_76_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) - (7*f_77_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) - (2*cos2th*f_66_2*f[1]*f[2]*f[49]*f[50])/U[4] - (2*cos2th*f_67_2*f[1]*f[2]*f[49]*f[50])/U[4] - (3*cos2th*f_68_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) - (3*cos2th*f_69_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) - (4*cos2th*f_70_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) - (4*cos2th*f_71_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) - (5*cos2th*f_72_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) - (5*cos2th*f_73_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) - (6*cos2th*f_74_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) - (6*cos2th*f_75_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) - (7*cos2th*f_76_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) - (7*cos2th*f_77_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) + (2*cos2th*f_66_2*f[0]*f[3]*f[49]*f[50])/U[4] + (2*cos2th*f_67_2*f[0]*f[3]*f[49]*f[50])/U[4] + (3*cos2th*f_68_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) + (3*cos2th*f_69_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) + (4*cos2th*f_70_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) + (4*cos2th*f_71_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) + (5*cos2th*f_72_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) + (5*cos2th*f_73_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) + (6*cos2th*f_74_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) + (6*cos2th*f_75_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) + (7*cos2th*f_76_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) + (7*cos2th*f_77_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] - (2*f_67_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] - (3*f_68_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) - (3*f_69_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) - (4*f_70_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) - (4*f_71_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) - (5*f_72_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) - (5*f_73_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) - (6*f_74_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) - (6*f_75_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) - (7*f_76_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) - (7*f_77_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] + (2*f_67_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] + (3*f_68_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) + (3*f_69_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) + (4*f_70_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) + (4*f_71_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) + (5*f_72_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) + (5*f_73_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) + (6*f_74_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) + (6*f_75_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) + (7*f_76_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) + (7*f_77_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_66_2*f[1]*f[2]*f[48]*f[51])/U[4] + (2*cos2th*f_67_2*f[1]*f[2]*f[48]*f[51])/U[4] + (3*cos2th*f_68_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) + (3*cos2th*f_69_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) + (4*cos2th*f_70_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) + (4*cos2th*f_71_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) + (5*cos2th*f_72_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) + (5*cos2th*f_73_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) + (6*cos2th*f_74_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) + (6*cos2th*f_75_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) + (7*cos2th*f_76_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) + (7*cos2th*f_77_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_66_2*f[0]*f[3]*f[48]*f[51])/U[4] - (2*cos2th*f_67_2*f[0]*f[3]*f[48]*f[51])/U[4] - (3*cos2th*f_68_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) - (3*cos2th*f_69_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) - (4*cos2th*f_70_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) - (4*cos2th*f_71_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) - (5*cos2th*f_72_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) - (5*cos2th*f_73_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) - (6*cos2th*f_74_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) - (6*cos2th*f_75_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) - (7*cos2th*f_76_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) - (7*cos2th*f_77_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) + (2*f_66_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] + (2*f_67_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] + (3*f_68_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) + (3*f_69_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) + (4*f_70_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) + (4*f_71_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) + (5*f_72_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) + (5*f_73_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) + (6*f_74_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) + (6*f_75_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) + (7*f_76_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) + (7*f_77_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_66_2*f[0]*f[2]*f[49]*f[51])/U[4] - (2*cos2th*f_67_2*f[0]*f[2]*f[49]*f[51])/U[4] - (3*cos2th*f_68_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) - (3*cos2th*f_69_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) - (4*cos2th*f_70_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) - (4*cos2th*f_71_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) - (5*cos2th*f_72_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) - (5*cos2th*f_73_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) - (6*cos2th*f_74_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) - (6*cos2th*f_75_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) - (7*cos2th*f_76_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) - (7*cos2th*f_77_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) + (2*f_66_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] + (2*f_67_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] + (3*f_68_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) + (3*f_69_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) + (4*f_70_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) + (4*f_71_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) + (5*f_72_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) + (5*f_73_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) + (6*f_74_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) + (6*f_75_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) + (7*f_76_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) + (7*f_77_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) - (2*f_66_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] - (2*f_67_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] - (3*f_68_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) - (3*f_69_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) - (4*f_70_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) - (4*f_71_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) - (5*f_72_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) - (5*f_73_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) - (6*f_74_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) - (6*f_75_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) - (7*f_76_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) - (7*f_77_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) - (2*cos2th*f_66_2*f[1]*f[3]*f[49]*f[51])/U[4] - (2*cos2th*f_67_2*f[1]*f[3]*f[49]*f[51])/U[4] - (3*cos2th*f_68_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) - (3*cos2th*f_69_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) - (4*cos2th*f_70_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) - (4*cos2th*f_71_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) - (5*cos2th*f_72_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) - (5*cos2th*f_73_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) - (6*cos2th*f_74_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) - (6*cos2th*f_75_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) - (7*cos2th*f_76_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) - (7*cos2th*f_77_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[3]*J[4]*((2*cos2th*f_66_2*f[2]*f[4]*f[50]*f[52])/U[0] + (2*cos2th*f_67_2*f[2]*f[4]*f[50]*f[52])/U[0] - (2*f_66_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[0] - (2*f_67_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[0] + (2*f_66_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[0] + (2*f_67_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[0] + (2*cos2th*f_66_2*f[3]*f[5]*f[50]*f[52])/U[0] + (2*cos2th*f_67_2*f[3]*f[5]*f[50]*f[52])/U[0] + (2*f_66_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[0] + (2*f_67_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[0] + (2*cos2th*f_66_2*f[3]*f[4]*f[51]*f[52])/U[0] + (2*cos2th*f_67_2*f[3]*f[4]*f[51]*f[52])/U[0] - (2*cos2th*f_66_2*f[2]*f[5]*f[51]*f[52])/U[0] - (2*cos2th*f_67_2*f[2]*f[5]*f[51]*f[52])/U[0] + (2*f_66_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[0] + (2*f_67_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[0] - (2*f_66_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[0] - (2*f_67_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[0] - (2*cos2th*f_66_2*f[3]*f[4]*f[50]*f[53])/U[0] - (2*cos2th*f_67_2*f[3]*f[4]*f[50]*f[53])/U[0] + (2*cos2th*f_66_2*f[2]*f[5]*f[50]*f[53])/U[0] + (2*cos2th*f_67_2*f[2]*f[5]*f[50]*f[53])/U[0] - (2*f_66_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[0] - (2*f_67_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[0] + (2*cos2th*f_66_2*f[2]*f[4]*f[51]*f[53])/U[0] + (2*cos2th*f_67_2*f[2]*f[4]*f[51]*f[53])/U[0] - (2*f_66_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[0] - (2*f_67_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[0] + (2*f_66_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[0] + (2*f_67_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[0] + (2*cos2th*f_66_2*f[3]*f[5]*f[51]*f[53])/U[0] + (2*cos2th*f_67_2*f[3]*f[5]*f[51]*f[53])/U[0] + (3*cos2th*f_66_2*f[4]*f[6]*f[52]*f[54])/(2.*U[0]) + (3*cos2th*f_67_2*f[4]*f[6]*f[52]*f[54])/(2.*U[0]) - (3*f_66_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[0]) - (3*f_67_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[0]) + (3*f_66_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[0]) + (3*f_67_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[0]) + (3*cos2th*f_66_2*f[5]*f[7]*f[52]*f[54])/(2.*U[0]) + (3*cos2th*f_67_2*f[5]*f[7]*f[52]*f[54])/(2.*U[0]) + (3*f_66_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[0]) + (3*f_67_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[0]) + (3*cos2th*f_66_2*f[5]*f[6]*f[53]*f[54])/(2.*U[0]) + (3*cos2th*f_67_2*f[5]*f[6]*f[53]*f[54])/(2.*U[0]) - (3*cos2th*f_66_2*f[4]*f[7]*f[53]*f[54])/(2.*U[0]) - (3*cos2th*f_67_2*f[4]*f[7]*f[53]*f[54])/(2.*U[0]) + (3*f_66_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[0]) + (3*f_67_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[0]) - (3*f_66_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[0]) - (3*f_67_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_66_2*f[5]*f[6]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_67_2*f[5]*f[6]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_66_2*f[4]*f[7]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_67_2*f[4]*f[7]*f[52]*f[55])/(2.*U[0]) - (3*f_66_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[0]) - (3*f_67_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_66_2*f[4]*f[6]*f[53]*f[55])/(2.*U[0]) + (3*cos2th*f_67_2*f[4]*f[6]*f[53]*f[55])/(2.*U[0]) - (3*f_66_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[0]) - (3*f_67_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[0]) + (3*f_66_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[0]) + (3*f_67_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[0]) + (3*cos2th*f_66_2*f[5]*f[7]*f[53]*f[55])/(2.*U[0]) + (3*cos2th*f_67_2*f[5]*f[7]*f[53]*f[55])/(2.*U[0]) + (4*cos2th*f_66_2*f[6]*f[8]*f[54]*f[56])/(3.*U[0]) + (4*cos2th*f_67_2*f[6]*f[8]*f[54]*f[56])/(3.*U[0]) - (4*f_66_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[0]) - (4*f_67_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[0]) + (4*f_66_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[0]) + (4*f_67_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[0]) + (4*cos2th*f_66_2*f[7]*f[9]*f[54]*f[56])/(3.*U[0]) + (4*cos2th*f_67_2*f[7]*f[9]*f[54]*f[56])/(3.*U[0]) + (4*f_66_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[0]) + (4*f_67_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[0]) + (4*cos2th*f_66_2*f[7]*f[8]*f[55]*f[56])/(3.*U[0]) + (4*cos2th*f_67_2*f[7]*f[8]*f[55]*f[56])/(3.*U[0]) - (4*cos2th*f_66_2*f[6]*f[9]*f[55]*f[56])/(3.*U[0]) - (4*cos2th*f_67_2*f[6]*f[9]*f[55]*f[56])/(3.*U[0]) + (4*f_66_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[0]) + (4*f_67_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[0]) - (4*f_66_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[0]) - (4*f_67_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_66_2*f[7]*f[8]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_67_2*f[7]*f[8]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_66_2*f[6]*f[9]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_67_2*f[6]*f[9]*f[54]*f[57])/(3.*U[0]) - (4*f_66_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[0]) - (4*f_67_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_66_2*f[6]*f[8]*f[55]*f[57])/(3.*U[0]) + (4*cos2th*f_67_2*f[6]*f[8]*f[55]*f[57])/(3.*U[0]) - (4*f_66_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[0]) - (4*f_67_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[0]) + (4*f_66_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[0]) + (4*f_67_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[0]) + (4*cos2th*f_66_2*f[7]*f[9]*f[55]*f[57])/(3.*U[0]) + (4*cos2th*f_67_2*f[7]*f[9]*f[55]*f[57])/(3.*U[0]) + (5*cos2th*f_66_2*f[8]*f[10]*f[56]*f[58])/(4.*U[0]) + (5*cos2th*f_67_2*f[8]*f[10]*f[56]*f[58])/(4.*U[0]) - (5*f_66_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[0]) - (5*f_67_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[0]) + (5*f_66_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[0]) + (5*f_67_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[0]) + (5*cos2th*f_66_2*f[9]*f[11]*f[56]*f[58])/(4.*U[0]) + (5*cos2th*f_67_2*f[9]*f[11]*f[56]*f[58])/(4.*U[0]) + (5*f_66_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[0]) + (5*f_67_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[0]) + (5*cos2th*f_66_2*f[9]*f[10]*f[57]*f[58])/(4.*U[0]) + (5*cos2th*f_67_2*f[9]*f[10]*f[57]*f[58])/(4.*U[0]) - (5*cos2th*f_66_2*f[8]*f[11]*f[57]*f[58])/(4.*U[0]) - (5*cos2th*f_67_2*f[8]*f[11]*f[57]*f[58])/(4.*U[0]) + (5*f_66_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[0]) + (5*f_67_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[0]) - (5*f_66_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[0]) - (5*f_67_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_66_2*f[9]*f[10]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_67_2*f[9]*f[10]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_66_2*f[8]*f[11]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_67_2*f[8]*f[11]*f[56]*f[59])/(4.*U[0]) - (5*f_66_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[0]) - (5*f_67_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_66_2*f[8]*f[10]*f[57]*f[59])/(4.*U[0]) + (5*cos2th*f_67_2*f[8]*f[10]*f[57]*f[59])/(4.*U[0]) - (5*f_66_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[0]) - (5*f_67_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[0]) + (5*f_66_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[0]) + (5*f_67_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[0]) + (5*cos2th*f_66_2*f[9]*f[11]*f[57]*f[59])/(4.*U[0]) + (5*cos2th*f_67_2*f[9]*f[11]*f[57]*f[59])/(4.*U[0]) + (6*cos2th*f_66_2*f[10]*f[12]*f[58]*f[60])/(5.*U[0]) + (6*cos2th*f_67_2*f[10]*f[12]*f[58]*f[60])/(5.*U[0]) - (6*f_66_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[0]) - (6*f_67_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[0]) + (6*f_66_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[0]) + (6*f_67_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[0]) + (6*cos2th*f_66_2*f[11]*f[13]*f[58]*f[60])/(5.*U[0]) + (6*cos2th*f_67_2*f[11]*f[13]*f[58]*f[60])/(5.*U[0]) + (6*f_66_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[0]) + (6*f_67_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[0]) + (6*cos2th*f_66_2*f[11]*f[12]*f[59]*f[60])/(5.*U[0]) + (6*cos2th*f_67_2*f[11]*f[12]*f[59]*f[60])/(5.*U[0]) - (6*cos2th*f_66_2*f[10]*f[13]*f[59]*f[60])/(5.*U[0]) - (6*cos2th*f_67_2*f[10]*f[13]*f[59]*f[60])/(5.*U[0]) + (6*f_66_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[0]) + (6*f_67_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[0]) - (6*f_66_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[0]) - (6*f_67_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_66_2*f[11]*f[12]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_67_2*f[11]*f[12]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_66_2*f[10]*f[13]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_67_2*f[10]*f[13]*f[58]*f[61])/(5.*U[0]) - (6*f_66_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[0]) - (6*f_67_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_66_2*f[10]*f[12]*f[59]*f[61])/(5.*U[0]) + (6*cos2th*f_67_2*f[10]*f[12]*f[59]*f[61])/(5.*U[0]) - (6*f_66_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[0]) - (6*f_67_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[0]) + (6*f_66_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[0]) + (6*f_67_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[0]) + (6*cos2th*f_66_2*f[11]*f[13]*f[59]*f[61])/(5.*U[0]) + (6*cos2th*f_67_2*f[11]*f[13]*f[59]*f[61])/(5.*U[0]) + (7*cos2th*f_66_2*f[12]*f[14]*f[60]*f[62])/(6.*U[0]) + (7*cos2th*f_67_2*f[12]*f[14]*f[60]*f[62])/(6.*U[0]) - (7*f_66_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[0]) - (7*f_67_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[0]) + (7*f_66_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[0]) + (7*f_67_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[0]) + (7*cos2th*f_66_2*f[13]*f[15]*f[60]*f[62])/(6.*U[0]) + (7*cos2th*f_67_2*f[13]*f[15]*f[60]*f[62])/(6.*U[0]) + (7*f_66_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[0]) + (7*f_67_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[0]) + (7*cos2th*f_66_2*f[13]*f[14]*f[61]*f[62])/(6.*U[0]) + (7*cos2th*f_67_2*f[13]*f[14]*f[61]*f[62])/(6.*U[0]) - (7*cos2th*f_66_2*f[12]*f[15]*f[61]*f[62])/(6.*U[0]) - (7*cos2th*f_67_2*f[12]*f[15]*f[61]*f[62])/(6.*U[0]) + (7*f_66_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[0]) + (7*f_67_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[0]) - (7*f_66_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[0]) - (7*f_67_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_66_2*f[13]*f[14]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_67_2*f[13]*f[14]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_66_2*f[12]*f[15]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_67_2*f[12]*f[15]*f[60]*f[63])/(6.*U[0]) - (7*f_66_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[0]) - (7*f_67_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_66_2*f[12]*f[14]*f[61]*f[63])/(6.*U[0]) + (7*cos2th*f_67_2*f[12]*f[14]*f[61]*f[63])/(6.*U[0]) - (7*f_66_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[0]) - (7*f_67_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[0]) + (7*f_66_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[0]) + (7*f_67_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[0]) + (7*cos2th*f_66_2*f[13]*f[15]*f[61]*f[63])/(6.*U[0]) + (7*cos2th*f_67_2*f[13]*f[15]*f[61]*f[63])/(6.*U[0]) + (14*cos2th*f_78_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 6*U[4]) - (14*cos2th*f_78_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 6*U[4]) - (14*cos2th*f_79_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*f_78_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 6*U[4]) + (14*f_79_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 6*U[4]) - (14*f_78_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*f_79_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*cos2th*f_78_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*cos2th*f_79_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 6*U[4]) - (21*cos2th*f_78_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 6*U[4]) - (21*cos2th*f_79_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*f_78_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 6*U[4]) + (21*f_79_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 6*U[4]) - (21*f_78_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*f_79_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*cos2th*f_78_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*cos2th*f_79_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 6*U[4]) - (28*cos2th*f_78_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 6*U[4]) - (28*cos2th*f_79_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*f_78_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 6*U[4]) + (28*f_79_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 6*U[4]) - (28*f_78_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*f_79_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*cos2th*f_78_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*cos2th*f_79_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 6*U[4]) - (35*cos2th*f_78_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 6*U[4]) - (35*cos2th*f_79_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*f_78_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 6*U[4]) + (35*f_79_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 6*U[4]) - (35*f_78_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*f_79_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*cos2th*f_78_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*cos2th*f_79_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 6*U[4]) - (42*cos2th*f_78_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 6*U[4]) - (42*cos2th*f_79_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*f_78_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 6*U[4]) + (42*f_79_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 6*U[4]) - (42*f_78_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*f_79_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*cos2th*f_78_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*cos2th*f_79_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 6*U[4]) + (12*cos2th*f_76_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 5*U[4]) - (12*cos2th*f_76_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 5*U[4]) - (12*cos2th*f_77_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*f_76_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 5*U[4]) + (12*f_77_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 5*U[4]) - (12*f_76_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*f_77_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*cos2th*f_76_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*cos2th*f_77_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 5*U[4]) - (18*cos2th*f_76_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 5*U[4]) - (18*cos2th*f_77_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*f_76_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 5*U[4]) + (18*f_77_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 5*U[4]) - (18*f_76_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*f_77_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*cos2th*f_76_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*cos2th*f_77_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 5*U[4]) - (24*cos2th*f_76_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 5*U[4]) - (24*cos2th*f_77_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*f_76_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 5*U[4]) + (24*f_77_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 5*U[4]) - (24*f_76_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*f_77_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*cos2th*f_76_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*cos2th*f_77_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 5*U[4]) - (30*cos2th*f_76_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 5*U[4]) - (30*cos2th*f_77_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*f_76_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 5*U[4]) + (30*f_77_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 5*U[4]) - (30*f_76_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*f_77_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*cos2th*f_76_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*cos2th*f_77_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 5*U[4]) - (42*cos2th*f_76_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 5*U[4]) - (42*cos2th*f_77_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*f_76_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 5*U[4]) + (42*f_77_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 5*U[4]) - (42*f_76_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*f_77_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*cos2th*f_76_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*cos2th*f_77_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 5*U[4]) + (10*cos2th*f_74_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 4*U[4]) - (10*cos2th*f_74_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 4*U[4]) - (10*cos2th*f_75_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*f_74_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 4*U[4]) + (10*f_75_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 4*U[4]) - (10*f_74_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*f_75_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*cos2th*f_74_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*cos2th*f_75_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 4*U[4]) - (15*cos2th*f_74_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 4*U[4]) - (15*cos2th*f_75_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*f_74_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 4*U[4]) + (15*f_75_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 4*U[4]) - (15*f_74_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*f_75_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*cos2th*f_74_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*cos2th*f_75_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 4*U[4]) - (20*cos2th*f_74_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 4*U[4]) - (20*cos2th*f_75_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*f_74_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 4*U[4]) + (20*f_75_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 4*U[4]) - (20*f_74_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*f_75_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*cos2th*f_74_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*cos2th*f_75_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 4*U[4]) - (30*cos2th*f_74_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 4*U[4]) - (30*cos2th*f_75_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*f_74_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 4*U[4]) + (30*f_75_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 4*U[4]) - (30*f_74_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*f_75_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*cos2th*f_74_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*cos2th*f_75_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 4*U[4]) - (35*cos2th*f_74_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 4*U[4]) - (35*cos2th*f_75_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*f_74_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 4*U[4]) + (35*f_75_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 4*U[4]) - (35*f_74_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*f_75_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*cos2th*f_74_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*cos2th*f_75_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 4*U[4]) + (8*cos2th*f_72_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 3*U[4]) - (8*cos2th*f_72_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 3*U[4]) - (8*cos2th*f_73_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*f_72_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 3*U[4]) + (8*f_73_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 3*U[4]) - (8*f_72_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*f_73_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*cos2th*f_72_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*cos2th*f_73_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - 3*U[4]) - (12*cos2th*f_72_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 3*U[4]) - (12*cos2th*f_73_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*f_72_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 3*U[4]) + (12*f_73_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - 3*U[4]) - (12*f_72_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*f_73_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*cos2th*f_72_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*cos2th*f_73_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 3*U[4]) - (20*cos2th*f_72_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 3*U[4]) - (20*cos2th*f_73_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*f_72_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 3*U[4]) + (20*f_73_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 3*U[4]) - (20*f_72_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*f_73_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*cos2th*f_72_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*cos2th*f_73_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 3*U[4]) - (24*cos2th*f_72_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 3*U[4]) - (24*cos2th*f_73_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*f_72_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 3*U[4]) + (24*f_73_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 3*U[4]) - (24*f_72_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*f_73_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*cos2th*f_72_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*cos2th*f_73_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 3*U[4]) - (28*cos2th*f_72_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 3*U[4]) - (28*cos2th*f_73_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*f_72_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 3*U[4]) + (28*f_73_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 3*U[4]) - (28*f_72_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*f_73_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*cos2th*f_72_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*cos2th*f_73_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 3*U[4]) + (6*cos2th*f_70_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[4]*f[50]*f[52])/(U[0] - 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[5]*f[50]*f[52])/(U[0] - 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[4]*f[51]*f[52])/(U[0] - 2*U[4]) - (6*cos2th*f_70_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 2*U[4]) - (6*cos2th*f_71_2*f[2]*f[5]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*f_70_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 2*U[4]) + (6*f_71_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[0] - 2*U[4]) - (6*f_70_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*f_71_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*cos2th*f_70_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*cos2th*f_71_2*f[3]*f[4]*f[50]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[5]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[4]*f[51]*f[53])/(U[0] - 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[5]*f[51]*f[53])/(U[0] - 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - 2*U[4]) - (12*cos2th*f_70_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 2*U[4]) - (12*cos2th*f_71_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*f_70_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 2*U[4]) + (12*f_71_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - 2*U[4]) - (12*f_70_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*f_71_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*cos2th*f_70_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*cos2th*f_71_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - 2*U[4]) - (15*cos2th*f_70_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 2*U[4]) - (15*cos2th*f_71_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*f_70_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 2*U[4]) + (15*f_71_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - 2*U[4]) - (15*f_70_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*f_71_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*cos2th*f_70_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*cos2th*f_71_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - 2*U[4]) - (18*cos2th*f_70_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 2*U[4]) - (18*cos2th*f_71_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*f_70_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 2*U[4]) + (18*f_71_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - 2*U[4]) - (18*f_70_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*f_71_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*cos2th*f_70_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*cos2th*f_71_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - 2*U[4]) - (21*cos2th*f_70_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 2*U[4]) - (21*cos2th*f_71_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*f_70_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 2*U[4]) + (21*f_71_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - 2*U[4]) - (21*f_70_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*f_71_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*cos2th*f_70_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*cos2th*f_71_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - 2*U[4]) + (6*cos2th*f_68_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_69_2*f[4]*f[6]*f[52]*f[54])/(2*U[0] - U[4]) - (6*f_68_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - U[4]) - (6*f_69_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[0] - U[4]) + (6*f_68_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - U[4]) + (6*f_69_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_68_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_69_2*f[5]*f[7]*f[52]*f[54])/(2*U[0] - U[4]) + (6*f_68_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - U[4]) + (6*f_69_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_68_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - U[4]) + (6*cos2th*f_69_2*f[5]*f[6]*f[53]*f[54])/(2*U[0] - U[4]) - (6*cos2th*f_68_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - U[4]) - (6*cos2th*f_69_2*f[4]*f[7]*f[53]*f[54])/(2*U[0] - U[4]) + (6*f_68_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - U[4]) + (6*f_69_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[0] - U[4]) - (6*f_68_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - U[4]) - (6*f_69_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[0] - U[4]) - (6*cos2th*f_68_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - U[4]) - (6*cos2th*f_69_2*f[5]*f[6]*f[52]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_68_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_69_2*f[4]*f[7]*f[52]*f[55])/(2*U[0] - U[4]) - (6*f_68_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - U[4]) - (6*f_69_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_68_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_69_2*f[4]*f[6]*f[53]*f[55])/(2*U[0] - U[4]) - (6*f_68_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - U[4]) - (6*f_69_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[0] - U[4]) + (6*f_68_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - U[4]) + (6*f_69_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_68_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - U[4]) + (6*cos2th*f_69_2*f[5]*f[7]*f[53]*f[55])/(2*U[0] - U[4]) + (8*cos2th*f_68_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_69_2*f[6]*f[8]*f[54]*f[56])/(3*U[0] - U[4]) - (8*f_68_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - U[4]) - (8*f_69_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[0] - U[4]) + (8*f_68_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - U[4]) + (8*f_69_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_68_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_69_2*f[7]*f[9]*f[54]*f[56])/(3*U[0] - U[4]) + (8*f_68_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - U[4]) + (8*f_69_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_68_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - U[4]) + (8*cos2th*f_69_2*f[7]*f[8]*f[55]*f[56])/(3*U[0] - U[4]) - (8*cos2th*f_68_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - U[4]) - (8*cos2th*f_69_2*f[6]*f[9]*f[55]*f[56])/(3*U[0] - U[4]) + (8*f_68_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - U[4]) + (8*f_69_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[0] - U[4]) - (8*f_68_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - U[4]) - (8*f_69_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[0] - U[4]) - (8*cos2th*f_68_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - U[4]) - (8*cos2th*f_69_2*f[7]*f[8]*f[54]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_68_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_69_2*f[6]*f[9]*f[54]*f[57])/(3*U[0] - U[4]) - (8*f_68_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - U[4]) - (8*f_69_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_68_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_69_2*f[6]*f[8]*f[55]*f[57])/(3*U[0] - U[4]) - (8*f_68_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - U[4]) - (8*f_69_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[0] - U[4]) + (8*f_68_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - U[4]) + (8*f_69_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_68_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - U[4]) + (8*cos2th*f_69_2*f[7]*f[9]*f[55]*f[57])/(3*U[0] - U[4]) + (10*cos2th*f_68_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_69_2*f[8]*f[10]*f[56]*f[58])/(4*U[0] - U[4]) - (10*f_68_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - U[4]) - (10*f_69_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[0] - U[4]) + (10*f_68_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - U[4]) + (10*f_69_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_68_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_69_2*f[9]*f[11]*f[56]*f[58])/(4*U[0] - U[4]) + (10*f_68_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - U[4]) + (10*f_69_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_68_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - U[4]) + (10*cos2th*f_69_2*f[9]*f[10]*f[57]*f[58])/(4*U[0] - U[4]) - (10*cos2th*f_68_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - U[4]) - (10*cos2th*f_69_2*f[8]*f[11]*f[57]*f[58])/(4*U[0] - U[4]) + (10*f_68_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - U[4]) + (10*f_69_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[0] - U[4]) - (10*f_68_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - U[4]) - (10*f_69_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[0] - U[4]) - (10*cos2th*f_68_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - U[4]) - (10*cos2th*f_69_2*f[9]*f[10]*f[56]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_68_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_69_2*f[8]*f[11]*f[56]*f[59])/(4*U[0] - U[4]) - (10*f_68_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - U[4]) - (10*f_69_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_68_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_69_2*f[8]*f[10]*f[57]*f[59])/(4*U[0] - U[4]) - (10*f_68_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - U[4]) - (10*f_69_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[0] - U[4]) + (10*f_68_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - U[4]) + (10*f_69_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_68_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - U[4]) + (10*cos2th*f_69_2*f[9]*f[11]*f[57]*f[59])/(4*U[0] - U[4]) + (12*cos2th*f_68_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_69_2*f[10]*f[12]*f[58]*f[60])/(5*U[0] - U[4]) - (12*f_68_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - U[4]) - (12*f_69_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[0] - U[4]) + (12*f_68_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - U[4]) + (12*f_69_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_68_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_69_2*f[11]*f[13]*f[58]*f[60])/(5*U[0] - U[4]) + (12*f_68_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - U[4]) + (12*f_69_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_68_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - U[4]) + (12*cos2th*f_69_2*f[11]*f[12]*f[59]*f[60])/(5*U[0] - U[4]) - (12*cos2th*f_68_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - U[4]) - (12*cos2th*f_69_2*f[10]*f[13]*f[59]*f[60])/(5*U[0] - U[4]) + (12*f_68_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - U[4]) + (12*f_69_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[0] - U[4]) - (12*f_68_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - U[4]) - (12*f_69_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[0] - U[4]) - (12*cos2th*f_68_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - U[4]) - (12*cos2th*f_69_2*f[11]*f[12]*f[58]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_68_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_69_2*f[10]*f[13]*f[58]*f[61])/(5*U[0] - U[4]) - (12*f_68_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - U[4]) - (12*f_69_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_68_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_69_2*f[10]*f[12]*f[59]*f[61])/(5*U[0] - U[4]) - (12*f_68_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - U[4]) - (12*f_69_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[0] - U[4]) + (12*f_68_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - U[4]) + (12*f_69_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_68_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - U[4]) + (12*cos2th*f_69_2*f[11]*f[13]*f[59]*f[61])/(5*U[0] - U[4]) + (14*cos2th*f_68_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_69_2*f[12]*f[14]*f[60]*f[62])/(6*U[0] - U[4]) - (14*f_68_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - U[4]) - (14*f_69_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[0] - U[4]) + (14*f_68_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - U[4]) + (14*f_69_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_68_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_69_2*f[13]*f[15]*f[60]*f[62])/(6*U[0] - U[4]) + (14*f_68_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - U[4]) + (14*f_69_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_68_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - U[4]) + (14*cos2th*f_69_2*f[13]*f[14]*f[61]*f[62])/(6*U[0] - U[4]) - (14*cos2th*f_68_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - U[4]) - (14*cos2th*f_69_2*f[12]*f[15]*f[61]*f[62])/(6*U[0] - U[4]) + (14*f_68_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - U[4]) + (14*f_69_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[0] - U[4]) - (14*f_68_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - U[4]) - (14*f_69_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[0] - U[4]) - (14*cos2th*f_68_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - U[4]) - (14*cos2th*f_69_2*f[13]*f[14]*f[60]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_68_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_69_2*f[12]*f[15]*f[60]*f[63])/(6*U[0] - U[4]) - (14*f_68_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - U[4]) - (14*f_69_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_68_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_69_2*f[12]*f[14]*f[61]*f[63])/(6*U[0] - U[4]) - (14*f_68_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - U[4]) - (14*f_69_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[0] - U[4]) + (14*f_68_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - U[4]) + (14*f_69_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_68_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - U[4]) + (14*cos2th*f_69_2*f[13]*f[15]*f[61]*f[63])/(6*U[0] - U[4]) - (2*cos2th*f_68_2*f[0]*f[2]*f[48]*f[50])/U[4] - (2*cos2th*f_69_2*f[0]*f[2]*f[48]*f[50])/U[4] - (3*cos2th*f_70_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) - (3*cos2th*f_71_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) - (4*cos2th*f_72_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) - (4*cos2th*f_73_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) - (5*cos2th*f_74_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) - (5*cos2th*f_75_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) - (6*cos2th*f_76_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) - (6*cos2th*f_77_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) - (7*cos2th*f_78_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) - (7*cos2th*f_79_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] + (2*f_69_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] + (3*f_70_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) + (3*f_71_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) + (4*f_72_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) + (4*f_73_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) + (5*f_74_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) + (5*f_75_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) + (6*f_76_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) + (6*f_77_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) + (7*f_78_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) + (7*f_79_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] - (2*f_69_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] - (3*f_70_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) - (3*f_71_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) - (4*f_72_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) - (4*f_73_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) - (5*f_74_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) - (5*f_75_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) - (6*f_76_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) - (6*f_77_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) - (7*f_78_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) - (7*f_79_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) - (2*cos2th*f_68_2*f[1]*f[3]*f[48]*f[50])/U[4] - (2*cos2th*f_69_2*f[1]*f[3]*f[48]*f[50])/U[4] - (3*cos2th*f_70_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) - (3*cos2th*f_71_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) - (4*cos2th*f_72_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) - (4*cos2th*f_73_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) - (5*cos2th*f_74_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) - (5*cos2th*f_75_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) - (6*cos2th*f_76_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) - (6*cos2th*f_77_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) - (7*cos2th*f_78_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) - (7*cos2th*f_79_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] - (2*f_69_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] - (3*f_70_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) - (3*f_71_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) - (4*f_72_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) - (4*f_73_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) - (5*f_74_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) - (5*f_75_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) - (6*f_76_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) - (6*f_77_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) - (7*f_78_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) - (7*f_79_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) - (2*cos2th*f_68_2*f[1]*f[2]*f[49]*f[50])/U[4] - (2*cos2th*f_69_2*f[1]*f[2]*f[49]*f[50])/U[4] - (3*cos2th*f_70_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) - (3*cos2th*f_71_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) - (4*cos2th*f_72_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) - (4*cos2th*f_73_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) - (5*cos2th*f_74_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) - (5*cos2th*f_75_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) - (6*cos2th*f_76_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) - (6*cos2th*f_77_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) - (7*cos2th*f_78_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) - (7*cos2th*f_79_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) + (2*cos2th*f_68_2*f[0]*f[3]*f[49]*f[50])/U[4] + (2*cos2th*f_69_2*f[0]*f[3]*f[49]*f[50])/U[4] + (3*cos2th*f_70_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) + (3*cos2th*f_71_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) + (4*cos2th*f_72_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) + (4*cos2th*f_73_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) + (5*cos2th*f_74_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) + (5*cos2th*f_75_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) + (6*cos2th*f_76_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) + (6*cos2th*f_77_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) + (7*cos2th*f_78_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) + (7*cos2th*f_79_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] - (2*f_69_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] - (3*f_70_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) - (3*f_71_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) - (4*f_72_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) - (4*f_73_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) - (5*f_74_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) - (5*f_75_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) - (6*f_76_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) - (6*f_77_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) - (7*f_78_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) - (7*f_79_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] + (2*f_69_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] + (3*f_70_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) + (3*f_71_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) + (4*f_72_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) + (4*f_73_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) + (5*f_74_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) + (5*f_75_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) + (6*f_76_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) + (6*f_77_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) + (7*f_78_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) + (7*f_79_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_68_2*f[1]*f[2]*f[48]*f[51])/U[4] + (2*cos2th*f_69_2*f[1]*f[2]*f[48]*f[51])/U[4] + (3*cos2th*f_70_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) + (3*cos2th*f_71_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) + (4*cos2th*f_72_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) + (4*cos2th*f_73_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) + (5*cos2th*f_74_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) + (5*cos2th*f_75_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) + (6*cos2th*f_76_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) + (6*cos2th*f_77_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) + (7*cos2th*f_78_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) + (7*cos2th*f_79_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_68_2*f[0]*f[3]*f[48]*f[51])/U[4] - (2*cos2th*f_69_2*f[0]*f[3]*f[48]*f[51])/U[4] - (3*cos2th*f_70_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) - (3*cos2th*f_71_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) - (4*cos2th*f_72_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) - (4*cos2th*f_73_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) - (5*cos2th*f_74_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) - (5*cos2th*f_75_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) - (6*cos2th*f_76_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) - (6*cos2th*f_77_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) - (7*cos2th*f_78_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) - (7*cos2th*f_79_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) + (2*f_68_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] + (2*f_69_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] + (3*f_70_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) + (3*f_71_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) + (4*f_72_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) + (4*f_73_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) + (5*f_74_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) + (5*f_75_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) + (6*f_76_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) + (6*f_77_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) + (7*f_78_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) + (7*f_79_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_68_2*f[0]*f[2]*f[49]*f[51])/U[4] - (2*cos2th*f_69_2*f[0]*f[2]*f[49]*f[51])/U[4] - (3*cos2th*f_70_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) - (3*cos2th*f_71_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) - (4*cos2th*f_72_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) - (4*cos2th*f_73_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) - (5*cos2th*f_74_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) - (5*cos2th*f_75_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) - (6*cos2th*f_76_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) - (6*cos2th*f_77_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) - (7*cos2th*f_78_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) - (7*cos2th*f_79_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) + (2*f_68_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] + (2*f_69_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] + (3*f_70_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) + (3*f_71_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) + (4*f_72_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) + (4*f_73_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) + (5*f_74_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) + (5*f_75_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) + (6*f_76_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) + (6*f_77_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) + (7*f_78_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) + (7*f_79_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) - (2*f_68_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] - (2*f_69_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] - (3*f_70_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) - (3*f_71_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) - (4*f_72_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) - (4*f_73_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) - (5*f_74_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) - (5*f_75_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) - (6*f_76_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) - (6*f_77_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) - (7*f_78_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) - (7*f_79_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) - (2*cos2th*f_68_2*f[1]*f[3]*f[49]*f[51])/U[4] - (2*cos2th*f_69_2*f[1]*f[3]*f[49]*f[51])/U[4] - (3*cos2th*f_70_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) - (3*cos2th*f_71_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) - (4*cos2th*f_72_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) - (4*cos2th*f_73_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) - (5*cos2th*f_74_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) - (5*cos2th*f_75_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) - (6*cos2th*f_76_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) - (6*cos2th*f_77_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) - (7*cos2th*f_78_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) - (7*cos2th*f_79_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[3]*J[4]*((2*cos2th*f_66_2*f[2]*f[4]*f[50]*f[52])/U[3] + (2*cos2th*f_67_2*f[2]*f[4]*f[50]*f[52])/U[3] - (2*f_66_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[3] - (2*f_67_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[3] + (2*f_66_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[3] + (2*f_67_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[3] + (2*cos2th*f_66_2*f[3]*f[5]*f[50]*f[52])/U[3] + (2*cos2th*f_67_2*f[3]*f[5]*f[50]*f[52])/U[3] + (2*f_66_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[3] + (2*f_67_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[3] + (2*cos2th*f_66_2*f[3]*f[4]*f[51]*f[52])/U[3] + (2*cos2th*f_67_2*f[3]*f[4]*f[51]*f[52])/U[3] - (2*cos2th*f_66_2*f[2]*f[5]*f[51]*f[52])/U[3] - (2*cos2th*f_67_2*f[2]*f[5]*f[51]*f[52])/U[3] + (2*f_66_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[3] + (2*f_67_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[3] - (2*f_66_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[3] - (2*f_67_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[3] - (2*cos2th*f_66_2*f[3]*f[4]*f[50]*f[53])/U[3] - (2*cos2th*f_67_2*f[3]*f[4]*f[50]*f[53])/U[3] + (2*cos2th*f_66_2*f[2]*f[5]*f[50]*f[53])/U[3] + (2*cos2th*f_67_2*f[2]*f[5]*f[50]*f[53])/U[3] - (2*f_66_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[3] - (2*f_67_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[3] + (2*cos2th*f_66_2*f[2]*f[4]*f[51]*f[53])/U[3] + (2*cos2th*f_67_2*f[2]*f[4]*f[51]*f[53])/U[3] - (2*f_66_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[3] - (2*f_67_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[3] + (2*f_66_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[3] + (2*f_67_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[3] + (2*cos2th*f_66_2*f[3]*f[5]*f[51]*f[53])/U[3] + (2*cos2th*f_67_2*f[3]*f[5]*f[51]*f[53])/U[3] + (3*cos2th*f_66_2*f[4]*f[6]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_67_2*f[4]*f[6]*f[52]*f[54])/(2.*U[3]) - (3*f_66_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[3]) - (3*f_67_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[3]) + (3*f_66_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[3]) + (3*f_67_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_66_2*f[5]*f[7]*f[52]*f[54])/(2.*U[3]) + (3*cos2th*f_67_2*f[5]*f[7]*f[52]*f[54])/(2.*U[3]) + (3*f_66_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[3]) + (3*f_67_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_66_2*f[5]*f[6]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_67_2*f[5]*f[6]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_66_2*f[4]*f[7]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_67_2*f[4]*f[7]*f[53]*f[54])/(2.*U[3]) + (3*f_66_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[3]) + (3*f_67_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[3]) - (3*f_66_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[3]) - (3*f_67_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_66_2*f[5]*f[6]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_67_2*f[5]*f[6]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_66_2*f[4]*f[7]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_67_2*f[4]*f[7]*f[52]*f[55])/(2.*U[3]) - (3*f_66_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[3]) - (3*f_67_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_66_2*f[4]*f[6]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_67_2*f[4]*f[6]*f[53]*f[55])/(2.*U[3]) - (3*f_66_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[3]) - (3*f_67_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[3]) + (3*f_66_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[3]) + (3*f_67_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_66_2*f[5]*f[7]*f[53]*f[55])/(2.*U[3]) + (3*cos2th*f_67_2*f[5]*f[7]*f[53]*f[55])/(2.*U[3]) + (4*cos2th*f_66_2*f[6]*f[8]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_67_2*f[6]*f[8]*f[54]*f[56])/(3.*U[3]) - (4*f_66_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[3]) - (4*f_67_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[3]) + (4*f_66_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[3]) + (4*f_67_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_66_2*f[7]*f[9]*f[54]*f[56])/(3.*U[3]) + (4*cos2th*f_67_2*f[7]*f[9]*f[54]*f[56])/(3.*U[3]) + (4*f_66_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[3]) + (4*f_67_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_66_2*f[7]*f[8]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_67_2*f[7]*f[8]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_66_2*f[6]*f[9]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_67_2*f[6]*f[9]*f[55]*f[56])/(3.*U[3]) + (4*f_66_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[3]) + (4*f_67_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[3]) - (4*f_66_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[3]) - (4*f_67_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_66_2*f[7]*f[8]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_67_2*f[7]*f[8]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_66_2*f[6]*f[9]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_67_2*f[6]*f[9]*f[54]*f[57])/(3.*U[3]) - (4*f_66_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[3]) - (4*f_67_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_66_2*f[6]*f[8]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_67_2*f[6]*f[8]*f[55]*f[57])/(3.*U[3]) - (4*f_66_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[3]) - (4*f_67_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[3]) + (4*f_66_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[3]) + (4*f_67_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_66_2*f[7]*f[9]*f[55]*f[57])/(3.*U[3]) + (4*cos2th*f_67_2*f[7]*f[9]*f[55]*f[57])/(3.*U[3]) + (5*cos2th*f_66_2*f[8]*f[10]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_67_2*f[8]*f[10]*f[56]*f[58])/(4.*U[3]) - (5*f_66_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[3]) - (5*f_67_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[3]) + (5*f_66_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[3]) + (5*f_67_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_66_2*f[9]*f[11]*f[56]*f[58])/(4.*U[3]) + (5*cos2th*f_67_2*f[9]*f[11]*f[56]*f[58])/(4.*U[3]) + (5*f_66_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[3]) + (5*f_67_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_66_2*f[9]*f[10]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_67_2*f[9]*f[10]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_66_2*f[8]*f[11]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_67_2*f[8]*f[11]*f[57]*f[58])/(4.*U[3]) + (5*f_66_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[3]) + (5*f_67_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[3]) - (5*f_66_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[3]) - (5*f_67_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_66_2*f[9]*f[10]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_67_2*f[9]*f[10]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_66_2*f[8]*f[11]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_67_2*f[8]*f[11]*f[56]*f[59])/(4.*U[3]) - (5*f_66_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[3]) - (5*f_67_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_66_2*f[8]*f[10]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_67_2*f[8]*f[10]*f[57]*f[59])/(4.*U[3]) - (5*f_66_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[3]) - (5*f_67_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[3]) + (5*f_66_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[3]) + (5*f_67_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_66_2*f[9]*f[11]*f[57]*f[59])/(4.*U[3]) + (5*cos2th*f_67_2*f[9]*f[11]*f[57]*f[59])/(4.*U[3]) + (6*cos2th*f_66_2*f[10]*f[12]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_67_2*f[10]*f[12]*f[58]*f[60])/(5.*U[3]) - (6*f_66_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[3]) - (6*f_67_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[3]) + (6*f_66_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[3]) + (6*f_67_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_66_2*f[11]*f[13]*f[58]*f[60])/(5.*U[3]) + (6*cos2th*f_67_2*f[11]*f[13]*f[58]*f[60])/(5.*U[3]) + (6*f_66_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[3]) + (6*f_67_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_66_2*f[11]*f[12]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_67_2*f[11]*f[12]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_66_2*f[10]*f[13]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_67_2*f[10]*f[13]*f[59]*f[60])/(5.*U[3]) + (6*f_66_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[3]) + (6*f_67_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[3]) - (6*f_66_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[3]) - (6*f_67_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_66_2*f[11]*f[12]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_67_2*f[11]*f[12]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_66_2*f[10]*f[13]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_67_2*f[10]*f[13]*f[58]*f[61])/(5.*U[3]) - (6*f_66_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[3]) - (6*f_67_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_66_2*f[10]*f[12]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_67_2*f[10]*f[12]*f[59]*f[61])/(5.*U[3]) - (6*f_66_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[3]) - (6*f_67_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[3]) + (6*f_66_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[3]) + (6*f_67_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_66_2*f[11]*f[13]*f[59]*f[61])/(5.*U[3]) + (6*cos2th*f_67_2*f[11]*f[13]*f[59]*f[61])/(5.*U[3]) + (7*cos2th*f_66_2*f[12]*f[14]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_67_2*f[12]*f[14]*f[60]*f[62])/(6.*U[3]) - (7*f_66_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[3]) - (7*f_67_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[3]) + (7*f_66_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[3]) + (7*f_67_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_66_2*f[13]*f[15]*f[60]*f[62])/(6.*U[3]) + (7*cos2th*f_67_2*f[13]*f[15]*f[60]*f[62])/(6.*U[3]) + (7*f_66_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[3]) + (7*f_67_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_66_2*f[13]*f[14]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_67_2*f[13]*f[14]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_66_2*f[12]*f[15]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_67_2*f[12]*f[15]*f[61]*f[62])/(6.*U[3]) + (7*f_66_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[3]) + (7*f_67_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[3]) - (7*f_66_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[3]) - (7*f_67_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_66_2*f[13]*f[14]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_67_2*f[13]*f[14]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_66_2*f[12]*f[15]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_67_2*f[12]*f[15]*f[60]*f[63])/(6.*U[3]) - (7*f_66_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[3]) - (7*f_67_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_66_2*f[12]*f[14]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_67_2*f[12]*f[14]*f[61]*f[63])/(6.*U[3]) - (7*f_66_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[3]) - (7*f_67_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[3]) + (7*f_66_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[3]) + (7*f_67_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_66_2*f[13]*f[15]*f[61]*f[63])/(6.*U[3]) + (7*cos2th*f_67_2*f[13]*f[15]*f[61]*f[63])/(6.*U[3]) + (14*cos2th*f_78_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 6*U[4]) - (14*cos2th*f_78_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 6*U[4]) - (14*cos2th*f_79_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*f_78_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 6*U[4]) + (14*f_79_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 6*U[4]) - (14*f_78_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*f_79_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*cos2th*f_78_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*cos2th*f_79_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 6*U[4]) - (21*cos2th*f_78_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 6*U[4]) - (21*cos2th*f_79_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*f_78_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 6*U[4]) + (21*f_79_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 6*U[4]) - (21*f_78_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*f_79_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*cos2th*f_78_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*cos2th*f_79_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 6*U[4]) - (28*cos2th*f_78_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 6*U[4]) - (28*cos2th*f_79_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*f_78_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 6*U[4]) + (28*f_79_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 6*U[4]) - (28*f_78_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*f_79_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*cos2th*f_78_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*cos2th*f_79_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 6*U[4]) - (35*cos2th*f_78_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 6*U[4]) - (35*cos2th*f_79_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*f_78_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 6*U[4]) + (35*f_79_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 6*U[4]) - (35*f_78_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*f_79_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*cos2th*f_78_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*cos2th*f_79_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 6*U[4]) - (42*cos2th*f_78_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 6*U[4]) - (42*cos2th*f_79_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*f_78_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 6*U[4]) + (42*f_79_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 6*U[4]) - (42*f_78_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*f_79_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*cos2th*f_78_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*cos2th*f_79_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 6*U[4]) + (12*cos2th*f_76_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 5*U[4]) - (12*cos2th*f_76_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 5*U[4]) - (12*cos2th*f_77_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*f_76_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 5*U[4]) + (12*f_77_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 5*U[4]) - (12*f_76_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*f_77_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*cos2th*f_76_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*cos2th*f_77_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 5*U[4]) - (18*cos2th*f_76_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 5*U[4]) - (18*cos2th*f_77_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*f_76_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 5*U[4]) + (18*f_77_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 5*U[4]) - (18*f_76_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*f_77_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*cos2th*f_76_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*cos2th*f_77_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 5*U[4]) - (24*cos2th*f_76_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 5*U[4]) - (24*cos2th*f_77_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*f_76_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 5*U[4]) + (24*f_77_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 5*U[4]) - (24*f_76_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*f_77_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*cos2th*f_76_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*cos2th*f_77_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 5*U[4]) - (30*cos2th*f_76_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 5*U[4]) - (30*cos2th*f_77_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*f_76_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 5*U[4]) + (30*f_77_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 5*U[4]) - (30*f_76_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*f_77_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*cos2th*f_76_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*cos2th*f_77_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 5*U[4]) - (42*cos2th*f_76_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 5*U[4]) - (42*cos2th*f_77_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*f_76_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 5*U[4]) + (42*f_77_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 5*U[4]) - (42*f_76_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*f_77_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*cos2th*f_76_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*cos2th*f_77_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 5*U[4]) + (10*cos2th*f_74_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 4*U[4]) - (10*cos2th*f_74_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 4*U[4]) - (10*cos2th*f_75_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*f_74_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 4*U[4]) + (10*f_75_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 4*U[4]) - (10*f_74_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*f_75_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*cos2th*f_74_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*cos2th*f_75_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 4*U[4]) - (15*cos2th*f_74_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 4*U[4]) - (15*cos2th*f_75_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*f_74_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 4*U[4]) + (15*f_75_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 4*U[4]) - (15*f_74_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*f_75_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*cos2th*f_74_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*cos2th*f_75_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 4*U[4]) - (20*cos2th*f_74_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 4*U[4]) - (20*cos2th*f_75_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*f_74_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 4*U[4]) + (20*f_75_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 4*U[4]) - (20*f_74_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*f_75_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*cos2th*f_74_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*cos2th*f_75_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 4*U[4]) - (30*cos2th*f_74_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 4*U[4]) - (30*cos2th*f_75_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*f_74_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 4*U[4]) + (30*f_75_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 4*U[4]) - (30*f_74_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*f_75_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*cos2th*f_74_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*cos2th*f_75_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 4*U[4]) - (35*cos2th*f_74_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 4*U[4]) - (35*cos2th*f_75_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*f_74_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 4*U[4]) + (35*f_75_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 4*U[4]) - (35*f_74_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*f_75_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*cos2th*f_74_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*cos2th*f_75_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 4*U[4]) + (8*cos2th*f_72_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 3*U[4]) - (8*cos2th*f_72_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 3*U[4]) - (8*cos2th*f_73_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*f_72_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 3*U[4]) + (8*f_73_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 3*U[4]) - (8*f_72_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*f_73_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*cos2th*f_72_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*cos2th*f_73_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - 3*U[4]) - (12*cos2th*f_72_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 3*U[4]) - (12*cos2th*f_73_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*f_72_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 3*U[4]) + (12*f_73_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - 3*U[4]) - (12*f_72_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*f_73_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*cos2th*f_72_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*cos2th*f_73_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 3*U[4]) - (20*cos2th*f_72_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 3*U[4]) - (20*cos2th*f_73_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*f_72_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 3*U[4]) + (20*f_73_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 3*U[4]) - (20*f_72_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*f_73_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*cos2th*f_72_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*cos2th*f_73_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 3*U[4]) - (24*cos2th*f_72_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 3*U[4]) - (24*cos2th*f_73_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*f_72_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 3*U[4]) + (24*f_73_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 3*U[4]) - (24*f_72_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*f_73_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*cos2th*f_72_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*cos2th*f_73_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 3*U[4]) - (28*cos2th*f_72_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 3*U[4]) - (28*cos2th*f_73_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*f_72_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 3*U[4]) + (28*f_73_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 3*U[4]) - (28*f_72_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*f_73_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*cos2th*f_72_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*cos2th*f_73_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 3*U[4]) + (6*cos2th*f_70_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[4]*f[50]*f[52])/(U[3] - 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[4]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[5]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[5]*f[50]*f[52])/(U[3] - 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[4]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[4]*f[51]*f[52])/(U[3] - 2*U[4]) - (6*cos2th*f_70_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 2*U[4]) - (6*cos2th*f_71_2*f[2]*f[5]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*f_70_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 2*U[4]) + (6*f_71_2*sin2th*f[3]*f[5]*f[51]*f[52])/(U[3] - 2*U[4]) - (6*f_70_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*f_71_2*sin2th*f[2]*f[4]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*cos2th*f_70_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*cos2th*f_71_2*f[3]*f[4]*f[50]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[5]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[5]*f[50]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[4]*f[51]*f[53])/(U[3] - 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[4]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[5]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[5]*f[51]*f[53])/(U[3] - 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - 2*U[4]) - (12*cos2th*f_70_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 2*U[4]) - (12*cos2th*f_71_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*f_70_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 2*U[4]) + (12*f_71_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - 2*U[4]) - (12*f_70_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*f_71_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*cos2th*f_70_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*cos2th*f_71_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - 2*U[4]) - (15*cos2th*f_70_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 2*U[4]) - (15*cos2th*f_71_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*f_70_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 2*U[4]) + (15*f_71_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - 2*U[4]) - (15*f_70_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*f_71_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*cos2th*f_70_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*cos2th*f_71_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - 2*U[4]) - (18*cos2th*f_70_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 2*U[4]) - (18*cos2th*f_71_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*f_70_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 2*U[4]) + (18*f_71_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - 2*U[4]) - (18*f_70_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*f_71_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*cos2th*f_70_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*cos2th*f_71_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - 2*U[4]) - (21*cos2th*f_70_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 2*U[4]) - (21*cos2th*f_71_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*f_70_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 2*U[4]) + (21*f_71_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - 2*U[4]) - (21*f_70_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*f_71_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*cos2th*f_70_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*cos2th*f_71_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - 2*U[4]) + (6*cos2th*f_68_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_69_2*f[4]*f[6]*f[52]*f[54])/(2*U[3] - U[4]) - (6*f_68_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - U[4]) - (6*f_69_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2*U[3] - U[4]) + (6*f_68_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - U[4]) + (6*f_69_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_68_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_69_2*f[5]*f[7]*f[52]*f[54])/(2*U[3] - U[4]) + (6*f_68_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - U[4]) + (6*f_69_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_68_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - U[4]) + (6*cos2th*f_69_2*f[5]*f[6]*f[53]*f[54])/(2*U[3] - U[4]) - (6*cos2th*f_68_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - U[4]) - (6*cos2th*f_69_2*f[4]*f[7]*f[53]*f[54])/(2*U[3] - U[4]) + (6*f_68_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - U[4]) + (6*f_69_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2*U[3] - U[4]) - (6*f_68_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - U[4]) - (6*f_69_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2*U[3] - U[4]) - (6*cos2th*f_68_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - U[4]) - (6*cos2th*f_69_2*f[5]*f[6]*f[52]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_68_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_69_2*f[4]*f[7]*f[52]*f[55])/(2*U[3] - U[4]) - (6*f_68_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - U[4]) - (6*f_69_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_68_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_69_2*f[4]*f[6]*f[53]*f[55])/(2*U[3] - U[4]) - (6*f_68_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - U[4]) - (6*f_69_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2*U[3] - U[4]) + (6*f_68_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - U[4]) + (6*f_69_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_68_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - U[4]) + (6*cos2th*f_69_2*f[5]*f[7]*f[53]*f[55])/(2*U[3] - U[4]) + (8*cos2th*f_68_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_69_2*f[6]*f[8]*f[54]*f[56])/(3*U[3] - U[4]) - (8*f_68_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - U[4]) - (8*f_69_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3*U[3] - U[4]) + (8*f_68_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - U[4]) + (8*f_69_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_68_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_69_2*f[7]*f[9]*f[54]*f[56])/(3*U[3] - U[4]) + (8*f_68_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - U[4]) + (8*f_69_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_68_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - U[4]) + (8*cos2th*f_69_2*f[7]*f[8]*f[55]*f[56])/(3*U[3] - U[4]) - (8*cos2th*f_68_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - U[4]) - (8*cos2th*f_69_2*f[6]*f[9]*f[55]*f[56])/(3*U[3] - U[4]) + (8*f_68_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - U[4]) + (8*f_69_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3*U[3] - U[4]) - (8*f_68_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - U[4]) - (8*f_69_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3*U[3] - U[4]) - (8*cos2th*f_68_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - U[4]) - (8*cos2th*f_69_2*f[7]*f[8]*f[54]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_68_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_69_2*f[6]*f[9]*f[54]*f[57])/(3*U[3] - U[4]) - (8*f_68_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - U[4]) - (8*f_69_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_68_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_69_2*f[6]*f[8]*f[55]*f[57])/(3*U[3] - U[4]) - (8*f_68_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - U[4]) - (8*f_69_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3*U[3] - U[4]) + (8*f_68_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - U[4]) + (8*f_69_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_68_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - U[4]) + (8*cos2th*f_69_2*f[7]*f[9]*f[55]*f[57])/(3*U[3] - U[4]) + (10*cos2th*f_68_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_69_2*f[8]*f[10]*f[56]*f[58])/(4*U[3] - U[4]) - (10*f_68_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - U[4]) - (10*f_69_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4*U[3] - U[4]) + (10*f_68_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - U[4]) + (10*f_69_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_68_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_69_2*f[9]*f[11]*f[56]*f[58])/(4*U[3] - U[4]) + (10*f_68_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - U[4]) + (10*f_69_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_68_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - U[4]) + (10*cos2th*f_69_2*f[9]*f[10]*f[57]*f[58])/(4*U[3] - U[4]) - (10*cos2th*f_68_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - U[4]) - (10*cos2th*f_69_2*f[8]*f[11]*f[57]*f[58])/(4*U[3] - U[4]) + (10*f_68_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - U[4]) + (10*f_69_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4*U[3] - U[4]) - (10*f_68_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - U[4]) - (10*f_69_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4*U[3] - U[4]) - (10*cos2th*f_68_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - U[4]) - (10*cos2th*f_69_2*f[9]*f[10]*f[56]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_68_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_69_2*f[8]*f[11]*f[56]*f[59])/(4*U[3] - U[4]) - (10*f_68_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - U[4]) - (10*f_69_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_68_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_69_2*f[8]*f[10]*f[57]*f[59])/(4*U[3] - U[4]) - (10*f_68_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - U[4]) - (10*f_69_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4*U[3] - U[4]) + (10*f_68_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - U[4]) + (10*f_69_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_68_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - U[4]) + (10*cos2th*f_69_2*f[9]*f[11]*f[57]*f[59])/(4*U[3] - U[4]) + (12*cos2th*f_68_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_69_2*f[10]*f[12]*f[58]*f[60])/(5*U[3] - U[4]) - (12*f_68_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - U[4]) - (12*f_69_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5*U[3] - U[4]) + (12*f_68_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - U[4]) + (12*f_69_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_68_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_69_2*f[11]*f[13]*f[58]*f[60])/(5*U[3] - U[4]) + (12*f_68_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - U[4]) + (12*f_69_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_68_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - U[4]) + (12*cos2th*f_69_2*f[11]*f[12]*f[59]*f[60])/(5*U[3] - U[4]) - (12*cos2th*f_68_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - U[4]) - (12*cos2th*f_69_2*f[10]*f[13]*f[59]*f[60])/(5*U[3] - U[4]) + (12*f_68_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - U[4]) + (12*f_69_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5*U[3] - U[4]) - (12*f_68_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - U[4]) - (12*f_69_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5*U[3] - U[4]) - (12*cos2th*f_68_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - U[4]) - (12*cos2th*f_69_2*f[11]*f[12]*f[58]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_68_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_69_2*f[10]*f[13]*f[58]*f[61])/(5*U[3] - U[4]) - (12*f_68_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - U[4]) - (12*f_69_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_68_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_69_2*f[10]*f[12]*f[59]*f[61])/(5*U[3] - U[4]) - (12*f_68_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - U[4]) - (12*f_69_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5*U[3] - U[4]) + (12*f_68_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - U[4]) + (12*f_69_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_68_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - U[4]) + (12*cos2th*f_69_2*f[11]*f[13]*f[59]*f[61])/(5*U[3] - U[4]) + (14*cos2th*f_68_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_69_2*f[12]*f[14]*f[60]*f[62])/(6*U[3] - U[4]) - (14*f_68_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - U[4]) - (14*f_69_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6*U[3] - U[4]) + (14*f_68_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - U[4]) + (14*f_69_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_68_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_69_2*f[13]*f[15]*f[60]*f[62])/(6*U[3] - U[4]) + (14*f_68_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - U[4]) + (14*f_69_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_68_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - U[4]) + (14*cos2th*f_69_2*f[13]*f[14]*f[61]*f[62])/(6*U[3] - U[4]) - (14*cos2th*f_68_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - U[4]) - (14*cos2th*f_69_2*f[12]*f[15]*f[61]*f[62])/(6*U[3] - U[4]) + (14*f_68_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - U[4]) + (14*f_69_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6*U[3] - U[4]) - (14*f_68_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - U[4]) - (14*f_69_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6*U[3] - U[4]) - (14*cos2th*f_68_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - U[4]) - (14*cos2th*f_69_2*f[13]*f[14]*f[60]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_68_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_69_2*f[12]*f[15]*f[60]*f[63])/(6*U[3] - U[4]) - (14*f_68_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - U[4]) - (14*f_69_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_68_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_69_2*f[12]*f[14]*f[61]*f[63])/(6*U[3] - U[4]) - (14*f_68_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - U[4]) - (14*f_69_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6*U[3] - U[4]) + (14*f_68_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - U[4]) + (14*f_69_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_68_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - U[4]) + (14*cos2th*f_69_2*f[13]*f[15]*f[61]*f[63])/(6*U[3] - U[4]) - (2*cos2th*f_68_2*f[0]*f[2]*f[48]*f[50])/U[4] - (2*cos2th*f_69_2*f[0]*f[2]*f[48]*f[50])/U[4] - (3*cos2th*f_70_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) - (3*cos2th*f_71_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) - (4*cos2th*f_72_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) - (4*cos2th*f_73_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) - (5*cos2th*f_74_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) - (5*cos2th*f_75_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) - (6*cos2th*f_76_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) - (6*cos2th*f_77_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) - (7*cos2th*f_78_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) - (7*cos2th*f_79_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] + (2*f_69_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] + (3*f_70_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) + (3*f_71_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) + (4*f_72_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) + (4*f_73_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) + (5*f_74_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) + (5*f_75_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) + (6*f_76_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) + (6*f_77_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) + (7*f_78_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) + (7*f_79_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] - (2*f_69_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] - (3*f_70_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) - (3*f_71_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) - (4*f_72_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) - (4*f_73_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) - (5*f_74_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) - (5*f_75_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) - (6*f_76_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) - (6*f_77_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) - (7*f_78_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) - (7*f_79_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) - (2*cos2th*f_68_2*f[1]*f[3]*f[48]*f[50])/U[4] - (2*cos2th*f_69_2*f[1]*f[3]*f[48]*f[50])/U[4] - (3*cos2th*f_70_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) - (3*cos2th*f_71_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) - (4*cos2th*f_72_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) - (4*cos2th*f_73_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) - (5*cos2th*f_74_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) - (5*cos2th*f_75_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) - (6*cos2th*f_76_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) - (6*cos2th*f_77_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) - (7*cos2th*f_78_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) - (7*cos2th*f_79_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] - (2*f_69_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] - (3*f_70_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) - (3*f_71_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) - (4*f_72_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) - (4*f_73_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) - (5*f_74_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) - (5*f_75_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) - (6*f_76_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) - (6*f_77_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) - (7*f_78_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) - (7*f_79_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) - (2*cos2th*f_68_2*f[1]*f[2]*f[49]*f[50])/U[4] - (2*cos2th*f_69_2*f[1]*f[2]*f[49]*f[50])/U[4] - (3*cos2th*f_70_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) - (3*cos2th*f_71_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) - (4*cos2th*f_72_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) - (4*cos2th*f_73_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) - (5*cos2th*f_74_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) - (5*cos2th*f_75_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) - (6*cos2th*f_76_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) - (6*cos2th*f_77_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) - (7*cos2th*f_78_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) - (7*cos2th*f_79_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) + (2*cos2th*f_68_2*f[0]*f[3]*f[49]*f[50])/U[4] + (2*cos2th*f_69_2*f[0]*f[3]*f[49]*f[50])/U[4] + (3*cos2th*f_70_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) + (3*cos2th*f_71_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) + (4*cos2th*f_72_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) + (4*cos2th*f_73_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) + (5*cos2th*f_74_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) + (5*cos2th*f_75_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) + (6*cos2th*f_76_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) + (6*cos2th*f_77_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) + (7*cos2th*f_78_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) + (7*cos2th*f_79_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] - (2*f_69_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] - (3*f_70_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) - (3*f_71_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) - (4*f_72_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) - (4*f_73_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) - (5*f_74_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) - (5*f_75_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) - (6*f_76_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) - (6*f_77_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) - (7*f_78_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) - (7*f_79_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] + (2*f_69_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] + (3*f_70_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) + (3*f_71_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) + (4*f_72_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) + (4*f_73_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) + (5*f_74_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) + (5*f_75_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) + (6*f_76_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) + (6*f_77_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) + (7*f_78_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) + (7*f_79_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_68_2*f[1]*f[2]*f[48]*f[51])/U[4] + (2*cos2th*f_69_2*f[1]*f[2]*f[48]*f[51])/U[4] + (3*cos2th*f_70_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) + (3*cos2th*f_71_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) + (4*cos2th*f_72_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) + (4*cos2th*f_73_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) + (5*cos2th*f_74_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) + (5*cos2th*f_75_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) + (6*cos2th*f_76_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) + (6*cos2th*f_77_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) + (7*cos2th*f_78_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) + (7*cos2th*f_79_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_68_2*f[0]*f[3]*f[48]*f[51])/U[4] - (2*cos2th*f_69_2*f[0]*f[3]*f[48]*f[51])/U[4] - (3*cos2th*f_70_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) - (3*cos2th*f_71_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) - (4*cos2th*f_72_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) - (4*cos2th*f_73_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) - (5*cos2th*f_74_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) - (5*cos2th*f_75_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) - (6*cos2th*f_76_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) - (6*cos2th*f_77_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) - (7*cos2th*f_78_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) - (7*cos2th*f_79_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) + (2*f_68_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] + (2*f_69_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] + (3*f_70_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) + (3*f_71_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) + (4*f_72_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) + (4*f_73_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) + (5*f_74_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) + (5*f_75_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) + (6*f_76_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) + (6*f_77_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) + (7*f_78_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) + (7*f_79_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_68_2*f[0]*f[2]*f[49]*f[51])/U[4] - (2*cos2th*f_69_2*f[0]*f[2]*f[49]*f[51])/U[4] - (3*cos2th*f_70_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) - (3*cos2th*f_71_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) - (4*cos2th*f_72_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) - (4*cos2th*f_73_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) - (5*cos2th*f_74_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) - (5*cos2th*f_75_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) - (6*cos2th*f_76_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) - (6*cos2th*f_77_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) - (7*cos2th*f_78_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) - (7*cos2th*f_79_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) + (2*f_68_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] + (2*f_69_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] + (3*f_70_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) + (3*f_71_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) + (4*f_72_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) + (4*f_73_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) + (5*f_74_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) + (5*f_75_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) + (6*f_76_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) + (6*f_77_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) + (7*f_78_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) + (7*f_79_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) - (2*f_68_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] - (2*f_69_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] - (3*f_70_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) - (3*f_71_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) - (4*f_72_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) - (4*f_73_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) - (5*f_74_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) - (5*f_75_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) - (6*f_76_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) - (6*f_77_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) - (7*f_78_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) - (7*f_79_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) - (2*cos2th*f_68_2*f[1]*f[3]*f[49]*f[51])/U[4] - (2*cos2th*f_69_2*f[1]*f[3]*f[49]*f[51])/U[4] - (3*cos2th*f_70_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) - (3*cos2th*f_71_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) - (4*cos2th*f_72_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) - (4*cos2th*f_73_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) - (5*cos2th*f_74_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) - (5*cos2th*f_75_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) - (6*cos2th*f_76_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) - (6*cos2th*f_77_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) - (7*cos2th*f_78_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) - (7*cos2th*f_79_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[0]*J[4]*((6*cos2th*f_10_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) + (6*cos2th*f_11_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) + (7*cos2th*f_12_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) + (7*cos2th*f_13_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) + (2*cos2th*f_2_2*f[16]*f[18]*f[64]*f[66])/U[0] + (2*cos2th*f_3_2*f[16]*f[18]*f[64]*f[66])/U[0] + (3*cos2th*f_4_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) + (3*cos2th*f_5_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) + (4*cos2th*f_6_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) + (4*cos2th*f_7_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) + (5*cos2th*f_8_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) + (5*cos2th*f_9_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) - (6*f_11_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) - (7*f_12_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) - (7*f_13_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) - (2*f_2_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] - (2*f_3_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] - (3*f_4_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) - (3*f_5_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) - (4*f_6_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) - (4*f_7_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) - (5*f_8_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) - (5*f_9_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) + (6*f_11_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) + (7*f_12_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) + (7*f_13_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) + (2*f_2_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] + (2*f_3_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] + (3*f_4_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) + (3*f_5_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) + (4*f_6_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) + (4*f_7_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) + (5*f_8_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) + (5*f_9_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) + (6*cos2th*f_10_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) + (6*cos2th*f_11_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) + (7*cos2th*f_12_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) + (7*cos2th*f_13_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) + (2*cos2th*f_2_2*f[17]*f[19]*f[64]*f[66])/U[0] + (2*cos2th*f_3_2*f[17]*f[19]*f[64]*f[66])/U[0] + (3*cos2th*f_4_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) + (3*cos2th*f_5_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) + (4*cos2th*f_6_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) + (4*cos2th*f_7_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) + (5*cos2th*f_8_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) + (5*cos2th*f_9_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) + (6*f_11_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) + (7*f_12_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) + (7*f_13_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) + (2*f_2_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] + (2*f_3_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] + (3*f_4_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) + (3*f_5_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) + (4*f_6_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) + (4*f_7_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) + (5*f_8_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) + (5*f_9_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) + (6*cos2th*f_10_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) + (6*cos2th*f_11_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) + (7*cos2th*f_12_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) + (7*cos2th*f_13_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) + (2*cos2th*f_2_2*f[17]*f[18]*f[65]*f[66])/U[0] + (2*cos2th*f_3_2*f[17]*f[18]*f[65]*f[66])/U[0] + (3*cos2th*f_4_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) + (3*cos2th*f_5_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) + (4*cos2th*f_6_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) + (4*cos2th*f_7_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) + (5*cos2th*f_8_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) + (5*cos2th*f_9_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) - (6*cos2th*f_10_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) - (6*cos2th*f_11_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) - (7*cos2th*f_12_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) - (7*cos2th*f_13_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) - (2*cos2th*f_2_2*f[16]*f[19]*f[65]*f[66])/U[0] - (2*cos2th*f_3_2*f[16]*f[19]*f[65]*f[66])/U[0] - (3*cos2th*f_4_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) - (3*cos2th*f_5_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) - (4*cos2th*f_6_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) - (4*cos2th*f_7_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) - (5*cos2th*f_8_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) - (5*cos2th*f_9_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) + (6*f_11_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) + (7*f_12_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) + (7*f_13_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) + (2*f_2_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] + (2*f_3_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] + (3*f_4_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) + (3*f_5_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) + (4*f_6_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) + (4*f_7_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) + (5*f_8_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) + (5*f_9_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) - (6*f_11_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) - (7*f_12_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) - (7*f_13_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) - (2*f_2_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] - (2*f_3_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] - (3*f_4_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) - (3*f_5_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) - (4*f_6_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) - (4*f_7_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) - (5*f_8_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) - (5*f_9_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_10_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) - (6*cos2th*f_11_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) - (7*cos2th*f_12_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) - (7*cos2th*f_13_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) - (2*cos2th*f_2_2*f[17]*f[18]*f[64]*f[67])/U[0] - (2*cos2th*f_3_2*f[17]*f[18]*f[64]*f[67])/U[0] - (3*cos2th*f_4_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) - (3*cos2th*f_5_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) - (4*cos2th*f_6_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) - (4*cos2th*f_7_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_8_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) - (5*cos2th*f_9_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_10_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) + (6*cos2th*f_11_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) + (7*cos2th*f_12_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) + (7*cos2th*f_13_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) + (2*cos2th*f_2_2*f[16]*f[19]*f[64]*f[67])/U[0] + (2*cos2th*f_3_2*f[16]*f[19]*f[64]*f[67])/U[0] + (3*cos2th*f_4_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) + (3*cos2th*f_5_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) + (4*cos2th*f_6_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) + (4*cos2th*f_7_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_8_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) + (5*cos2th*f_9_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) - (6*f_10_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) - (6*f_11_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) - (7*f_12_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) - (7*f_13_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) - (2*f_2_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] - (2*f_3_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] - (3*f_4_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) - (3*f_5_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) - (4*f_6_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) - (4*f_7_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) - (5*f_8_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) - (5*f_9_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_10_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) + (6*cos2th*f_11_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) + (7*cos2th*f_12_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) + (7*cos2th*f_13_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) + (2*cos2th*f_2_2*f[16]*f[18]*f[65]*f[67])/U[0] + (2*cos2th*f_3_2*f[16]*f[18]*f[65]*f[67])/U[0] + (3*cos2th*f_4_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) + (3*cos2th*f_5_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) + (4*cos2th*f_6_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) + (4*cos2th*f_7_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) + (5*cos2th*f_8_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) + (5*cos2th*f_9_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) - (6*f_10_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) - (6*f_11_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) - (7*f_12_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) - (7*f_13_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) - (2*f_2_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] - (2*f_3_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] - (3*f_4_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) - (3*f_5_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) - (4*f_6_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) - (4*f_7_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) - (5*f_8_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) - (5*f_9_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) + (6*f_10_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) + (6*f_11_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) + (7*f_12_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) + (7*f_13_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) + (2*f_2_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] + (2*f_3_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] + (3*f_4_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) + (3*f_5_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) + (4*f_6_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) + (4*f_7_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) + (5*f_8_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) + (5*f_9_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) + (6*cos2th*f_10_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) + (6*cos2th*f_11_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) + (7*cos2th*f_12_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) + (7*cos2th*f_13_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) + (2*cos2th*f_2_2*f[17]*f[19]*f[65]*f[67])/U[0] + (2*cos2th*f_3_2*f[17]*f[19]*f[65]*f[67])/U[0] + (3*cos2th*f_4_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) + (3*cos2th*f_5_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) + (4*cos2th*f_6_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (4*cos2th*f_7_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (5*cos2th*f_8_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (5*cos2th*f_9_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (14*cos2th*f_2_2*f[28]*f[30]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_3_2*f[28]*f[30]*f[76]*f[78])/(U[0] - 6*U[4]) - (14*f_2_2*sin2th*f[29]*f[30]*f[76]*f[78])/(U[0] - 6*U[4]) - (14*f_3_2*sin2th*f[29]*f[30]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*f_2_2*sin2th*f[28]*f[31]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*f_3_2*sin2th*f[28]*f[31]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_2_2*f[29]*f[31]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_3_2*f[29]*f[31]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*f_2_2*sin2th*f[28]*f[30]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*f_3_2*sin2th*f[28]*f[30]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_2_2*f[29]*f[30]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_3_2*f[29]*f[30]*f[77]*f[78])/(U[0] - 6*U[4]) - (14*cos2th*f_2_2*f[28]*f[31]*f[77]*f[78])/(U[0] - 6*U[4]) - (14*cos2th*f_3_2*f[28]*f[31]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*f_2_2*sin2th*f[29]*f[31]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*f_3_2*sin2th*f[29]*f[31]*f[77]*f[78])/(U[0] - 6*U[4]) - (14*f_2_2*sin2th*f[28]*f[30]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*f_3_2*sin2th*f[28]*f[30]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*cos2th*f_2_2*f[29]*f[30]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*cos2th*f_3_2*f[29]*f[30]*f[76]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_2_2*f[28]*f[31]*f[76]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_3_2*f[28]*f[31]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*f_2_2*sin2th*f[29]*f[31]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*f_3_2*sin2th*f[29]*f[31]*f[76]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_2_2*f[28]*f[30]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_3_2*f[28]*f[30]*f[77]*f[79])/(U[0] - 6*U[4]) - (14*f_2_2*sin2th*f[29]*f[30]*f[77]*f[79])/(U[0] - 6*U[4]) - (14*f_3_2*sin2th*f[29]*f[30]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*f_2_2*sin2th*f[28]*f[31]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*f_3_2*sin2th*f[28]*f[31]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_2_2*f[29]*f[31]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_3_2*f[29]*f[31]*f[77]*f[79])/(U[0] - 6*U[4]) + (21*cos2th*f_4_2*f[28]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_5_2*f[28]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[4]) - (21*f_4_2*sin2th*f[29]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[4]) - (21*f_5_2*sin2th*f[29]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*f_4_2*sin2th*f[28]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*f_5_2*sin2th*f[28]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_4_2*f[29]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_5_2*f[29]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*f_4_2*sin2th*f[28]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*f_5_2*sin2th*f[28]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_4_2*f[29]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_5_2*f[29]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[4]) - (21*cos2th*f_4_2*f[28]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[4]) - (21*cos2th*f_5_2*f[28]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*f_4_2*sin2th*f[29]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*f_5_2*sin2th*f[29]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[4]) - (21*f_4_2*sin2th*f[28]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*f_5_2*sin2th*f[28]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*cos2th*f_4_2*f[29]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*cos2th*f_5_2*f[29]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_4_2*f[28]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_5_2*f[28]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*f_4_2*sin2th*f[29]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*f_5_2*sin2th*f[29]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_4_2*f[28]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_5_2*f[28]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[4]) - (21*f_4_2*sin2th*f[29]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[4]) - (21*f_5_2*sin2th*f[29]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*f_4_2*sin2th*f[28]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*f_5_2*sin2th*f[28]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_4_2*f[29]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_5_2*f[29]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (28*cos2th*f_6_2*f[28]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_7_2*f[28]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[4]) - (28*f_6_2*sin2th*f[29]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[4]) - (28*f_7_2*sin2th*f[29]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*f_6_2*sin2th*f[28]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*f_7_2*sin2th*f[28]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_6_2*f[29]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_7_2*f[29]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*f_6_2*sin2th*f[28]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*f_7_2*sin2th*f[28]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_6_2*f[29]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_7_2*f[29]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[4]) - (28*cos2th*f_6_2*f[28]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[4]) - (28*cos2th*f_7_2*f[28]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*f_6_2*sin2th*f[29]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*f_7_2*sin2th*f[29]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[4]) - (28*f_6_2*sin2th*f[28]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*f_7_2*sin2th*f[28]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*cos2th*f_6_2*f[29]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*cos2th*f_7_2*f[29]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_6_2*f[28]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_7_2*f[28]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*f_6_2*sin2th*f[29]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*f_7_2*sin2th*f[29]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_6_2*f[28]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_7_2*f[28]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[4]) - (28*f_6_2*sin2th*f[29]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[4]) - (28*f_7_2*sin2th*f[29]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*f_6_2*sin2th*f[28]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*f_7_2*sin2th*f[28]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_6_2*f[29]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_7_2*f[29]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (35*cos2th*f_8_2*f[28]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_9_2*f[28]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[4]) - (35*f_8_2*sin2th*f[29]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[4]) - (35*f_9_2*sin2th*f[29]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*f_8_2*sin2th*f[28]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*f_9_2*sin2th*f[28]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_8_2*f[29]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_9_2*f[29]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*f_8_2*sin2th*f[28]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*f_9_2*sin2th*f[28]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_8_2*f[29]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_9_2*f[29]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[4]) - (35*cos2th*f_8_2*f[28]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[4]) - (35*cos2th*f_9_2*f[28]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*f_8_2*sin2th*f[29]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*f_9_2*sin2th*f[29]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[4]) - (35*f_8_2*sin2th*f[28]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*f_9_2*sin2th*f[28]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*cos2th*f_8_2*f[29]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*cos2th*f_9_2*f[29]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_8_2*f[28]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_9_2*f[28]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*f_8_2*sin2th*f[29]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*f_9_2*sin2th*f[29]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_8_2*f[28]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_9_2*f[28]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[4]) - (35*f_8_2*sin2th*f[29]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[4]) - (35*f_9_2*sin2th*f[29]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*f_8_2*sin2th*f[28]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*f_9_2*sin2th*f[28]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_8_2*f[29]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_9_2*f[29]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (42*cos2th*f_10_2*f[28]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_11_2*f[28]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[4]) - (42*f_10_2*sin2th*f[29]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[4]) - (42*f_11_2*sin2th*f[29]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*f_10_2*sin2th*f[28]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*f_11_2*sin2th*f[28]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_10_2*f[29]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_11_2*f[29]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*f_10_2*sin2th*f[28]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*f_11_2*sin2th*f[28]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_10_2*f[29]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_11_2*f[29]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[4]) - (42*cos2th*f_10_2*f[28]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[4]) - (42*cos2th*f_11_2*f[28]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*f_10_2*sin2th*f[29]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*f_11_2*sin2th*f[29]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[4]) - (42*f_10_2*sin2th*f[28]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*f_11_2*sin2th*f[28]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*cos2th*f_10_2*f[29]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*cos2th*f_11_2*f[29]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_10_2*f[28]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_11_2*f[28]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*f_10_2*sin2th*f[29]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*f_11_2*sin2th*f[29]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_10_2*f[28]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_11_2*f[28]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[4]) - (42*f_10_2*sin2th*f[29]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[4]) - (42*f_11_2*sin2th*f[29]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*f_10_2*sin2th*f[28]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*f_11_2*sin2th*f[28]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_10_2*f[29]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_11_2*f[29]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (12*cos2th*f_2_2*f[26]*f[28]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_3_2*f[26]*f[28]*f[74]*f[76])/(U[0] - 5*U[4]) - (12*f_2_2*sin2th*f[27]*f[28]*f[74]*f[76])/(U[0] - 5*U[4]) - (12*f_3_2*sin2th*f[27]*f[28]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*f_2_2*sin2th*f[26]*f[29]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*f_3_2*sin2th*f[26]*f[29]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_2_2*f[27]*f[29]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_3_2*f[27]*f[29]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*f_2_2*sin2th*f[26]*f[28]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*f_3_2*sin2th*f[26]*f[28]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_2_2*f[27]*f[28]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_3_2*f[27]*f[28]*f[75]*f[76])/(U[0] - 5*U[4]) - (12*cos2th*f_2_2*f[26]*f[29]*f[75]*f[76])/(U[0] - 5*U[4]) - (12*cos2th*f_3_2*f[26]*f[29]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*f_2_2*sin2th*f[27]*f[29]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*f_3_2*sin2th*f[27]*f[29]*f[75]*f[76])/(U[0] - 5*U[4]) - (12*f_2_2*sin2th*f[26]*f[28]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*f_3_2*sin2th*f[26]*f[28]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*cos2th*f_2_2*f[27]*f[28]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*cos2th*f_3_2*f[27]*f[28]*f[74]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_2_2*f[26]*f[29]*f[74]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_3_2*f[26]*f[29]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*f_2_2*sin2th*f[27]*f[29]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*f_3_2*sin2th*f[27]*f[29]*f[74]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_2_2*f[26]*f[28]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_3_2*f[26]*f[28]*f[75]*f[77])/(U[0] - 5*U[4]) - (12*f_2_2*sin2th*f[27]*f[28]*f[75]*f[77])/(U[0] - 5*U[4]) - (12*f_3_2*sin2th*f[27]*f[28]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*f_2_2*sin2th*f[26]*f[29]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*f_3_2*sin2th*f[26]*f[29]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_2_2*f[27]*f[29]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_3_2*f[27]*f[29]*f[75]*f[77])/(U[0] - 5*U[4]) + (18*cos2th*f_4_2*f[26]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_5_2*f[26]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[4]) - (18*f_4_2*sin2th*f[27]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[4]) - (18*f_5_2*sin2th*f[27]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*f_4_2*sin2th*f[26]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*f_5_2*sin2th*f[26]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_4_2*f[27]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_5_2*f[27]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*f_4_2*sin2th*f[26]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*f_5_2*sin2th*f[26]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_4_2*f[27]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_5_2*f[27]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[4]) - (18*cos2th*f_4_2*f[26]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[4]) - (18*cos2th*f_5_2*f[26]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*f_4_2*sin2th*f[27]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*f_5_2*sin2th*f[27]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[4]) - (18*f_4_2*sin2th*f[26]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*f_5_2*sin2th*f[26]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*cos2th*f_4_2*f[27]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*cos2th*f_5_2*f[27]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_4_2*f[26]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_5_2*f[26]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*f_4_2*sin2th*f[27]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*f_5_2*sin2th*f[27]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_4_2*f[26]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_5_2*f[26]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[4]) - (18*f_4_2*sin2th*f[27]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[4]) - (18*f_5_2*sin2th*f[27]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*f_4_2*sin2th*f[26]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*f_5_2*sin2th*f[26]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_4_2*f[27]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_5_2*f[27]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (24*cos2th*f_6_2*f[26]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_7_2*f[26]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[4]) - (24*f_6_2*sin2th*f[27]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[4]) - (24*f_7_2*sin2th*f[27]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*f_6_2*sin2th*f[26]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*f_7_2*sin2th*f[26]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_6_2*f[27]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_7_2*f[27]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*f_6_2*sin2th*f[26]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*f_7_2*sin2th*f[26]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_6_2*f[27]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_7_2*f[27]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[4]) - (24*cos2th*f_6_2*f[26]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[4]) - (24*cos2th*f_7_2*f[26]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*f_6_2*sin2th*f[27]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*f_7_2*sin2th*f[27]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[4]) - (24*f_6_2*sin2th*f[26]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*f_7_2*sin2th*f[26]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*cos2th*f_6_2*f[27]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*cos2th*f_7_2*f[27]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_6_2*f[26]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_7_2*f[26]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*f_6_2*sin2th*f[27]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*f_7_2*sin2th*f[27]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_6_2*f[26]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_7_2*f[26]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[4]) - (24*f_6_2*sin2th*f[27]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[4]) - (24*f_7_2*sin2th*f[27]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*f_6_2*sin2th*f[26]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*f_7_2*sin2th*f[26]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_6_2*f[27]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_7_2*f[27]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (30*cos2th*f_8_2*f[26]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_9_2*f[26]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[4]) - (30*f_8_2*sin2th*f[27]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[4]) - (30*f_9_2*sin2th*f[27]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*f_8_2*sin2th*f[26]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*f_9_2*sin2th*f[26]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_8_2*f[27]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_9_2*f[27]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*f_8_2*sin2th*f[26]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*f_9_2*sin2th*f[26]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_8_2*f[27]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_9_2*f[27]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[4]) - (30*cos2th*f_8_2*f[26]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[4]) - (30*cos2th*f_9_2*f[26]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*f_8_2*sin2th*f[27]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*f_9_2*sin2th*f[27]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[4]) - (30*f_8_2*sin2th*f[26]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*f_9_2*sin2th*f[26]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*cos2th*f_8_2*f[27]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*cos2th*f_9_2*f[27]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_8_2*f[26]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_9_2*f[26]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*f_8_2*sin2th*f[27]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*f_9_2*sin2th*f[27]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_8_2*f[26]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_9_2*f[26]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[4]) - (30*f_8_2*sin2th*f[27]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[4]) - (30*f_9_2*sin2th*f[27]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*f_8_2*sin2th*f[26]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*f_9_2*sin2th*f[26]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_8_2*f[27]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_9_2*f[27]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (42*cos2th*f_12_2*f[26]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_13_2*f[26]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[4]) - (42*f_12_2*sin2th*f[27]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[4]) - (42*f_13_2*sin2th*f[27]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*f_12_2*sin2th*f[26]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*f_13_2*sin2th*f[26]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_12_2*f[27]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_13_2*f[27]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*f_12_2*sin2th*f[26]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*f_13_2*sin2th*f[26]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_12_2*f[27]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_13_2*f[27]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[4]) - (42*cos2th*f_12_2*f[26]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[4]) - (42*cos2th*f_13_2*f[26]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*f_12_2*sin2th*f[27]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*f_13_2*sin2th*f[27]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[4]) - (42*f_12_2*sin2th*f[26]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*f_13_2*sin2th*f[26]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*cos2th*f_12_2*f[27]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*cos2th*f_13_2*f[27]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_12_2*f[26]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_13_2*f[26]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*f_12_2*sin2th*f[27]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*f_13_2*sin2th*f[27]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_12_2*f[26]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_13_2*f[26]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[4]) - (42*f_12_2*sin2th*f[27]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[4]) - (42*f_13_2*sin2th*f[27]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*f_12_2*sin2th*f[26]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*f_13_2*sin2th*f[26]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_12_2*f[27]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_13_2*f[27]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (10*cos2th*f_2_2*f[24]*f[26]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_3_2*f[24]*f[26]*f[72]*f[74])/(U[0] - 4*U[4]) - (10*f_2_2*sin2th*f[25]*f[26]*f[72]*f[74])/(U[0] - 4*U[4]) - (10*f_3_2*sin2th*f[25]*f[26]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*f_2_2*sin2th*f[24]*f[27]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*f_3_2*sin2th*f[24]*f[27]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_2_2*f[25]*f[27]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_3_2*f[25]*f[27]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*f_2_2*sin2th*f[24]*f[26]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*f_3_2*sin2th*f[24]*f[26]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_2_2*f[25]*f[26]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_3_2*f[25]*f[26]*f[73]*f[74])/(U[0] - 4*U[4]) - (10*cos2th*f_2_2*f[24]*f[27]*f[73]*f[74])/(U[0] - 4*U[4]) - (10*cos2th*f_3_2*f[24]*f[27]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*f_2_2*sin2th*f[25]*f[27]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*f_3_2*sin2th*f[25]*f[27]*f[73]*f[74])/(U[0] - 4*U[4]) - (10*f_2_2*sin2th*f[24]*f[26]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*f_3_2*sin2th*f[24]*f[26]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*cos2th*f_2_2*f[25]*f[26]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*cos2th*f_3_2*f[25]*f[26]*f[72]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_2_2*f[24]*f[27]*f[72]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_3_2*f[24]*f[27]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*f_2_2*sin2th*f[25]*f[27]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*f_3_2*sin2th*f[25]*f[27]*f[72]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_2_2*f[24]*f[26]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_3_2*f[24]*f[26]*f[73]*f[75])/(U[0] - 4*U[4]) - (10*f_2_2*sin2th*f[25]*f[26]*f[73]*f[75])/(U[0] - 4*U[4]) - (10*f_3_2*sin2th*f[25]*f[26]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*f_2_2*sin2th*f[24]*f[27]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*f_3_2*sin2th*f[24]*f[27]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_2_2*f[25]*f[27]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_3_2*f[25]*f[27]*f[73]*f[75])/(U[0] - 4*U[4]) + (15*cos2th*f_4_2*f[24]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_5_2*f[24]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[4]) - (15*f_4_2*sin2th*f[25]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[4]) - (15*f_5_2*sin2th*f[25]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*f_4_2*sin2th*f[24]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*f_5_2*sin2th*f[24]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_4_2*f[25]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_5_2*f[25]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*f_4_2*sin2th*f[24]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*f_5_2*sin2th*f[24]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_4_2*f[25]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_5_2*f[25]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[4]) - (15*cos2th*f_4_2*f[24]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[4]) - (15*cos2th*f_5_2*f[24]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*f_4_2*sin2th*f[25]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*f_5_2*sin2th*f[25]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[4]) - (15*f_4_2*sin2th*f[24]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*f_5_2*sin2th*f[24]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*cos2th*f_4_2*f[25]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*cos2th*f_5_2*f[25]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_4_2*f[24]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_5_2*f[24]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*f_4_2*sin2th*f[25]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*f_5_2*sin2th*f[25]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_4_2*f[24]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_5_2*f[24]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[4]) - (15*f_4_2*sin2th*f[25]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[4]) - (15*f_5_2*sin2th*f[25]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*f_4_2*sin2th*f[24]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*f_5_2*sin2th*f[24]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_4_2*f[25]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_5_2*f[25]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (20*cos2th*f_6_2*f[24]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_7_2*f[24]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[4]) - (20*f_6_2*sin2th*f[25]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[4]) - (20*f_7_2*sin2th*f[25]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*f_6_2*sin2th*f[24]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*f_7_2*sin2th*f[24]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_6_2*f[25]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_7_2*f[25]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*f_6_2*sin2th*f[24]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*f_7_2*sin2th*f[24]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_6_2*f[25]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_7_2*f[25]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[4]) - (20*cos2th*f_6_2*f[24]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[4]) - (20*cos2th*f_7_2*f[24]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*f_6_2*sin2th*f[25]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*f_7_2*sin2th*f[25]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[4]) - (20*f_6_2*sin2th*f[24]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*f_7_2*sin2th*f[24]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*cos2th*f_6_2*f[25]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*cos2th*f_7_2*f[25]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_6_2*f[24]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_7_2*f[24]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*f_6_2*sin2th*f[25]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*f_7_2*sin2th*f[25]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_6_2*f[24]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_7_2*f[24]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[4]) - (20*f_6_2*sin2th*f[25]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[4]) - (20*f_7_2*sin2th*f[25]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*f_6_2*sin2th*f[24]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*f_7_2*sin2th*f[24]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_6_2*f[25]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_7_2*f[25]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (30*cos2th*f_10_2*f[24]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_11_2*f[24]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[4]) - (30*f_10_2*sin2th*f[25]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[4]) - (30*f_11_2*sin2th*f[25]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*f_10_2*sin2th*f[24]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*f_11_2*sin2th*f[24]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_10_2*f[25]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_11_2*f[25]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*f_10_2*sin2th*f[24]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*f_11_2*sin2th*f[24]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_10_2*f[25]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_11_2*f[25]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[4]) - (30*cos2th*f_10_2*f[24]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[4]) - (30*cos2th*f_11_2*f[24]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*f_10_2*sin2th*f[25]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*f_11_2*sin2th*f[25]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[4]) - (30*f_10_2*sin2th*f[24]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*f_11_2*sin2th*f[24]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*cos2th*f_10_2*f[25]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*cos2th*f_11_2*f[25]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_10_2*f[24]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_11_2*f[24]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*f_10_2*sin2th*f[25]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*f_11_2*sin2th*f[25]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_10_2*f[24]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_11_2*f[24]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[4]) - (30*f_10_2*sin2th*f[25]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[4]) - (30*f_11_2*sin2th*f[25]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*f_10_2*sin2th*f[24]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*f_11_2*sin2th*f[24]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_10_2*f[25]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_11_2*f[25]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (35*cos2th*f_12_2*f[24]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_13_2*f[24]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[4]) - (35*f_12_2*sin2th*f[25]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[4]) - (35*f_13_2*sin2th*f[25]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*f_12_2*sin2th*f[24]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*f_13_2*sin2th*f[24]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_12_2*f[25]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_13_2*f[25]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*f_12_2*sin2th*f[24]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*f_13_2*sin2th*f[24]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_12_2*f[25]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_13_2*f[25]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[4]) - (35*cos2th*f_12_2*f[24]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[4]) - (35*cos2th*f_13_2*f[24]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*f_12_2*sin2th*f[25]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*f_13_2*sin2th*f[25]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[4]) - (35*f_12_2*sin2th*f[24]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*f_13_2*sin2th*f[24]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*cos2th*f_12_2*f[25]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*cos2th*f_13_2*f[25]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_12_2*f[24]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_13_2*f[24]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*f_12_2*sin2th*f[25]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*f_13_2*sin2th*f[25]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_12_2*f[24]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_13_2*f[24]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[4]) - (35*f_12_2*sin2th*f[25]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[4]) - (35*f_13_2*sin2th*f[25]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*f_12_2*sin2th*f[24]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*f_13_2*sin2th*f[24]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_12_2*f[25]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_13_2*f[25]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (8*cos2th*f_2_2*f[22]*f[24]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_3_2*f[22]*f[24]*f[70]*f[72])/(U[0] - 3*U[4]) - (8*f_2_2*sin2th*f[23]*f[24]*f[70]*f[72])/(U[0] - 3*U[4]) - (8*f_3_2*sin2th*f[23]*f[24]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*f_2_2*sin2th*f[22]*f[25]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*f_3_2*sin2th*f[22]*f[25]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_2_2*f[23]*f[25]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_3_2*f[23]*f[25]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*f_2_2*sin2th*f[22]*f[24]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*f_3_2*sin2th*f[22]*f[24]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_2_2*f[23]*f[24]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_3_2*f[23]*f[24]*f[71]*f[72])/(U[0] - 3*U[4]) - (8*cos2th*f_2_2*f[22]*f[25]*f[71]*f[72])/(U[0] - 3*U[4]) - (8*cos2th*f_3_2*f[22]*f[25]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*f_2_2*sin2th*f[23]*f[25]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*f_3_2*sin2th*f[23]*f[25]*f[71]*f[72])/(U[0] - 3*U[4]) - (8*f_2_2*sin2th*f[22]*f[24]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*f_3_2*sin2th*f[22]*f[24]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*cos2th*f_2_2*f[23]*f[24]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*cos2th*f_3_2*f[23]*f[24]*f[70]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_2_2*f[22]*f[25]*f[70]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_3_2*f[22]*f[25]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*f_2_2*sin2th*f[23]*f[25]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*f_3_2*sin2th*f[23]*f[25]*f[70]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_2_2*f[22]*f[24]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_3_2*f[22]*f[24]*f[71]*f[73])/(U[0] - 3*U[4]) - (8*f_2_2*sin2th*f[23]*f[24]*f[71]*f[73])/(U[0] - 3*U[4]) - (8*f_3_2*sin2th*f[23]*f[24]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*f_2_2*sin2th*f[22]*f[25]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*f_3_2*sin2th*f[22]*f[25]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_2_2*f[23]*f[25]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_3_2*f[23]*f[25]*f[71]*f[73])/(U[0] - 3*U[4]) + (12*cos2th*f_4_2*f[22]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_5_2*f[22]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[4]) - (12*f_4_2*sin2th*f[23]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[4]) - (12*f_5_2*sin2th*f[23]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*f_4_2*sin2th*f[22]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*f_5_2*sin2th*f[22]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_4_2*f[23]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_5_2*f[23]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*f_4_2*sin2th*f[22]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*f_5_2*sin2th*f[22]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_4_2*f[23]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_5_2*f[23]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[4]) - (12*cos2th*f_4_2*f[22]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[4]) - (12*cos2th*f_5_2*f[22]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*f_4_2*sin2th*f[23]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*f_5_2*sin2th*f[23]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[4]) - (12*f_4_2*sin2th*f[22]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*f_5_2*sin2th*f[22]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*cos2th*f_4_2*f[23]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*cos2th*f_5_2*f[23]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_4_2*f[22]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_5_2*f[22]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*f_4_2*sin2th*f[23]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*f_5_2*sin2th*f[23]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_4_2*f[22]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_5_2*f[22]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[4]) - (12*f_4_2*sin2th*f[23]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[4]) - (12*f_5_2*sin2th*f[23]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*f_4_2*sin2th*f[22]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*f_5_2*sin2th*f[22]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_4_2*f[23]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_5_2*f[23]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (20*cos2th*f_8_2*f[22]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_9_2*f[22]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[4]) - (20*f_8_2*sin2th*f[23]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[4]) - (20*f_9_2*sin2th*f[23]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*f_8_2*sin2th*f[22]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*f_9_2*sin2th*f[22]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_8_2*f[23]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_9_2*f[23]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*f_8_2*sin2th*f[22]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*f_9_2*sin2th*f[22]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_8_2*f[23]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_9_2*f[23]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[4]) - (20*cos2th*f_8_2*f[22]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[4]) - (20*cos2th*f_9_2*f[22]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*f_8_2*sin2th*f[23]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*f_9_2*sin2th*f[23]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[4]) - (20*f_8_2*sin2th*f[22]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*f_9_2*sin2th*f[22]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*cos2th*f_8_2*f[23]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*cos2th*f_9_2*f[23]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_8_2*f[22]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_9_2*f[22]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*f_8_2*sin2th*f[23]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*f_9_2*sin2th*f[23]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_8_2*f[22]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_9_2*f[22]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[4]) - (20*f_8_2*sin2th*f[23]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[4]) - (20*f_9_2*sin2th*f[23]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*f_8_2*sin2th*f[22]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*f_9_2*sin2th*f[22]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_8_2*f[23]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_9_2*f[23]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (24*cos2th*f_10_2*f[22]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_11_2*f[22]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[4]) - (24*f_10_2*sin2th*f[23]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[4]) - (24*f_11_2*sin2th*f[23]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*f_10_2*sin2th*f[22]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*f_11_2*sin2th*f[22]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_10_2*f[23]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_11_2*f[23]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*f_10_2*sin2th*f[22]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*f_11_2*sin2th*f[22]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_10_2*f[23]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_11_2*f[23]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[4]) - (24*cos2th*f_10_2*f[22]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[4]) - (24*cos2th*f_11_2*f[22]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*f_10_2*sin2th*f[23]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*f_11_2*sin2th*f[23]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[4]) - (24*f_10_2*sin2th*f[22]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*f_11_2*sin2th*f[22]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*cos2th*f_10_2*f[23]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*cos2th*f_11_2*f[23]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_10_2*f[22]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_11_2*f[22]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*f_10_2*sin2th*f[23]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*f_11_2*sin2th*f[23]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_10_2*f[22]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_11_2*f[22]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[4]) - (24*f_10_2*sin2th*f[23]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[4]) - (24*f_11_2*sin2th*f[23]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*f_10_2*sin2th*f[22]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*f_11_2*sin2th*f[22]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_10_2*f[23]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_11_2*f[23]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (28*cos2th*f_12_2*f[22]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_13_2*f[22]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[4]) - (28*f_12_2*sin2th*f[23]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[4]) - (28*f_13_2*sin2th*f[23]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*f_12_2*sin2th*f[22]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*f_13_2*sin2th*f[22]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_12_2*f[23]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_13_2*f[23]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*f_12_2*sin2th*f[22]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*f_13_2*sin2th*f[22]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_12_2*f[23]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_13_2*f[23]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[4]) - (28*cos2th*f_12_2*f[22]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[4]) - (28*cos2th*f_13_2*f[22]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*f_12_2*sin2th*f[23]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*f_13_2*sin2th*f[23]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[4]) - (28*f_12_2*sin2th*f[22]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*f_13_2*sin2th*f[22]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*cos2th*f_12_2*f[23]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*cos2th*f_13_2*f[23]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_12_2*f[22]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_13_2*f[22]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*f_12_2*sin2th*f[23]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*f_13_2*sin2th*f[23]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_12_2*f[22]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_13_2*f[22]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[4]) - (28*f_12_2*sin2th*f[23]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[4]) - (28*f_13_2*sin2th*f[23]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*f_12_2*sin2th*f[22]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*f_13_2*sin2th*f[22]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_12_2*f[23]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_13_2*f[23]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (6*cos2th*f_2_2*f[20]*f[22]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_3_2*f[20]*f[22]*f[68]*f[70])/(U[0] - 2*U[4]) - (6*f_2_2*sin2th*f[21]*f[22]*f[68]*f[70])/(U[0] - 2*U[4]) - (6*f_3_2*sin2th*f[21]*f[22]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*f_2_2*sin2th*f[20]*f[23]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*f_3_2*sin2th*f[20]*f[23]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_2_2*f[21]*f[23]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_3_2*f[21]*f[23]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*f_2_2*sin2th*f[20]*f[22]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*f_3_2*sin2th*f[20]*f[22]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_2_2*f[21]*f[22]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_3_2*f[21]*f[22]*f[69]*f[70])/(U[0] - 2*U[4]) - (6*cos2th*f_2_2*f[20]*f[23]*f[69]*f[70])/(U[0] - 2*U[4]) - (6*cos2th*f_3_2*f[20]*f[23]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*f_2_2*sin2th*f[21]*f[23]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*f_3_2*sin2th*f[21]*f[23]*f[69]*f[70])/(U[0] - 2*U[4]) - (6*f_2_2*sin2th*f[20]*f[22]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*f_3_2*sin2th*f[20]*f[22]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*cos2th*f_2_2*f[21]*f[22]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*cos2th*f_3_2*f[21]*f[22]*f[68]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_2_2*f[20]*f[23]*f[68]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_3_2*f[20]*f[23]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*f_2_2*sin2th*f[21]*f[23]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*f_3_2*sin2th*f[21]*f[23]*f[68]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_2_2*f[20]*f[22]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_3_2*f[20]*f[22]*f[69]*f[71])/(U[0] - 2*U[4]) - (6*f_2_2*sin2th*f[21]*f[22]*f[69]*f[71])/(U[0] - 2*U[4]) - (6*f_3_2*sin2th*f[21]*f[22]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*f_2_2*sin2th*f[20]*f[23]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*f_3_2*sin2th*f[20]*f[23]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_2_2*f[21]*f[23]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_3_2*f[21]*f[23]*f[69]*f[71])/(U[0] - 2*U[4]) + (12*cos2th*f_6_2*f[20]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_7_2*f[20]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[4]) - (12*f_6_2*sin2th*f[21]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[4]) - (12*f_7_2*sin2th*f[21]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*f_6_2*sin2th*f[20]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*f_7_2*sin2th*f[20]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_6_2*f[21]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_7_2*f[21]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*f_6_2*sin2th*f[20]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*f_7_2*sin2th*f[20]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_6_2*f[21]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_7_2*f[21]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[4]) - (12*cos2th*f_6_2*f[20]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[4]) - (12*cos2th*f_7_2*f[20]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*f_6_2*sin2th*f[21]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*f_7_2*sin2th*f[21]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[4]) - (12*f_6_2*sin2th*f[20]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*f_7_2*sin2th*f[20]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*cos2th*f_6_2*f[21]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*cos2th*f_7_2*f[21]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_6_2*f[20]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_7_2*f[20]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*f_6_2*sin2th*f[21]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*f_7_2*sin2th*f[21]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_6_2*f[20]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_7_2*f[20]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[4]) - (12*f_6_2*sin2th*f[21]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[4]) - (12*f_7_2*sin2th*f[21]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*f_6_2*sin2th*f[20]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*f_7_2*sin2th*f[20]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_6_2*f[21]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_7_2*f[21]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (15*cos2th*f_8_2*f[20]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_9_2*f[20]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[4]) - (15*f_8_2*sin2th*f[21]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[4]) - (15*f_9_2*sin2th*f[21]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*f_8_2*sin2th*f[20]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*f_9_2*sin2th*f[20]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_8_2*f[21]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_9_2*f[21]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*f_8_2*sin2th*f[20]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*f_9_2*sin2th*f[20]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_8_2*f[21]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_9_2*f[21]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[4]) - (15*cos2th*f_8_2*f[20]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[4]) - (15*cos2th*f_9_2*f[20]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*f_8_2*sin2th*f[21]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*f_9_2*sin2th*f[21]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[4]) - (15*f_8_2*sin2th*f[20]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*f_9_2*sin2th*f[20]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*cos2th*f_8_2*f[21]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*cos2th*f_9_2*f[21]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_8_2*f[20]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_9_2*f[20]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*f_8_2*sin2th*f[21]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*f_9_2*sin2th*f[21]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_8_2*f[20]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_9_2*f[20]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[4]) - (15*f_8_2*sin2th*f[21]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[4]) - (15*f_9_2*sin2th*f[21]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*f_8_2*sin2th*f[20]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*f_9_2*sin2th*f[20]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_8_2*f[21]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_9_2*f[21]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (18*cos2th*f_10_2*f[20]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_11_2*f[20]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[4]) - (18*f_10_2*sin2th*f[21]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[4]) - (18*f_11_2*sin2th*f[21]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*f_10_2*sin2th*f[20]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*f_11_2*sin2th*f[20]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_10_2*f[21]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_11_2*f[21]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*f_10_2*sin2th*f[20]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*f_11_2*sin2th*f[20]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_10_2*f[21]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_11_2*f[21]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[4]) - (18*cos2th*f_10_2*f[20]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[4]) - (18*cos2th*f_11_2*f[20]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*f_10_2*sin2th*f[21]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*f_11_2*sin2th*f[21]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[4]) - (18*f_10_2*sin2th*f[20]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*f_11_2*sin2th*f[20]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*cos2th*f_10_2*f[21]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*cos2th*f_11_2*f[21]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_10_2*f[20]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_11_2*f[20]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*f_10_2*sin2th*f[21]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*f_11_2*sin2th*f[21]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_10_2*f[20]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_11_2*f[20]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[4]) - (18*f_10_2*sin2th*f[21]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[4]) - (18*f_11_2*sin2th*f[21]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*f_10_2*sin2th*f[20]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*f_11_2*sin2th*f[20]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_10_2*f[21]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_11_2*f[21]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (21*cos2th*f_12_2*f[20]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_13_2*f[20]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[4]) - (21*f_12_2*sin2th*f[21]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[4]) - (21*f_13_2*sin2th*f[21]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*f_12_2*sin2th*f[20]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*f_13_2*sin2th*f[20]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_12_2*f[21]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_13_2*f[21]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*f_12_2*sin2th*f[20]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*f_13_2*sin2th*f[20]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_12_2*f[21]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_13_2*f[21]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[4]) - (21*cos2th*f_12_2*f[20]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[4]) - (21*cos2th*f_13_2*f[20]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*f_12_2*sin2th*f[21]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*f_13_2*sin2th*f[21]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[4]) - (21*f_12_2*sin2th*f[20]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*f_13_2*sin2th*f[20]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*cos2th*f_12_2*f[21]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*cos2th*f_13_2*f[21]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_12_2*f[20]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_13_2*f[20]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*f_12_2*sin2th*f[21]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*f_13_2*sin2th*f[21]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_12_2*f[20]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_13_2*f[20]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[4]) - (21*f_12_2*sin2th*f[21]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[4]) - (21*f_13_2*sin2th*f[21]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*f_12_2*sin2th*f[20]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*f_13_2*sin2th*f[20]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_12_2*f[21]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_13_2*f[21]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (6*cos2th*f_4_2*f[18]*f[20]*f[66]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_5_2*f[18]*f[20]*f[66]*f[68])/(2*U[0] - U[4]) - (6*f_4_2*sin2th*f[19]*f[20]*f[66]*f[68])/(2*U[0] - U[4]) - (6*f_5_2*sin2th*f[19]*f[20]*f[66]*f[68])/(2*U[0] - U[4]) + (6*f_4_2*sin2th*f[18]*f[21]*f[66]*f[68])/(2*U[0] - U[4]) + (6*f_5_2*sin2th*f[18]*f[21]*f[66]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_4_2*f[19]*f[21]*f[66]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_5_2*f[19]*f[21]*f[66]*f[68])/(2*U[0] - U[4]) + (6*f_4_2*sin2th*f[18]*f[20]*f[67]*f[68])/(2*U[0] - U[4]) + (6*f_5_2*sin2th*f[18]*f[20]*f[67]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_4_2*f[19]*f[20]*f[67]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_5_2*f[19]*f[20]*f[67]*f[68])/(2*U[0] - U[4]) - (6*cos2th*f_4_2*f[18]*f[21]*f[67]*f[68])/(2*U[0] - U[4]) - (6*cos2th*f_5_2*f[18]*f[21]*f[67]*f[68])/(2*U[0] - U[4]) + (6*f_4_2*sin2th*f[19]*f[21]*f[67]*f[68])/(2*U[0] - U[4]) + (6*f_5_2*sin2th*f[19]*f[21]*f[67]*f[68])/(2*U[0] - U[4]) - (6*f_4_2*sin2th*f[18]*f[20]*f[66]*f[69])/(2*U[0] - U[4]) - (6*f_5_2*sin2th*f[18]*f[20]*f[66]*f[69])/(2*U[0] - U[4]) - (6*cos2th*f_4_2*f[19]*f[20]*f[66]*f[69])/(2*U[0] - U[4]) - (6*cos2th*f_5_2*f[19]*f[20]*f[66]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_4_2*f[18]*f[21]*f[66]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_5_2*f[18]*f[21]*f[66]*f[69])/(2*U[0] - U[4]) - (6*f_4_2*sin2th*f[19]*f[21]*f[66]*f[69])/(2*U[0] - U[4]) - (6*f_5_2*sin2th*f[19]*f[21]*f[66]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_4_2*f[18]*f[20]*f[67]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_5_2*f[18]*f[20]*f[67]*f[69])/(2*U[0] - U[4]) - (6*f_4_2*sin2th*f[19]*f[20]*f[67]*f[69])/(2*U[0] - U[4]) - (6*f_5_2*sin2th*f[19]*f[20]*f[67]*f[69])/(2*U[0] - U[4]) + (6*f_4_2*sin2th*f[18]*f[21]*f[67]*f[69])/(2*U[0] - U[4]) + (6*f_5_2*sin2th*f[18]*f[21]*f[67]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_4_2*f[19]*f[21]*f[67]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_5_2*f[19]*f[21]*f[67]*f[69])/(2*U[0] - U[4]) + (8*cos2th*f_6_2*f[18]*f[20]*f[66]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_7_2*f[18]*f[20]*f[66]*f[68])/(3*U[0] - U[4]) - (8*f_6_2*sin2th*f[19]*f[20]*f[66]*f[68])/(3*U[0] - U[4]) - (8*f_7_2*sin2th*f[19]*f[20]*f[66]*f[68])/(3*U[0] - U[4]) + (8*f_6_2*sin2th*f[18]*f[21]*f[66]*f[68])/(3*U[0] - U[4]) + (8*f_7_2*sin2th*f[18]*f[21]*f[66]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_6_2*f[19]*f[21]*f[66]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_7_2*f[19]*f[21]*f[66]*f[68])/(3*U[0] - U[4]) + (8*f_6_2*sin2th*f[18]*f[20]*f[67]*f[68])/(3*U[0] - U[4]) + (8*f_7_2*sin2th*f[18]*f[20]*f[67]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_6_2*f[19]*f[20]*f[67]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_7_2*f[19]*f[20]*f[67]*f[68])/(3*U[0] - U[4]) - (8*cos2th*f_6_2*f[18]*f[21]*f[67]*f[68])/(3*U[0] - U[4]) - (8*cos2th*f_7_2*f[18]*f[21]*f[67]*f[68])/(3*U[0] - U[4]) + (8*f_6_2*sin2th*f[19]*f[21]*f[67]*f[68])/(3*U[0] - U[4]) + (8*f_7_2*sin2th*f[19]*f[21]*f[67]*f[68])/(3*U[0] - U[4]) - (8*f_6_2*sin2th*f[18]*f[20]*f[66]*f[69])/(3*U[0] - U[4]) - (8*f_7_2*sin2th*f[18]*f[20]*f[66]*f[69])/(3*U[0] - U[4]) - (8*cos2th*f_6_2*f[19]*f[20]*f[66]*f[69])/(3*U[0] - U[4]) - (8*cos2th*f_7_2*f[19]*f[20]*f[66]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_6_2*f[18]*f[21]*f[66]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_7_2*f[18]*f[21]*f[66]*f[69])/(3*U[0] - U[4]) - (8*f_6_2*sin2th*f[19]*f[21]*f[66]*f[69])/(3*U[0] - U[4]) - (8*f_7_2*sin2th*f[19]*f[21]*f[66]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_6_2*f[18]*f[20]*f[67]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_7_2*f[18]*f[20]*f[67]*f[69])/(3*U[0] - U[4]) - (8*f_6_2*sin2th*f[19]*f[20]*f[67]*f[69])/(3*U[0] - U[4]) - (8*f_7_2*sin2th*f[19]*f[20]*f[67]*f[69])/(3*U[0] - U[4]) + (8*f_6_2*sin2th*f[18]*f[21]*f[67]*f[69])/(3*U[0] - U[4]) + (8*f_7_2*sin2th*f[18]*f[21]*f[67]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_6_2*f[19]*f[21]*f[67]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_7_2*f[19]*f[21]*f[67]*f[69])/(3*U[0] - U[4]) + (10*cos2th*f_8_2*f[18]*f[20]*f[66]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_9_2*f[18]*f[20]*f[66]*f[68])/(4*U[0] - U[4]) - (10*f_8_2*sin2th*f[19]*f[20]*f[66]*f[68])/(4*U[0] - U[4]) - (10*f_9_2*sin2th*f[19]*f[20]*f[66]*f[68])/(4*U[0] - U[4]) + (10*f_8_2*sin2th*f[18]*f[21]*f[66]*f[68])/(4*U[0] - U[4]) + (10*f_9_2*sin2th*f[18]*f[21]*f[66]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_8_2*f[19]*f[21]*f[66]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_9_2*f[19]*f[21]*f[66]*f[68])/(4*U[0] - U[4]) + (10*f_8_2*sin2th*f[18]*f[20]*f[67]*f[68])/(4*U[0] - U[4]) + (10*f_9_2*sin2th*f[18]*f[20]*f[67]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_8_2*f[19]*f[20]*f[67]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_9_2*f[19]*f[20]*f[67]*f[68])/(4*U[0] - U[4]) - (10*cos2th*f_8_2*f[18]*f[21]*f[67]*f[68])/(4*U[0] - U[4]) - (10*cos2th*f_9_2*f[18]*f[21]*f[67]*f[68])/(4*U[0] - U[4]) + (10*f_8_2*sin2th*f[19]*f[21]*f[67]*f[68])/(4*U[0] - U[4]) + (10*f_9_2*sin2th*f[19]*f[21]*f[67]*f[68])/(4*U[0] - U[4]) - (10*f_8_2*sin2th*f[18]*f[20]*f[66]*f[69])/(4*U[0] - U[4]) - (10*f_9_2*sin2th*f[18]*f[20]*f[66]*f[69])/(4*U[0] - U[4]) - (10*cos2th*f_8_2*f[19]*f[20]*f[66]*f[69])/(4*U[0] - U[4]) - (10*cos2th*f_9_2*f[19]*f[20]*f[66]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_8_2*f[18]*f[21]*f[66]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_9_2*f[18]*f[21]*f[66]*f[69])/(4*U[0] - U[4]) - (10*f_8_2*sin2th*f[19]*f[21]*f[66]*f[69])/(4*U[0] - U[4]) - (10*f_9_2*sin2th*f[19]*f[21]*f[66]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_8_2*f[18]*f[20]*f[67]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_9_2*f[18]*f[20]*f[67]*f[69])/(4*U[0] - U[4]) - (10*f_8_2*sin2th*f[19]*f[20]*f[67]*f[69])/(4*U[0] - U[4]) - (10*f_9_2*sin2th*f[19]*f[20]*f[67]*f[69])/(4*U[0] - U[4]) + (10*f_8_2*sin2th*f[18]*f[21]*f[67]*f[69])/(4*U[0] - U[4]) + (10*f_9_2*sin2th*f[18]*f[21]*f[67]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_8_2*f[19]*f[21]*f[67]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_9_2*f[19]*f[21]*f[67]*f[69])/(4*U[0] - U[4]) + (12*cos2th*f_10_2*f[18]*f[20]*f[66]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_11_2*f[18]*f[20]*f[66]*f[68])/(5*U[0] - U[4]) - (12*f_10_2*sin2th*f[19]*f[20]*f[66]*f[68])/(5*U[0] - U[4]) - (12*f_11_2*sin2th*f[19]*f[20]*f[66]*f[68])/(5*U[0] - U[4]) + (12*f_10_2*sin2th*f[18]*f[21]*f[66]*f[68])/(5*U[0] - U[4]) + (12*f_11_2*sin2th*f[18]*f[21]*f[66]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_10_2*f[19]*f[21]*f[66]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_11_2*f[19]*f[21]*f[66]*f[68])/(5*U[0] - U[4]) + (12*f_10_2*sin2th*f[18]*f[20]*f[67]*f[68])/(5*U[0] - U[4]) + (12*f_11_2*sin2th*f[18]*f[20]*f[67]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_10_2*f[19]*f[20]*f[67]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_11_2*f[19]*f[20]*f[67]*f[68])/(5*U[0] - U[4]) - (12*cos2th*f_10_2*f[18]*f[21]*f[67]*f[68])/(5*U[0] - U[4]) - (12*cos2th*f_11_2*f[18]*f[21]*f[67]*f[68])/(5*U[0] - U[4]) + (12*f_10_2*sin2th*f[19]*f[21]*f[67]*f[68])/(5*U[0] - U[4]) + (12*f_11_2*sin2th*f[19]*f[21]*f[67]*f[68])/(5*U[0] - U[4]) - (12*f_10_2*sin2th*f[18]*f[20]*f[66]*f[69])/(5*U[0] - U[4]) - (12*f_11_2*sin2th*f[18]*f[20]*f[66]*f[69])/(5*U[0] - U[4]) - (12*cos2th*f_10_2*f[19]*f[20]*f[66]*f[69])/(5*U[0] - U[4]) - (12*cos2th*f_11_2*f[19]*f[20]*f[66]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_10_2*f[18]*f[21]*f[66]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_11_2*f[18]*f[21]*f[66]*f[69])/(5*U[0] - U[4]) - (12*f_10_2*sin2th*f[19]*f[21]*f[66]*f[69])/(5*U[0] - U[4]) - (12*f_11_2*sin2th*f[19]*f[21]*f[66]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_10_2*f[18]*f[20]*f[67]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_11_2*f[18]*f[20]*f[67]*f[69])/(5*U[0] - U[4]) - (12*f_10_2*sin2th*f[19]*f[20]*f[67]*f[69])/(5*U[0] - U[4]) - (12*f_11_2*sin2th*f[19]*f[20]*f[67]*f[69])/(5*U[0] - U[4]) + (12*f_10_2*sin2th*f[18]*f[21]*f[67]*f[69])/(5*U[0] - U[4]) + (12*f_11_2*sin2th*f[18]*f[21]*f[67]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_10_2*f[19]*f[21]*f[67]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_11_2*f[19]*f[21]*f[67]*f[69])/(5*U[0] - U[4]) + (14*cos2th*f_12_2*f[18]*f[20]*f[66]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_13_2*f[18]*f[20]*f[66]*f[68])/(6*U[0] - U[4]) - (14*f_12_2*sin2th*f[19]*f[20]*f[66]*f[68])/(6*U[0] - U[4]) - (14*f_13_2*sin2th*f[19]*f[20]*f[66]*f[68])/(6*U[0] - U[4]) + (14*f_12_2*sin2th*f[18]*f[21]*f[66]*f[68])/(6*U[0] - U[4]) + (14*f_13_2*sin2th*f[18]*f[21]*f[66]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_12_2*f[19]*f[21]*f[66]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_13_2*f[19]*f[21]*f[66]*f[68])/(6*U[0] - U[4]) + (14*f_12_2*sin2th*f[18]*f[20]*f[67]*f[68])/(6*U[0] - U[4]) + (14*f_13_2*sin2th*f[18]*f[20]*f[67]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_12_2*f[19]*f[20]*f[67]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_13_2*f[19]*f[20]*f[67]*f[68])/(6*U[0] - U[4]) - (14*cos2th*f_12_2*f[18]*f[21]*f[67]*f[68])/(6*U[0] - U[4]) - (14*cos2th*f_13_2*f[18]*f[21]*f[67]*f[68])/(6*U[0] - U[4]) + (14*f_12_2*sin2th*f[19]*f[21]*f[67]*f[68])/(6*U[0] - U[4]) + (14*f_13_2*sin2th*f[19]*f[21]*f[67]*f[68])/(6*U[0] - U[4]) - (14*f_12_2*sin2th*f[18]*f[20]*f[66]*f[69])/(6*U[0] - U[4]) - (14*f_13_2*sin2th*f[18]*f[20]*f[66]*f[69])/(6*U[0] - U[4]) - (14*cos2th*f_12_2*f[19]*f[20]*f[66]*f[69])/(6*U[0] - U[4]) - (14*cos2th*f_13_2*f[19]*f[20]*f[66]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_12_2*f[18]*f[21]*f[66]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_13_2*f[18]*f[21]*f[66]*f[69])/(6*U[0] - U[4]) - (14*f_12_2*sin2th*f[19]*f[21]*f[66]*f[69])/(6*U[0] - U[4]) - (14*f_13_2*sin2th*f[19]*f[21]*f[66]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_12_2*f[18]*f[20]*f[67]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_13_2*f[18]*f[20]*f[67]*f[69])/(6*U[0] - U[4]) - (14*f_12_2*sin2th*f[19]*f[20]*f[67]*f[69])/(6*U[0] - U[4]) - (14*f_13_2*sin2th*f[19]*f[20]*f[67]*f[69])/(6*U[0] - U[4]) + (14*f_12_2*sin2th*f[18]*f[21]*f[67]*f[69])/(6*U[0] - U[4]) + (14*f_13_2*sin2th*f[18]*f[21]*f[67]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_12_2*f[19]*f[21]*f[67]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_13_2*f[19]*f[21]*f[67]*f[69])/(6*U[0] - U[4]) - (2*cos2th*f_0_2*f[18]*f[20]*f[66]*f[68])/U[4] - (2*cos2th*f_1_2*f[18]*f[20]*f[66]*f[68])/U[4] + (2*f_0_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[4] + (2*f_1_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[4] - (2*f_0_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[4] - (2*f_1_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[4] - (2*cos2th*f_0_2*f[19]*f[21]*f[66]*f[68])/U[4] - (2*cos2th*f_1_2*f[19]*f[21]*f[66]*f[68])/U[4] - (2*f_0_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[4] - (2*f_1_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[4] - (2*cos2th*f_0_2*f[19]*f[20]*f[67]*f[68])/U[4] - (2*cos2th*f_1_2*f[19]*f[20]*f[67]*f[68])/U[4] + (2*cos2th*f_0_2*f[18]*f[21]*f[67]*f[68])/U[4] + (2*cos2th*f_1_2*f[18]*f[21]*f[67]*f[68])/U[4] - (2*f_0_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[4] - (2*f_1_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[4] + (2*f_0_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[4] + (2*f_1_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[4] + (2*cos2th*f_0_2*f[19]*f[20]*f[66]*f[69])/U[4] + (2*cos2th*f_1_2*f[19]*f[20]*f[66]*f[69])/U[4] - (2*cos2th*f_0_2*f[18]*f[21]*f[66]*f[69])/U[4] - (2*cos2th*f_1_2*f[18]*f[21]*f[66]*f[69])/U[4] + (2*f_0_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[4] + (2*f_1_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[4] - (2*cos2th*f_0_2*f[18]*f[20]*f[67]*f[69])/U[4] - (2*cos2th*f_1_2*f[18]*f[20]*f[67]*f[69])/U[4] + (2*f_0_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[4] + (2*f_1_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[4] - (2*f_0_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[4] - (2*f_1_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[4] - (2*cos2th*f_0_2*f[19]*f[21]*f[67]*f[69])/U[4] - (2*cos2th*f_1_2*f[19]*f[21]*f[67]*f[69])/U[4] - (3*cos2th*f_0_2*f[20]*f[22]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_1_2*f[20]*f[22]*f[68]*f[70])/(2.*U[4]) + (3*f_0_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[4]) + (3*f_1_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[4]) - (3*f_0_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[4]) - (3*f_1_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_0_2*f[21]*f[23]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_1_2*f[21]*f[23]*f[68]*f[70])/(2.*U[4]) - (3*f_0_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[4]) - (3*f_1_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_0_2*f[21]*f[22]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_1_2*f[21]*f[22]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_0_2*f[20]*f[23]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_1_2*f[20]*f[23]*f[69]*f[70])/(2.*U[4]) - (3*f_0_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[4]) - (3*f_1_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[4]) + (3*f_0_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[4]) + (3*f_1_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_0_2*f[21]*f[22]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_1_2*f[21]*f[22]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_0_2*f[20]*f[23]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_1_2*f[20]*f[23]*f[68]*f[71])/(2.*U[4]) + (3*f_0_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[4]) + (3*f_1_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_0_2*f[20]*f[22]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_1_2*f[20]*f[22]*f[69]*f[71])/(2.*U[4]) + (3*f_0_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[4]) + (3*f_1_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[4]) - (3*f_0_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[4]) - (3*f_1_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_0_2*f[21]*f[23]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_1_2*f[21]*f[23]*f[69]*f[71])/(2.*U[4]) - (4*cos2th*f_0_2*f[22]*f[24]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_1_2*f[22]*f[24]*f[70]*f[72])/(3.*U[4]) + (4*f_0_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[4]) + (4*f_1_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[4]) - (4*f_0_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[4]) - (4*f_1_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_0_2*f[23]*f[25]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_1_2*f[23]*f[25]*f[70]*f[72])/(3.*U[4]) - (4*f_0_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[4]) - (4*f_1_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_0_2*f[23]*f[24]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_1_2*f[23]*f[24]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_0_2*f[22]*f[25]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_1_2*f[22]*f[25]*f[71]*f[72])/(3.*U[4]) - (4*f_0_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[4]) - (4*f_1_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[4]) + (4*f_0_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[4]) + (4*f_1_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_0_2*f[23]*f[24]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_1_2*f[23]*f[24]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_0_2*f[22]*f[25]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_1_2*f[22]*f[25]*f[70]*f[73])/(3.*U[4]) + (4*f_0_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[4]) + (4*f_1_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_0_2*f[22]*f[24]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_1_2*f[22]*f[24]*f[71]*f[73])/(3.*U[4]) + (4*f_0_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[4]) + (4*f_1_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[4]) - (4*f_0_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[4]) - (4*f_1_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_0_2*f[23]*f[25]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_1_2*f[23]*f[25]*f[71]*f[73])/(3.*U[4]) - (5*cos2th*f_0_2*f[24]*f[26]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_1_2*f[24]*f[26]*f[72]*f[74])/(4.*U[4]) + (5*f_0_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[4]) + (5*f_1_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[4]) - (5*f_0_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[4]) - (5*f_1_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_0_2*f[25]*f[27]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_1_2*f[25]*f[27]*f[72]*f[74])/(4.*U[4]) - (5*f_0_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[4]) - (5*f_1_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_0_2*f[25]*f[26]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_1_2*f[25]*f[26]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_0_2*f[24]*f[27]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_1_2*f[24]*f[27]*f[73]*f[74])/(4.*U[4]) - (5*f_0_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[4]) - (5*f_1_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[4]) + (5*f_0_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[4]) + (5*f_1_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_0_2*f[25]*f[26]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_1_2*f[25]*f[26]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_0_2*f[24]*f[27]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_1_2*f[24]*f[27]*f[72]*f[75])/(4.*U[4]) + (5*f_0_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[4]) + (5*f_1_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_0_2*f[24]*f[26]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_1_2*f[24]*f[26]*f[73]*f[75])/(4.*U[4]) + (5*f_0_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[4]) + (5*f_1_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[4]) - (5*f_0_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[4]) - (5*f_1_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_0_2*f[25]*f[27]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_1_2*f[25]*f[27]*f[73]*f[75])/(4.*U[4]) - (6*cos2th*f_0_2*f[26]*f[28]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_1_2*f[26]*f[28]*f[74]*f[76])/(5.*U[4]) + (6*f_0_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[4]) + (6*f_1_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[4]) - (6*f_0_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[4]) - (6*f_1_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_0_2*f[27]*f[29]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_1_2*f[27]*f[29]*f[74]*f[76])/(5.*U[4]) - (6*f_0_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[4]) - (6*f_1_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_0_2*f[27]*f[28]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_1_2*f[27]*f[28]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_0_2*f[26]*f[29]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_1_2*f[26]*f[29]*f[75]*f[76])/(5.*U[4]) - (6*f_0_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[4]) - (6*f_1_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[4]) + (6*f_0_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[4]) + (6*f_1_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_0_2*f[27]*f[28]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_1_2*f[27]*f[28]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_0_2*f[26]*f[29]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_1_2*f[26]*f[29]*f[74]*f[77])/(5.*U[4]) + (6*f_0_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[4]) + (6*f_1_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_0_2*f[26]*f[28]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_1_2*f[26]*f[28]*f[75]*f[77])/(5.*U[4]) + (6*f_0_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[4]) + (6*f_1_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[4]) - (6*f_0_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[4]) - (6*f_1_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_0_2*f[27]*f[29]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_1_2*f[27]*f[29]*f[75]*f[77])/(5.*U[4]) - (7*cos2th*f_0_2*f[28]*f[30]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_1_2*f[28]*f[30]*f[76]*f[78])/(6.*U[4]) + (7*f_0_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[4]) + (7*f_1_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[4]) - (7*f_0_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[4]) - (7*f_1_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_0_2*f[29]*f[31]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_1_2*f[29]*f[31]*f[76]*f[78])/(6.*U[4]) - (7*f_0_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[4]) - (7*f_1_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_0_2*f[29]*f[30]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_1_2*f[29]*f[30]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_0_2*f[28]*f[31]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_1_2*f[28]*f[31]*f[77]*f[78])/(6.*U[4]) - (7*f_0_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[4]) - (7*f_1_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[4]) + (7*f_0_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[4]) + (7*f_1_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_0_2*f[29]*f[30]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_1_2*f[29]*f[30]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_0_2*f[28]*f[31]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_1_2*f[28]*f[31]*f[76]*f[79])/(6.*U[4]) + (7*f_0_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[4]) + (7*f_1_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_0_2*f[28]*f[30]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_1_2*f[28]*f[30]*f[77]*f[79])/(6.*U[4]) + (7*f_0_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[4]) + (7*f_1_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[4]) - (7*f_0_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[4]) - (7*f_1_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_0_2*f[29]*f[31]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_1_2*f[29]*f[31]*f[77]*f[79])/(6.*U[4])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[0]*J[4]*((5*cos2th*f_10_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) + (5*cos2th*f_11_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) + (6*cos2th*f_12_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) + (6*cos2th*f_13_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) + (7*cos2th*f_14_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) + (7*cos2th*f_15_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) + (2*cos2th*f_4_2*f[16]*f[18]*f[64]*f[66])/U[0] + (2*cos2th*f_5_2*f[16]*f[18]*f[64]*f[66])/U[0] + (3*cos2th*f_6_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) + (3*cos2th*f_7_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) + (4*cos2th*f_8_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) + (4*cos2th*f_9_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) - (5*f_11_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) - (6*f_12_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) - (6*f_13_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) - (7*f_14_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) - (7*f_15_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) - (2*f_4_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] - (2*f_5_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] - (3*f_6_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) - (3*f_7_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) - (4*f_8_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) - (4*f_9_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) + (5*f_11_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) + (6*f_12_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) + (6*f_13_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) + (7*f_14_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) + (7*f_15_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) + (2*f_4_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] + (2*f_5_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] + (3*f_6_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) + (3*f_7_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) + (4*f_8_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) + (4*f_9_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) + (5*cos2th*f_10_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) + (5*cos2th*f_11_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) + (6*cos2th*f_12_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) + (6*cos2th*f_13_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) + (7*cos2th*f_14_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) + (7*cos2th*f_15_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) + (2*cos2th*f_4_2*f[17]*f[19]*f[64]*f[66])/U[0] + (2*cos2th*f_5_2*f[17]*f[19]*f[64]*f[66])/U[0] + (3*cos2th*f_6_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) + (3*cos2th*f_7_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) + (4*cos2th*f_8_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) + (4*cos2th*f_9_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) + (5*f_11_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) + (6*f_12_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) + (6*f_13_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) + (7*f_14_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) + (7*f_15_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) + (2*f_4_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] + (2*f_5_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] + (3*f_6_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) + (3*f_7_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) + (4*f_8_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) + (4*f_9_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) + (5*cos2th*f_10_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) + (5*cos2th*f_11_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) + (6*cos2th*f_12_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) + (6*cos2th*f_13_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) + (7*cos2th*f_14_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) + (7*cos2th*f_15_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) + (2*cos2th*f_4_2*f[17]*f[18]*f[65]*f[66])/U[0] + (2*cos2th*f_5_2*f[17]*f[18]*f[65]*f[66])/U[0] + (3*cos2th*f_6_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) + (3*cos2th*f_7_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) + (4*cos2th*f_8_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) + (4*cos2th*f_9_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) - (5*cos2th*f_10_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) - (5*cos2th*f_11_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) - (6*cos2th*f_12_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) - (6*cos2th*f_13_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) - (7*cos2th*f_14_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) - (7*cos2th*f_15_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) - (2*cos2th*f_4_2*f[16]*f[19]*f[65]*f[66])/U[0] - (2*cos2th*f_5_2*f[16]*f[19]*f[65]*f[66])/U[0] - (3*cos2th*f_6_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) - (3*cos2th*f_7_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) - (4*cos2th*f_8_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) - (4*cos2th*f_9_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) + (5*f_11_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) + (6*f_12_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) + (6*f_13_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) + (7*f_14_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) + (7*f_15_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) + (2*f_4_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] + (2*f_5_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] + (3*f_6_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) + (3*f_7_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) + (4*f_8_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) + (4*f_9_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) - (5*f_11_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) - (6*f_12_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) - (6*f_13_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) - (7*f_14_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) - (7*f_15_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) - (2*f_4_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] - (2*f_5_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] - (3*f_6_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) - (3*f_7_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) - (4*f_8_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) - (4*f_9_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_10_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) - (5*cos2th*f_11_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_12_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) - (6*cos2th*f_13_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) - (7*cos2th*f_14_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) - (7*cos2th*f_15_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) - (2*cos2th*f_4_2*f[17]*f[18]*f[64]*f[67])/U[0] - (2*cos2th*f_5_2*f[17]*f[18]*f[64]*f[67])/U[0] - (3*cos2th*f_6_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) - (3*cos2th*f_7_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) - (4*cos2th*f_8_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) - (4*cos2th*f_9_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_10_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) + (5*cos2th*f_11_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_12_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) + (6*cos2th*f_13_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) + (7*cos2th*f_14_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) + (7*cos2th*f_15_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) + (2*cos2th*f_4_2*f[16]*f[19]*f[64]*f[67])/U[0] + (2*cos2th*f_5_2*f[16]*f[19]*f[64]*f[67])/U[0] + (3*cos2th*f_6_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) + (3*cos2th*f_7_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) + (4*cos2th*f_8_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) + (4*cos2th*f_9_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) - (5*f_10_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) - (5*f_11_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) - (6*f_12_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) - (6*f_13_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) - (7*f_14_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) - (7*f_15_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) - (2*f_4_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] - (2*f_5_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] - (3*f_6_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) - (3*f_7_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) - (4*f_8_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) - (4*f_9_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_10_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) + (5*cos2th*f_11_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) + (6*cos2th*f_12_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) + (6*cos2th*f_13_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) + (7*cos2th*f_14_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) + (7*cos2th*f_15_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) + (2*cos2th*f_4_2*f[16]*f[18]*f[65]*f[67])/U[0] + (2*cos2th*f_5_2*f[16]*f[18]*f[65]*f[67])/U[0] + (3*cos2th*f_6_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) + (3*cos2th*f_7_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) + (4*cos2th*f_8_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) + (4*cos2th*f_9_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) - (5*f_10_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) - (5*f_11_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) - (6*f_12_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) - (6*f_13_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) - (7*f_14_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) - (7*f_15_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) - (2*f_4_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] - (2*f_5_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] - (3*f_6_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) - (3*f_7_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) - (4*f_8_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) - (4*f_9_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) + (5*f_10_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) + (5*f_11_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) + (6*f_12_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) + (6*f_13_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) + (7*f_14_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) + (7*f_15_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) + (2*f_4_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] + (2*f_5_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] + (3*f_6_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) + (3*f_7_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) + (4*f_8_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) + (4*f_9_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) + (5*cos2th*f_10_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (5*cos2th*f_11_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (6*cos2th*f_12_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) + (6*cos2th*f_13_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) + (7*cos2th*f_14_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) + (7*cos2th*f_15_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) + (2*cos2th*f_4_2*f[17]*f[19]*f[65]*f[67])/U[0] + (2*cos2th*f_5_2*f[17]*f[19]*f[65]*f[67])/U[0] + (3*cos2th*f_6_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) + (3*cos2th*f_7_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) + (4*cos2th*f_8_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (4*cos2th*f_9_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (14*cos2th*f_4_2*f[28]*f[30]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_5_2*f[28]*f[30]*f[76]*f[78])/(U[0] - 6*U[4]) - (14*f_4_2*sin2th*f[29]*f[30]*f[76]*f[78])/(U[0] - 6*U[4]) - (14*f_5_2*sin2th*f[29]*f[30]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*f_4_2*sin2th*f[28]*f[31]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*f_5_2*sin2th*f[28]*f[31]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_4_2*f[29]*f[31]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_5_2*f[29]*f[31]*f[76]*f[78])/(U[0] - 6*U[4]) + (14*f_4_2*sin2th*f[28]*f[30]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*f_5_2*sin2th*f[28]*f[30]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_4_2*f[29]*f[30]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*cos2th*f_5_2*f[29]*f[30]*f[77]*f[78])/(U[0] - 6*U[4]) - (14*cos2th*f_4_2*f[28]*f[31]*f[77]*f[78])/(U[0] - 6*U[4]) - (14*cos2th*f_5_2*f[28]*f[31]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*f_4_2*sin2th*f[29]*f[31]*f[77]*f[78])/(U[0] - 6*U[4]) + (14*f_5_2*sin2th*f[29]*f[31]*f[77]*f[78])/(U[0] - 6*U[4]) - (14*f_4_2*sin2th*f[28]*f[30]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*f_5_2*sin2th*f[28]*f[30]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*cos2th*f_4_2*f[29]*f[30]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*cos2th*f_5_2*f[29]*f[30]*f[76]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_4_2*f[28]*f[31]*f[76]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_5_2*f[28]*f[31]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*f_4_2*sin2th*f[29]*f[31]*f[76]*f[79])/(U[0] - 6*U[4]) - (14*f_5_2*sin2th*f[29]*f[31]*f[76]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_4_2*f[28]*f[30]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_5_2*f[28]*f[30]*f[77]*f[79])/(U[0] - 6*U[4]) - (14*f_4_2*sin2th*f[29]*f[30]*f[77]*f[79])/(U[0] - 6*U[4]) - (14*f_5_2*sin2th*f[29]*f[30]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*f_4_2*sin2th*f[28]*f[31]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*f_5_2*sin2th*f[28]*f[31]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_4_2*f[29]*f[31]*f[77]*f[79])/(U[0] - 6*U[4]) + (14*cos2th*f_5_2*f[29]*f[31]*f[77]*f[79])/(U[0] - 6*U[4]) + (21*cos2th*f_6_2*f[28]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_7_2*f[28]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[4]) - (21*f_6_2*sin2th*f[29]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[4]) - (21*f_7_2*sin2th*f[29]*f[30]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*f_6_2*sin2th*f[28]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*f_7_2*sin2th*f[28]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_6_2*f[29]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_7_2*f[29]*f[31]*f[76]*f[78])/(2*U[0] - 6*U[4]) + (21*f_6_2*sin2th*f[28]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*f_7_2*sin2th*f[28]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_6_2*f[29]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*cos2th*f_7_2*f[29]*f[30]*f[77]*f[78])/(2*U[0] - 6*U[4]) - (21*cos2th*f_6_2*f[28]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[4]) - (21*cos2th*f_7_2*f[28]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*f_6_2*sin2th*f[29]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[4]) + (21*f_7_2*sin2th*f[29]*f[31]*f[77]*f[78])/(2*U[0] - 6*U[4]) - (21*f_6_2*sin2th*f[28]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*f_7_2*sin2th*f[28]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*cos2th*f_6_2*f[29]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*cos2th*f_7_2*f[29]*f[30]*f[76]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_6_2*f[28]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_7_2*f[28]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*f_6_2*sin2th*f[29]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[4]) - (21*f_7_2*sin2th*f[29]*f[31]*f[76]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_6_2*f[28]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_7_2*f[28]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[4]) - (21*f_6_2*sin2th*f[29]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[4]) - (21*f_7_2*sin2th*f[29]*f[30]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*f_6_2*sin2th*f[28]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*f_7_2*sin2th*f[28]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_6_2*f[29]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (21*cos2th*f_7_2*f[29]*f[31]*f[77]*f[79])/(2*U[0] - 6*U[4]) + (28*cos2th*f_8_2*f[28]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_9_2*f[28]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[4]) - (28*f_8_2*sin2th*f[29]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[4]) - (28*f_9_2*sin2th*f[29]*f[30]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*f_8_2*sin2th*f[28]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*f_9_2*sin2th*f[28]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_8_2*f[29]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_9_2*f[29]*f[31]*f[76]*f[78])/(3*U[0] - 6*U[4]) + (28*f_8_2*sin2th*f[28]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*f_9_2*sin2th*f[28]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_8_2*f[29]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*cos2th*f_9_2*f[29]*f[30]*f[77]*f[78])/(3*U[0] - 6*U[4]) - (28*cos2th*f_8_2*f[28]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[4]) - (28*cos2th*f_9_2*f[28]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*f_8_2*sin2th*f[29]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[4]) + (28*f_9_2*sin2th*f[29]*f[31]*f[77]*f[78])/(3*U[0] - 6*U[4]) - (28*f_8_2*sin2th*f[28]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*f_9_2*sin2th*f[28]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*cos2th*f_8_2*f[29]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*cos2th*f_9_2*f[29]*f[30]*f[76]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_8_2*f[28]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_9_2*f[28]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*f_8_2*sin2th*f[29]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[4]) - (28*f_9_2*sin2th*f[29]*f[31]*f[76]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_8_2*f[28]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_9_2*f[28]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[4]) - (28*f_8_2*sin2th*f[29]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[4]) - (28*f_9_2*sin2th*f[29]*f[30]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*f_8_2*sin2th*f[28]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*f_9_2*sin2th*f[28]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_8_2*f[29]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (28*cos2th*f_9_2*f[29]*f[31]*f[77]*f[79])/(3*U[0] - 6*U[4]) + (35*cos2th*f_10_2*f[28]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_11_2*f[28]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[4]) - (35*f_10_2*sin2th*f[29]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[4]) - (35*f_11_2*sin2th*f[29]*f[30]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*f_10_2*sin2th*f[28]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*f_11_2*sin2th*f[28]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_10_2*f[29]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_11_2*f[29]*f[31]*f[76]*f[78])/(4*U[0] - 6*U[4]) + (35*f_10_2*sin2th*f[28]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*f_11_2*sin2th*f[28]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_10_2*f[29]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*cos2th*f_11_2*f[29]*f[30]*f[77]*f[78])/(4*U[0] - 6*U[4]) - (35*cos2th*f_10_2*f[28]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[4]) - (35*cos2th*f_11_2*f[28]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*f_10_2*sin2th*f[29]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[4]) + (35*f_11_2*sin2th*f[29]*f[31]*f[77]*f[78])/(4*U[0] - 6*U[4]) - (35*f_10_2*sin2th*f[28]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*f_11_2*sin2th*f[28]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*cos2th*f_10_2*f[29]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*cos2th*f_11_2*f[29]*f[30]*f[76]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_10_2*f[28]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_11_2*f[28]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*f_10_2*sin2th*f[29]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[4]) - (35*f_11_2*sin2th*f[29]*f[31]*f[76]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_10_2*f[28]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_11_2*f[28]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[4]) - (35*f_10_2*sin2th*f[29]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[4]) - (35*f_11_2*sin2th*f[29]*f[30]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*f_10_2*sin2th*f[28]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*f_11_2*sin2th*f[28]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_10_2*f[29]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (35*cos2th*f_11_2*f[29]*f[31]*f[77]*f[79])/(4*U[0] - 6*U[4]) + (42*cos2th*f_12_2*f[28]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_13_2*f[28]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[4]) - (42*f_12_2*sin2th*f[29]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[4]) - (42*f_13_2*sin2th*f[29]*f[30]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*f_12_2*sin2th*f[28]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*f_13_2*sin2th*f[28]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_12_2*f[29]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_13_2*f[29]*f[31]*f[76]*f[78])/(5*U[0] - 6*U[4]) + (42*f_12_2*sin2th*f[28]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*f_13_2*sin2th*f[28]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_12_2*f[29]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*cos2th*f_13_2*f[29]*f[30]*f[77]*f[78])/(5*U[0] - 6*U[4]) - (42*cos2th*f_12_2*f[28]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[4]) - (42*cos2th*f_13_2*f[28]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*f_12_2*sin2th*f[29]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[4]) + (42*f_13_2*sin2th*f[29]*f[31]*f[77]*f[78])/(5*U[0] - 6*U[4]) - (42*f_12_2*sin2th*f[28]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*f_13_2*sin2th*f[28]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*cos2th*f_12_2*f[29]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*cos2th*f_13_2*f[29]*f[30]*f[76]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_12_2*f[28]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_13_2*f[28]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*f_12_2*sin2th*f[29]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[4]) - (42*f_13_2*sin2th*f[29]*f[31]*f[76]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_12_2*f[28]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_13_2*f[28]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[4]) - (42*f_12_2*sin2th*f[29]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[4]) - (42*f_13_2*sin2th*f[29]*f[30]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*f_12_2*sin2th*f[28]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*f_13_2*sin2th*f[28]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_12_2*f[29]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (42*cos2th*f_13_2*f[29]*f[31]*f[77]*f[79])/(5*U[0] - 6*U[4]) + (12*cos2th*f_4_2*f[26]*f[28]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_5_2*f[26]*f[28]*f[74]*f[76])/(U[0] - 5*U[4]) - (12*f_4_2*sin2th*f[27]*f[28]*f[74]*f[76])/(U[0] - 5*U[4]) - (12*f_5_2*sin2th*f[27]*f[28]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*f_4_2*sin2th*f[26]*f[29]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*f_5_2*sin2th*f[26]*f[29]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_4_2*f[27]*f[29]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_5_2*f[27]*f[29]*f[74]*f[76])/(U[0] - 5*U[4]) + (12*f_4_2*sin2th*f[26]*f[28]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*f_5_2*sin2th*f[26]*f[28]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_4_2*f[27]*f[28]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*cos2th*f_5_2*f[27]*f[28]*f[75]*f[76])/(U[0] - 5*U[4]) - (12*cos2th*f_4_2*f[26]*f[29]*f[75]*f[76])/(U[0] - 5*U[4]) - (12*cos2th*f_5_2*f[26]*f[29]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*f_4_2*sin2th*f[27]*f[29]*f[75]*f[76])/(U[0] - 5*U[4]) + (12*f_5_2*sin2th*f[27]*f[29]*f[75]*f[76])/(U[0] - 5*U[4]) - (12*f_4_2*sin2th*f[26]*f[28]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*f_5_2*sin2th*f[26]*f[28]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*cos2th*f_4_2*f[27]*f[28]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*cos2th*f_5_2*f[27]*f[28]*f[74]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_4_2*f[26]*f[29]*f[74]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_5_2*f[26]*f[29]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*f_4_2*sin2th*f[27]*f[29]*f[74]*f[77])/(U[0] - 5*U[4]) - (12*f_5_2*sin2th*f[27]*f[29]*f[74]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_4_2*f[26]*f[28]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_5_2*f[26]*f[28]*f[75]*f[77])/(U[0] - 5*U[4]) - (12*f_4_2*sin2th*f[27]*f[28]*f[75]*f[77])/(U[0] - 5*U[4]) - (12*f_5_2*sin2th*f[27]*f[28]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*f_4_2*sin2th*f[26]*f[29]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*f_5_2*sin2th*f[26]*f[29]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_4_2*f[27]*f[29]*f[75]*f[77])/(U[0] - 5*U[4]) + (12*cos2th*f_5_2*f[27]*f[29]*f[75]*f[77])/(U[0] - 5*U[4]) + (18*cos2th*f_6_2*f[26]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_7_2*f[26]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[4]) - (18*f_6_2*sin2th*f[27]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[4]) - (18*f_7_2*sin2th*f[27]*f[28]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*f_6_2*sin2th*f[26]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*f_7_2*sin2th*f[26]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_6_2*f[27]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_7_2*f[27]*f[29]*f[74]*f[76])/(2*U[0] - 5*U[4]) + (18*f_6_2*sin2th*f[26]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*f_7_2*sin2th*f[26]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_6_2*f[27]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*cos2th*f_7_2*f[27]*f[28]*f[75]*f[76])/(2*U[0] - 5*U[4]) - (18*cos2th*f_6_2*f[26]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[4]) - (18*cos2th*f_7_2*f[26]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*f_6_2*sin2th*f[27]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[4]) + (18*f_7_2*sin2th*f[27]*f[29]*f[75]*f[76])/(2*U[0] - 5*U[4]) - (18*f_6_2*sin2th*f[26]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*f_7_2*sin2th*f[26]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*cos2th*f_6_2*f[27]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*cos2th*f_7_2*f[27]*f[28]*f[74]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_6_2*f[26]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_7_2*f[26]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*f_6_2*sin2th*f[27]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[4]) - (18*f_7_2*sin2th*f[27]*f[29]*f[74]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_6_2*f[26]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_7_2*f[26]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[4]) - (18*f_6_2*sin2th*f[27]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[4]) - (18*f_7_2*sin2th*f[27]*f[28]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*f_6_2*sin2th*f[26]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*f_7_2*sin2th*f[26]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_6_2*f[27]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (18*cos2th*f_7_2*f[27]*f[29]*f[75]*f[77])/(2*U[0] - 5*U[4]) + (24*cos2th*f_8_2*f[26]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_9_2*f[26]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[4]) - (24*f_8_2*sin2th*f[27]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[4]) - (24*f_9_2*sin2th*f[27]*f[28]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*f_8_2*sin2th*f[26]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*f_9_2*sin2th*f[26]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_8_2*f[27]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_9_2*f[27]*f[29]*f[74]*f[76])/(3*U[0] - 5*U[4]) + (24*f_8_2*sin2th*f[26]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*f_9_2*sin2th*f[26]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_8_2*f[27]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*cos2th*f_9_2*f[27]*f[28]*f[75]*f[76])/(3*U[0] - 5*U[4]) - (24*cos2th*f_8_2*f[26]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[4]) - (24*cos2th*f_9_2*f[26]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*f_8_2*sin2th*f[27]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[4]) + (24*f_9_2*sin2th*f[27]*f[29]*f[75]*f[76])/(3*U[0] - 5*U[4]) - (24*f_8_2*sin2th*f[26]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*f_9_2*sin2th*f[26]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*cos2th*f_8_2*f[27]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*cos2th*f_9_2*f[27]*f[28]*f[74]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_8_2*f[26]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_9_2*f[26]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*f_8_2*sin2th*f[27]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[4]) - (24*f_9_2*sin2th*f[27]*f[29]*f[74]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_8_2*f[26]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_9_2*f[26]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[4]) - (24*f_8_2*sin2th*f[27]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[4]) - (24*f_9_2*sin2th*f[27]*f[28]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*f_8_2*sin2th*f[26]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*f_9_2*sin2th*f[26]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_8_2*f[27]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (24*cos2th*f_9_2*f[27]*f[29]*f[75]*f[77])/(3*U[0] - 5*U[4]) + (30*cos2th*f_10_2*f[26]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_11_2*f[26]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[4]) - (30*f_10_2*sin2th*f[27]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[4]) - (30*f_11_2*sin2th*f[27]*f[28]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*f_10_2*sin2th*f[26]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*f_11_2*sin2th*f[26]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_10_2*f[27]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_11_2*f[27]*f[29]*f[74]*f[76])/(4*U[0] - 5*U[4]) + (30*f_10_2*sin2th*f[26]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*f_11_2*sin2th*f[26]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_10_2*f[27]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*cos2th*f_11_2*f[27]*f[28]*f[75]*f[76])/(4*U[0] - 5*U[4]) - (30*cos2th*f_10_2*f[26]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[4]) - (30*cos2th*f_11_2*f[26]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*f_10_2*sin2th*f[27]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[4]) + (30*f_11_2*sin2th*f[27]*f[29]*f[75]*f[76])/(4*U[0] - 5*U[4]) - (30*f_10_2*sin2th*f[26]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*f_11_2*sin2th*f[26]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*cos2th*f_10_2*f[27]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*cos2th*f_11_2*f[27]*f[28]*f[74]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_10_2*f[26]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_11_2*f[26]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*f_10_2*sin2th*f[27]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[4]) - (30*f_11_2*sin2th*f[27]*f[29]*f[74]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_10_2*f[26]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_11_2*f[26]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[4]) - (30*f_10_2*sin2th*f[27]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[4]) - (30*f_11_2*sin2th*f[27]*f[28]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*f_10_2*sin2th*f[26]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*f_11_2*sin2th*f[26]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_10_2*f[27]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (30*cos2th*f_11_2*f[27]*f[29]*f[75]*f[77])/(4*U[0] - 5*U[4]) + (42*cos2th*f_14_2*f[26]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_15_2*f[26]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[4]) - (42*f_14_2*sin2th*f[27]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[4]) - (42*f_15_2*sin2th*f[27]*f[28]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*f_14_2*sin2th*f[26]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*f_15_2*sin2th*f[26]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_14_2*f[27]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_15_2*f[27]*f[29]*f[74]*f[76])/(6*U[0] - 5*U[4]) + (42*f_14_2*sin2th*f[26]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*f_15_2*sin2th*f[26]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_14_2*f[27]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*cos2th*f_15_2*f[27]*f[28]*f[75]*f[76])/(6*U[0] - 5*U[4]) - (42*cos2th*f_14_2*f[26]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[4]) - (42*cos2th*f_15_2*f[26]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*f_14_2*sin2th*f[27]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[4]) + (42*f_15_2*sin2th*f[27]*f[29]*f[75]*f[76])/(6*U[0] - 5*U[4]) - (42*f_14_2*sin2th*f[26]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*f_15_2*sin2th*f[26]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*cos2th*f_14_2*f[27]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*cos2th*f_15_2*f[27]*f[28]*f[74]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_14_2*f[26]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_15_2*f[26]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*f_14_2*sin2th*f[27]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[4]) - (42*f_15_2*sin2th*f[27]*f[29]*f[74]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_14_2*f[26]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_15_2*f[26]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[4]) - (42*f_14_2*sin2th*f[27]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[4]) - (42*f_15_2*sin2th*f[27]*f[28]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*f_14_2*sin2th*f[26]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*f_15_2*sin2th*f[26]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_14_2*f[27]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (42*cos2th*f_15_2*f[27]*f[29]*f[75]*f[77])/(6*U[0] - 5*U[4]) + (10*cos2th*f_4_2*f[24]*f[26]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_5_2*f[24]*f[26]*f[72]*f[74])/(U[0] - 4*U[4]) - (10*f_4_2*sin2th*f[25]*f[26]*f[72]*f[74])/(U[0] - 4*U[4]) - (10*f_5_2*sin2th*f[25]*f[26]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*f_4_2*sin2th*f[24]*f[27]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*f_5_2*sin2th*f[24]*f[27]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_4_2*f[25]*f[27]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_5_2*f[25]*f[27]*f[72]*f[74])/(U[0] - 4*U[4]) + (10*f_4_2*sin2th*f[24]*f[26]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*f_5_2*sin2th*f[24]*f[26]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_4_2*f[25]*f[26]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*cos2th*f_5_2*f[25]*f[26]*f[73]*f[74])/(U[0] - 4*U[4]) - (10*cos2th*f_4_2*f[24]*f[27]*f[73]*f[74])/(U[0] - 4*U[4]) - (10*cos2th*f_5_2*f[24]*f[27]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*f_4_2*sin2th*f[25]*f[27]*f[73]*f[74])/(U[0] - 4*U[4]) + (10*f_5_2*sin2th*f[25]*f[27]*f[73]*f[74])/(U[0] - 4*U[4]) - (10*f_4_2*sin2th*f[24]*f[26]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*f_5_2*sin2th*f[24]*f[26]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*cos2th*f_4_2*f[25]*f[26]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*cos2th*f_5_2*f[25]*f[26]*f[72]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_4_2*f[24]*f[27]*f[72]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_5_2*f[24]*f[27]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*f_4_2*sin2th*f[25]*f[27]*f[72]*f[75])/(U[0] - 4*U[4]) - (10*f_5_2*sin2th*f[25]*f[27]*f[72]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_4_2*f[24]*f[26]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_5_2*f[24]*f[26]*f[73]*f[75])/(U[0] - 4*U[4]) - (10*f_4_2*sin2th*f[25]*f[26]*f[73]*f[75])/(U[0] - 4*U[4]) - (10*f_5_2*sin2th*f[25]*f[26]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*f_4_2*sin2th*f[24]*f[27]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*f_5_2*sin2th*f[24]*f[27]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_4_2*f[25]*f[27]*f[73]*f[75])/(U[0] - 4*U[4]) + (10*cos2th*f_5_2*f[25]*f[27]*f[73]*f[75])/(U[0] - 4*U[4]) + (15*cos2th*f_6_2*f[24]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_7_2*f[24]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[4]) - (15*f_6_2*sin2th*f[25]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[4]) - (15*f_7_2*sin2th*f[25]*f[26]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*f_6_2*sin2th*f[24]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*f_7_2*sin2th*f[24]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_6_2*f[25]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_7_2*f[25]*f[27]*f[72]*f[74])/(2*U[0] - 4*U[4]) + (15*f_6_2*sin2th*f[24]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*f_7_2*sin2th*f[24]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_6_2*f[25]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*cos2th*f_7_2*f[25]*f[26]*f[73]*f[74])/(2*U[0] - 4*U[4]) - (15*cos2th*f_6_2*f[24]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[4]) - (15*cos2th*f_7_2*f[24]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*f_6_2*sin2th*f[25]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[4]) + (15*f_7_2*sin2th*f[25]*f[27]*f[73]*f[74])/(2*U[0] - 4*U[4]) - (15*f_6_2*sin2th*f[24]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*f_7_2*sin2th*f[24]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*cos2th*f_6_2*f[25]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*cos2th*f_7_2*f[25]*f[26]*f[72]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_6_2*f[24]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_7_2*f[24]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*f_6_2*sin2th*f[25]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[4]) - (15*f_7_2*sin2th*f[25]*f[27]*f[72]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_6_2*f[24]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_7_2*f[24]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[4]) - (15*f_6_2*sin2th*f[25]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[4]) - (15*f_7_2*sin2th*f[25]*f[26]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*f_6_2*sin2th*f[24]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*f_7_2*sin2th*f[24]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_6_2*f[25]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (15*cos2th*f_7_2*f[25]*f[27]*f[73]*f[75])/(2*U[0] - 4*U[4]) + (20*cos2th*f_8_2*f[24]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_9_2*f[24]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[4]) - (20*f_8_2*sin2th*f[25]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[4]) - (20*f_9_2*sin2th*f[25]*f[26]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*f_8_2*sin2th*f[24]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*f_9_2*sin2th*f[24]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_8_2*f[25]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_9_2*f[25]*f[27]*f[72]*f[74])/(3*U[0] - 4*U[4]) + (20*f_8_2*sin2th*f[24]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*f_9_2*sin2th*f[24]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_8_2*f[25]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*cos2th*f_9_2*f[25]*f[26]*f[73]*f[74])/(3*U[0] - 4*U[4]) - (20*cos2th*f_8_2*f[24]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[4]) - (20*cos2th*f_9_2*f[24]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*f_8_2*sin2th*f[25]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[4]) + (20*f_9_2*sin2th*f[25]*f[27]*f[73]*f[74])/(3*U[0] - 4*U[4]) - (20*f_8_2*sin2th*f[24]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*f_9_2*sin2th*f[24]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*cos2th*f_8_2*f[25]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*cos2th*f_9_2*f[25]*f[26]*f[72]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_8_2*f[24]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_9_2*f[24]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*f_8_2*sin2th*f[25]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[4]) - (20*f_9_2*sin2th*f[25]*f[27]*f[72]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_8_2*f[24]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_9_2*f[24]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[4]) - (20*f_8_2*sin2th*f[25]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[4]) - (20*f_9_2*sin2th*f[25]*f[26]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*f_8_2*sin2th*f[24]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*f_9_2*sin2th*f[24]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_8_2*f[25]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (20*cos2th*f_9_2*f[25]*f[27]*f[73]*f[75])/(3*U[0] - 4*U[4]) + (30*cos2th*f_12_2*f[24]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_13_2*f[24]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[4]) - (30*f_12_2*sin2th*f[25]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[4]) - (30*f_13_2*sin2th*f[25]*f[26]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*f_12_2*sin2th*f[24]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*f_13_2*sin2th*f[24]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_12_2*f[25]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_13_2*f[25]*f[27]*f[72]*f[74])/(5*U[0] - 4*U[4]) + (30*f_12_2*sin2th*f[24]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*f_13_2*sin2th*f[24]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_12_2*f[25]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*cos2th*f_13_2*f[25]*f[26]*f[73]*f[74])/(5*U[0] - 4*U[4]) - (30*cos2th*f_12_2*f[24]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[4]) - (30*cos2th*f_13_2*f[24]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*f_12_2*sin2th*f[25]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[4]) + (30*f_13_2*sin2th*f[25]*f[27]*f[73]*f[74])/(5*U[0] - 4*U[4]) - (30*f_12_2*sin2th*f[24]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*f_13_2*sin2th*f[24]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*cos2th*f_12_2*f[25]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*cos2th*f_13_2*f[25]*f[26]*f[72]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_12_2*f[24]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_13_2*f[24]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*f_12_2*sin2th*f[25]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[4]) - (30*f_13_2*sin2th*f[25]*f[27]*f[72]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_12_2*f[24]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_13_2*f[24]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[4]) - (30*f_12_2*sin2th*f[25]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[4]) - (30*f_13_2*sin2th*f[25]*f[26]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*f_12_2*sin2th*f[24]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*f_13_2*sin2th*f[24]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_12_2*f[25]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (30*cos2th*f_13_2*f[25]*f[27]*f[73]*f[75])/(5*U[0] - 4*U[4]) + (35*cos2th*f_14_2*f[24]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_15_2*f[24]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[4]) - (35*f_14_2*sin2th*f[25]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[4]) - (35*f_15_2*sin2th*f[25]*f[26]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*f_14_2*sin2th*f[24]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*f_15_2*sin2th*f[24]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_14_2*f[25]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_15_2*f[25]*f[27]*f[72]*f[74])/(6*U[0] - 4*U[4]) + (35*f_14_2*sin2th*f[24]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*f_15_2*sin2th*f[24]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_14_2*f[25]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*cos2th*f_15_2*f[25]*f[26]*f[73]*f[74])/(6*U[0] - 4*U[4]) - (35*cos2th*f_14_2*f[24]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[4]) - (35*cos2th*f_15_2*f[24]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*f_14_2*sin2th*f[25]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[4]) + (35*f_15_2*sin2th*f[25]*f[27]*f[73]*f[74])/(6*U[0] - 4*U[4]) - (35*f_14_2*sin2th*f[24]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*f_15_2*sin2th*f[24]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*cos2th*f_14_2*f[25]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*cos2th*f_15_2*f[25]*f[26]*f[72]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_14_2*f[24]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_15_2*f[24]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*f_14_2*sin2th*f[25]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[4]) - (35*f_15_2*sin2th*f[25]*f[27]*f[72]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_14_2*f[24]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_15_2*f[24]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[4]) - (35*f_14_2*sin2th*f[25]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[4]) - (35*f_15_2*sin2th*f[25]*f[26]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*f_14_2*sin2th*f[24]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*f_15_2*sin2th*f[24]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_14_2*f[25]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (35*cos2th*f_15_2*f[25]*f[27]*f[73]*f[75])/(6*U[0] - 4*U[4]) + (8*cos2th*f_4_2*f[22]*f[24]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_5_2*f[22]*f[24]*f[70]*f[72])/(U[0] - 3*U[4]) - (8*f_4_2*sin2th*f[23]*f[24]*f[70]*f[72])/(U[0] - 3*U[4]) - (8*f_5_2*sin2th*f[23]*f[24]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*f_4_2*sin2th*f[22]*f[25]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*f_5_2*sin2th*f[22]*f[25]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_4_2*f[23]*f[25]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_5_2*f[23]*f[25]*f[70]*f[72])/(U[0] - 3*U[4]) + (8*f_4_2*sin2th*f[22]*f[24]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*f_5_2*sin2th*f[22]*f[24]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_4_2*f[23]*f[24]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*cos2th*f_5_2*f[23]*f[24]*f[71]*f[72])/(U[0] - 3*U[4]) - (8*cos2th*f_4_2*f[22]*f[25]*f[71]*f[72])/(U[0] - 3*U[4]) - (8*cos2th*f_5_2*f[22]*f[25]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*f_4_2*sin2th*f[23]*f[25]*f[71]*f[72])/(U[0] - 3*U[4]) + (8*f_5_2*sin2th*f[23]*f[25]*f[71]*f[72])/(U[0] - 3*U[4]) - (8*f_4_2*sin2th*f[22]*f[24]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*f_5_2*sin2th*f[22]*f[24]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*cos2th*f_4_2*f[23]*f[24]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*cos2th*f_5_2*f[23]*f[24]*f[70]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_4_2*f[22]*f[25]*f[70]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_5_2*f[22]*f[25]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*f_4_2*sin2th*f[23]*f[25]*f[70]*f[73])/(U[0] - 3*U[4]) - (8*f_5_2*sin2th*f[23]*f[25]*f[70]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_4_2*f[22]*f[24]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_5_2*f[22]*f[24]*f[71]*f[73])/(U[0] - 3*U[4]) - (8*f_4_2*sin2th*f[23]*f[24]*f[71]*f[73])/(U[0] - 3*U[4]) - (8*f_5_2*sin2th*f[23]*f[24]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*f_4_2*sin2th*f[22]*f[25]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*f_5_2*sin2th*f[22]*f[25]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_4_2*f[23]*f[25]*f[71]*f[73])/(U[0] - 3*U[4]) + (8*cos2th*f_5_2*f[23]*f[25]*f[71]*f[73])/(U[0] - 3*U[4]) + (12*cos2th*f_6_2*f[22]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_7_2*f[22]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[4]) - (12*f_6_2*sin2th*f[23]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[4]) - (12*f_7_2*sin2th*f[23]*f[24]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*f_6_2*sin2th*f[22]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*f_7_2*sin2th*f[22]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_6_2*f[23]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_7_2*f[23]*f[25]*f[70]*f[72])/(2*U[0] - 3*U[4]) + (12*f_6_2*sin2th*f[22]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*f_7_2*sin2th*f[22]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_6_2*f[23]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*cos2th*f_7_2*f[23]*f[24]*f[71]*f[72])/(2*U[0] - 3*U[4]) - (12*cos2th*f_6_2*f[22]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[4]) - (12*cos2th*f_7_2*f[22]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*f_6_2*sin2th*f[23]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[4]) + (12*f_7_2*sin2th*f[23]*f[25]*f[71]*f[72])/(2*U[0] - 3*U[4]) - (12*f_6_2*sin2th*f[22]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*f_7_2*sin2th*f[22]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*cos2th*f_6_2*f[23]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*cos2th*f_7_2*f[23]*f[24]*f[70]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_6_2*f[22]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_7_2*f[22]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*f_6_2*sin2th*f[23]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[4]) - (12*f_7_2*sin2th*f[23]*f[25]*f[70]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_6_2*f[22]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_7_2*f[22]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[4]) - (12*f_6_2*sin2th*f[23]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[4]) - (12*f_7_2*sin2th*f[23]*f[24]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*f_6_2*sin2th*f[22]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*f_7_2*sin2th*f[22]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_6_2*f[23]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (12*cos2th*f_7_2*f[23]*f[25]*f[71]*f[73])/(2*U[0] - 3*U[4]) + (20*cos2th*f_10_2*f[22]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_11_2*f[22]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[4]) - (20*f_10_2*sin2th*f[23]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[4]) - (20*f_11_2*sin2th*f[23]*f[24]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*f_10_2*sin2th*f[22]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*f_11_2*sin2th*f[22]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_10_2*f[23]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_11_2*f[23]*f[25]*f[70]*f[72])/(4*U[0] - 3*U[4]) + (20*f_10_2*sin2th*f[22]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*f_11_2*sin2th*f[22]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_10_2*f[23]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*cos2th*f_11_2*f[23]*f[24]*f[71]*f[72])/(4*U[0] - 3*U[4]) - (20*cos2th*f_10_2*f[22]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[4]) - (20*cos2th*f_11_2*f[22]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*f_10_2*sin2th*f[23]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[4]) + (20*f_11_2*sin2th*f[23]*f[25]*f[71]*f[72])/(4*U[0] - 3*U[4]) - (20*f_10_2*sin2th*f[22]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*f_11_2*sin2th*f[22]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*cos2th*f_10_2*f[23]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*cos2th*f_11_2*f[23]*f[24]*f[70]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_10_2*f[22]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_11_2*f[22]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*f_10_2*sin2th*f[23]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[4]) - (20*f_11_2*sin2th*f[23]*f[25]*f[70]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_10_2*f[22]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_11_2*f[22]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[4]) - (20*f_10_2*sin2th*f[23]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[4]) - (20*f_11_2*sin2th*f[23]*f[24]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*f_10_2*sin2th*f[22]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*f_11_2*sin2th*f[22]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_10_2*f[23]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (20*cos2th*f_11_2*f[23]*f[25]*f[71]*f[73])/(4*U[0] - 3*U[4]) + (24*cos2th*f_12_2*f[22]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_13_2*f[22]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[4]) - (24*f_12_2*sin2th*f[23]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[4]) - (24*f_13_2*sin2th*f[23]*f[24]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*f_12_2*sin2th*f[22]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*f_13_2*sin2th*f[22]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_12_2*f[23]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_13_2*f[23]*f[25]*f[70]*f[72])/(5*U[0] - 3*U[4]) + (24*f_12_2*sin2th*f[22]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*f_13_2*sin2th*f[22]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_12_2*f[23]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*cos2th*f_13_2*f[23]*f[24]*f[71]*f[72])/(5*U[0] - 3*U[4]) - (24*cos2th*f_12_2*f[22]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[4]) - (24*cos2th*f_13_2*f[22]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*f_12_2*sin2th*f[23]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[4]) + (24*f_13_2*sin2th*f[23]*f[25]*f[71]*f[72])/(5*U[0] - 3*U[4]) - (24*f_12_2*sin2th*f[22]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*f_13_2*sin2th*f[22]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*cos2th*f_12_2*f[23]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*cos2th*f_13_2*f[23]*f[24]*f[70]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_12_2*f[22]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_13_2*f[22]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*f_12_2*sin2th*f[23]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[4]) - (24*f_13_2*sin2th*f[23]*f[25]*f[70]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_12_2*f[22]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_13_2*f[22]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[4]) - (24*f_12_2*sin2th*f[23]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[4]) - (24*f_13_2*sin2th*f[23]*f[24]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*f_12_2*sin2th*f[22]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*f_13_2*sin2th*f[22]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_12_2*f[23]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (24*cos2th*f_13_2*f[23]*f[25]*f[71]*f[73])/(5*U[0] - 3*U[4]) + (28*cos2th*f_14_2*f[22]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_15_2*f[22]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[4]) - (28*f_14_2*sin2th*f[23]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[4]) - (28*f_15_2*sin2th*f[23]*f[24]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*f_14_2*sin2th*f[22]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*f_15_2*sin2th*f[22]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_14_2*f[23]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_15_2*f[23]*f[25]*f[70]*f[72])/(6*U[0] - 3*U[4]) + (28*f_14_2*sin2th*f[22]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*f_15_2*sin2th*f[22]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_14_2*f[23]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*cos2th*f_15_2*f[23]*f[24]*f[71]*f[72])/(6*U[0] - 3*U[4]) - (28*cos2th*f_14_2*f[22]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[4]) - (28*cos2th*f_15_2*f[22]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*f_14_2*sin2th*f[23]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[4]) + (28*f_15_2*sin2th*f[23]*f[25]*f[71]*f[72])/(6*U[0] - 3*U[4]) - (28*f_14_2*sin2th*f[22]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*f_15_2*sin2th*f[22]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*cos2th*f_14_2*f[23]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*cos2th*f_15_2*f[23]*f[24]*f[70]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_14_2*f[22]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_15_2*f[22]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*f_14_2*sin2th*f[23]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[4]) - (28*f_15_2*sin2th*f[23]*f[25]*f[70]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_14_2*f[22]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_15_2*f[22]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[4]) - (28*f_14_2*sin2th*f[23]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[4]) - (28*f_15_2*sin2th*f[23]*f[24]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*f_14_2*sin2th*f[22]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*f_15_2*sin2th*f[22]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_14_2*f[23]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (28*cos2th*f_15_2*f[23]*f[25]*f[71]*f[73])/(6*U[0] - 3*U[4]) + (6*cos2th*f_4_2*f[20]*f[22]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_5_2*f[20]*f[22]*f[68]*f[70])/(U[0] - 2*U[4]) - (6*f_4_2*sin2th*f[21]*f[22]*f[68]*f[70])/(U[0] - 2*U[4]) - (6*f_5_2*sin2th*f[21]*f[22]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*f_4_2*sin2th*f[20]*f[23]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*f_5_2*sin2th*f[20]*f[23]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_4_2*f[21]*f[23]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_5_2*f[21]*f[23]*f[68]*f[70])/(U[0] - 2*U[4]) + (6*f_4_2*sin2th*f[20]*f[22]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*f_5_2*sin2th*f[20]*f[22]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_4_2*f[21]*f[22]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*cos2th*f_5_2*f[21]*f[22]*f[69]*f[70])/(U[0] - 2*U[4]) - (6*cos2th*f_4_2*f[20]*f[23]*f[69]*f[70])/(U[0] - 2*U[4]) - (6*cos2th*f_5_2*f[20]*f[23]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*f_4_2*sin2th*f[21]*f[23]*f[69]*f[70])/(U[0] - 2*U[4]) + (6*f_5_2*sin2th*f[21]*f[23]*f[69]*f[70])/(U[0] - 2*U[4]) - (6*f_4_2*sin2th*f[20]*f[22]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*f_5_2*sin2th*f[20]*f[22]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*cos2th*f_4_2*f[21]*f[22]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*cos2th*f_5_2*f[21]*f[22]*f[68]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_4_2*f[20]*f[23]*f[68]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_5_2*f[20]*f[23]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*f_4_2*sin2th*f[21]*f[23]*f[68]*f[71])/(U[0] - 2*U[4]) - (6*f_5_2*sin2th*f[21]*f[23]*f[68]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_4_2*f[20]*f[22]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_5_2*f[20]*f[22]*f[69]*f[71])/(U[0] - 2*U[4]) - (6*f_4_2*sin2th*f[21]*f[22]*f[69]*f[71])/(U[0] - 2*U[4]) - (6*f_5_2*sin2th*f[21]*f[22]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*f_4_2*sin2th*f[20]*f[23]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*f_5_2*sin2th*f[20]*f[23]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_4_2*f[21]*f[23]*f[69]*f[71])/(U[0] - 2*U[4]) + (6*cos2th*f_5_2*f[21]*f[23]*f[69]*f[71])/(U[0] - 2*U[4]) + (12*cos2th*f_8_2*f[20]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_9_2*f[20]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[4]) - (12*f_8_2*sin2th*f[21]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[4]) - (12*f_9_2*sin2th*f[21]*f[22]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*f_8_2*sin2th*f[20]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*f_9_2*sin2th*f[20]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_8_2*f[21]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_9_2*f[21]*f[23]*f[68]*f[70])/(3*U[0] - 2*U[4]) + (12*f_8_2*sin2th*f[20]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*f_9_2*sin2th*f[20]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_8_2*f[21]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*cos2th*f_9_2*f[21]*f[22]*f[69]*f[70])/(3*U[0] - 2*U[4]) - (12*cos2th*f_8_2*f[20]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[4]) - (12*cos2th*f_9_2*f[20]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*f_8_2*sin2th*f[21]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[4]) + (12*f_9_2*sin2th*f[21]*f[23]*f[69]*f[70])/(3*U[0] - 2*U[4]) - (12*f_8_2*sin2th*f[20]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*f_9_2*sin2th*f[20]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*cos2th*f_8_2*f[21]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*cos2th*f_9_2*f[21]*f[22]*f[68]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_8_2*f[20]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_9_2*f[20]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*f_8_2*sin2th*f[21]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[4]) - (12*f_9_2*sin2th*f[21]*f[23]*f[68]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_8_2*f[20]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_9_2*f[20]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[4]) - (12*f_8_2*sin2th*f[21]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[4]) - (12*f_9_2*sin2th*f[21]*f[22]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*f_8_2*sin2th*f[20]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*f_9_2*sin2th*f[20]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_8_2*f[21]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (12*cos2th*f_9_2*f[21]*f[23]*f[69]*f[71])/(3*U[0] - 2*U[4]) + (15*cos2th*f_10_2*f[20]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_11_2*f[20]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[4]) - (15*f_10_2*sin2th*f[21]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[4]) - (15*f_11_2*sin2th*f[21]*f[22]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*f_10_2*sin2th*f[20]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*f_11_2*sin2th*f[20]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_10_2*f[21]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_11_2*f[21]*f[23]*f[68]*f[70])/(4*U[0] - 2*U[4]) + (15*f_10_2*sin2th*f[20]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*f_11_2*sin2th*f[20]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_10_2*f[21]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*cos2th*f_11_2*f[21]*f[22]*f[69]*f[70])/(4*U[0] - 2*U[4]) - (15*cos2th*f_10_2*f[20]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[4]) - (15*cos2th*f_11_2*f[20]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*f_10_2*sin2th*f[21]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[4]) + (15*f_11_2*sin2th*f[21]*f[23]*f[69]*f[70])/(4*U[0] - 2*U[4]) - (15*f_10_2*sin2th*f[20]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*f_11_2*sin2th*f[20]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*cos2th*f_10_2*f[21]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*cos2th*f_11_2*f[21]*f[22]*f[68]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_10_2*f[20]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_11_2*f[20]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*f_10_2*sin2th*f[21]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[4]) - (15*f_11_2*sin2th*f[21]*f[23]*f[68]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_10_2*f[20]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_11_2*f[20]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[4]) - (15*f_10_2*sin2th*f[21]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[4]) - (15*f_11_2*sin2th*f[21]*f[22]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*f_10_2*sin2th*f[20]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*f_11_2*sin2th*f[20]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_10_2*f[21]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (15*cos2th*f_11_2*f[21]*f[23]*f[69]*f[71])/(4*U[0] - 2*U[4]) + (18*cos2th*f_12_2*f[20]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_13_2*f[20]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[4]) - (18*f_12_2*sin2th*f[21]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[4]) - (18*f_13_2*sin2th*f[21]*f[22]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*f_12_2*sin2th*f[20]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*f_13_2*sin2th*f[20]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_12_2*f[21]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_13_2*f[21]*f[23]*f[68]*f[70])/(5*U[0] - 2*U[4]) + (18*f_12_2*sin2th*f[20]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*f_13_2*sin2th*f[20]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_12_2*f[21]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*cos2th*f_13_2*f[21]*f[22]*f[69]*f[70])/(5*U[0] - 2*U[4]) - (18*cos2th*f_12_2*f[20]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[4]) - (18*cos2th*f_13_2*f[20]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*f_12_2*sin2th*f[21]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[4]) + (18*f_13_2*sin2th*f[21]*f[23]*f[69]*f[70])/(5*U[0] - 2*U[4]) - (18*f_12_2*sin2th*f[20]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*f_13_2*sin2th*f[20]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*cos2th*f_12_2*f[21]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*cos2th*f_13_2*f[21]*f[22]*f[68]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_12_2*f[20]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_13_2*f[20]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*f_12_2*sin2th*f[21]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[4]) - (18*f_13_2*sin2th*f[21]*f[23]*f[68]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_12_2*f[20]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_13_2*f[20]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[4]) - (18*f_12_2*sin2th*f[21]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[4]) - (18*f_13_2*sin2th*f[21]*f[22]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*f_12_2*sin2th*f[20]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*f_13_2*sin2th*f[20]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_12_2*f[21]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (18*cos2th*f_13_2*f[21]*f[23]*f[69]*f[71])/(5*U[0] - 2*U[4]) + (21*cos2th*f_14_2*f[20]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_15_2*f[20]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[4]) - (21*f_14_2*sin2th*f[21]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[4]) - (21*f_15_2*sin2th*f[21]*f[22]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*f_14_2*sin2th*f[20]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*f_15_2*sin2th*f[20]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_14_2*f[21]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_15_2*f[21]*f[23]*f[68]*f[70])/(6*U[0] - 2*U[4]) + (21*f_14_2*sin2th*f[20]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*f_15_2*sin2th*f[20]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_14_2*f[21]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*cos2th*f_15_2*f[21]*f[22]*f[69]*f[70])/(6*U[0] - 2*U[4]) - (21*cos2th*f_14_2*f[20]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[4]) - (21*cos2th*f_15_2*f[20]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*f_14_2*sin2th*f[21]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[4]) + (21*f_15_2*sin2th*f[21]*f[23]*f[69]*f[70])/(6*U[0] - 2*U[4]) - (21*f_14_2*sin2th*f[20]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*f_15_2*sin2th*f[20]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*cos2th*f_14_2*f[21]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*cos2th*f_15_2*f[21]*f[22]*f[68]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_14_2*f[20]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_15_2*f[20]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*f_14_2*sin2th*f[21]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[4]) - (21*f_15_2*sin2th*f[21]*f[23]*f[68]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_14_2*f[20]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_15_2*f[20]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[4]) - (21*f_14_2*sin2th*f[21]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[4]) - (21*f_15_2*sin2th*f[21]*f[22]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*f_14_2*sin2th*f[20]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*f_15_2*sin2th*f[20]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_14_2*f[21]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (21*cos2th*f_15_2*f[21]*f[23]*f[69]*f[71])/(6*U[0] - 2*U[4]) + (6*cos2th*f_6_2*f[18]*f[20]*f[66]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_7_2*f[18]*f[20]*f[66]*f[68])/(2*U[0] - U[4]) - (6*f_6_2*sin2th*f[19]*f[20]*f[66]*f[68])/(2*U[0] - U[4]) - (6*f_7_2*sin2th*f[19]*f[20]*f[66]*f[68])/(2*U[0] - U[4]) + (6*f_6_2*sin2th*f[18]*f[21]*f[66]*f[68])/(2*U[0] - U[4]) + (6*f_7_2*sin2th*f[18]*f[21]*f[66]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_6_2*f[19]*f[21]*f[66]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_7_2*f[19]*f[21]*f[66]*f[68])/(2*U[0] - U[4]) + (6*f_6_2*sin2th*f[18]*f[20]*f[67]*f[68])/(2*U[0] - U[4]) + (6*f_7_2*sin2th*f[18]*f[20]*f[67]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_6_2*f[19]*f[20]*f[67]*f[68])/(2*U[0] - U[4]) + (6*cos2th*f_7_2*f[19]*f[20]*f[67]*f[68])/(2*U[0] - U[4]) - (6*cos2th*f_6_2*f[18]*f[21]*f[67]*f[68])/(2*U[0] - U[4]) - (6*cos2th*f_7_2*f[18]*f[21]*f[67]*f[68])/(2*U[0] - U[4]) + (6*f_6_2*sin2th*f[19]*f[21]*f[67]*f[68])/(2*U[0] - U[4]) + (6*f_7_2*sin2th*f[19]*f[21]*f[67]*f[68])/(2*U[0] - U[4]) - (6*f_6_2*sin2th*f[18]*f[20]*f[66]*f[69])/(2*U[0] - U[4]) - (6*f_7_2*sin2th*f[18]*f[20]*f[66]*f[69])/(2*U[0] - U[4]) - (6*cos2th*f_6_2*f[19]*f[20]*f[66]*f[69])/(2*U[0] - U[4]) - (6*cos2th*f_7_2*f[19]*f[20]*f[66]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_6_2*f[18]*f[21]*f[66]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_7_2*f[18]*f[21]*f[66]*f[69])/(2*U[0] - U[4]) - (6*f_6_2*sin2th*f[19]*f[21]*f[66]*f[69])/(2*U[0] - U[4]) - (6*f_7_2*sin2th*f[19]*f[21]*f[66]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_6_2*f[18]*f[20]*f[67]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_7_2*f[18]*f[20]*f[67]*f[69])/(2*U[0] - U[4]) - (6*f_6_2*sin2th*f[19]*f[20]*f[67]*f[69])/(2*U[0] - U[4]) - (6*f_7_2*sin2th*f[19]*f[20]*f[67]*f[69])/(2*U[0] - U[4]) + (6*f_6_2*sin2th*f[18]*f[21]*f[67]*f[69])/(2*U[0] - U[4]) + (6*f_7_2*sin2th*f[18]*f[21]*f[67]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_6_2*f[19]*f[21]*f[67]*f[69])/(2*U[0] - U[4]) + (6*cos2th*f_7_2*f[19]*f[21]*f[67]*f[69])/(2*U[0] - U[4]) + (8*cos2th*f_8_2*f[18]*f[20]*f[66]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_9_2*f[18]*f[20]*f[66]*f[68])/(3*U[0] - U[4]) - (8*f_8_2*sin2th*f[19]*f[20]*f[66]*f[68])/(3*U[0] - U[4]) - (8*f_9_2*sin2th*f[19]*f[20]*f[66]*f[68])/(3*U[0] - U[4]) + (8*f_8_2*sin2th*f[18]*f[21]*f[66]*f[68])/(3*U[0] - U[4]) + (8*f_9_2*sin2th*f[18]*f[21]*f[66]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_8_2*f[19]*f[21]*f[66]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_9_2*f[19]*f[21]*f[66]*f[68])/(3*U[0] - U[4]) + (8*f_8_2*sin2th*f[18]*f[20]*f[67]*f[68])/(3*U[0] - U[4]) + (8*f_9_2*sin2th*f[18]*f[20]*f[67]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_8_2*f[19]*f[20]*f[67]*f[68])/(3*U[0] - U[4]) + (8*cos2th*f_9_2*f[19]*f[20]*f[67]*f[68])/(3*U[0] - U[4]) - (8*cos2th*f_8_2*f[18]*f[21]*f[67]*f[68])/(3*U[0] - U[4]) - (8*cos2th*f_9_2*f[18]*f[21]*f[67]*f[68])/(3*U[0] - U[4]) + (8*f_8_2*sin2th*f[19]*f[21]*f[67]*f[68])/(3*U[0] - U[4]) + (8*f_9_2*sin2th*f[19]*f[21]*f[67]*f[68])/(3*U[0] - U[4]) - (8*f_8_2*sin2th*f[18]*f[20]*f[66]*f[69])/(3*U[0] - U[4]) - (8*f_9_2*sin2th*f[18]*f[20]*f[66]*f[69])/(3*U[0] - U[4]) - (8*cos2th*f_8_2*f[19]*f[20]*f[66]*f[69])/(3*U[0] - U[4]) - (8*cos2th*f_9_2*f[19]*f[20]*f[66]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_8_2*f[18]*f[21]*f[66]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_9_2*f[18]*f[21]*f[66]*f[69])/(3*U[0] - U[4]) - (8*f_8_2*sin2th*f[19]*f[21]*f[66]*f[69])/(3*U[0] - U[4]) - (8*f_9_2*sin2th*f[19]*f[21]*f[66]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_8_2*f[18]*f[20]*f[67]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_9_2*f[18]*f[20]*f[67]*f[69])/(3*U[0] - U[4]) - (8*f_8_2*sin2th*f[19]*f[20]*f[67]*f[69])/(3*U[0] - U[4]) - (8*f_9_2*sin2th*f[19]*f[20]*f[67]*f[69])/(3*U[0] - U[4]) + (8*f_8_2*sin2th*f[18]*f[21]*f[67]*f[69])/(3*U[0] - U[4]) + (8*f_9_2*sin2th*f[18]*f[21]*f[67]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_8_2*f[19]*f[21]*f[67]*f[69])/(3*U[0] - U[4]) + (8*cos2th*f_9_2*f[19]*f[21]*f[67]*f[69])/(3*U[0] - U[4]) + (10*cos2th*f_10_2*f[18]*f[20]*f[66]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_11_2*f[18]*f[20]*f[66]*f[68])/(4*U[0] - U[4]) - (10*f_10_2*sin2th*f[19]*f[20]*f[66]*f[68])/(4*U[0] - U[4]) - (10*f_11_2*sin2th*f[19]*f[20]*f[66]*f[68])/(4*U[0] - U[4]) + (10*f_10_2*sin2th*f[18]*f[21]*f[66]*f[68])/(4*U[0] - U[4]) + (10*f_11_2*sin2th*f[18]*f[21]*f[66]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_10_2*f[19]*f[21]*f[66]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_11_2*f[19]*f[21]*f[66]*f[68])/(4*U[0] - U[4]) + (10*f_10_2*sin2th*f[18]*f[20]*f[67]*f[68])/(4*U[0] - U[4]) + (10*f_11_2*sin2th*f[18]*f[20]*f[67]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_10_2*f[19]*f[20]*f[67]*f[68])/(4*U[0] - U[4]) + (10*cos2th*f_11_2*f[19]*f[20]*f[67]*f[68])/(4*U[0] - U[4]) - (10*cos2th*f_10_2*f[18]*f[21]*f[67]*f[68])/(4*U[0] - U[4]) - (10*cos2th*f_11_2*f[18]*f[21]*f[67]*f[68])/(4*U[0] - U[4]) + (10*f_10_2*sin2th*f[19]*f[21]*f[67]*f[68])/(4*U[0] - U[4]) + (10*f_11_2*sin2th*f[19]*f[21]*f[67]*f[68])/(4*U[0] - U[4]) - (10*f_10_2*sin2th*f[18]*f[20]*f[66]*f[69])/(4*U[0] - U[4]) - (10*f_11_2*sin2th*f[18]*f[20]*f[66]*f[69])/(4*U[0] - U[4]) - (10*cos2th*f_10_2*f[19]*f[20]*f[66]*f[69])/(4*U[0] - U[4]) - (10*cos2th*f_11_2*f[19]*f[20]*f[66]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_10_2*f[18]*f[21]*f[66]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_11_2*f[18]*f[21]*f[66]*f[69])/(4*U[0] - U[4]) - (10*f_10_2*sin2th*f[19]*f[21]*f[66]*f[69])/(4*U[0] - U[4]) - (10*f_11_2*sin2th*f[19]*f[21]*f[66]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_10_2*f[18]*f[20]*f[67]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_11_2*f[18]*f[20]*f[67]*f[69])/(4*U[0] - U[4]) - (10*f_10_2*sin2th*f[19]*f[20]*f[67]*f[69])/(4*U[0] - U[4]) - (10*f_11_2*sin2th*f[19]*f[20]*f[67]*f[69])/(4*U[0] - U[4]) + (10*f_10_2*sin2th*f[18]*f[21]*f[67]*f[69])/(4*U[0] - U[4]) + (10*f_11_2*sin2th*f[18]*f[21]*f[67]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_10_2*f[19]*f[21]*f[67]*f[69])/(4*U[0] - U[4]) + (10*cos2th*f_11_2*f[19]*f[21]*f[67]*f[69])/(4*U[0] - U[4]) + (12*cos2th*f_12_2*f[18]*f[20]*f[66]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_13_2*f[18]*f[20]*f[66]*f[68])/(5*U[0] - U[4]) - (12*f_12_2*sin2th*f[19]*f[20]*f[66]*f[68])/(5*U[0] - U[4]) - (12*f_13_2*sin2th*f[19]*f[20]*f[66]*f[68])/(5*U[0] - U[4]) + (12*f_12_2*sin2th*f[18]*f[21]*f[66]*f[68])/(5*U[0] - U[4]) + (12*f_13_2*sin2th*f[18]*f[21]*f[66]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_12_2*f[19]*f[21]*f[66]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_13_2*f[19]*f[21]*f[66]*f[68])/(5*U[0] - U[4]) + (12*f_12_2*sin2th*f[18]*f[20]*f[67]*f[68])/(5*U[0] - U[4]) + (12*f_13_2*sin2th*f[18]*f[20]*f[67]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_12_2*f[19]*f[20]*f[67]*f[68])/(5*U[0] - U[4]) + (12*cos2th*f_13_2*f[19]*f[20]*f[67]*f[68])/(5*U[0] - U[4]) - (12*cos2th*f_12_2*f[18]*f[21]*f[67]*f[68])/(5*U[0] - U[4]) - (12*cos2th*f_13_2*f[18]*f[21]*f[67]*f[68])/(5*U[0] - U[4]) + (12*f_12_2*sin2th*f[19]*f[21]*f[67]*f[68])/(5*U[0] - U[4]) + (12*f_13_2*sin2th*f[19]*f[21]*f[67]*f[68])/(5*U[0] - U[4]) - (12*f_12_2*sin2th*f[18]*f[20]*f[66]*f[69])/(5*U[0] - U[4]) - (12*f_13_2*sin2th*f[18]*f[20]*f[66]*f[69])/(5*U[0] - U[4]) - (12*cos2th*f_12_2*f[19]*f[20]*f[66]*f[69])/(5*U[0] - U[4]) - (12*cos2th*f_13_2*f[19]*f[20]*f[66]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_12_2*f[18]*f[21]*f[66]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_13_2*f[18]*f[21]*f[66]*f[69])/(5*U[0] - U[4]) - (12*f_12_2*sin2th*f[19]*f[21]*f[66]*f[69])/(5*U[0] - U[4]) - (12*f_13_2*sin2th*f[19]*f[21]*f[66]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_12_2*f[18]*f[20]*f[67]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_13_2*f[18]*f[20]*f[67]*f[69])/(5*U[0] - U[4]) - (12*f_12_2*sin2th*f[19]*f[20]*f[67]*f[69])/(5*U[0] - U[4]) - (12*f_13_2*sin2th*f[19]*f[20]*f[67]*f[69])/(5*U[0] - U[4]) + (12*f_12_2*sin2th*f[18]*f[21]*f[67]*f[69])/(5*U[0] - U[4]) + (12*f_13_2*sin2th*f[18]*f[21]*f[67]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_12_2*f[19]*f[21]*f[67]*f[69])/(5*U[0] - U[4]) + (12*cos2th*f_13_2*f[19]*f[21]*f[67]*f[69])/(5*U[0] - U[4]) + (14*cos2th*f_14_2*f[18]*f[20]*f[66]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_15_2*f[18]*f[20]*f[66]*f[68])/(6*U[0] - U[4]) - (14*f_14_2*sin2th*f[19]*f[20]*f[66]*f[68])/(6*U[0] - U[4]) - (14*f_15_2*sin2th*f[19]*f[20]*f[66]*f[68])/(6*U[0] - U[4]) + (14*f_14_2*sin2th*f[18]*f[21]*f[66]*f[68])/(6*U[0] - U[4]) + (14*f_15_2*sin2th*f[18]*f[21]*f[66]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_14_2*f[19]*f[21]*f[66]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_15_2*f[19]*f[21]*f[66]*f[68])/(6*U[0] - U[4]) + (14*f_14_2*sin2th*f[18]*f[20]*f[67]*f[68])/(6*U[0] - U[4]) + (14*f_15_2*sin2th*f[18]*f[20]*f[67]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_14_2*f[19]*f[20]*f[67]*f[68])/(6*U[0] - U[4]) + (14*cos2th*f_15_2*f[19]*f[20]*f[67]*f[68])/(6*U[0] - U[4]) - (14*cos2th*f_14_2*f[18]*f[21]*f[67]*f[68])/(6*U[0] - U[4]) - (14*cos2th*f_15_2*f[18]*f[21]*f[67]*f[68])/(6*U[0] - U[4]) + (14*f_14_2*sin2th*f[19]*f[21]*f[67]*f[68])/(6*U[0] - U[4]) + (14*f_15_2*sin2th*f[19]*f[21]*f[67]*f[68])/(6*U[0] - U[4]) - (14*f_14_2*sin2th*f[18]*f[20]*f[66]*f[69])/(6*U[0] - U[4]) - (14*f_15_2*sin2th*f[18]*f[20]*f[66]*f[69])/(6*U[0] - U[4]) - (14*cos2th*f_14_2*f[19]*f[20]*f[66]*f[69])/(6*U[0] - U[4]) - (14*cos2th*f_15_2*f[19]*f[20]*f[66]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_14_2*f[18]*f[21]*f[66]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_15_2*f[18]*f[21]*f[66]*f[69])/(6*U[0] - U[4]) - (14*f_14_2*sin2th*f[19]*f[21]*f[66]*f[69])/(6*U[0] - U[4]) - (14*f_15_2*sin2th*f[19]*f[21]*f[66]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_14_2*f[18]*f[20]*f[67]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_15_2*f[18]*f[20]*f[67]*f[69])/(6*U[0] - U[4]) - (14*f_14_2*sin2th*f[19]*f[20]*f[67]*f[69])/(6*U[0] - U[4]) - (14*f_15_2*sin2th*f[19]*f[20]*f[67]*f[69])/(6*U[0] - U[4]) + (14*f_14_2*sin2th*f[18]*f[21]*f[67]*f[69])/(6*U[0] - U[4]) + (14*f_15_2*sin2th*f[18]*f[21]*f[67]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_14_2*f[19]*f[21]*f[67]*f[69])/(6*U[0] - U[4]) + (14*cos2th*f_15_2*f[19]*f[21]*f[67]*f[69])/(6*U[0] - U[4]) - (2*cos2th*f_2_2*f[18]*f[20]*f[66]*f[68])/U[4] - (2*cos2th*f_3_2*f[18]*f[20]*f[66]*f[68])/U[4] + (2*f_2_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[4] + (2*f_3_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[4] - (2*f_2_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[4] - (2*f_3_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[4] - (2*cos2th*f_2_2*f[19]*f[21]*f[66]*f[68])/U[4] - (2*cos2th*f_3_2*f[19]*f[21]*f[66]*f[68])/U[4] - (2*f_2_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[4] - (2*f_3_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[4] - (2*cos2th*f_2_2*f[19]*f[20]*f[67]*f[68])/U[4] - (2*cos2th*f_3_2*f[19]*f[20]*f[67]*f[68])/U[4] + (2*cos2th*f_2_2*f[18]*f[21]*f[67]*f[68])/U[4] + (2*cos2th*f_3_2*f[18]*f[21]*f[67]*f[68])/U[4] - (2*f_2_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[4] - (2*f_3_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[4] + (2*f_2_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[4] + (2*f_3_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[4] + (2*cos2th*f_2_2*f[19]*f[20]*f[66]*f[69])/U[4] + (2*cos2th*f_3_2*f[19]*f[20]*f[66]*f[69])/U[4] - (2*cos2th*f_2_2*f[18]*f[21]*f[66]*f[69])/U[4] - (2*cos2th*f_3_2*f[18]*f[21]*f[66]*f[69])/U[4] + (2*f_2_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[4] + (2*f_3_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[4] - (2*cos2th*f_2_2*f[18]*f[20]*f[67]*f[69])/U[4] - (2*cos2th*f_3_2*f[18]*f[20]*f[67]*f[69])/U[4] + (2*f_2_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[4] + (2*f_3_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[4] - (2*f_2_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[4] - (2*f_3_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[4] - (2*cos2th*f_2_2*f[19]*f[21]*f[67]*f[69])/U[4] - (2*cos2th*f_3_2*f[19]*f[21]*f[67]*f[69])/U[4] - (3*cos2th*f_2_2*f[20]*f[22]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_3_2*f[20]*f[22]*f[68]*f[70])/(2.*U[4]) + (3*f_2_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[4]) + (3*f_3_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[4]) - (3*f_2_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[4]) - (3*f_3_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_2_2*f[21]*f[23]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_3_2*f[21]*f[23]*f[68]*f[70])/(2.*U[4]) - (3*f_2_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[4]) - (3*f_3_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_2_2*f[21]*f[22]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_3_2*f[21]*f[22]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_2_2*f[20]*f[23]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_3_2*f[20]*f[23]*f[69]*f[70])/(2.*U[4]) - (3*f_2_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[4]) - (3*f_3_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[4]) + (3*f_2_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[4]) + (3*f_3_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_2_2*f[21]*f[22]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_3_2*f[21]*f[22]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_2_2*f[20]*f[23]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_3_2*f[20]*f[23]*f[68]*f[71])/(2.*U[4]) + (3*f_2_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[4]) + (3*f_3_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_2_2*f[20]*f[22]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_3_2*f[20]*f[22]*f[69]*f[71])/(2.*U[4]) + (3*f_2_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[4]) + (3*f_3_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[4]) - (3*f_2_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[4]) - (3*f_3_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_2_2*f[21]*f[23]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_3_2*f[21]*f[23]*f[69]*f[71])/(2.*U[4]) - (4*cos2th*f_2_2*f[22]*f[24]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_3_2*f[22]*f[24]*f[70]*f[72])/(3.*U[4]) + (4*f_2_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[4]) + (4*f_3_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[4]) - (4*f_2_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[4]) - (4*f_3_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_2_2*f[23]*f[25]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_3_2*f[23]*f[25]*f[70]*f[72])/(3.*U[4]) - (4*f_2_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[4]) - (4*f_3_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_2_2*f[23]*f[24]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_3_2*f[23]*f[24]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_2_2*f[22]*f[25]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_3_2*f[22]*f[25]*f[71]*f[72])/(3.*U[4]) - (4*f_2_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[4]) - (4*f_3_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[4]) + (4*f_2_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[4]) + (4*f_3_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_2_2*f[23]*f[24]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_3_2*f[23]*f[24]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_2_2*f[22]*f[25]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_3_2*f[22]*f[25]*f[70]*f[73])/(3.*U[4]) + (4*f_2_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[4]) + (4*f_3_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_2_2*f[22]*f[24]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_3_2*f[22]*f[24]*f[71]*f[73])/(3.*U[4]) + (4*f_2_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[4]) + (4*f_3_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[4]) - (4*f_2_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[4]) - (4*f_3_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_2_2*f[23]*f[25]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_3_2*f[23]*f[25]*f[71]*f[73])/(3.*U[4]) - (5*cos2th*f_2_2*f[24]*f[26]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_3_2*f[24]*f[26]*f[72]*f[74])/(4.*U[4]) + (5*f_2_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[4]) + (5*f_3_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[4]) - (5*f_2_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[4]) - (5*f_3_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_2_2*f[25]*f[27]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_3_2*f[25]*f[27]*f[72]*f[74])/(4.*U[4]) - (5*f_2_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[4]) - (5*f_3_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_2_2*f[25]*f[26]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_3_2*f[25]*f[26]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_2_2*f[24]*f[27]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_3_2*f[24]*f[27]*f[73]*f[74])/(4.*U[4]) - (5*f_2_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[4]) - (5*f_3_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[4]) + (5*f_2_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[4]) + (5*f_3_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_2_2*f[25]*f[26]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_3_2*f[25]*f[26]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_2_2*f[24]*f[27]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_3_2*f[24]*f[27]*f[72]*f[75])/(4.*U[4]) + (5*f_2_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[4]) + (5*f_3_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_2_2*f[24]*f[26]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_3_2*f[24]*f[26]*f[73]*f[75])/(4.*U[4]) + (5*f_2_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[4]) + (5*f_3_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[4]) - (5*f_2_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[4]) - (5*f_3_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_2_2*f[25]*f[27]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_3_2*f[25]*f[27]*f[73]*f[75])/(4.*U[4]) - (6*cos2th*f_2_2*f[26]*f[28]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_3_2*f[26]*f[28]*f[74]*f[76])/(5.*U[4]) + (6*f_2_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[4]) + (6*f_3_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[4]) - (6*f_2_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[4]) - (6*f_3_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_2_2*f[27]*f[29]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_3_2*f[27]*f[29]*f[74]*f[76])/(5.*U[4]) - (6*f_2_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[4]) - (6*f_3_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_2_2*f[27]*f[28]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_3_2*f[27]*f[28]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_2_2*f[26]*f[29]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_3_2*f[26]*f[29]*f[75]*f[76])/(5.*U[4]) - (6*f_2_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[4]) - (6*f_3_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[4]) + (6*f_2_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[4]) + (6*f_3_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_2_2*f[27]*f[28]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_3_2*f[27]*f[28]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_2_2*f[26]*f[29]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_3_2*f[26]*f[29]*f[74]*f[77])/(5.*U[4]) + (6*f_2_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[4]) + (6*f_3_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_2_2*f[26]*f[28]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_3_2*f[26]*f[28]*f[75]*f[77])/(5.*U[4]) + (6*f_2_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[4]) + (6*f_3_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[4]) - (6*f_2_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[4]) - (6*f_3_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_2_2*f[27]*f[29]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_3_2*f[27]*f[29]*f[75]*f[77])/(5.*U[4]) - (7*cos2th*f_2_2*f[28]*f[30]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_3_2*f[28]*f[30]*f[76]*f[78])/(6.*U[4]) + (7*f_2_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[4]) + (7*f_3_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[4]) - (7*f_2_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[4]) - (7*f_3_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_2_2*f[29]*f[31]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_3_2*f[29]*f[31]*f[76]*f[78])/(6.*U[4]) - (7*f_2_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[4]) - (7*f_3_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_2_2*f[29]*f[30]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_3_2*f[29]*f[30]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_2_2*f[28]*f[31]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_3_2*f[28]*f[31]*f[77]*f[78])/(6.*U[4]) - (7*f_2_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[4]) - (7*f_3_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[4]) + (7*f_2_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[4]) + (7*f_3_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_2_2*f[29]*f[30]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_3_2*f[29]*f[30]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_2_2*f[28]*f[31]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_3_2*f[28]*f[31]*f[76]*f[79])/(6.*U[4]) + (7*f_2_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[4]) + (7*f_3_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_2_2*f[28]*f[30]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_3_2*f[28]*f[30]*f[77]*f[79])/(6.*U[4]) + (7*f_2_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[4]) + (7*f_3_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[4]) - (7*f_2_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[4]) - (7*f_3_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_2_2*f[29]*f[31]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_3_2*f[29]*f[31]*f[77]*f[79])/(6.*U[4])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[2]*J[3]*((2*cos2th*f_50_2*f[32]*f[34]*f[64]*f[66])/U[3] + (2*cos2th*f_51_2*f[32]*f[34]*f[64]*f[66])/U[3] + (3*cos2th*f_52_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) + (3*cos2th*f_53_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) + (4*cos2th*f_54_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) + (4*cos2th*f_55_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) + (5*cos2th*f_56_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) + (5*cos2th*f_57_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) + (6*cos2th*f_58_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) + (6*cos2th*f_59_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) + (7*cos2th*f_60_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) + (7*cos2th*f_61_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] + (2*f_51_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] + (3*f_52_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) + (3*f_53_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) + (4*f_54_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) + (4*f_55_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) + (5*f_56_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) + (5*f_57_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) + (6*f_58_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) + (6*f_59_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) + (7*f_60_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) + (7*f_61_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] - (2*f_51_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] - (3*f_52_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) - (3*f_53_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) - (4*f_54_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) - (4*f_55_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) - (5*f_56_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) - (5*f_57_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) - (6*f_58_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) - (6*f_59_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) - (7*f_60_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) - (7*f_61_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) + (2*cos2th*f_50_2*f[33]*f[35]*f[64]*f[66])/U[3] + (2*cos2th*f_51_2*f[33]*f[35]*f[64]*f[66])/U[3] + (3*cos2th*f_52_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) + (3*cos2th*f_53_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) + (4*cos2th*f_54_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) + (4*cos2th*f_55_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) + (5*cos2th*f_56_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) + (5*cos2th*f_57_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) + (6*cos2th*f_58_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) + (6*cos2th*f_59_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) + (7*cos2th*f_60_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) + (7*cos2th*f_61_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] - (2*f_51_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] - (3*f_52_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) - (3*f_53_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) - (4*f_54_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) - (4*f_55_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) - (5*f_56_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) - (5*f_57_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) - (6*f_58_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) - (6*f_59_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) - (7*f_60_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) - (7*f_61_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) + (2*cos2th*f_50_2*f[33]*f[34]*f[65]*f[66])/U[3] + (2*cos2th*f_51_2*f[33]*f[34]*f[65]*f[66])/U[3] + (3*cos2th*f_52_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) + (3*cos2th*f_53_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) + (4*cos2th*f_54_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) + (4*cos2th*f_55_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) + (5*cos2th*f_56_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) + (5*cos2th*f_57_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) + (6*cos2th*f_58_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) + (6*cos2th*f_59_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) + (7*cos2th*f_60_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) + (7*cos2th*f_61_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) - (2*cos2th*f_50_2*f[32]*f[35]*f[65]*f[66])/U[3] - (2*cos2th*f_51_2*f[32]*f[35]*f[65]*f[66])/U[3] - (3*cos2th*f_52_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) - (3*cos2th*f_53_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) - (4*cos2th*f_54_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) - (4*cos2th*f_55_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) - (5*cos2th*f_56_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) - (5*cos2th*f_57_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) - (6*cos2th*f_58_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) - (6*cos2th*f_59_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) - (7*cos2th*f_60_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) - (7*cos2th*f_61_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] - (2*f_51_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] - (3*f_52_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) - (3*f_53_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) - (4*f_54_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) - (4*f_55_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) - (5*f_56_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) - (5*f_57_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) - (6*f_58_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) - (6*f_59_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) - (7*f_60_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) - (7*f_61_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] + (2*f_51_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] + (3*f_52_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) + (3*f_53_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) + (4*f_54_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) + (4*f_55_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) + (5*f_56_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) + (5*f_57_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) + (6*f_58_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) + (6*f_59_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) + (7*f_60_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) + (7*f_61_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_50_2*f[33]*f[34]*f[64]*f[67])/U[3] - (2*cos2th*f_51_2*f[33]*f[34]*f[64]*f[67])/U[3] - (3*cos2th*f_52_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) - (3*cos2th*f_53_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) - (4*cos2th*f_54_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) - (4*cos2th*f_55_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) - (5*cos2th*f_56_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) - (5*cos2th*f_57_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) - (6*cos2th*f_58_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) - (6*cos2th*f_59_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) - (7*cos2th*f_60_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) - (7*cos2th*f_61_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[32]*f[35]*f[64]*f[67])/U[3] + (2*cos2th*f_51_2*f[32]*f[35]*f[64]*f[67])/U[3] + (3*cos2th*f_52_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) + (3*cos2th*f_53_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) + (4*cos2th*f_54_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) + (4*cos2th*f_55_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) + (5*cos2th*f_56_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) + (5*cos2th*f_57_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) + (6*cos2th*f_58_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) + (6*cos2th*f_59_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) + (7*cos2th*f_60_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) + (7*cos2th*f_61_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) + (2*f_50_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] + (2*f_51_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] + (3*f_52_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) + (3*f_53_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) + (4*f_54_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) + (4*f_55_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) + (5*f_56_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) + (5*f_57_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) + (6*f_58_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) + (6*f_59_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) + (7*f_60_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) + (7*f_61_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[32]*f[34]*f[65]*f[67])/U[3] + (2*cos2th*f_51_2*f[32]*f[34]*f[65]*f[67])/U[3] + (3*cos2th*f_52_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) + (3*cos2th*f_53_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) + (4*cos2th*f_54_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) + (4*cos2th*f_55_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) + (5*cos2th*f_56_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) + (5*cos2th*f_57_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) + (6*cos2th*f_58_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) + (6*cos2th*f_59_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) + (7*cos2th*f_60_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) + (7*cos2th*f_61_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) + (2*f_50_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] + (2*f_51_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] + (3*f_52_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) + (3*f_53_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) + (4*f_54_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) + (4*f_55_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) + (5*f_56_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) + (5*f_57_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) + (6*f_58_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) + (6*f_59_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) + (7*f_60_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) + (7*f_61_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) - (2*f_50_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] - (2*f_51_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] - (3*f_52_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) - (3*f_53_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) - (4*f_54_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) - (4*f_55_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) - (5*f_56_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) - (5*f_57_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) - (6*f_58_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) - (6*f_59_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) - (7*f_60_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) - (7*f_61_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[33]*f[35]*f[65]*f[67])/U[3] + (2*cos2th*f_51_2*f[33]*f[35]*f[65]*f[67])/U[3] + (3*cos2th*f_52_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) + (3*cos2th*f_53_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) + (4*cos2th*f_54_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) + (4*cos2th*f_55_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) + (5*cos2th*f_56_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) + (5*cos2th*f_57_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) + (6*cos2th*f_58_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) + (6*cos2th*f_59_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) + (7*cos2th*f_60_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (7*cos2th*f_61_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (14*cos2th*f_50_2*f[44]*f[46]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_51_2*f[44]*f[46]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*f_50_2*sin2th*f[45]*f[46]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*f_51_2*sin2th*f[45]*f[46]*f[76]*f[78])/(U[3] - 6*U[4]) - (14*f_50_2*sin2th*f[44]*f[47]*f[76]*f[78])/(U[3] - 6*U[4]) - (14*f_51_2*sin2th*f[44]*f[47]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_50_2*f[45]*f[47]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_51_2*f[45]*f[47]*f[76]*f[78])/(U[3] - 6*U[4]) - (14*f_50_2*sin2th*f[44]*f[46]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*f_51_2*sin2th*f[44]*f[46]*f[77]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_50_2*f[45]*f[46]*f[77]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_51_2*f[45]*f[46]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*cos2th*f_50_2*f[44]*f[47]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*cos2th*f_51_2*f[44]*f[47]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*f_50_2*sin2th*f[45]*f[47]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*f_51_2*sin2th*f[45]*f[47]*f[77]*f[78])/(U[3] - 6*U[4]) + (14*f_50_2*sin2th*f[44]*f[46]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*f_51_2*sin2th*f[44]*f[46]*f[76]*f[79])/(U[3] - 6*U[4]) - (14*cos2th*f_50_2*f[45]*f[46]*f[76]*f[79])/(U[3] - 6*U[4]) - (14*cos2th*f_51_2*f[45]*f[46]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_50_2*f[44]*f[47]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_51_2*f[44]*f[47]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*f_50_2*sin2th*f[45]*f[47]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*f_51_2*sin2th*f[45]*f[47]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_50_2*f[44]*f[46]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_51_2*f[44]*f[46]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*f_50_2*sin2th*f[45]*f[46]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*f_51_2*sin2th*f[45]*f[46]*f[77]*f[79])/(U[3] - 6*U[4]) - (14*f_50_2*sin2th*f[44]*f[47]*f[77]*f[79])/(U[3] - 6*U[4]) - (14*f_51_2*sin2th*f[44]*f[47]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_50_2*f[45]*f[47]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_51_2*f[45]*f[47]*f[77]*f[79])/(U[3] - 6*U[4]) + (21*cos2th*f_52_2*f[44]*f[46]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_53_2*f[44]*f[46]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*f_52_2*sin2th*f[45]*f[46]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*f_53_2*sin2th*f[45]*f[46]*f[76]*f[78])/(2*U[3] - 6*U[4]) - (21*f_52_2*sin2th*f[44]*f[47]*f[76]*f[78])/(2*U[3] - 6*U[4]) - (21*f_53_2*sin2th*f[44]*f[47]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_52_2*f[45]*f[47]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_53_2*f[45]*f[47]*f[76]*f[78])/(2*U[3] - 6*U[4]) - (21*f_52_2*sin2th*f[44]*f[46]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*f_53_2*sin2th*f[44]*f[46]*f[77]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_52_2*f[45]*f[46]*f[77]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_53_2*f[45]*f[46]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*cos2th*f_52_2*f[44]*f[47]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*cos2th*f_53_2*f[44]*f[47]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*f_52_2*sin2th*f[45]*f[47]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*f_53_2*sin2th*f[45]*f[47]*f[77]*f[78])/(2*U[3] - 6*U[4]) + (21*f_52_2*sin2th*f[44]*f[46]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*f_53_2*sin2th*f[44]*f[46]*f[76]*f[79])/(2*U[3] - 6*U[4]) - (21*cos2th*f_52_2*f[45]*f[46]*f[76]*f[79])/(2*U[3] - 6*U[4]) - (21*cos2th*f_53_2*f[45]*f[46]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_52_2*f[44]*f[47]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_53_2*f[44]*f[47]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*f_52_2*sin2th*f[45]*f[47]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*f_53_2*sin2th*f[45]*f[47]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_52_2*f[44]*f[46]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_53_2*f[44]*f[46]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*f_52_2*sin2th*f[45]*f[46]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*f_53_2*sin2th*f[45]*f[46]*f[77]*f[79])/(2*U[3] - 6*U[4]) - (21*f_52_2*sin2th*f[44]*f[47]*f[77]*f[79])/(2*U[3] - 6*U[4]) - (21*f_53_2*sin2th*f[44]*f[47]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_52_2*f[45]*f[47]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_53_2*f[45]*f[47]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (28*cos2th*f_54_2*f[44]*f[46]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_55_2*f[44]*f[46]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*f_54_2*sin2th*f[45]*f[46]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*f_55_2*sin2th*f[45]*f[46]*f[76]*f[78])/(3*U[3] - 6*U[4]) - (28*f_54_2*sin2th*f[44]*f[47]*f[76]*f[78])/(3*U[3] - 6*U[4]) - (28*f_55_2*sin2th*f[44]*f[47]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_54_2*f[45]*f[47]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_55_2*f[45]*f[47]*f[76]*f[78])/(3*U[3] - 6*U[4]) - (28*f_54_2*sin2th*f[44]*f[46]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*f_55_2*sin2th*f[44]*f[46]*f[77]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_54_2*f[45]*f[46]*f[77]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_55_2*f[45]*f[46]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*cos2th*f_54_2*f[44]*f[47]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*cos2th*f_55_2*f[44]*f[47]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*f_54_2*sin2th*f[45]*f[47]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*f_55_2*sin2th*f[45]*f[47]*f[77]*f[78])/(3*U[3] - 6*U[4]) + (28*f_54_2*sin2th*f[44]*f[46]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*f_55_2*sin2th*f[44]*f[46]*f[76]*f[79])/(3*U[3] - 6*U[4]) - (28*cos2th*f_54_2*f[45]*f[46]*f[76]*f[79])/(3*U[3] - 6*U[4]) - (28*cos2th*f_55_2*f[45]*f[46]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_54_2*f[44]*f[47]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_55_2*f[44]*f[47]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*f_54_2*sin2th*f[45]*f[47]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*f_55_2*sin2th*f[45]*f[47]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_54_2*f[44]*f[46]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_55_2*f[44]*f[46]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*f_54_2*sin2th*f[45]*f[46]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*f_55_2*sin2th*f[45]*f[46]*f[77]*f[79])/(3*U[3] - 6*U[4]) - (28*f_54_2*sin2th*f[44]*f[47]*f[77]*f[79])/(3*U[3] - 6*U[4]) - (28*f_55_2*sin2th*f[44]*f[47]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_54_2*f[45]*f[47]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_55_2*f[45]*f[47]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (35*cos2th*f_56_2*f[44]*f[46]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_57_2*f[44]*f[46]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*f_56_2*sin2th*f[45]*f[46]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*f_57_2*sin2th*f[45]*f[46]*f[76]*f[78])/(4*U[3] - 6*U[4]) - (35*f_56_2*sin2th*f[44]*f[47]*f[76]*f[78])/(4*U[3] - 6*U[4]) - (35*f_57_2*sin2th*f[44]*f[47]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_56_2*f[45]*f[47]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_57_2*f[45]*f[47]*f[76]*f[78])/(4*U[3] - 6*U[4]) - (35*f_56_2*sin2th*f[44]*f[46]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*f_57_2*sin2th*f[44]*f[46]*f[77]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_56_2*f[45]*f[46]*f[77]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_57_2*f[45]*f[46]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*cos2th*f_56_2*f[44]*f[47]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*cos2th*f_57_2*f[44]*f[47]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*f_56_2*sin2th*f[45]*f[47]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*f_57_2*sin2th*f[45]*f[47]*f[77]*f[78])/(4*U[3] - 6*U[4]) + (35*f_56_2*sin2th*f[44]*f[46]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*f_57_2*sin2th*f[44]*f[46]*f[76]*f[79])/(4*U[3] - 6*U[4]) - (35*cos2th*f_56_2*f[45]*f[46]*f[76]*f[79])/(4*U[3] - 6*U[4]) - (35*cos2th*f_57_2*f[45]*f[46]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_56_2*f[44]*f[47]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_57_2*f[44]*f[47]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*f_56_2*sin2th*f[45]*f[47]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*f_57_2*sin2th*f[45]*f[47]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_56_2*f[44]*f[46]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_57_2*f[44]*f[46]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*f_56_2*sin2th*f[45]*f[46]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*f_57_2*sin2th*f[45]*f[46]*f[77]*f[79])/(4*U[3] - 6*U[4]) - (35*f_56_2*sin2th*f[44]*f[47]*f[77]*f[79])/(4*U[3] - 6*U[4]) - (35*f_57_2*sin2th*f[44]*f[47]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_56_2*f[45]*f[47]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_57_2*f[45]*f[47]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (42*cos2th*f_58_2*f[44]*f[46]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_59_2*f[44]*f[46]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*f_58_2*sin2th*f[45]*f[46]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*f_59_2*sin2th*f[45]*f[46]*f[76]*f[78])/(5*U[3] - 6*U[4]) - (42*f_58_2*sin2th*f[44]*f[47]*f[76]*f[78])/(5*U[3] - 6*U[4]) - (42*f_59_2*sin2th*f[44]*f[47]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_58_2*f[45]*f[47]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_59_2*f[45]*f[47]*f[76]*f[78])/(5*U[3] - 6*U[4]) - (42*f_58_2*sin2th*f[44]*f[46]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*f_59_2*sin2th*f[44]*f[46]*f[77]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_58_2*f[45]*f[46]*f[77]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_59_2*f[45]*f[46]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*cos2th*f_58_2*f[44]*f[47]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*cos2th*f_59_2*f[44]*f[47]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*f_58_2*sin2th*f[45]*f[47]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*f_59_2*sin2th*f[45]*f[47]*f[77]*f[78])/(5*U[3] - 6*U[4]) + (42*f_58_2*sin2th*f[44]*f[46]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*f_59_2*sin2th*f[44]*f[46]*f[76]*f[79])/(5*U[3] - 6*U[4]) - (42*cos2th*f_58_2*f[45]*f[46]*f[76]*f[79])/(5*U[3] - 6*U[4]) - (42*cos2th*f_59_2*f[45]*f[46]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_58_2*f[44]*f[47]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_59_2*f[44]*f[47]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*f_58_2*sin2th*f[45]*f[47]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*f_59_2*sin2th*f[45]*f[47]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_58_2*f[44]*f[46]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_59_2*f[44]*f[46]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*f_58_2*sin2th*f[45]*f[46]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*f_59_2*sin2th*f[45]*f[46]*f[77]*f[79])/(5*U[3] - 6*U[4]) - (42*f_58_2*sin2th*f[44]*f[47]*f[77]*f[79])/(5*U[3] - 6*U[4]) - (42*f_59_2*sin2th*f[44]*f[47]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_58_2*f[45]*f[47]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_59_2*f[45]*f[47]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (12*cos2th*f_50_2*f[42]*f[44]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_51_2*f[42]*f[44]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*f_50_2*sin2th*f[43]*f[44]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*f_51_2*sin2th*f[43]*f[44]*f[74]*f[76])/(U[3] - 5*U[4]) - (12*f_50_2*sin2th*f[42]*f[45]*f[74]*f[76])/(U[3] - 5*U[4]) - (12*f_51_2*sin2th*f[42]*f[45]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_50_2*f[43]*f[45]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_51_2*f[43]*f[45]*f[74]*f[76])/(U[3] - 5*U[4]) - (12*f_50_2*sin2th*f[42]*f[44]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*f_51_2*sin2th*f[42]*f[44]*f[75]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_50_2*f[43]*f[44]*f[75]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_51_2*f[43]*f[44]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*cos2th*f_50_2*f[42]*f[45]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*cos2th*f_51_2*f[42]*f[45]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*f_50_2*sin2th*f[43]*f[45]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*f_51_2*sin2th*f[43]*f[45]*f[75]*f[76])/(U[3] - 5*U[4]) + (12*f_50_2*sin2th*f[42]*f[44]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*f_51_2*sin2th*f[42]*f[44]*f[74]*f[77])/(U[3] - 5*U[4]) - (12*cos2th*f_50_2*f[43]*f[44]*f[74]*f[77])/(U[3] - 5*U[4]) - (12*cos2th*f_51_2*f[43]*f[44]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_50_2*f[42]*f[45]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_51_2*f[42]*f[45]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*f_50_2*sin2th*f[43]*f[45]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*f_51_2*sin2th*f[43]*f[45]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_50_2*f[42]*f[44]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_51_2*f[42]*f[44]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*f_50_2*sin2th*f[43]*f[44]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*f_51_2*sin2th*f[43]*f[44]*f[75]*f[77])/(U[3] - 5*U[4]) - (12*f_50_2*sin2th*f[42]*f[45]*f[75]*f[77])/(U[3] - 5*U[4]) - (12*f_51_2*sin2th*f[42]*f[45]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_50_2*f[43]*f[45]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_51_2*f[43]*f[45]*f[75]*f[77])/(U[3] - 5*U[4]) + (18*cos2th*f_52_2*f[42]*f[44]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_53_2*f[42]*f[44]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*f_52_2*sin2th*f[43]*f[44]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*f_53_2*sin2th*f[43]*f[44]*f[74]*f[76])/(2*U[3] - 5*U[4]) - (18*f_52_2*sin2th*f[42]*f[45]*f[74]*f[76])/(2*U[3] - 5*U[4]) - (18*f_53_2*sin2th*f[42]*f[45]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_52_2*f[43]*f[45]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_53_2*f[43]*f[45]*f[74]*f[76])/(2*U[3] - 5*U[4]) - (18*f_52_2*sin2th*f[42]*f[44]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*f_53_2*sin2th*f[42]*f[44]*f[75]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_52_2*f[43]*f[44]*f[75]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_53_2*f[43]*f[44]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*cos2th*f_52_2*f[42]*f[45]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*cos2th*f_53_2*f[42]*f[45]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*f_52_2*sin2th*f[43]*f[45]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*f_53_2*sin2th*f[43]*f[45]*f[75]*f[76])/(2*U[3] - 5*U[4]) + (18*f_52_2*sin2th*f[42]*f[44]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*f_53_2*sin2th*f[42]*f[44]*f[74]*f[77])/(2*U[3] - 5*U[4]) - (18*cos2th*f_52_2*f[43]*f[44]*f[74]*f[77])/(2*U[3] - 5*U[4]) - (18*cos2th*f_53_2*f[43]*f[44]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_52_2*f[42]*f[45]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_53_2*f[42]*f[45]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*f_52_2*sin2th*f[43]*f[45]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*f_53_2*sin2th*f[43]*f[45]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_52_2*f[42]*f[44]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_53_2*f[42]*f[44]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*f_52_2*sin2th*f[43]*f[44]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*f_53_2*sin2th*f[43]*f[44]*f[75]*f[77])/(2*U[3] - 5*U[4]) - (18*f_52_2*sin2th*f[42]*f[45]*f[75]*f[77])/(2*U[3] - 5*U[4]) - (18*f_53_2*sin2th*f[42]*f[45]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_52_2*f[43]*f[45]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_53_2*f[43]*f[45]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (24*cos2th*f_54_2*f[42]*f[44]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_55_2*f[42]*f[44]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*f_54_2*sin2th*f[43]*f[44]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*f_55_2*sin2th*f[43]*f[44]*f[74]*f[76])/(3*U[3] - 5*U[4]) - (24*f_54_2*sin2th*f[42]*f[45]*f[74]*f[76])/(3*U[3] - 5*U[4]) - (24*f_55_2*sin2th*f[42]*f[45]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_54_2*f[43]*f[45]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_55_2*f[43]*f[45]*f[74]*f[76])/(3*U[3] - 5*U[4]) - (24*f_54_2*sin2th*f[42]*f[44]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*f_55_2*sin2th*f[42]*f[44]*f[75]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_54_2*f[43]*f[44]*f[75]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_55_2*f[43]*f[44]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*cos2th*f_54_2*f[42]*f[45]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*cos2th*f_55_2*f[42]*f[45]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*f_54_2*sin2th*f[43]*f[45]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*f_55_2*sin2th*f[43]*f[45]*f[75]*f[76])/(3*U[3] - 5*U[4]) + (24*f_54_2*sin2th*f[42]*f[44]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*f_55_2*sin2th*f[42]*f[44]*f[74]*f[77])/(3*U[3] - 5*U[4]) - (24*cos2th*f_54_2*f[43]*f[44]*f[74]*f[77])/(3*U[3] - 5*U[4]) - (24*cos2th*f_55_2*f[43]*f[44]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_54_2*f[42]*f[45]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_55_2*f[42]*f[45]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*f_54_2*sin2th*f[43]*f[45]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*f_55_2*sin2th*f[43]*f[45]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_54_2*f[42]*f[44]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_55_2*f[42]*f[44]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*f_54_2*sin2th*f[43]*f[44]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*f_55_2*sin2th*f[43]*f[44]*f[75]*f[77])/(3*U[3] - 5*U[4]) - (24*f_54_2*sin2th*f[42]*f[45]*f[75]*f[77])/(3*U[3] - 5*U[4]) - (24*f_55_2*sin2th*f[42]*f[45]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_54_2*f[43]*f[45]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_55_2*f[43]*f[45]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (30*cos2th*f_56_2*f[42]*f[44]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_57_2*f[42]*f[44]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*f_56_2*sin2th*f[43]*f[44]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*f_57_2*sin2th*f[43]*f[44]*f[74]*f[76])/(4*U[3] - 5*U[4]) - (30*f_56_2*sin2th*f[42]*f[45]*f[74]*f[76])/(4*U[3] - 5*U[4]) - (30*f_57_2*sin2th*f[42]*f[45]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_56_2*f[43]*f[45]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_57_2*f[43]*f[45]*f[74]*f[76])/(4*U[3] - 5*U[4]) - (30*f_56_2*sin2th*f[42]*f[44]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*f_57_2*sin2th*f[42]*f[44]*f[75]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_56_2*f[43]*f[44]*f[75]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_57_2*f[43]*f[44]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*cos2th*f_56_2*f[42]*f[45]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*cos2th*f_57_2*f[42]*f[45]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*f_56_2*sin2th*f[43]*f[45]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*f_57_2*sin2th*f[43]*f[45]*f[75]*f[76])/(4*U[3] - 5*U[4]) + (30*f_56_2*sin2th*f[42]*f[44]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*f_57_2*sin2th*f[42]*f[44]*f[74]*f[77])/(4*U[3] - 5*U[4]) - (30*cos2th*f_56_2*f[43]*f[44]*f[74]*f[77])/(4*U[3] - 5*U[4]) - (30*cos2th*f_57_2*f[43]*f[44]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_56_2*f[42]*f[45]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_57_2*f[42]*f[45]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*f_56_2*sin2th*f[43]*f[45]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*f_57_2*sin2th*f[43]*f[45]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_56_2*f[42]*f[44]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_57_2*f[42]*f[44]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*f_56_2*sin2th*f[43]*f[44]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*f_57_2*sin2th*f[43]*f[44]*f[75]*f[77])/(4*U[3] - 5*U[4]) - (30*f_56_2*sin2th*f[42]*f[45]*f[75]*f[77])/(4*U[3] - 5*U[4]) - (30*f_57_2*sin2th*f[42]*f[45]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_56_2*f[43]*f[45]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_57_2*f[43]*f[45]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (42*cos2th*f_60_2*f[42]*f[44]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_61_2*f[42]*f[44]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*f_60_2*sin2th*f[43]*f[44]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*f_61_2*sin2th*f[43]*f[44]*f[74]*f[76])/(6*U[3] - 5*U[4]) - (42*f_60_2*sin2th*f[42]*f[45]*f[74]*f[76])/(6*U[3] - 5*U[4]) - (42*f_61_2*sin2th*f[42]*f[45]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_60_2*f[43]*f[45]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_61_2*f[43]*f[45]*f[74]*f[76])/(6*U[3] - 5*U[4]) - (42*f_60_2*sin2th*f[42]*f[44]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*f_61_2*sin2th*f[42]*f[44]*f[75]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_60_2*f[43]*f[44]*f[75]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_61_2*f[43]*f[44]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*cos2th*f_60_2*f[42]*f[45]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*cos2th*f_61_2*f[42]*f[45]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*f_60_2*sin2th*f[43]*f[45]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*f_61_2*sin2th*f[43]*f[45]*f[75]*f[76])/(6*U[3] - 5*U[4]) + (42*f_60_2*sin2th*f[42]*f[44]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*f_61_2*sin2th*f[42]*f[44]*f[74]*f[77])/(6*U[3] - 5*U[4]) - (42*cos2th*f_60_2*f[43]*f[44]*f[74]*f[77])/(6*U[3] - 5*U[4]) - (42*cos2th*f_61_2*f[43]*f[44]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_60_2*f[42]*f[45]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_61_2*f[42]*f[45]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*f_60_2*sin2th*f[43]*f[45]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*f_61_2*sin2th*f[43]*f[45]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_60_2*f[42]*f[44]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_61_2*f[42]*f[44]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*f_60_2*sin2th*f[43]*f[44]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*f_61_2*sin2th*f[43]*f[44]*f[75]*f[77])/(6*U[3] - 5*U[4]) - (42*f_60_2*sin2th*f[42]*f[45]*f[75]*f[77])/(6*U[3] - 5*U[4]) - (42*f_61_2*sin2th*f[42]*f[45]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_60_2*f[43]*f[45]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_61_2*f[43]*f[45]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (10*cos2th*f_50_2*f[40]*f[42]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_51_2*f[40]*f[42]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*f_50_2*sin2th*f[41]*f[42]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*f_51_2*sin2th*f[41]*f[42]*f[72]*f[74])/(U[3] - 4*U[4]) - (10*f_50_2*sin2th*f[40]*f[43]*f[72]*f[74])/(U[3] - 4*U[4]) - (10*f_51_2*sin2th*f[40]*f[43]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_50_2*f[41]*f[43]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_51_2*f[41]*f[43]*f[72]*f[74])/(U[3] - 4*U[4]) - (10*f_50_2*sin2th*f[40]*f[42]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*f_51_2*sin2th*f[40]*f[42]*f[73]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_50_2*f[41]*f[42]*f[73]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_51_2*f[41]*f[42]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*cos2th*f_50_2*f[40]*f[43]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*cos2th*f_51_2*f[40]*f[43]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*f_50_2*sin2th*f[41]*f[43]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*f_51_2*sin2th*f[41]*f[43]*f[73]*f[74])/(U[3] - 4*U[4]) + (10*f_50_2*sin2th*f[40]*f[42]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*f_51_2*sin2th*f[40]*f[42]*f[72]*f[75])/(U[3] - 4*U[4]) - (10*cos2th*f_50_2*f[41]*f[42]*f[72]*f[75])/(U[3] - 4*U[4]) - (10*cos2th*f_51_2*f[41]*f[42]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_50_2*f[40]*f[43]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_51_2*f[40]*f[43]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*f_50_2*sin2th*f[41]*f[43]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*f_51_2*sin2th*f[41]*f[43]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_50_2*f[40]*f[42]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_51_2*f[40]*f[42]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*f_50_2*sin2th*f[41]*f[42]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*f_51_2*sin2th*f[41]*f[42]*f[73]*f[75])/(U[3] - 4*U[4]) - (10*f_50_2*sin2th*f[40]*f[43]*f[73]*f[75])/(U[3] - 4*U[4]) - (10*f_51_2*sin2th*f[40]*f[43]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_50_2*f[41]*f[43]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_51_2*f[41]*f[43]*f[73]*f[75])/(U[3] - 4*U[4]) + (15*cos2th*f_52_2*f[40]*f[42]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_53_2*f[40]*f[42]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*f_52_2*sin2th*f[41]*f[42]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*f_53_2*sin2th*f[41]*f[42]*f[72]*f[74])/(2*U[3] - 4*U[4]) - (15*f_52_2*sin2th*f[40]*f[43]*f[72]*f[74])/(2*U[3] - 4*U[4]) - (15*f_53_2*sin2th*f[40]*f[43]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_52_2*f[41]*f[43]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_53_2*f[41]*f[43]*f[72]*f[74])/(2*U[3] - 4*U[4]) - (15*f_52_2*sin2th*f[40]*f[42]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*f_53_2*sin2th*f[40]*f[42]*f[73]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_52_2*f[41]*f[42]*f[73]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_53_2*f[41]*f[42]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*cos2th*f_52_2*f[40]*f[43]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*cos2th*f_53_2*f[40]*f[43]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*f_52_2*sin2th*f[41]*f[43]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*f_53_2*sin2th*f[41]*f[43]*f[73]*f[74])/(2*U[3] - 4*U[4]) + (15*f_52_2*sin2th*f[40]*f[42]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*f_53_2*sin2th*f[40]*f[42]*f[72]*f[75])/(2*U[3] - 4*U[4]) - (15*cos2th*f_52_2*f[41]*f[42]*f[72]*f[75])/(2*U[3] - 4*U[4]) - (15*cos2th*f_53_2*f[41]*f[42]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_52_2*f[40]*f[43]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_53_2*f[40]*f[43]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*f_52_2*sin2th*f[41]*f[43]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*f_53_2*sin2th*f[41]*f[43]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_52_2*f[40]*f[42]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_53_2*f[40]*f[42]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*f_52_2*sin2th*f[41]*f[42]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*f_53_2*sin2th*f[41]*f[42]*f[73]*f[75])/(2*U[3] - 4*U[4]) - (15*f_52_2*sin2th*f[40]*f[43]*f[73]*f[75])/(2*U[3] - 4*U[4]) - (15*f_53_2*sin2th*f[40]*f[43]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_52_2*f[41]*f[43]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_53_2*f[41]*f[43]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (20*cos2th*f_54_2*f[40]*f[42]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_55_2*f[40]*f[42]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*f_54_2*sin2th*f[41]*f[42]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*f_55_2*sin2th*f[41]*f[42]*f[72]*f[74])/(3*U[3] - 4*U[4]) - (20*f_54_2*sin2th*f[40]*f[43]*f[72]*f[74])/(3*U[3] - 4*U[4]) - (20*f_55_2*sin2th*f[40]*f[43]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_54_2*f[41]*f[43]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_55_2*f[41]*f[43]*f[72]*f[74])/(3*U[3] - 4*U[4]) - (20*f_54_2*sin2th*f[40]*f[42]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*f_55_2*sin2th*f[40]*f[42]*f[73]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_54_2*f[41]*f[42]*f[73]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_55_2*f[41]*f[42]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*cos2th*f_54_2*f[40]*f[43]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*cos2th*f_55_2*f[40]*f[43]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*f_54_2*sin2th*f[41]*f[43]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*f_55_2*sin2th*f[41]*f[43]*f[73]*f[74])/(3*U[3] - 4*U[4]) + (20*f_54_2*sin2th*f[40]*f[42]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*f_55_2*sin2th*f[40]*f[42]*f[72]*f[75])/(3*U[3] - 4*U[4]) - (20*cos2th*f_54_2*f[41]*f[42]*f[72]*f[75])/(3*U[3] - 4*U[4]) - (20*cos2th*f_55_2*f[41]*f[42]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_54_2*f[40]*f[43]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_55_2*f[40]*f[43]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*f_54_2*sin2th*f[41]*f[43]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*f_55_2*sin2th*f[41]*f[43]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_54_2*f[40]*f[42]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_55_2*f[40]*f[42]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*f_54_2*sin2th*f[41]*f[42]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*f_55_2*sin2th*f[41]*f[42]*f[73]*f[75])/(3*U[3] - 4*U[4]) - (20*f_54_2*sin2th*f[40]*f[43]*f[73]*f[75])/(3*U[3] - 4*U[4]) - (20*f_55_2*sin2th*f[40]*f[43]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_54_2*f[41]*f[43]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_55_2*f[41]*f[43]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (30*cos2th*f_58_2*f[40]*f[42]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_59_2*f[40]*f[42]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*f_58_2*sin2th*f[41]*f[42]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*f_59_2*sin2th*f[41]*f[42]*f[72]*f[74])/(5*U[3] - 4*U[4]) - (30*f_58_2*sin2th*f[40]*f[43]*f[72]*f[74])/(5*U[3] - 4*U[4]) - (30*f_59_2*sin2th*f[40]*f[43]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_58_2*f[41]*f[43]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_59_2*f[41]*f[43]*f[72]*f[74])/(5*U[3] - 4*U[4]) - (30*f_58_2*sin2th*f[40]*f[42]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*f_59_2*sin2th*f[40]*f[42]*f[73]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_58_2*f[41]*f[42]*f[73]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_59_2*f[41]*f[42]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*cos2th*f_58_2*f[40]*f[43]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*cos2th*f_59_2*f[40]*f[43]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*f_58_2*sin2th*f[41]*f[43]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*f_59_2*sin2th*f[41]*f[43]*f[73]*f[74])/(5*U[3] - 4*U[4]) + (30*f_58_2*sin2th*f[40]*f[42]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*f_59_2*sin2th*f[40]*f[42]*f[72]*f[75])/(5*U[3] - 4*U[4]) - (30*cos2th*f_58_2*f[41]*f[42]*f[72]*f[75])/(5*U[3] - 4*U[4]) - (30*cos2th*f_59_2*f[41]*f[42]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_58_2*f[40]*f[43]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_59_2*f[40]*f[43]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*f_58_2*sin2th*f[41]*f[43]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*f_59_2*sin2th*f[41]*f[43]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_58_2*f[40]*f[42]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_59_2*f[40]*f[42]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*f_58_2*sin2th*f[41]*f[42]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*f_59_2*sin2th*f[41]*f[42]*f[73]*f[75])/(5*U[3] - 4*U[4]) - (30*f_58_2*sin2th*f[40]*f[43]*f[73]*f[75])/(5*U[3] - 4*U[4]) - (30*f_59_2*sin2th*f[40]*f[43]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_58_2*f[41]*f[43]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_59_2*f[41]*f[43]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (35*cos2th*f_60_2*f[40]*f[42]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_61_2*f[40]*f[42]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*f_60_2*sin2th*f[41]*f[42]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*f_61_2*sin2th*f[41]*f[42]*f[72]*f[74])/(6*U[3] - 4*U[4]) - (35*f_60_2*sin2th*f[40]*f[43]*f[72]*f[74])/(6*U[3] - 4*U[4]) - (35*f_61_2*sin2th*f[40]*f[43]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_60_2*f[41]*f[43]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_61_2*f[41]*f[43]*f[72]*f[74])/(6*U[3] - 4*U[4]) - (35*f_60_2*sin2th*f[40]*f[42]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*f_61_2*sin2th*f[40]*f[42]*f[73]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_60_2*f[41]*f[42]*f[73]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_61_2*f[41]*f[42]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*cos2th*f_60_2*f[40]*f[43]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*cos2th*f_61_2*f[40]*f[43]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*f_60_2*sin2th*f[41]*f[43]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*f_61_2*sin2th*f[41]*f[43]*f[73]*f[74])/(6*U[3] - 4*U[4]) + (35*f_60_2*sin2th*f[40]*f[42]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*f_61_2*sin2th*f[40]*f[42]*f[72]*f[75])/(6*U[3] - 4*U[4]) - (35*cos2th*f_60_2*f[41]*f[42]*f[72]*f[75])/(6*U[3] - 4*U[4]) - (35*cos2th*f_61_2*f[41]*f[42]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_60_2*f[40]*f[43]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_61_2*f[40]*f[43]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*f_60_2*sin2th*f[41]*f[43]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*f_61_2*sin2th*f[41]*f[43]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_60_2*f[40]*f[42]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_61_2*f[40]*f[42]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*f_60_2*sin2th*f[41]*f[42]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*f_61_2*sin2th*f[41]*f[42]*f[73]*f[75])/(6*U[3] - 4*U[4]) - (35*f_60_2*sin2th*f[40]*f[43]*f[73]*f[75])/(6*U[3] - 4*U[4]) - (35*f_61_2*sin2th*f[40]*f[43]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_60_2*f[41]*f[43]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_61_2*f[41]*f[43]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (8*cos2th*f_50_2*f[38]*f[40]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_51_2*f[38]*f[40]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*f_50_2*sin2th*f[39]*f[40]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*f_51_2*sin2th*f[39]*f[40]*f[70]*f[72])/(U[3] - 3*U[4]) - (8*f_50_2*sin2th*f[38]*f[41]*f[70]*f[72])/(U[3] - 3*U[4]) - (8*f_51_2*sin2th*f[38]*f[41]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_50_2*f[39]*f[41]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_51_2*f[39]*f[41]*f[70]*f[72])/(U[3] - 3*U[4]) - (8*f_50_2*sin2th*f[38]*f[40]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*f_51_2*sin2th*f[38]*f[40]*f[71]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_50_2*f[39]*f[40]*f[71]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_51_2*f[39]*f[40]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*cos2th*f_50_2*f[38]*f[41]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*cos2th*f_51_2*f[38]*f[41]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*f_50_2*sin2th*f[39]*f[41]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*f_51_2*sin2th*f[39]*f[41]*f[71]*f[72])/(U[3] - 3*U[4]) + (8*f_50_2*sin2th*f[38]*f[40]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*f_51_2*sin2th*f[38]*f[40]*f[70]*f[73])/(U[3] - 3*U[4]) - (8*cos2th*f_50_2*f[39]*f[40]*f[70]*f[73])/(U[3] - 3*U[4]) - (8*cos2th*f_51_2*f[39]*f[40]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_50_2*f[38]*f[41]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_51_2*f[38]*f[41]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*f_50_2*sin2th*f[39]*f[41]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*f_51_2*sin2th*f[39]*f[41]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_50_2*f[38]*f[40]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_51_2*f[38]*f[40]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*f_50_2*sin2th*f[39]*f[40]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*f_51_2*sin2th*f[39]*f[40]*f[71]*f[73])/(U[3] - 3*U[4]) - (8*f_50_2*sin2th*f[38]*f[41]*f[71]*f[73])/(U[3] - 3*U[4]) - (8*f_51_2*sin2th*f[38]*f[41]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_50_2*f[39]*f[41]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_51_2*f[39]*f[41]*f[71]*f[73])/(U[3] - 3*U[4]) + (12*cos2th*f_52_2*f[38]*f[40]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_53_2*f[38]*f[40]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*f_52_2*sin2th*f[39]*f[40]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*f_53_2*sin2th*f[39]*f[40]*f[70]*f[72])/(2*U[3] - 3*U[4]) - (12*f_52_2*sin2th*f[38]*f[41]*f[70]*f[72])/(2*U[3] - 3*U[4]) - (12*f_53_2*sin2th*f[38]*f[41]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_52_2*f[39]*f[41]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_53_2*f[39]*f[41]*f[70]*f[72])/(2*U[3] - 3*U[4]) - (12*f_52_2*sin2th*f[38]*f[40]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*f_53_2*sin2th*f[38]*f[40]*f[71]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_52_2*f[39]*f[40]*f[71]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_53_2*f[39]*f[40]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*cos2th*f_52_2*f[38]*f[41]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*cos2th*f_53_2*f[38]*f[41]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*f_52_2*sin2th*f[39]*f[41]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*f_53_2*sin2th*f[39]*f[41]*f[71]*f[72])/(2*U[3] - 3*U[4]) + (12*f_52_2*sin2th*f[38]*f[40]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*f_53_2*sin2th*f[38]*f[40]*f[70]*f[73])/(2*U[3] - 3*U[4]) - (12*cos2th*f_52_2*f[39]*f[40]*f[70]*f[73])/(2*U[3] - 3*U[4]) - (12*cos2th*f_53_2*f[39]*f[40]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_52_2*f[38]*f[41]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_53_2*f[38]*f[41]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*f_52_2*sin2th*f[39]*f[41]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*f_53_2*sin2th*f[39]*f[41]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_52_2*f[38]*f[40]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_53_2*f[38]*f[40]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*f_52_2*sin2th*f[39]*f[40]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*f_53_2*sin2th*f[39]*f[40]*f[71]*f[73])/(2*U[3] - 3*U[4]) - (12*f_52_2*sin2th*f[38]*f[41]*f[71]*f[73])/(2*U[3] - 3*U[4]) - (12*f_53_2*sin2th*f[38]*f[41]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_52_2*f[39]*f[41]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_53_2*f[39]*f[41]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (20*cos2th*f_56_2*f[38]*f[40]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_57_2*f[38]*f[40]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*f_56_2*sin2th*f[39]*f[40]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*f_57_2*sin2th*f[39]*f[40]*f[70]*f[72])/(4*U[3] - 3*U[4]) - (20*f_56_2*sin2th*f[38]*f[41]*f[70]*f[72])/(4*U[3] - 3*U[4]) - (20*f_57_2*sin2th*f[38]*f[41]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_56_2*f[39]*f[41]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_57_2*f[39]*f[41]*f[70]*f[72])/(4*U[3] - 3*U[4]) - (20*f_56_2*sin2th*f[38]*f[40]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*f_57_2*sin2th*f[38]*f[40]*f[71]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_56_2*f[39]*f[40]*f[71]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_57_2*f[39]*f[40]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*cos2th*f_56_2*f[38]*f[41]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*cos2th*f_57_2*f[38]*f[41]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*f_56_2*sin2th*f[39]*f[41]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*f_57_2*sin2th*f[39]*f[41]*f[71]*f[72])/(4*U[3] - 3*U[4]) + (20*f_56_2*sin2th*f[38]*f[40]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*f_57_2*sin2th*f[38]*f[40]*f[70]*f[73])/(4*U[3] - 3*U[4]) - (20*cos2th*f_56_2*f[39]*f[40]*f[70]*f[73])/(4*U[3] - 3*U[4]) - (20*cos2th*f_57_2*f[39]*f[40]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_56_2*f[38]*f[41]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_57_2*f[38]*f[41]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*f_56_2*sin2th*f[39]*f[41]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*f_57_2*sin2th*f[39]*f[41]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_56_2*f[38]*f[40]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_57_2*f[38]*f[40]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*f_56_2*sin2th*f[39]*f[40]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*f_57_2*sin2th*f[39]*f[40]*f[71]*f[73])/(4*U[3] - 3*U[4]) - (20*f_56_2*sin2th*f[38]*f[41]*f[71]*f[73])/(4*U[3] - 3*U[4]) - (20*f_57_2*sin2th*f[38]*f[41]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_56_2*f[39]*f[41]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_57_2*f[39]*f[41]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (24*cos2th*f_58_2*f[38]*f[40]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_59_2*f[38]*f[40]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*f_58_2*sin2th*f[39]*f[40]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*f_59_2*sin2th*f[39]*f[40]*f[70]*f[72])/(5*U[3] - 3*U[4]) - (24*f_58_2*sin2th*f[38]*f[41]*f[70]*f[72])/(5*U[3] - 3*U[4]) - (24*f_59_2*sin2th*f[38]*f[41]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_58_2*f[39]*f[41]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_59_2*f[39]*f[41]*f[70]*f[72])/(5*U[3] - 3*U[4]) - (24*f_58_2*sin2th*f[38]*f[40]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*f_59_2*sin2th*f[38]*f[40]*f[71]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_58_2*f[39]*f[40]*f[71]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_59_2*f[39]*f[40]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*cos2th*f_58_2*f[38]*f[41]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*cos2th*f_59_2*f[38]*f[41]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*f_58_2*sin2th*f[39]*f[41]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*f_59_2*sin2th*f[39]*f[41]*f[71]*f[72])/(5*U[3] - 3*U[4]) + (24*f_58_2*sin2th*f[38]*f[40]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*f_59_2*sin2th*f[38]*f[40]*f[70]*f[73])/(5*U[3] - 3*U[4]) - (24*cos2th*f_58_2*f[39]*f[40]*f[70]*f[73])/(5*U[3] - 3*U[4]) - (24*cos2th*f_59_2*f[39]*f[40]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_58_2*f[38]*f[41]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_59_2*f[38]*f[41]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*f_58_2*sin2th*f[39]*f[41]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*f_59_2*sin2th*f[39]*f[41]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_58_2*f[38]*f[40]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_59_2*f[38]*f[40]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*f_58_2*sin2th*f[39]*f[40]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*f_59_2*sin2th*f[39]*f[40]*f[71]*f[73])/(5*U[3] - 3*U[4]) - (24*f_58_2*sin2th*f[38]*f[41]*f[71]*f[73])/(5*U[3] - 3*U[4]) - (24*f_59_2*sin2th*f[38]*f[41]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_58_2*f[39]*f[41]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_59_2*f[39]*f[41]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (28*cos2th*f_60_2*f[38]*f[40]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_61_2*f[38]*f[40]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*f_60_2*sin2th*f[39]*f[40]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*f_61_2*sin2th*f[39]*f[40]*f[70]*f[72])/(6*U[3] - 3*U[4]) - (28*f_60_2*sin2th*f[38]*f[41]*f[70]*f[72])/(6*U[3] - 3*U[4]) - (28*f_61_2*sin2th*f[38]*f[41]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_60_2*f[39]*f[41]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_61_2*f[39]*f[41]*f[70]*f[72])/(6*U[3] - 3*U[4]) - (28*f_60_2*sin2th*f[38]*f[40]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*f_61_2*sin2th*f[38]*f[40]*f[71]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_60_2*f[39]*f[40]*f[71]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_61_2*f[39]*f[40]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*cos2th*f_60_2*f[38]*f[41]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*cos2th*f_61_2*f[38]*f[41]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*f_60_2*sin2th*f[39]*f[41]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*f_61_2*sin2th*f[39]*f[41]*f[71]*f[72])/(6*U[3] - 3*U[4]) + (28*f_60_2*sin2th*f[38]*f[40]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*f_61_2*sin2th*f[38]*f[40]*f[70]*f[73])/(6*U[3] - 3*U[4]) - (28*cos2th*f_60_2*f[39]*f[40]*f[70]*f[73])/(6*U[3] - 3*U[4]) - (28*cos2th*f_61_2*f[39]*f[40]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_60_2*f[38]*f[41]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_61_2*f[38]*f[41]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*f_60_2*sin2th*f[39]*f[41]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*f_61_2*sin2th*f[39]*f[41]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_60_2*f[38]*f[40]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_61_2*f[38]*f[40]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*f_60_2*sin2th*f[39]*f[40]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*f_61_2*sin2th*f[39]*f[40]*f[71]*f[73])/(6*U[3] - 3*U[4]) - (28*f_60_2*sin2th*f[38]*f[41]*f[71]*f[73])/(6*U[3] - 3*U[4]) - (28*f_61_2*sin2th*f[38]*f[41]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_60_2*f[39]*f[41]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_61_2*f[39]*f[41]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (6*cos2th*f_50_2*f[36]*f[38]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_51_2*f[36]*f[38]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*f_50_2*sin2th*f[37]*f[38]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*f_51_2*sin2th*f[37]*f[38]*f[68]*f[70])/(U[3] - 2*U[4]) - (6*f_50_2*sin2th*f[36]*f[39]*f[68]*f[70])/(U[3] - 2*U[4]) - (6*f_51_2*sin2th*f[36]*f[39]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_50_2*f[37]*f[39]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_51_2*f[37]*f[39]*f[68]*f[70])/(U[3] - 2*U[4]) - (6*f_50_2*sin2th*f[36]*f[38]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*f_51_2*sin2th*f[36]*f[38]*f[69]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_50_2*f[37]*f[38]*f[69]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_51_2*f[37]*f[38]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*cos2th*f_50_2*f[36]*f[39]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*cos2th*f_51_2*f[36]*f[39]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*f_50_2*sin2th*f[37]*f[39]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*f_51_2*sin2th*f[37]*f[39]*f[69]*f[70])/(U[3] - 2*U[4]) + (6*f_50_2*sin2th*f[36]*f[38]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*f_51_2*sin2th*f[36]*f[38]*f[68]*f[71])/(U[3] - 2*U[4]) - (6*cos2th*f_50_2*f[37]*f[38]*f[68]*f[71])/(U[3] - 2*U[4]) - (6*cos2th*f_51_2*f[37]*f[38]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_50_2*f[36]*f[39]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_51_2*f[36]*f[39]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*f_50_2*sin2th*f[37]*f[39]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*f_51_2*sin2th*f[37]*f[39]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_50_2*f[36]*f[38]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_51_2*f[36]*f[38]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*f_50_2*sin2th*f[37]*f[38]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*f_51_2*sin2th*f[37]*f[38]*f[69]*f[71])/(U[3] - 2*U[4]) - (6*f_50_2*sin2th*f[36]*f[39]*f[69]*f[71])/(U[3] - 2*U[4]) - (6*f_51_2*sin2th*f[36]*f[39]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_50_2*f[37]*f[39]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_51_2*f[37]*f[39]*f[69]*f[71])/(U[3] - 2*U[4]) + (12*cos2th*f_54_2*f[36]*f[38]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_55_2*f[36]*f[38]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*f_54_2*sin2th*f[37]*f[38]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*f_55_2*sin2th*f[37]*f[38]*f[68]*f[70])/(3*U[3] - 2*U[4]) - (12*f_54_2*sin2th*f[36]*f[39]*f[68]*f[70])/(3*U[3] - 2*U[4]) - (12*f_55_2*sin2th*f[36]*f[39]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_54_2*f[37]*f[39]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_55_2*f[37]*f[39]*f[68]*f[70])/(3*U[3] - 2*U[4]) - (12*f_54_2*sin2th*f[36]*f[38]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*f_55_2*sin2th*f[36]*f[38]*f[69]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_54_2*f[37]*f[38]*f[69]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_55_2*f[37]*f[38]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*cos2th*f_54_2*f[36]*f[39]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*cos2th*f_55_2*f[36]*f[39]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*f_54_2*sin2th*f[37]*f[39]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*f_55_2*sin2th*f[37]*f[39]*f[69]*f[70])/(3*U[3] - 2*U[4]) + (12*f_54_2*sin2th*f[36]*f[38]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*f_55_2*sin2th*f[36]*f[38]*f[68]*f[71])/(3*U[3] - 2*U[4]) - (12*cos2th*f_54_2*f[37]*f[38]*f[68]*f[71])/(3*U[3] - 2*U[4]) - (12*cos2th*f_55_2*f[37]*f[38]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_54_2*f[36]*f[39]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_55_2*f[36]*f[39]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*f_54_2*sin2th*f[37]*f[39]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*f_55_2*sin2th*f[37]*f[39]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_54_2*f[36]*f[38]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_55_2*f[36]*f[38]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*f_54_2*sin2th*f[37]*f[38]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*f_55_2*sin2th*f[37]*f[38]*f[69]*f[71])/(3*U[3] - 2*U[4]) - (12*f_54_2*sin2th*f[36]*f[39]*f[69]*f[71])/(3*U[3] - 2*U[4]) - (12*f_55_2*sin2th*f[36]*f[39]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_54_2*f[37]*f[39]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_55_2*f[37]*f[39]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (15*cos2th*f_56_2*f[36]*f[38]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_57_2*f[36]*f[38]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*f_56_2*sin2th*f[37]*f[38]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*f_57_2*sin2th*f[37]*f[38]*f[68]*f[70])/(4*U[3] - 2*U[4]) - (15*f_56_2*sin2th*f[36]*f[39]*f[68]*f[70])/(4*U[3] - 2*U[4]) - (15*f_57_2*sin2th*f[36]*f[39]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_56_2*f[37]*f[39]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_57_2*f[37]*f[39]*f[68]*f[70])/(4*U[3] - 2*U[4]) - (15*f_56_2*sin2th*f[36]*f[38]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*f_57_2*sin2th*f[36]*f[38]*f[69]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_56_2*f[37]*f[38]*f[69]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_57_2*f[37]*f[38]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*cos2th*f_56_2*f[36]*f[39]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*cos2th*f_57_2*f[36]*f[39]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*f_56_2*sin2th*f[37]*f[39]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*f_57_2*sin2th*f[37]*f[39]*f[69]*f[70])/(4*U[3] - 2*U[4]) + (15*f_56_2*sin2th*f[36]*f[38]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*f_57_2*sin2th*f[36]*f[38]*f[68]*f[71])/(4*U[3] - 2*U[4]) - (15*cos2th*f_56_2*f[37]*f[38]*f[68]*f[71])/(4*U[3] - 2*U[4]) - (15*cos2th*f_57_2*f[37]*f[38]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_56_2*f[36]*f[39]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_57_2*f[36]*f[39]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*f_56_2*sin2th*f[37]*f[39]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*f_57_2*sin2th*f[37]*f[39]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_56_2*f[36]*f[38]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_57_2*f[36]*f[38]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*f_56_2*sin2th*f[37]*f[38]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*f_57_2*sin2th*f[37]*f[38]*f[69]*f[71])/(4*U[3] - 2*U[4]) - (15*f_56_2*sin2th*f[36]*f[39]*f[69]*f[71])/(4*U[3] - 2*U[4]) - (15*f_57_2*sin2th*f[36]*f[39]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_56_2*f[37]*f[39]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_57_2*f[37]*f[39]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (18*cos2th*f_58_2*f[36]*f[38]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_59_2*f[36]*f[38]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*f_58_2*sin2th*f[37]*f[38]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*f_59_2*sin2th*f[37]*f[38]*f[68]*f[70])/(5*U[3] - 2*U[4]) - (18*f_58_2*sin2th*f[36]*f[39]*f[68]*f[70])/(5*U[3] - 2*U[4]) - (18*f_59_2*sin2th*f[36]*f[39]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_58_2*f[37]*f[39]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_59_2*f[37]*f[39]*f[68]*f[70])/(5*U[3] - 2*U[4]) - (18*f_58_2*sin2th*f[36]*f[38]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*f_59_2*sin2th*f[36]*f[38]*f[69]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_58_2*f[37]*f[38]*f[69]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_59_2*f[37]*f[38]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*cos2th*f_58_2*f[36]*f[39]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*cos2th*f_59_2*f[36]*f[39]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*f_58_2*sin2th*f[37]*f[39]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*f_59_2*sin2th*f[37]*f[39]*f[69]*f[70])/(5*U[3] - 2*U[4]) + (18*f_58_2*sin2th*f[36]*f[38]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*f_59_2*sin2th*f[36]*f[38]*f[68]*f[71])/(5*U[3] - 2*U[4]) - (18*cos2th*f_58_2*f[37]*f[38]*f[68]*f[71])/(5*U[3] - 2*U[4]) - (18*cos2th*f_59_2*f[37]*f[38]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_58_2*f[36]*f[39]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_59_2*f[36]*f[39]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*f_58_2*sin2th*f[37]*f[39]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*f_59_2*sin2th*f[37]*f[39]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_58_2*f[36]*f[38]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_59_2*f[36]*f[38]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*f_58_2*sin2th*f[37]*f[38]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*f_59_2*sin2th*f[37]*f[38]*f[69]*f[71])/(5*U[3] - 2*U[4]) - (18*f_58_2*sin2th*f[36]*f[39]*f[69]*f[71])/(5*U[3] - 2*U[4]) - (18*f_59_2*sin2th*f[36]*f[39]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_58_2*f[37]*f[39]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_59_2*f[37]*f[39]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (21*cos2th*f_60_2*f[36]*f[38]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_61_2*f[36]*f[38]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*f_60_2*sin2th*f[37]*f[38]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*f_61_2*sin2th*f[37]*f[38]*f[68]*f[70])/(6*U[3] - 2*U[4]) - (21*f_60_2*sin2th*f[36]*f[39]*f[68]*f[70])/(6*U[3] - 2*U[4]) - (21*f_61_2*sin2th*f[36]*f[39]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_60_2*f[37]*f[39]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_61_2*f[37]*f[39]*f[68]*f[70])/(6*U[3] - 2*U[4]) - (21*f_60_2*sin2th*f[36]*f[38]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*f_61_2*sin2th*f[36]*f[38]*f[69]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_60_2*f[37]*f[38]*f[69]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_61_2*f[37]*f[38]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*cos2th*f_60_2*f[36]*f[39]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*cos2th*f_61_2*f[36]*f[39]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*f_60_2*sin2th*f[37]*f[39]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*f_61_2*sin2th*f[37]*f[39]*f[69]*f[70])/(6*U[3] - 2*U[4]) + (21*f_60_2*sin2th*f[36]*f[38]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*f_61_2*sin2th*f[36]*f[38]*f[68]*f[71])/(6*U[3] - 2*U[4]) - (21*cos2th*f_60_2*f[37]*f[38]*f[68]*f[71])/(6*U[3] - 2*U[4]) - (21*cos2th*f_61_2*f[37]*f[38]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_60_2*f[36]*f[39]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_61_2*f[36]*f[39]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*f_60_2*sin2th*f[37]*f[39]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*f_61_2*sin2th*f[37]*f[39]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_60_2*f[36]*f[38]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_61_2*f[36]*f[38]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*f_60_2*sin2th*f[37]*f[38]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*f_61_2*sin2th*f[37]*f[38]*f[69]*f[71])/(6*U[3] - 2*U[4]) - (21*f_60_2*sin2th*f[36]*f[39]*f[69]*f[71])/(6*U[3] - 2*U[4]) - (21*f_61_2*sin2th*f[36]*f[39]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_60_2*f[37]*f[39]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_61_2*f[37]*f[39]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (6*cos2th*f_52_2*f[34]*f[36]*f[66]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_53_2*f[34]*f[36]*f[66]*f[68])/(2*U[3] - U[4]) + (6*f_52_2*sin2th*f[35]*f[36]*f[66]*f[68])/(2*U[3] - U[4]) + (6*f_53_2*sin2th*f[35]*f[36]*f[66]*f[68])/(2*U[3] - U[4]) - (6*f_52_2*sin2th*f[34]*f[37]*f[66]*f[68])/(2*U[3] - U[4]) - (6*f_53_2*sin2th*f[34]*f[37]*f[66]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_52_2*f[35]*f[37]*f[66]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_53_2*f[35]*f[37]*f[66]*f[68])/(2*U[3] - U[4]) - (6*f_52_2*sin2th*f[34]*f[36]*f[67]*f[68])/(2*U[3] - U[4]) - (6*f_53_2*sin2th*f[34]*f[36]*f[67]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_52_2*f[35]*f[36]*f[67]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_53_2*f[35]*f[36]*f[67]*f[68])/(2*U[3] - U[4]) - (6*cos2th*f_52_2*f[34]*f[37]*f[67]*f[68])/(2*U[3] - U[4]) - (6*cos2th*f_53_2*f[34]*f[37]*f[67]*f[68])/(2*U[3] - U[4]) - (6*f_52_2*sin2th*f[35]*f[37]*f[67]*f[68])/(2*U[3] - U[4]) - (6*f_53_2*sin2th*f[35]*f[37]*f[67]*f[68])/(2*U[3] - U[4]) + (6*f_52_2*sin2th*f[34]*f[36]*f[66]*f[69])/(2*U[3] - U[4]) + (6*f_53_2*sin2th*f[34]*f[36]*f[66]*f[69])/(2*U[3] - U[4]) - (6*cos2th*f_52_2*f[35]*f[36]*f[66]*f[69])/(2*U[3] - U[4]) - (6*cos2th*f_53_2*f[35]*f[36]*f[66]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_52_2*f[34]*f[37]*f[66]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_53_2*f[34]*f[37]*f[66]*f[69])/(2*U[3] - U[4]) + (6*f_52_2*sin2th*f[35]*f[37]*f[66]*f[69])/(2*U[3] - U[4]) + (6*f_53_2*sin2th*f[35]*f[37]*f[66]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_52_2*f[34]*f[36]*f[67]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_53_2*f[34]*f[36]*f[67]*f[69])/(2*U[3] - U[4]) + (6*f_52_2*sin2th*f[35]*f[36]*f[67]*f[69])/(2*U[3] - U[4]) + (6*f_53_2*sin2th*f[35]*f[36]*f[67]*f[69])/(2*U[3] - U[4]) - (6*f_52_2*sin2th*f[34]*f[37]*f[67]*f[69])/(2*U[3] - U[4]) - (6*f_53_2*sin2th*f[34]*f[37]*f[67]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_52_2*f[35]*f[37]*f[67]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_53_2*f[35]*f[37]*f[67]*f[69])/(2*U[3] - U[4]) + (8*cos2th*f_54_2*f[34]*f[36]*f[66]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_55_2*f[34]*f[36]*f[66]*f[68])/(3*U[3] - U[4]) + (8*f_54_2*sin2th*f[35]*f[36]*f[66]*f[68])/(3*U[3] - U[4]) + (8*f_55_2*sin2th*f[35]*f[36]*f[66]*f[68])/(3*U[3] - U[4]) - (8*f_54_2*sin2th*f[34]*f[37]*f[66]*f[68])/(3*U[3] - U[4]) - (8*f_55_2*sin2th*f[34]*f[37]*f[66]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_54_2*f[35]*f[37]*f[66]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_55_2*f[35]*f[37]*f[66]*f[68])/(3*U[3] - U[4]) - (8*f_54_2*sin2th*f[34]*f[36]*f[67]*f[68])/(3*U[3] - U[4]) - (8*f_55_2*sin2th*f[34]*f[36]*f[67]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_54_2*f[35]*f[36]*f[67]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_55_2*f[35]*f[36]*f[67]*f[68])/(3*U[3] - U[4]) - (8*cos2th*f_54_2*f[34]*f[37]*f[67]*f[68])/(3*U[3] - U[4]) - (8*cos2th*f_55_2*f[34]*f[37]*f[67]*f[68])/(3*U[3] - U[4]) - (8*f_54_2*sin2th*f[35]*f[37]*f[67]*f[68])/(3*U[3] - U[4]) - (8*f_55_2*sin2th*f[35]*f[37]*f[67]*f[68])/(3*U[3] - U[4]) + (8*f_54_2*sin2th*f[34]*f[36]*f[66]*f[69])/(3*U[3] - U[4]) + (8*f_55_2*sin2th*f[34]*f[36]*f[66]*f[69])/(3*U[3] - U[4]) - (8*cos2th*f_54_2*f[35]*f[36]*f[66]*f[69])/(3*U[3] - U[4]) - (8*cos2th*f_55_2*f[35]*f[36]*f[66]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_54_2*f[34]*f[37]*f[66]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_55_2*f[34]*f[37]*f[66]*f[69])/(3*U[3] - U[4]) + (8*f_54_2*sin2th*f[35]*f[37]*f[66]*f[69])/(3*U[3] - U[4]) + (8*f_55_2*sin2th*f[35]*f[37]*f[66]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_54_2*f[34]*f[36]*f[67]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_55_2*f[34]*f[36]*f[67]*f[69])/(3*U[3] - U[4]) + (8*f_54_2*sin2th*f[35]*f[36]*f[67]*f[69])/(3*U[3] - U[4]) + (8*f_55_2*sin2th*f[35]*f[36]*f[67]*f[69])/(3*U[3] - U[4]) - (8*f_54_2*sin2th*f[34]*f[37]*f[67]*f[69])/(3*U[3] - U[4]) - (8*f_55_2*sin2th*f[34]*f[37]*f[67]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_54_2*f[35]*f[37]*f[67]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_55_2*f[35]*f[37]*f[67]*f[69])/(3*U[3] - U[4]) + (10*cos2th*f_56_2*f[34]*f[36]*f[66]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_57_2*f[34]*f[36]*f[66]*f[68])/(4*U[3] - U[4]) + (10*f_56_2*sin2th*f[35]*f[36]*f[66]*f[68])/(4*U[3] - U[4]) + (10*f_57_2*sin2th*f[35]*f[36]*f[66]*f[68])/(4*U[3] - U[4]) - (10*f_56_2*sin2th*f[34]*f[37]*f[66]*f[68])/(4*U[3] - U[4]) - (10*f_57_2*sin2th*f[34]*f[37]*f[66]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_56_2*f[35]*f[37]*f[66]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_57_2*f[35]*f[37]*f[66]*f[68])/(4*U[3] - U[4]) - (10*f_56_2*sin2th*f[34]*f[36]*f[67]*f[68])/(4*U[3] - U[4]) - (10*f_57_2*sin2th*f[34]*f[36]*f[67]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_56_2*f[35]*f[36]*f[67]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_57_2*f[35]*f[36]*f[67]*f[68])/(4*U[3] - U[4]) - (10*cos2th*f_56_2*f[34]*f[37]*f[67]*f[68])/(4*U[3] - U[4]) - (10*cos2th*f_57_2*f[34]*f[37]*f[67]*f[68])/(4*U[3] - U[4]) - (10*f_56_2*sin2th*f[35]*f[37]*f[67]*f[68])/(4*U[3] - U[4]) - (10*f_57_2*sin2th*f[35]*f[37]*f[67]*f[68])/(4*U[3] - U[4]) + (10*f_56_2*sin2th*f[34]*f[36]*f[66]*f[69])/(4*U[3] - U[4]) + (10*f_57_2*sin2th*f[34]*f[36]*f[66]*f[69])/(4*U[3] - U[4]) - (10*cos2th*f_56_2*f[35]*f[36]*f[66]*f[69])/(4*U[3] - U[4]) - (10*cos2th*f_57_2*f[35]*f[36]*f[66]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_56_2*f[34]*f[37]*f[66]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_57_2*f[34]*f[37]*f[66]*f[69])/(4*U[3] - U[4]) + (10*f_56_2*sin2th*f[35]*f[37]*f[66]*f[69])/(4*U[3] - U[4]) + (10*f_57_2*sin2th*f[35]*f[37]*f[66]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_56_2*f[34]*f[36]*f[67]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_57_2*f[34]*f[36]*f[67]*f[69])/(4*U[3] - U[4]) + (10*f_56_2*sin2th*f[35]*f[36]*f[67]*f[69])/(4*U[3] - U[4]) + (10*f_57_2*sin2th*f[35]*f[36]*f[67]*f[69])/(4*U[3] - U[4]) - (10*f_56_2*sin2th*f[34]*f[37]*f[67]*f[69])/(4*U[3] - U[4]) - (10*f_57_2*sin2th*f[34]*f[37]*f[67]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_56_2*f[35]*f[37]*f[67]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_57_2*f[35]*f[37]*f[67]*f[69])/(4*U[3] - U[4]) + (12*cos2th*f_58_2*f[34]*f[36]*f[66]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_59_2*f[34]*f[36]*f[66]*f[68])/(5*U[3] - U[4]) + (12*f_58_2*sin2th*f[35]*f[36]*f[66]*f[68])/(5*U[3] - U[4]) + (12*f_59_2*sin2th*f[35]*f[36]*f[66]*f[68])/(5*U[3] - U[4]) - (12*f_58_2*sin2th*f[34]*f[37]*f[66]*f[68])/(5*U[3] - U[4]) - (12*f_59_2*sin2th*f[34]*f[37]*f[66]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_58_2*f[35]*f[37]*f[66]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_59_2*f[35]*f[37]*f[66]*f[68])/(5*U[3] - U[4]) - (12*f_58_2*sin2th*f[34]*f[36]*f[67]*f[68])/(5*U[3] - U[4]) - (12*f_59_2*sin2th*f[34]*f[36]*f[67]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_58_2*f[35]*f[36]*f[67]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_59_2*f[35]*f[36]*f[67]*f[68])/(5*U[3] - U[4]) - (12*cos2th*f_58_2*f[34]*f[37]*f[67]*f[68])/(5*U[3] - U[4]) - (12*cos2th*f_59_2*f[34]*f[37]*f[67]*f[68])/(5*U[3] - U[4]) - (12*f_58_2*sin2th*f[35]*f[37]*f[67]*f[68])/(5*U[3] - U[4]) - (12*f_59_2*sin2th*f[35]*f[37]*f[67]*f[68])/(5*U[3] - U[4]) + (12*f_58_2*sin2th*f[34]*f[36]*f[66]*f[69])/(5*U[3] - U[4]) + (12*f_59_2*sin2th*f[34]*f[36]*f[66]*f[69])/(5*U[3] - U[4]) - (12*cos2th*f_58_2*f[35]*f[36]*f[66]*f[69])/(5*U[3] - U[4]) - (12*cos2th*f_59_2*f[35]*f[36]*f[66]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_58_2*f[34]*f[37]*f[66]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_59_2*f[34]*f[37]*f[66]*f[69])/(5*U[3] - U[4]) + (12*f_58_2*sin2th*f[35]*f[37]*f[66]*f[69])/(5*U[3] - U[4]) + (12*f_59_2*sin2th*f[35]*f[37]*f[66]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_58_2*f[34]*f[36]*f[67]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_59_2*f[34]*f[36]*f[67]*f[69])/(5*U[3] - U[4]) + (12*f_58_2*sin2th*f[35]*f[36]*f[67]*f[69])/(5*U[3] - U[4]) + (12*f_59_2*sin2th*f[35]*f[36]*f[67]*f[69])/(5*U[3] - U[4]) - (12*f_58_2*sin2th*f[34]*f[37]*f[67]*f[69])/(5*U[3] - U[4]) - (12*f_59_2*sin2th*f[34]*f[37]*f[67]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_58_2*f[35]*f[37]*f[67]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_59_2*f[35]*f[37]*f[67]*f[69])/(5*U[3] - U[4]) + (14*cos2th*f_60_2*f[34]*f[36]*f[66]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_61_2*f[34]*f[36]*f[66]*f[68])/(6*U[3] - U[4]) + (14*f_60_2*sin2th*f[35]*f[36]*f[66]*f[68])/(6*U[3] - U[4]) + (14*f_61_2*sin2th*f[35]*f[36]*f[66]*f[68])/(6*U[3] - U[4]) - (14*f_60_2*sin2th*f[34]*f[37]*f[66]*f[68])/(6*U[3] - U[4]) - (14*f_61_2*sin2th*f[34]*f[37]*f[66]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_60_2*f[35]*f[37]*f[66]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_61_2*f[35]*f[37]*f[66]*f[68])/(6*U[3] - U[4]) - (14*f_60_2*sin2th*f[34]*f[36]*f[67]*f[68])/(6*U[3] - U[4]) - (14*f_61_2*sin2th*f[34]*f[36]*f[67]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_60_2*f[35]*f[36]*f[67]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_61_2*f[35]*f[36]*f[67]*f[68])/(6*U[3] - U[4]) - (14*cos2th*f_60_2*f[34]*f[37]*f[67]*f[68])/(6*U[3] - U[4]) - (14*cos2th*f_61_2*f[34]*f[37]*f[67]*f[68])/(6*U[3] - U[4]) - (14*f_60_2*sin2th*f[35]*f[37]*f[67]*f[68])/(6*U[3] - U[4]) - (14*f_61_2*sin2th*f[35]*f[37]*f[67]*f[68])/(6*U[3] - U[4]) + (14*f_60_2*sin2th*f[34]*f[36]*f[66]*f[69])/(6*U[3] - U[4]) + (14*f_61_2*sin2th*f[34]*f[36]*f[66]*f[69])/(6*U[3] - U[4]) - (14*cos2th*f_60_2*f[35]*f[36]*f[66]*f[69])/(6*U[3] - U[4]) - (14*cos2th*f_61_2*f[35]*f[36]*f[66]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_60_2*f[34]*f[37]*f[66]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_61_2*f[34]*f[37]*f[66]*f[69])/(6*U[3] - U[4]) + (14*f_60_2*sin2th*f[35]*f[37]*f[66]*f[69])/(6*U[3] - U[4]) + (14*f_61_2*sin2th*f[35]*f[37]*f[66]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_60_2*f[34]*f[36]*f[67]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_61_2*f[34]*f[36]*f[67]*f[69])/(6*U[3] - U[4]) + (14*f_60_2*sin2th*f[35]*f[36]*f[67]*f[69])/(6*U[3] - U[4]) + (14*f_61_2*sin2th*f[35]*f[36]*f[67]*f[69])/(6*U[3] - U[4]) - (14*f_60_2*sin2th*f[34]*f[37]*f[67]*f[69])/(6*U[3] - U[4]) - (14*f_61_2*sin2th*f[34]*f[37]*f[67]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_60_2*f[35]*f[37]*f[67]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_61_2*f[35]*f[37]*f[67]*f[69])/(6*U[3] - U[4]) - (2*cos2th*f_48_2*f[34]*f[36]*f[66]*f[68])/U[4] - (2*cos2th*f_49_2*f[34]*f[36]*f[66]*f[68])/U[4] - (2*f_48_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[4] - (2*f_49_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[4] + (2*f_48_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[4] + (2*f_49_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[4] - (2*cos2th*f_48_2*f[35]*f[37]*f[66]*f[68])/U[4] - (2*cos2th*f_49_2*f[35]*f[37]*f[66]*f[68])/U[4] + (2*f_48_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[4] + (2*f_49_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[4] - (2*cos2th*f_48_2*f[35]*f[36]*f[67]*f[68])/U[4] - (2*cos2th*f_49_2*f[35]*f[36]*f[67]*f[68])/U[4] + (2*cos2th*f_48_2*f[34]*f[37]*f[67]*f[68])/U[4] + (2*cos2th*f_49_2*f[34]*f[37]*f[67]*f[68])/U[4] + (2*f_48_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[4] + (2*f_49_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[4] - (2*f_48_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[4] - (2*f_49_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[4] + (2*cos2th*f_48_2*f[35]*f[36]*f[66]*f[69])/U[4] + (2*cos2th*f_49_2*f[35]*f[36]*f[66]*f[69])/U[4] - (2*cos2th*f_48_2*f[34]*f[37]*f[66]*f[69])/U[4] - (2*cos2th*f_49_2*f[34]*f[37]*f[66]*f[69])/U[4] - (2*f_48_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[4] - (2*f_49_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[4] - (2*cos2th*f_48_2*f[34]*f[36]*f[67]*f[69])/U[4] - (2*cos2th*f_49_2*f[34]*f[36]*f[67]*f[69])/U[4] - (2*f_48_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[4] - (2*f_49_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[4] + (2*f_48_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[4] + (2*f_49_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[4] - (2*cos2th*f_48_2*f[35]*f[37]*f[67]*f[69])/U[4] - (2*cos2th*f_49_2*f[35]*f[37]*f[67]*f[69])/U[4] - (3*cos2th*f_48_2*f[36]*f[38]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_49_2*f[36]*f[38]*f[68]*f[70])/(2.*U[4]) - (3*f_48_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[4]) - (3*f_49_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[4]) + (3*f_48_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[4]) + (3*f_49_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_48_2*f[37]*f[39]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_49_2*f[37]*f[39]*f[68]*f[70])/(2.*U[4]) + (3*f_48_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[4]) + (3*f_49_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_48_2*f[37]*f[38]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_49_2*f[37]*f[38]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_48_2*f[36]*f[39]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_49_2*f[36]*f[39]*f[69]*f[70])/(2.*U[4]) + (3*f_48_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[4]) + (3*f_49_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[4]) - (3*f_48_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[4]) - (3*f_49_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_48_2*f[37]*f[38]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_49_2*f[37]*f[38]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_48_2*f[36]*f[39]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_49_2*f[36]*f[39]*f[68]*f[71])/(2.*U[4]) - (3*f_48_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[4]) - (3*f_49_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_48_2*f[36]*f[38]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_49_2*f[36]*f[38]*f[69]*f[71])/(2.*U[4]) - (3*f_48_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[4]) - (3*f_49_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[4]) + (3*f_48_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[4]) + (3*f_49_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_48_2*f[37]*f[39]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_49_2*f[37]*f[39]*f[69]*f[71])/(2.*U[4]) - (4*cos2th*f_48_2*f[38]*f[40]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_49_2*f[38]*f[40]*f[70]*f[72])/(3.*U[4]) - (4*f_48_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[4]) - (4*f_49_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[4]) + (4*f_48_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[4]) + (4*f_49_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_48_2*f[39]*f[41]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_49_2*f[39]*f[41]*f[70]*f[72])/(3.*U[4]) + (4*f_48_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[4]) + (4*f_49_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_48_2*f[39]*f[40]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_49_2*f[39]*f[40]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_48_2*f[38]*f[41]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_49_2*f[38]*f[41]*f[71]*f[72])/(3.*U[4]) + (4*f_48_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[4]) + (4*f_49_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[4]) - (4*f_48_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[4]) - (4*f_49_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_48_2*f[39]*f[40]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_49_2*f[39]*f[40]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_48_2*f[38]*f[41]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_49_2*f[38]*f[41]*f[70]*f[73])/(3.*U[4]) - (4*f_48_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[4]) - (4*f_49_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_48_2*f[38]*f[40]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_49_2*f[38]*f[40]*f[71]*f[73])/(3.*U[4]) - (4*f_48_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[4]) - (4*f_49_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[4]) + (4*f_48_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[4]) + (4*f_49_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_48_2*f[39]*f[41]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_49_2*f[39]*f[41]*f[71]*f[73])/(3.*U[4]) - (5*cos2th*f_48_2*f[40]*f[42]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_49_2*f[40]*f[42]*f[72]*f[74])/(4.*U[4]) - (5*f_48_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[4]) - (5*f_49_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[4]) + (5*f_48_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[4]) + (5*f_49_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_48_2*f[41]*f[43]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_49_2*f[41]*f[43]*f[72]*f[74])/(4.*U[4]) + (5*f_48_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[4]) + (5*f_49_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_48_2*f[41]*f[42]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_49_2*f[41]*f[42]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_48_2*f[40]*f[43]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_49_2*f[40]*f[43]*f[73]*f[74])/(4.*U[4]) + (5*f_48_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[4]) + (5*f_49_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[4]) - (5*f_48_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[4]) - (5*f_49_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_48_2*f[41]*f[42]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_49_2*f[41]*f[42]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_48_2*f[40]*f[43]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_49_2*f[40]*f[43]*f[72]*f[75])/(4.*U[4]) - (5*f_48_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[4]) - (5*f_49_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_48_2*f[40]*f[42]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_49_2*f[40]*f[42]*f[73]*f[75])/(4.*U[4]) - (5*f_48_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[4]) - (5*f_49_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[4]) + (5*f_48_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[4]) + (5*f_49_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_48_2*f[41]*f[43]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_49_2*f[41]*f[43]*f[73]*f[75])/(4.*U[4]) - (6*cos2th*f_48_2*f[42]*f[44]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_49_2*f[42]*f[44]*f[74]*f[76])/(5.*U[4]) - (6*f_48_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[4]) - (6*f_49_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[4]) + (6*f_48_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[4]) + (6*f_49_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_48_2*f[43]*f[45]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_49_2*f[43]*f[45]*f[74]*f[76])/(5.*U[4]) + (6*f_48_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[4]) + (6*f_49_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_48_2*f[43]*f[44]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_49_2*f[43]*f[44]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_48_2*f[42]*f[45]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_49_2*f[42]*f[45]*f[75]*f[76])/(5.*U[4]) + (6*f_48_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[4]) + (6*f_49_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[4]) - (6*f_48_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[4]) - (6*f_49_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_48_2*f[43]*f[44]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_49_2*f[43]*f[44]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_48_2*f[42]*f[45]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_49_2*f[42]*f[45]*f[74]*f[77])/(5.*U[4]) - (6*f_48_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[4]) - (6*f_49_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_48_2*f[42]*f[44]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_49_2*f[42]*f[44]*f[75]*f[77])/(5.*U[4]) - (6*f_48_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[4]) - (6*f_49_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[4]) + (6*f_48_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[4]) + (6*f_49_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_48_2*f[43]*f[45]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_49_2*f[43]*f[45]*f[75]*f[77])/(5.*U[4]) - (7*cos2th*f_48_2*f[44]*f[46]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_49_2*f[44]*f[46]*f[76]*f[78])/(6.*U[4]) - (7*f_48_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[4]) - (7*f_49_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[4]) + (7*f_48_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[4]) + (7*f_49_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_48_2*f[45]*f[47]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_49_2*f[45]*f[47]*f[76]*f[78])/(6.*U[4]) + (7*f_48_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[4]) + (7*f_49_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_48_2*f[45]*f[46]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_49_2*f[45]*f[46]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_48_2*f[44]*f[47]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_49_2*f[44]*f[47]*f[77]*f[78])/(6.*U[4]) + (7*f_48_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[4]) + (7*f_49_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[4]) - (7*f_48_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[4]) - (7*f_49_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_48_2*f[45]*f[46]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_49_2*f[45]*f[46]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_48_2*f[44]*f[47]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_49_2*f[44]*f[47]*f[76]*f[79])/(6.*U[4]) - (7*f_48_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[4]) - (7*f_49_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_48_2*f[44]*f[46]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_49_2*f[44]*f[46]*f[77]*f[79])/(6.*U[4]) - (7*f_48_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[4]) - (7*f_49_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[4]) + (7*f_48_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[4]) + (7*f_49_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_48_2*f[45]*f[47]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_49_2*f[45]*f[47]*f[77]*f[79])/(6.*U[4])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + (J[2]*J[3]*((2*cos2th*f_52_2*f[32]*f[34]*f[64]*f[66])/U[3] + (2*cos2th*f_53_2*f[32]*f[34]*f[64]*f[66])/U[3] + (3*cos2th*f_54_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) + (3*cos2th*f_55_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) + (4*cos2th*f_56_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) + (4*cos2th*f_57_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) + (5*cos2th*f_58_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) + (5*cos2th*f_59_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) + (6*cos2th*f_60_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) + (6*cos2th*f_61_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) + (7*cos2th*f_62_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) + (7*cos2th*f_63_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] + (2*f_53_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] + (3*f_54_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) + (3*f_55_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) + (4*f_56_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) + (4*f_57_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) + (5*f_58_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) + (5*f_59_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) + (6*f_60_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) + (6*f_61_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) + (7*f_62_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) + (7*f_63_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] - (2*f_53_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] - (3*f_54_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) - (3*f_55_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) - (4*f_56_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) - (4*f_57_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) - (5*f_58_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) - (5*f_59_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) - (6*f_60_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) - (6*f_61_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) - (7*f_62_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) - (7*f_63_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) + (2*cos2th*f_52_2*f[33]*f[35]*f[64]*f[66])/U[3] + (2*cos2th*f_53_2*f[33]*f[35]*f[64]*f[66])/U[3] + (3*cos2th*f_54_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) + (3*cos2th*f_55_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) + (4*cos2th*f_56_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) + (4*cos2th*f_57_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) + (5*cos2th*f_58_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) + (5*cos2th*f_59_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) + (6*cos2th*f_60_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) + (6*cos2th*f_61_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) + (7*cos2th*f_62_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) + (7*cos2th*f_63_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] - (2*f_53_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] - (3*f_54_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) - (3*f_55_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) - (4*f_56_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) - (4*f_57_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) - (5*f_58_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) - (5*f_59_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) - (6*f_60_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) - (6*f_61_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) - (7*f_62_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) - (7*f_63_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) + (2*cos2th*f_52_2*f[33]*f[34]*f[65]*f[66])/U[3] + (2*cos2th*f_53_2*f[33]*f[34]*f[65]*f[66])/U[3] + (3*cos2th*f_54_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) + (3*cos2th*f_55_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) + (4*cos2th*f_56_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) + (4*cos2th*f_57_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) + (5*cos2th*f_58_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) + (5*cos2th*f_59_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) + (6*cos2th*f_60_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) + (6*cos2th*f_61_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) + (7*cos2th*f_62_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) + (7*cos2th*f_63_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) - (2*cos2th*f_52_2*f[32]*f[35]*f[65]*f[66])/U[3] - (2*cos2th*f_53_2*f[32]*f[35]*f[65]*f[66])/U[3] - (3*cos2th*f_54_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) - (3*cos2th*f_55_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) - (4*cos2th*f_56_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) - (4*cos2th*f_57_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) - (5*cos2th*f_58_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) - (5*cos2th*f_59_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) - (6*cos2th*f_60_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) - (6*cos2th*f_61_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) - (7*cos2th*f_62_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) - (7*cos2th*f_63_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] - (2*f_53_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] - (3*f_54_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) - (3*f_55_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) - (4*f_56_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) - (4*f_57_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) - (5*f_58_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) - (5*f_59_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) - (6*f_60_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) - (6*f_61_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) - (7*f_62_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) - (7*f_63_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] + (2*f_53_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] + (3*f_54_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) + (3*f_55_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) + (4*f_56_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) + (4*f_57_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) + (5*f_58_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) + (5*f_59_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) + (6*f_60_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) + (6*f_61_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) + (7*f_62_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) + (7*f_63_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_52_2*f[33]*f[34]*f[64]*f[67])/U[3] - (2*cos2th*f_53_2*f[33]*f[34]*f[64]*f[67])/U[3] - (3*cos2th*f_54_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) - (3*cos2th*f_55_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) - (4*cos2th*f_56_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) - (4*cos2th*f_57_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) - (5*cos2th*f_58_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) - (5*cos2th*f_59_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) - (6*cos2th*f_60_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) - (6*cos2th*f_61_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) - (7*cos2th*f_62_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) - (7*cos2th*f_63_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_52_2*f[32]*f[35]*f[64]*f[67])/U[3] + (2*cos2th*f_53_2*f[32]*f[35]*f[64]*f[67])/U[3] + (3*cos2th*f_54_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) + (3*cos2th*f_55_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) + (4*cos2th*f_56_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) + (4*cos2th*f_57_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) + (5*cos2th*f_58_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) + (5*cos2th*f_59_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) + (6*cos2th*f_60_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) + (6*cos2th*f_61_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) + (7*cos2th*f_62_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) + (7*cos2th*f_63_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) + (2*f_52_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] + (2*f_53_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] + (3*f_54_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) + (3*f_55_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) + (4*f_56_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) + (4*f_57_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) + (5*f_58_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) + (5*f_59_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) + (6*f_60_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) + (6*f_61_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) + (7*f_62_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) + (7*f_63_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_52_2*f[32]*f[34]*f[65]*f[67])/U[3] + (2*cos2th*f_53_2*f[32]*f[34]*f[65]*f[67])/U[3] + (3*cos2th*f_54_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) + (3*cos2th*f_55_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) + (4*cos2th*f_56_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) + (4*cos2th*f_57_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) + (5*cos2th*f_58_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) + (5*cos2th*f_59_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) + (6*cos2th*f_60_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) + (6*cos2th*f_61_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) + (7*cos2th*f_62_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) + (7*cos2th*f_63_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) + (2*f_52_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] + (2*f_53_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] + (3*f_54_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) + (3*f_55_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) + (4*f_56_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) + (4*f_57_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) + (5*f_58_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) + (5*f_59_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) + (6*f_60_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) + (6*f_61_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) + (7*f_62_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) + (7*f_63_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) - (2*f_52_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] - (2*f_53_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] - (3*f_54_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) - (3*f_55_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) - (4*f_56_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) - (4*f_57_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) - (5*f_58_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) - (5*f_59_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) - (6*f_60_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) - (6*f_61_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) - (7*f_62_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) - (7*f_63_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) + (2*cos2th*f_52_2*f[33]*f[35]*f[65]*f[67])/U[3] + (2*cos2th*f_53_2*f[33]*f[35]*f[65]*f[67])/U[3] + (3*cos2th*f_54_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) + (3*cos2th*f_55_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) + (4*cos2th*f_56_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) + (4*cos2th*f_57_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) + (5*cos2th*f_58_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) + (5*cos2th*f_59_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) + (6*cos2th*f_60_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) + (6*cos2th*f_61_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) + (7*cos2th*f_62_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (7*cos2th*f_63_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (14*cos2th*f_52_2*f[44]*f[46]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_53_2*f[44]*f[46]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*f_52_2*sin2th*f[45]*f[46]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*f_53_2*sin2th*f[45]*f[46]*f[76]*f[78])/(U[3] - 6*U[4]) - (14*f_52_2*sin2th*f[44]*f[47]*f[76]*f[78])/(U[3] - 6*U[4]) - (14*f_53_2*sin2th*f[44]*f[47]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_52_2*f[45]*f[47]*f[76]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_53_2*f[45]*f[47]*f[76]*f[78])/(U[3] - 6*U[4]) - (14*f_52_2*sin2th*f[44]*f[46]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*f_53_2*sin2th*f[44]*f[46]*f[77]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_52_2*f[45]*f[46]*f[77]*f[78])/(U[3] - 6*U[4]) + (14*cos2th*f_53_2*f[45]*f[46]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*cos2th*f_52_2*f[44]*f[47]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*cos2th*f_53_2*f[44]*f[47]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*f_52_2*sin2th*f[45]*f[47]*f[77]*f[78])/(U[3] - 6*U[4]) - (14*f_53_2*sin2th*f[45]*f[47]*f[77]*f[78])/(U[3] - 6*U[4]) + (14*f_52_2*sin2th*f[44]*f[46]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*f_53_2*sin2th*f[44]*f[46]*f[76]*f[79])/(U[3] - 6*U[4]) - (14*cos2th*f_52_2*f[45]*f[46]*f[76]*f[79])/(U[3] - 6*U[4]) - (14*cos2th*f_53_2*f[45]*f[46]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_52_2*f[44]*f[47]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_53_2*f[44]*f[47]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*f_52_2*sin2th*f[45]*f[47]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*f_53_2*sin2th*f[45]*f[47]*f[76]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_52_2*f[44]*f[46]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_53_2*f[44]*f[46]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*f_52_2*sin2th*f[45]*f[46]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*f_53_2*sin2th*f[45]*f[46]*f[77]*f[79])/(U[3] - 6*U[4]) - (14*f_52_2*sin2th*f[44]*f[47]*f[77]*f[79])/(U[3] - 6*U[4]) - (14*f_53_2*sin2th*f[44]*f[47]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_52_2*f[45]*f[47]*f[77]*f[79])/(U[3] - 6*U[4]) + (14*cos2th*f_53_2*f[45]*f[47]*f[77]*f[79])/(U[3] - 6*U[4]) + (21*cos2th*f_54_2*f[44]*f[46]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_55_2*f[44]*f[46]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*f_54_2*sin2th*f[45]*f[46]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*f_55_2*sin2th*f[45]*f[46]*f[76]*f[78])/(2*U[3] - 6*U[4]) - (21*f_54_2*sin2th*f[44]*f[47]*f[76]*f[78])/(2*U[3] - 6*U[4]) - (21*f_55_2*sin2th*f[44]*f[47]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_54_2*f[45]*f[47]*f[76]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_55_2*f[45]*f[47]*f[76]*f[78])/(2*U[3] - 6*U[4]) - (21*f_54_2*sin2th*f[44]*f[46]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*f_55_2*sin2th*f[44]*f[46]*f[77]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_54_2*f[45]*f[46]*f[77]*f[78])/(2*U[3] - 6*U[4]) + (21*cos2th*f_55_2*f[45]*f[46]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*cos2th*f_54_2*f[44]*f[47]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*cos2th*f_55_2*f[44]*f[47]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*f_54_2*sin2th*f[45]*f[47]*f[77]*f[78])/(2*U[3] - 6*U[4]) - (21*f_55_2*sin2th*f[45]*f[47]*f[77]*f[78])/(2*U[3] - 6*U[4]) + (21*f_54_2*sin2th*f[44]*f[46]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*f_55_2*sin2th*f[44]*f[46]*f[76]*f[79])/(2*U[3] - 6*U[4]) - (21*cos2th*f_54_2*f[45]*f[46]*f[76]*f[79])/(2*U[3] - 6*U[4]) - (21*cos2th*f_55_2*f[45]*f[46]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_54_2*f[44]*f[47]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_55_2*f[44]*f[47]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*f_54_2*sin2th*f[45]*f[47]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*f_55_2*sin2th*f[45]*f[47]*f[76]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_54_2*f[44]*f[46]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_55_2*f[44]*f[46]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*f_54_2*sin2th*f[45]*f[46]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*f_55_2*sin2th*f[45]*f[46]*f[77]*f[79])/(2*U[3] - 6*U[4]) - (21*f_54_2*sin2th*f[44]*f[47]*f[77]*f[79])/(2*U[3] - 6*U[4]) - (21*f_55_2*sin2th*f[44]*f[47]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_54_2*f[45]*f[47]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (21*cos2th*f_55_2*f[45]*f[47]*f[77]*f[79])/(2*U[3] - 6*U[4]) + (28*cos2th*f_56_2*f[44]*f[46]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_57_2*f[44]*f[46]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*f_56_2*sin2th*f[45]*f[46]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*f_57_2*sin2th*f[45]*f[46]*f[76]*f[78])/(3*U[3] - 6*U[4]) - (28*f_56_2*sin2th*f[44]*f[47]*f[76]*f[78])/(3*U[3] - 6*U[4]) - (28*f_57_2*sin2th*f[44]*f[47]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_56_2*f[45]*f[47]*f[76]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_57_2*f[45]*f[47]*f[76]*f[78])/(3*U[3] - 6*U[4]) - (28*f_56_2*sin2th*f[44]*f[46]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*f_57_2*sin2th*f[44]*f[46]*f[77]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_56_2*f[45]*f[46]*f[77]*f[78])/(3*U[3] - 6*U[4]) + (28*cos2th*f_57_2*f[45]*f[46]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*cos2th*f_56_2*f[44]*f[47]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*cos2th*f_57_2*f[44]*f[47]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*f_56_2*sin2th*f[45]*f[47]*f[77]*f[78])/(3*U[3] - 6*U[4]) - (28*f_57_2*sin2th*f[45]*f[47]*f[77]*f[78])/(3*U[3] - 6*U[4]) + (28*f_56_2*sin2th*f[44]*f[46]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*f_57_2*sin2th*f[44]*f[46]*f[76]*f[79])/(3*U[3] - 6*U[4]) - (28*cos2th*f_56_2*f[45]*f[46]*f[76]*f[79])/(3*U[3] - 6*U[4]) - (28*cos2th*f_57_2*f[45]*f[46]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_56_2*f[44]*f[47]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_57_2*f[44]*f[47]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*f_56_2*sin2th*f[45]*f[47]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*f_57_2*sin2th*f[45]*f[47]*f[76]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_56_2*f[44]*f[46]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_57_2*f[44]*f[46]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*f_56_2*sin2th*f[45]*f[46]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*f_57_2*sin2th*f[45]*f[46]*f[77]*f[79])/(3*U[3] - 6*U[4]) - (28*f_56_2*sin2th*f[44]*f[47]*f[77]*f[79])/(3*U[3] - 6*U[4]) - (28*f_57_2*sin2th*f[44]*f[47]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_56_2*f[45]*f[47]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (28*cos2th*f_57_2*f[45]*f[47]*f[77]*f[79])/(3*U[3] - 6*U[4]) + (35*cos2th*f_58_2*f[44]*f[46]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_59_2*f[44]*f[46]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*f_58_2*sin2th*f[45]*f[46]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*f_59_2*sin2th*f[45]*f[46]*f[76]*f[78])/(4*U[3] - 6*U[4]) - (35*f_58_2*sin2th*f[44]*f[47]*f[76]*f[78])/(4*U[3] - 6*U[4]) - (35*f_59_2*sin2th*f[44]*f[47]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_58_2*f[45]*f[47]*f[76]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_59_2*f[45]*f[47]*f[76]*f[78])/(4*U[3] - 6*U[4]) - (35*f_58_2*sin2th*f[44]*f[46]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*f_59_2*sin2th*f[44]*f[46]*f[77]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_58_2*f[45]*f[46]*f[77]*f[78])/(4*U[3] - 6*U[4]) + (35*cos2th*f_59_2*f[45]*f[46]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*cos2th*f_58_2*f[44]*f[47]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*cos2th*f_59_2*f[44]*f[47]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*f_58_2*sin2th*f[45]*f[47]*f[77]*f[78])/(4*U[3] - 6*U[4]) - (35*f_59_2*sin2th*f[45]*f[47]*f[77]*f[78])/(4*U[3] - 6*U[4]) + (35*f_58_2*sin2th*f[44]*f[46]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*f_59_2*sin2th*f[44]*f[46]*f[76]*f[79])/(4*U[3] - 6*U[4]) - (35*cos2th*f_58_2*f[45]*f[46]*f[76]*f[79])/(4*U[3] - 6*U[4]) - (35*cos2th*f_59_2*f[45]*f[46]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_58_2*f[44]*f[47]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_59_2*f[44]*f[47]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*f_58_2*sin2th*f[45]*f[47]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*f_59_2*sin2th*f[45]*f[47]*f[76]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_58_2*f[44]*f[46]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_59_2*f[44]*f[46]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*f_58_2*sin2th*f[45]*f[46]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*f_59_2*sin2th*f[45]*f[46]*f[77]*f[79])/(4*U[3] - 6*U[4]) - (35*f_58_2*sin2th*f[44]*f[47]*f[77]*f[79])/(4*U[3] - 6*U[4]) - (35*f_59_2*sin2th*f[44]*f[47]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_58_2*f[45]*f[47]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (35*cos2th*f_59_2*f[45]*f[47]*f[77]*f[79])/(4*U[3] - 6*U[4]) + (42*cos2th*f_60_2*f[44]*f[46]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_61_2*f[44]*f[46]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*f_60_2*sin2th*f[45]*f[46]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*f_61_2*sin2th*f[45]*f[46]*f[76]*f[78])/(5*U[3] - 6*U[4]) - (42*f_60_2*sin2th*f[44]*f[47]*f[76]*f[78])/(5*U[3] - 6*U[4]) - (42*f_61_2*sin2th*f[44]*f[47]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_60_2*f[45]*f[47]*f[76]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_61_2*f[45]*f[47]*f[76]*f[78])/(5*U[3] - 6*U[4]) - (42*f_60_2*sin2th*f[44]*f[46]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*f_61_2*sin2th*f[44]*f[46]*f[77]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_60_2*f[45]*f[46]*f[77]*f[78])/(5*U[3] - 6*U[4]) + (42*cos2th*f_61_2*f[45]*f[46]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*cos2th*f_60_2*f[44]*f[47]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*cos2th*f_61_2*f[44]*f[47]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*f_60_2*sin2th*f[45]*f[47]*f[77]*f[78])/(5*U[3] - 6*U[4]) - (42*f_61_2*sin2th*f[45]*f[47]*f[77]*f[78])/(5*U[3] - 6*U[4]) + (42*f_60_2*sin2th*f[44]*f[46]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*f_61_2*sin2th*f[44]*f[46]*f[76]*f[79])/(5*U[3] - 6*U[4]) - (42*cos2th*f_60_2*f[45]*f[46]*f[76]*f[79])/(5*U[3] - 6*U[4]) - (42*cos2th*f_61_2*f[45]*f[46]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_60_2*f[44]*f[47]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_61_2*f[44]*f[47]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*f_60_2*sin2th*f[45]*f[47]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*f_61_2*sin2th*f[45]*f[47]*f[76]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_60_2*f[44]*f[46]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_61_2*f[44]*f[46]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*f_60_2*sin2th*f[45]*f[46]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*f_61_2*sin2th*f[45]*f[46]*f[77]*f[79])/(5*U[3] - 6*U[4]) - (42*f_60_2*sin2th*f[44]*f[47]*f[77]*f[79])/(5*U[3] - 6*U[4]) - (42*f_61_2*sin2th*f[44]*f[47]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_60_2*f[45]*f[47]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (42*cos2th*f_61_2*f[45]*f[47]*f[77]*f[79])/(5*U[3] - 6*U[4]) + (12*cos2th*f_52_2*f[42]*f[44]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_53_2*f[42]*f[44]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*f_52_2*sin2th*f[43]*f[44]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*f_53_2*sin2th*f[43]*f[44]*f[74]*f[76])/(U[3] - 5*U[4]) - (12*f_52_2*sin2th*f[42]*f[45]*f[74]*f[76])/(U[3] - 5*U[4]) - (12*f_53_2*sin2th*f[42]*f[45]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_52_2*f[43]*f[45]*f[74]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_53_2*f[43]*f[45]*f[74]*f[76])/(U[3] - 5*U[4]) - (12*f_52_2*sin2th*f[42]*f[44]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*f_53_2*sin2th*f[42]*f[44]*f[75]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_52_2*f[43]*f[44]*f[75]*f[76])/(U[3] - 5*U[4]) + (12*cos2th*f_53_2*f[43]*f[44]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*cos2th*f_52_2*f[42]*f[45]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*cos2th*f_53_2*f[42]*f[45]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*f_52_2*sin2th*f[43]*f[45]*f[75]*f[76])/(U[3] - 5*U[4]) - (12*f_53_2*sin2th*f[43]*f[45]*f[75]*f[76])/(U[3] - 5*U[4]) + (12*f_52_2*sin2th*f[42]*f[44]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*f_53_2*sin2th*f[42]*f[44]*f[74]*f[77])/(U[3] - 5*U[4]) - (12*cos2th*f_52_2*f[43]*f[44]*f[74]*f[77])/(U[3] - 5*U[4]) - (12*cos2th*f_53_2*f[43]*f[44]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_52_2*f[42]*f[45]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_53_2*f[42]*f[45]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*f_52_2*sin2th*f[43]*f[45]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*f_53_2*sin2th*f[43]*f[45]*f[74]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_52_2*f[42]*f[44]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_53_2*f[42]*f[44]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*f_52_2*sin2th*f[43]*f[44]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*f_53_2*sin2th*f[43]*f[44]*f[75]*f[77])/(U[3] - 5*U[4]) - (12*f_52_2*sin2th*f[42]*f[45]*f[75]*f[77])/(U[3] - 5*U[4]) - (12*f_53_2*sin2th*f[42]*f[45]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_52_2*f[43]*f[45]*f[75]*f[77])/(U[3] - 5*U[4]) + (12*cos2th*f_53_2*f[43]*f[45]*f[75]*f[77])/(U[3] - 5*U[4]) + (18*cos2th*f_54_2*f[42]*f[44]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_55_2*f[42]*f[44]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*f_54_2*sin2th*f[43]*f[44]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*f_55_2*sin2th*f[43]*f[44]*f[74]*f[76])/(2*U[3] - 5*U[4]) - (18*f_54_2*sin2th*f[42]*f[45]*f[74]*f[76])/(2*U[3] - 5*U[4]) - (18*f_55_2*sin2th*f[42]*f[45]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_54_2*f[43]*f[45]*f[74]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_55_2*f[43]*f[45]*f[74]*f[76])/(2*U[3] - 5*U[4]) - (18*f_54_2*sin2th*f[42]*f[44]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*f_55_2*sin2th*f[42]*f[44]*f[75]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_54_2*f[43]*f[44]*f[75]*f[76])/(2*U[3] - 5*U[4]) + (18*cos2th*f_55_2*f[43]*f[44]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*cos2th*f_54_2*f[42]*f[45]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*cos2th*f_55_2*f[42]*f[45]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*f_54_2*sin2th*f[43]*f[45]*f[75]*f[76])/(2*U[3] - 5*U[4]) - (18*f_55_2*sin2th*f[43]*f[45]*f[75]*f[76])/(2*U[3] - 5*U[4]) + (18*f_54_2*sin2th*f[42]*f[44]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*f_55_2*sin2th*f[42]*f[44]*f[74]*f[77])/(2*U[3] - 5*U[4]) - (18*cos2th*f_54_2*f[43]*f[44]*f[74]*f[77])/(2*U[3] - 5*U[4]) - (18*cos2th*f_55_2*f[43]*f[44]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_54_2*f[42]*f[45]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_55_2*f[42]*f[45]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*f_54_2*sin2th*f[43]*f[45]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*f_55_2*sin2th*f[43]*f[45]*f[74]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_54_2*f[42]*f[44]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_55_2*f[42]*f[44]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*f_54_2*sin2th*f[43]*f[44]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*f_55_2*sin2th*f[43]*f[44]*f[75]*f[77])/(2*U[3] - 5*U[4]) - (18*f_54_2*sin2th*f[42]*f[45]*f[75]*f[77])/(2*U[3] - 5*U[4]) - (18*f_55_2*sin2th*f[42]*f[45]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_54_2*f[43]*f[45]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (18*cos2th*f_55_2*f[43]*f[45]*f[75]*f[77])/(2*U[3] - 5*U[4]) + (24*cos2th*f_56_2*f[42]*f[44]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_57_2*f[42]*f[44]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*f_56_2*sin2th*f[43]*f[44]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*f_57_2*sin2th*f[43]*f[44]*f[74]*f[76])/(3*U[3] - 5*U[4]) - (24*f_56_2*sin2th*f[42]*f[45]*f[74]*f[76])/(3*U[3] - 5*U[4]) - (24*f_57_2*sin2th*f[42]*f[45]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_56_2*f[43]*f[45]*f[74]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_57_2*f[43]*f[45]*f[74]*f[76])/(3*U[3] - 5*U[4]) - (24*f_56_2*sin2th*f[42]*f[44]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*f_57_2*sin2th*f[42]*f[44]*f[75]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_56_2*f[43]*f[44]*f[75]*f[76])/(3*U[3] - 5*U[4]) + (24*cos2th*f_57_2*f[43]*f[44]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*cos2th*f_56_2*f[42]*f[45]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*cos2th*f_57_2*f[42]*f[45]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*f_56_2*sin2th*f[43]*f[45]*f[75]*f[76])/(3*U[3] - 5*U[4]) - (24*f_57_2*sin2th*f[43]*f[45]*f[75]*f[76])/(3*U[3] - 5*U[4]) + (24*f_56_2*sin2th*f[42]*f[44]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*f_57_2*sin2th*f[42]*f[44]*f[74]*f[77])/(3*U[3] - 5*U[4]) - (24*cos2th*f_56_2*f[43]*f[44]*f[74]*f[77])/(3*U[3] - 5*U[4]) - (24*cos2th*f_57_2*f[43]*f[44]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_56_2*f[42]*f[45]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_57_2*f[42]*f[45]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*f_56_2*sin2th*f[43]*f[45]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*f_57_2*sin2th*f[43]*f[45]*f[74]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_56_2*f[42]*f[44]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_57_2*f[42]*f[44]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*f_56_2*sin2th*f[43]*f[44]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*f_57_2*sin2th*f[43]*f[44]*f[75]*f[77])/(3*U[3] - 5*U[4]) - (24*f_56_2*sin2th*f[42]*f[45]*f[75]*f[77])/(3*U[3] - 5*U[4]) - (24*f_57_2*sin2th*f[42]*f[45]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_56_2*f[43]*f[45]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (24*cos2th*f_57_2*f[43]*f[45]*f[75]*f[77])/(3*U[3] - 5*U[4]) + (30*cos2th*f_58_2*f[42]*f[44]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_59_2*f[42]*f[44]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*f_58_2*sin2th*f[43]*f[44]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*f_59_2*sin2th*f[43]*f[44]*f[74]*f[76])/(4*U[3] - 5*U[4]) - (30*f_58_2*sin2th*f[42]*f[45]*f[74]*f[76])/(4*U[3] - 5*U[4]) - (30*f_59_2*sin2th*f[42]*f[45]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_58_2*f[43]*f[45]*f[74]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_59_2*f[43]*f[45]*f[74]*f[76])/(4*U[3] - 5*U[4]) - (30*f_58_2*sin2th*f[42]*f[44]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*f_59_2*sin2th*f[42]*f[44]*f[75]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_58_2*f[43]*f[44]*f[75]*f[76])/(4*U[3] - 5*U[4]) + (30*cos2th*f_59_2*f[43]*f[44]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*cos2th*f_58_2*f[42]*f[45]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*cos2th*f_59_2*f[42]*f[45]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*f_58_2*sin2th*f[43]*f[45]*f[75]*f[76])/(4*U[3] - 5*U[4]) - (30*f_59_2*sin2th*f[43]*f[45]*f[75]*f[76])/(4*U[3] - 5*U[4]) + (30*f_58_2*sin2th*f[42]*f[44]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*f_59_2*sin2th*f[42]*f[44]*f[74]*f[77])/(4*U[3] - 5*U[4]) - (30*cos2th*f_58_2*f[43]*f[44]*f[74]*f[77])/(4*U[3] - 5*U[4]) - (30*cos2th*f_59_2*f[43]*f[44]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_58_2*f[42]*f[45]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_59_2*f[42]*f[45]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*f_58_2*sin2th*f[43]*f[45]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*f_59_2*sin2th*f[43]*f[45]*f[74]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_58_2*f[42]*f[44]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_59_2*f[42]*f[44]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*f_58_2*sin2th*f[43]*f[44]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*f_59_2*sin2th*f[43]*f[44]*f[75]*f[77])/(4*U[3] - 5*U[4]) - (30*f_58_2*sin2th*f[42]*f[45]*f[75]*f[77])/(4*U[3] - 5*U[4]) - (30*f_59_2*sin2th*f[42]*f[45]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_58_2*f[43]*f[45]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (30*cos2th*f_59_2*f[43]*f[45]*f[75]*f[77])/(4*U[3] - 5*U[4]) + (42*cos2th*f_62_2*f[42]*f[44]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_63_2*f[42]*f[44]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*f_62_2*sin2th*f[43]*f[44]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*f_63_2*sin2th*f[43]*f[44]*f[74]*f[76])/(6*U[3] - 5*U[4]) - (42*f_62_2*sin2th*f[42]*f[45]*f[74]*f[76])/(6*U[3] - 5*U[4]) - (42*f_63_2*sin2th*f[42]*f[45]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_62_2*f[43]*f[45]*f[74]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_63_2*f[43]*f[45]*f[74]*f[76])/(6*U[3] - 5*U[4]) - (42*f_62_2*sin2th*f[42]*f[44]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*f_63_2*sin2th*f[42]*f[44]*f[75]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_62_2*f[43]*f[44]*f[75]*f[76])/(6*U[3] - 5*U[4]) + (42*cos2th*f_63_2*f[43]*f[44]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*cos2th*f_62_2*f[42]*f[45]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*cos2th*f_63_2*f[42]*f[45]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*f_62_2*sin2th*f[43]*f[45]*f[75]*f[76])/(6*U[3] - 5*U[4]) - (42*f_63_2*sin2th*f[43]*f[45]*f[75]*f[76])/(6*U[3] - 5*U[4]) + (42*f_62_2*sin2th*f[42]*f[44]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*f_63_2*sin2th*f[42]*f[44]*f[74]*f[77])/(6*U[3] - 5*U[4]) - (42*cos2th*f_62_2*f[43]*f[44]*f[74]*f[77])/(6*U[3] - 5*U[4]) - (42*cos2th*f_63_2*f[43]*f[44]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_62_2*f[42]*f[45]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_63_2*f[42]*f[45]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*f_62_2*sin2th*f[43]*f[45]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*f_63_2*sin2th*f[43]*f[45]*f[74]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_62_2*f[42]*f[44]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_63_2*f[42]*f[44]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*f_62_2*sin2th*f[43]*f[44]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*f_63_2*sin2th*f[43]*f[44]*f[75]*f[77])/(6*U[3] - 5*U[4]) - (42*f_62_2*sin2th*f[42]*f[45]*f[75]*f[77])/(6*U[3] - 5*U[4]) - (42*f_63_2*sin2th*f[42]*f[45]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_62_2*f[43]*f[45]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (42*cos2th*f_63_2*f[43]*f[45]*f[75]*f[77])/(6*U[3] - 5*U[4]) + (10*cos2th*f_52_2*f[40]*f[42]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_53_2*f[40]*f[42]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*f_52_2*sin2th*f[41]*f[42]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*f_53_2*sin2th*f[41]*f[42]*f[72]*f[74])/(U[3] - 4*U[4]) - (10*f_52_2*sin2th*f[40]*f[43]*f[72]*f[74])/(U[3] - 4*U[4]) - (10*f_53_2*sin2th*f[40]*f[43]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_52_2*f[41]*f[43]*f[72]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_53_2*f[41]*f[43]*f[72]*f[74])/(U[3] - 4*U[4]) - (10*f_52_2*sin2th*f[40]*f[42]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*f_53_2*sin2th*f[40]*f[42]*f[73]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_52_2*f[41]*f[42]*f[73]*f[74])/(U[3] - 4*U[4]) + (10*cos2th*f_53_2*f[41]*f[42]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*cos2th*f_52_2*f[40]*f[43]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*cos2th*f_53_2*f[40]*f[43]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*f_52_2*sin2th*f[41]*f[43]*f[73]*f[74])/(U[3] - 4*U[4]) - (10*f_53_2*sin2th*f[41]*f[43]*f[73]*f[74])/(U[3] - 4*U[4]) + (10*f_52_2*sin2th*f[40]*f[42]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*f_53_2*sin2th*f[40]*f[42]*f[72]*f[75])/(U[3] - 4*U[4]) - (10*cos2th*f_52_2*f[41]*f[42]*f[72]*f[75])/(U[3] - 4*U[4]) - (10*cos2th*f_53_2*f[41]*f[42]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_52_2*f[40]*f[43]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_53_2*f[40]*f[43]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*f_52_2*sin2th*f[41]*f[43]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*f_53_2*sin2th*f[41]*f[43]*f[72]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_52_2*f[40]*f[42]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_53_2*f[40]*f[42]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*f_52_2*sin2th*f[41]*f[42]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*f_53_2*sin2th*f[41]*f[42]*f[73]*f[75])/(U[3] - 4*U[4]) - (10*f_52_2*sin2th*f[40]*f[43]*f[73]*f[75])/(U[3] - 4*U[4]) - (10*f_53_2*sin2th*f[40]*f[43]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_52_2*f[41]*f[43]*f[73]*f[75])/(U[3] - 4*U[4]) + (10*cos2th*f_53_2*f[41]*f[43]*f[73]*f[75])/(U[3] - 4*U[4]) + (15*cos2th*f_54_2*f[40]*f[42]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_55_2*f[40]*f[42]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*f_54_2*sin2th*f[41]*f[42]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*f_55_2*sin2th*f[41]*f[42]*f[72]*f[74])/(2*U[3] - 4*U[4]) - (15*f_54_2*sin2th*f[40]*f[43]*f[72]*f[74])/(2*U[3] - 4*U[4]) - (15*f_55_2*sin2th*f[40]*f[43]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_54_2*f[41]*f[43]*f[72]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_55_2*f[41]*f[43]*f[72]*f[74])/(2*U[3] - 4*U[4]) - (15*f_54_2*sin2th*f[40]*f[42]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*f_55_2*sin2th*f[40]*f[42]*f[73]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_54_2*f[41]*f[42]*f[73]*f[74])/(2*U[3] - 4*U[4]) + (15*cos2th*f_55_2*f[41]*f[42]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*cos2th*f_54_2*f[40]*f[43]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*cos2th*f_55_2*f[40]*f[43]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*f_54_2*sin2th*f[41]*f[43]*f[73]*f[74])/(2*U[3] - 4*U[4]) - (15*f_55_2*sin2th*f[41]*f[43]*f[73]*f[74])/(2*U[3] - 4*U[4]) + (15*f_54_2*sin2th*f[40]*f[42]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*f_55_2*sin2th*f[40]*f[42]*f[72]*f[75])/(2*U[3] - 4*U[4]) - (15*cos2th*f_54_2*f[41]*f[42]*f[72]*f[75])/(2*U[3] - 4*U[4]) - (15*cos2th*f_55_2*f[41]*f[42]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_54_2*f[40]*f[43]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_55_2*f[40]*f[43]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*f_54_2*sin2th*f[41]*f[43]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*f_55_2*sin2th*f[41]*f[43]*f[72]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_54_2*f[40]*f[42]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_55_2*f[40]*f[42]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*f_54_2*sin2th*f[41]*f[42]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*f_55_2*sin2th*f[41]*f[42]*f[73]*f[75])/(2*U[3] - 4*U[4]) - (15*f_54_2*sin2th*f[40]*f[43]*f[73]*f[75])/(2*U[3] - 4*U[4]) - (15*f_55_2*sin2th*f[40]*f[43]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_54_2*f[41]*f[43]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (15*cos2th*f_55_2*f[41]*f[43]*f[73]*f[75])/(2*U[3] - 4*U[4]) + (20*cos2th*f_56_2*f[40]*f[42]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_57_2*f[40]*f[42]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*f_56_2*sin2th*f[41]*f[42]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*f_57_2*sin2th*f[41]*f[42]*f[72]*f[74])/(3*U[3] - 4*U[4]) - (20*f_56_2*sin2th*f[40]*f[43]*f[72]*f[74])/(3*U[3] - 4*U[4]) - (20*f_57_2*sin2th*f[40]*f[43]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_56_2*f[41]*f[43]*f[72]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_57_2*f[41]*f[43]*f[72]*f[74])/(3*U[3] - 4*U[4]) - (20*f_56_2*sin2th*f[40]*f[42]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*f_57_2*sin2th*f[40]*f[42]*f[73]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_56_2*f[41]*f[42]*f[73]*f[74])/(3*U[3] - 4*U[4]) + (20*cos2th*f_57_2*f[41]*f[42]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*cos2th*f_56_2*f[40]*f[43]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*cos2th*f_57_2*f[40]*f[43]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*f_56_2*sin2th*f[41]*f[43]*f[73]*f[74])/(3*U[3] - 4*U[4]) - (20*f_57_2*sin2th*f[41]*f[43]*f[73]*f[74])/(3*U[3] - 4*U[4]) + (20*f_56_2*sin2th*f[40]*f[42]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*f_57_2*sin2th*f[40]*f[42]*f[72]*f[75])/(3*U[3] - 4*U[4]) - (20*cos2th*f_56_2*f[41]*f[42]*f[72]*f[75])/(3*U[3] - 4*U[4]) - (20*cos2th*f_57_2*f[41]*f[42]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_56_2*f[40]*f[43]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_57_2*f[40]*f[43]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*f_56_2*sin2th*f[41]*f[43]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*f_57_2*sin2th*f[41]*f[43]*f[72]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_56_2*f[40]*f[42]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_57_2*f[40]*f[42]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*f_56_2*sin2th*f[41]*f[42]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*f_57_2*sin2th*f[41]*f[42]*f[73]*f[75])/(3*U[3] - 4*U[4]) - (20*f_56_2*sin2th*f[40]*f[43]*f[73]*f[75])/(3*U[3] - 4*U[4]) - (20*f_57_2*sin2th*f[40]*f[43]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_56_2*f[41]*f[43]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (20*cos2th*f_57_2*f[41]*f[43]*f[73]*f[75])/(3*U[3] - 4*U[4]) + (30*cos2th*f_60_2*f[40]*f[42]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_61_2*f[40]*f[42]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*f_60_2*sin2th*f[41]*f[42]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*f_61_2*sin2th*f[41]*f[42]*f[72]*f[74])/(5*U[3] - 4*U[4]) - (30*f_60_2*sin2th*f[40]*f[43]*f[72]*f[74])/(5*U[3] - 4*U[4]) - (30*f_61_2*sin2th*f[40]*f[43]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_60_2*f[41]*f[43]*f[72]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_61_2*f[41]*f[43]*f[72]*f[74])/(5*U[3] - 4*U[4]) - (30*f_60_2*sin2th*f[40]*f[42]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*f_61_2*sin2th*f[40]*f[42]*f[73]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_60_2*f[41]*f[42]*f[73]*f[74])/(5*U[3] - 4*U[4]) + (30*cos2th*f_61_2*f[41]*f[42]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*cos2th*f_60_2*f[40]*f[43]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*cos2th*f_61_2*f[40]*f[43]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*f_60_2*sin2th*f[41]*f[43]*f[73]*f[74])/(5*U[3] - 4*U[4]) - (30*f_61_2*sin2th*f[41]*f[43]*f[73]*f[74])/(5*U[3] - 4*U[4]) + (30*f_60_2*sin2th*f[40]*f[42]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*f_61_2*sin2th*f[40]*f[42]*f[72]*f[75])/(5*U[3] - 4*U[4]) - (30*cos2th*f_60_2*f[41]*f[42]*f[72]*f[75])/(5*U[3] - 4*U[4]) - (30*cos2th*f_61_2*f[41]*f[42]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_60_2*f[40]*f[43]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_61_2*f[40]*f[43]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*f_60_2*sin2th*f[41]*f[43]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*f_61_2*sin2th*f[41]*f[43]*f[72]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_60_2*f[40]*f[42]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_61_2*f[40]*f[42]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*f_60_2*sin2th*f[41]*f[42]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*f_61_2*sin2th*f[41]*f[42]*f[73]*f[75])/(5*U[3] - 4*U[4]) - (30*f_60_2*sin2th*f[40]*f[43]*f[73]*f[75])/(5*U[3] - 4*U[4]) - (30*f_61_2*sin2th*f[40]*f[43]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_60_2*f[41]*f[43]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (30*cos2th*f_61_2*f[41]*f[43]*f[73]*f[75])/(5*U[3] - 4*U[4]) + (35*cos2th*f_62_2*f[40]*f[42]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_63_2*f[40]*f[42]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*f_62_2*sin2th*f[41]*f[42]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*f_63_2*sin2th*f[41]*f[42]*f[72]*f[74])/(6*U[3] - 4*U[4]) - (35*f_62_2*sin2th*f[40]*f[43]*f[72]*f[74])/(6*U[3] - 4*U[4]) - (35*f_63_2*sin2th*f[40]*f[43]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_62_2*f[41]*f[43]*f[72]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_63_2*f[41]*f[43]*f[72]*f[74])/(6*U[3] - 4*U[4]) - (35*f_62_2*sin2th*f[40]*f[42]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*f_63_2*sin2th*f[40]*f[42]*f[73]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_62_2*f[41]*f[42]*f[73]*f[74])/(6*U[3] - 4*U[4]) + (35*cos2th*f_63_2*f[41]*f[42]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*cos2th*f_62_2*f[40]*f[43]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*cos2th*f_63_2*f[40]*f[43]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*f_62_2*sin2th*f[41]*f[43]*f[73]*f[74])/(6*U[3] - 4*U[4]) - (35*f_63_2*sin2th*f[41]*f[43]*f[73]*f[74])/(6*U[3] - 4*U[4]) + (35*f_62_2*sin2th*f[40]*f[42]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*f_63_2*sin2th*f[40]*f[42]*f[72]*f[75])/(6*U[3] - 4*U[4]) - (35*cos2th*f_62_2*f[41]*f[42]*f[72]*f[75])/(6*U[3] - 4*U[4]) - (35*cos2th*f_63_2*f[41]*f[42]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_62_2*f[40]*f[43]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_63_2*f[40]*f[43]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*f_62_2*sin2th*f[41]*f[43]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*f_63_2*sin2th*f[41]*f[43]*f[72]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_62_2*f[40]*f[42]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_63_2*f[40]*f[42]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*f_62_2*sin2th*f[41]*f[42]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*f_63_2*sin2th*f[41]*f[42]*f[73]*f[75])/(6*U[3] - 4*U[4]) - (35*f_62_2*sin2th*f[40]*f[43]*f[73]*f[75])/(6*U[3] - 4*U[4]) - (35*f_63_2*sin2th*f[40]*f[43]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_62_2*f[41]*f[43]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (35*cos2th*f_63_2*f[41]*f[43]*f[73]*f[75])/(6*U[3] - 4*U[4]) + (8*cos2th*f_52_2*f[38]*f[40]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_53_2*f[38]*f[40]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*f_52_2*sin2th*f[39]*f[40]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*f_53_2*sin2th*f[39]*f[40]*f[70]*f[72])/(U[3] - 3*U[4]) - (8*f_52_2*sin2th*f[38]*f[41]*f[70]*f[72])/(U[3] - 3*U[4]) - (8*f_53_2*sin2th*f[38]*f[41]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_52_2*f[39]*f[41]*f[70]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_53_2*f[39]*f[41]*f[70]*f[72])/(U[3] - 3*U[4]) - (8*f_52_2*sin2th*f[38]*f[40]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*f_53_2*sin2th*f[38]*f[40]*f[71]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_52_2*f[39]*f[40]*f[71]*f[72])/(U[3] - 3*U[4]) + (8*cos2th*f_53_2*f[39]*f[40]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*cos2th*f_52_2*f[38]*f[41]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*cos2th*f_53_2*f[38]*f[41]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*f_52_2*sin2th*f[39]*f[41]*f[71]*f[72])/(U[3] - 3*U[4]) - (8*f_53_2*sin2th*f[39]*f[41]*f[71]*f[72])/(U[3] - 3*U[4]) + (8*f_52_2*sin2th*f[38]*f[40]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*f_53_2*sin2th*f[38]*f[40]*f[70]*f[73])/(U[3] - 3*U[4]) - (8*cos2th*f_52_2*f[39]*f[40]*f[70]*f[73])/(U[3] - 3*U[4]) - (8*cos2th*f_53_2*f[39]*f[40]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_52_2*f[38]*f[41]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_53_2*f[38]*f[41]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*f_52_2*sin2th*f[39]*f[41]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*f_53_2*sin2th*f[39]*f[41]*f[70]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_52_2*f[38]*f[40]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_53_2*f[38]*f[40]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*f_52_2*sin2th*f[39]*f[40]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*f_53_2*sin2th*f[39]*f[40]*f[71]*f[73])/(U[3] - 3*U[4]) - (8*f_52_2*sin2th*f[38]*f[41]*f[71]*f[73])/(U[3] - 3*U[4]) - (8*f_53_2*sin2th*f[38]*f[41]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_52_2*f[39]*f[41]*f[71]*f[73])/(U[3] - 3*U[4]) + (8*cos2th*f_53_2*f[39]*f[41]*f[71]*f[73])/(U[3] - 3*U[4]) + (12*cos2th*f_54_2*f[38]*f[40]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_55_2*f[38]*f[40]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*f_54_2*sin2th*f[39]*f[40]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*f_55_2*sin2th*f[39]*f[40]*f[70]*f[72])/(2*U[3] - 3*U[4]) - (12*f_54_2*sin2th*f[38]*f[41]*f[70]*f[72])/(2*U[3] - 3*U[4]) - (12*f_55_2*sin2th*f[38]*f[41]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_54_2*f[39]*f[41]*f[70]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_55_2*f[39]*f[41]*f[70]*f[72])/(2*U[3] - 3*U[4]) - (12*f_54_2*sin2th*f[38]*f[40]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*f_55_2*sin2th*f[38]*f[40]*f[71]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_54_2*f[39]*f[40]*f[71]*f[72])/(2*U[3] - 3*U[4]) + (12*cos2th*f_55_2*f[39]*f[40]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*cos2th*f_54_2*f[38]*f[41]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*cos2th*f_55_2*f[38]*f[41]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*f_54_2*sin2th*f[39]*f[41]*f[71]*f[72])/(2*U[3] - 3*U[4]) - (12*f_55_2*sin2th*f[39]*f[41]*f[71]*f[72])/(2*U[3] - 3*U[4]) + (12*f_54_2*sin2th*f[38]*f[40]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*f_55_2*sin2th*f[38]*f[40]*f[70]*f[73])/(2*U[3] - 3*U[4]) - (12*cos2th*f_54_2*f[39]*f[40]*f[70]*f[73])/(2*U[3] - 3*U[4]) - (12*cos2th*f_55_2*f[39]*f[40]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_54_2*f[38]*f[41]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_55_2*f[38]*f[41]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*f_54_2*sin2th*f[39]*f[41]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*f_55_2*sin2th*f[39]*f[41]*f[70]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_54_2*f[38]*f[40]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_55_2*f[38]*f[40]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*f_54_2*sin2th*f[39]*f[40]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*f_55_2*sin2th*f[39]*f[40]*f[71]*f[73])/(2*U[3] - 3*U[4]) - (12*f_54_2*sin2th*f[38]*f[41]*f[71]*f[73])/(2*U[3] - 3*U[4]) - (12*f_55_2*sin2th*f[38]*f[41]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_54_2*f[39]*f[41]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (12*cos2th*f_55_2*f[39]*f[41]*f[71]*f[73])/(2*U[3] - 3*U[4]) + (20*cos2th*f_58_2*f[38]*f[40]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_59_2*f[38]*f[40]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*f_58_2*sin2th*f[39]*f[40]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*f_59_2*sin2th*f[39]*f[40]*f[70]*f[72])/(4*U[3] - 3*U[4]) - (20*f_58_2*sin2th*f[38]*f[41]*f[70]*f[72])/(4*U[3] - 3*U[4]) - (20*f_59_2*sin2th*f[38]*f[41]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_58_2*f[39]*f[41]*f[70]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_59_2*f[39]*f[41]*f[70]*f[72])/(4*U[3] - 3*U[4]) - (20*f_58_2*sin2th*f[38]*f[40]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*f_59_2*sin2th*f[38]*f[40]*f[71]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_58_2*f[39]*f[40]*f[71]*f[72])/(4*U[3] - 3*U[4]) + (20*cos2th*f_59_2*f[39]*f[40]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*cos2th*f_58_2*f[38]*f[41]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*cos2th*f_59_2*f[38]*f[41]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*f_58_2*sin2th*f[39]*f[41]*f[71]*f[72])/(4*U[3] - 3*U[4]) - (20*f_59_2*sin2th*f[39]*f[41]*f[71]*f[72])/(4*U[3] - 3*U[4]) + (20*f_58_2*sin2th*f[38]*f[40]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*f_59_2*sin2th*f[38]*f[40]*f[70]*f[73])/(4*U[3] - 3*U[4]) - (20*cos2th*f_58_2*f[39]*f[40]*f[70]*f[73])/(4*U[3] - 3*U[4]) - (20*cos2th*f_59_2*f[39]*f[40]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_58_2*f[38]*f[41]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_59_2*f[38]*f[41]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*f_58_2*sin2th*f[39]*f[41]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*f_59_2*sin2th*f[39]*f[41]*f[70]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_58_2*f[38]*f[40]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_59_2*f[38]*f[40]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*f_58_2*sin2th*f[39]*f[40]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*f_59_2*sin2th*f[39]*f[40]*f[71]*f[73])/(4*U[3] - 3*U[4]) - (20*f_58_2*sin2th*f[38]*f[41]*f[71]*f[73])/(4*U[3] - 3*U[4]) - (20*f_59_2*sin2th*f[38]*f[41]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_58_2*f[39]*f[41]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (20*cos2th*f_59_2*f[39]*f[41]*f[71]*f[73])/(4*U[3] - 3*U[4]) + (24*cos2th*f_60_2*f[38]*f[40]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_61_2*f[38]*f[40]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*f_60_2*sin2th*f[39]*f[40]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*f_61_2*sin2th*f[39]*f[40]*f[70]*f[72])/(5*U[3] - 3*U[4]) - (24*f_60_2*sin2th*f[38]*f[41]*f[70]*f[72])/(5*U[3] - 3*U[4]) - (24*f_61_2*sin2th*f[38]*f[41]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_60_2*f[39]*f[41]*f[70]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_61_2*f[39]*f[41]*f[70]*f[72])/(5*U[3] - 3*U[4]) - (24*f_60_2*sin2th*f[38]*f[40]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*f_61_2*sin2th*f[38]*f[40]*f[71]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_60_2*f[39]*f[40]*f[71]*f[72])/(5*U[3] - 3*U[4]) + (24*cos2th*f_61_2*f[39]*f[40]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*cos2th*f_60_2*f[38]*f[41]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*cos2th*f_61_2*f[38]*f[41]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*f_60_2*sin2th*f[39]*f[41]*f[71]*f[72])/(5*U[3] - 3*U[4]) - (24*f_61_2*sin2th*f[39]*f[41]*f[71]*f[72])/(5*U[3] - 3*U[4]) + (24*f_60_2*sin2th*f[38]*f[40]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*f_61_2*sin2th*f[38]*f[40]*f[70]*f[73])/(5*U[3] - 3*U[4]) - (24*cos2th*f_60_2*f[39]*f[40]*f[70]*f[73])/(5*U[3] - 3*U[4]) - (24*cos2th*f_61_2*f[39]*f[40]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_60_2*f[38]*f[41]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_61_2*f[38]*f[41]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*f_60_2*sin2th*f[39]*f[41]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*f_61_2*sin2th*f[39]*f[41]*f[70]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_60_2*f[38]*f[40]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_61_2*f[38]*f[40]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*f_60_2*sin2th*f[39]*f[40]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*f_61_2*sin2th*f[39]*f[40]*f[71]*f[73])/(5*U[3] - 3*U[4]) - (24*f_60_2*sin2th*f[38]*f[41]*f[71]*f[73])/(5*U[3] - 3*U[4]) - (24*f_61_2*sin2th*f[38]*f[41]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_60_2*f[39]*f[41]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (24*cos2th*f_61_2*f[39]*f[41]*f[71]*f[73])/(5*U[3] - 3*U[4]) + (28*cos2th*f_62_2*f[38]*f[40]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_63_2*f[38]*f[40]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*f_62_2*sin2th*f[39]*f[40]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*f_63_2*sin2th*f[39]*f[40]*f[70]*f[72])/(6*U[3] - 3*U[4]) - (28*f_62_2*sin2th*f[38]*f[41]*f[70]*f[72])/(6*U[3] - 3*U[4]) - (28*f_63_2*sin2th*f[38]*f[41]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_62_2*f[39]*f[41]*f[70]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_63_2*f[39]*f[41]*f[70]*f[72])/(6*U[3] - 3*U[4]) - (28*f_62_2*sin2th*f[38]*f[40]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*f_63_2*sin2th*f[38]*f[40]*f[71]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_62_2*f[39]*f[40]*f[71]*f[72])/(6*U[3] - 3*U[4]) + (28*cos2th*f_63_2*f[39]*f[40]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*cos2th*f_62_2*f[38]*f[41]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*cos2th*f_63_2*f[38]*f[41]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*f_62_2*sin2th*f[39]*f[41]*f[71]*f[72])/(6*U[3] - 3*U[4]) - (28*f_63_2*sin2th*f[39]*f[41]*f[71]*f[72])/(6*U[3] - 3*U[4]) + (28*f_62_2*sin2th*f[38]*f[40]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*f_63_2*sin2th*f[38]*f[40]*f[70]*f[73])/(6*U[3] - 3*U[4]) - (28*cos2th*f_62_2*f[39]*f[40]*f[70]*f[73])/(6*U[3] - 3*U[4]) - (28*cos2th*f_63_2*f[39]*f[40]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_62_2*f[38]*f[41]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_63_2*f[38]*f[41]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*f_62_2*sin2th*f[39]*f[41]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*f_63_2*sin2th*f[39]*f[41]*f[70]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_62_2*f[38]*f[40]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_63_2*f[38]*f[40]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*f_62_2*sin2th*f[39]*f[40]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*f_63_2*sin2th*f[39]*f[40]*f[71]*f[73])/(6*U[3] - 3*U[4]) - (28*f_62_2*sin2th*f[38]*f[41]*f[71]*f[73])/(6*U[3] - 3*U[4]) - (28*f_63_2*sin2th*f[38]*f[41]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_62_2*f[39]*f[41]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (28*cos2th*f_63_2*f[39]*f[41]*f[71]*f[73])/(6*U[3] - 3*U[4]) + (6*cos2th*f_52_2*f[36]*f[38]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_53_2*f[36]*f[38]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*f_52_2*sin2th*f[37]*f[38]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*f_53_2*sin2th*f[37]*f[38]*f[68]*f[70])/(U[3] - 2*U[4]) - (6*f_52_2*sin2th*f[36]*f[39]*f[68]*f[70])/(U[3] - 2*U[4]) - (6*f_53_2*sin2th*f[36]*f[39]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_52_2*f[37]*f[39]*f[68]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_53_2*f[37]*f[39]*f[68]*f[70])/(U[3] - 2*U[4]) - (6*f_52_2*sin2th*f[36]*f[38]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*f_53_2*sin2th*f[36]*f[38]*f[69]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_52_2*f[37]*f[38]*f[69]*f[70])/(U[3] - 2*U[4]) + (6*cos2th*f_53_2*f[37]*f[38]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*cos2th*f_52_2*f[36]*f[39]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*cos2th*f_53_2*f[36]*f[39]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*f_52_2*sin2th*f[37]*f[39]*f[69]*f[70])/(U[3] - 2*U[4]) - (6*f_53_2*sin2th*f[37]*f[39]*f[69]*f[70])/(U[3] - 2*U[4]) + (6*f_52_2*sin2th*f[36]*f[38]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*f_53_2*sin2th*f[36]*f[38]*f[68]*f[71])/(U[3] - 2*U[4]) - (6*cos2th*f_52_2*f[37]*f[38]*f[68]*f[71])/(U[3] - 2*U[4]) - (6*cos2th*f_53_2*f[37]*f[38]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_52_2*f[36]*f[39]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_53_2*f[36]*f[39]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*f_52_2*sin2th*f[37]*f[39]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*f_53_2*sin2th*f[37]*f[39]*f[68]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_52_2*f[36]*f[38]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_53_2*f[36]*f[38]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*f_52_2*sin2th*f[37]*f[38]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*f_53_2*sin2th*f[37]*f[38]*f[69]*f[71])/(U[3] - 2*U[4]) - (6*f_52_2*sin2th*f[36]*f[39]*f[69]*f[71])/(U[3] - 2*U[4]) - (6*f_53_2*sin2th*f[36]*f[39]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_52_2*f[37]*f[39]*f[69]*f[71])/(U[3] - 2*U[4]) + (6*cos2th*f_53_2*f[37]*f[39]*f[69]*f[71])/(U[3] - 2*U[4]) + (12*cos2th*f_56_2*f[36]*f[38]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_57_2*f[36]*f[38]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*f_56_2*sin2th*f[37]*f[38]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*f_57_2*sin2th*f[37]*f[38]*f[68]*f[70])/(3*U[3] - 2*U[4]) - (12*f_56_2*sin2th*f[36]*f[39]*f[68]*f[70])/(3*U[3] - 2*U[4]) - (12*f_57_2*sin2th*f[36]*f[39]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_56_2*f[37]*f[39]*f[68]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_57_2*f[37]*f[39]*f[68]*f[70])/(3*U[3] - 2*U[4]) - (12*f_56_2*sin2th*f[36]*f[38]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*f_57_2*sin2th*f[36]*f[38]*f[69]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_56_2*f[37]*f[38]*f[69]*f[70])/(3*U[3] - 2*U[4]) + (12*cos2th*f_57_2*f[37]*f[38]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*cos2th*f_56_2*f[36]*f[39]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*cos2th*f_57_2*f[36]*f[39]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*f_56_2*sin2th*f[37]*f[39]*f[69]*f[70])/(3*U[3] - 2*U[4]) - (12*f_57_2*sin2th*f[37]*f[39]*f[69]*f[70])/(3*U[3] - 2*U[4]) + (12*f_56_2*sin2th*f[36]*f[38]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*f_57_2*sin2th*f[36]*f[38]*f[68]*f[71])/(3*U[3] - 2*U[4]) - (12*cos2th*f_56_2*f[37]*f[38]*f[68]*f[71])/(3*U[3] - 2*U[4]) - (12*cos2th*f_57_2*f[37]*f[38]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_56_2*f[36]*f[39]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_57_2*f[36]*f[39]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*f_56_2*sin2th*f[37]*f[39]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*f_57_2*sin2th*f[37]*f[39]*f[68]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_56_2*f[36]*f[38]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_57_2*f[36]*f[38]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*f_56_2*sin2th*f[37]*f[38]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*f_57_2*sin2th*f[37]*f[38]*f[69]*f[71])/(3*U[3] - 2*U[4]) - (12*f_56_2*sin2th*f[36]*f[39]*f[69]*f[71])/(3*U[3] - 2*U[4]) - (12*f_57_2*sin2th*f[36]*f[39]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_56_2*f[37]*f[39]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (12*cos2th*f_57_2*f[37]*f[39]*f[69]*f[71])/(3*U[3] - 2*U[4]) + (15*cos2th*f_58_2*f[36]*f[38]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_59_2*f[36]*f[38]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*f_58_2*sin2th*f[37]*f[38]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*f_59_2*sin2th*f[37]*f[38]*f[68]*f[70])/(4*U[3] - 2*U[4]) - (15*f_58_2*sin2th*f[36]*f[39]*f[68]*f[70])/(4*U[3] - 2*U[4]) - (15*f_59_2*sin2th*f[36]*f[39]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_58_2*f[37]*f[39]*f[68]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_59_2*f[37]*f[39]*f[68]*f[70])/(4*U[3] - 2*U[4]) - (15*f_58_2*sin2th*f[36]*f[38]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*f_59_2*sin2th*f[36]*f[38]*f[69]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_58_2*f[37]*f[38]*f[69]*f[70])/(4*U[3] - 2*U[4]) + (15*cos2th*f_59_2*f[37]*f[38]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*cos2th*f_58_2*f[36]*f[39]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*cos2th*f_59_2*f[36]*f[39]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*f_58_2*sin2th*f[37]*f[39]*f[69]*f[70])/(4*U[3] - 2*U[4]) - (15*f_59_2*sin2th*f[37]*f[39]*f[69]*f[70])/(4*U[3] - 2*U[4]) + (15*f_58_2*sin2th*f[36]*f[38]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*f_59_2*sin2th*f[36]*f[38]*f[68]*f[71])/(4*U[3] - 2*U[4]) - (15*cos2th*f_58_2*f[37]*f[38]*f[68]*f[71])/(4*U[3] - 2*U[4]) - (15*cos2th*f_59_2*f[37]*f[38]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_58_2*f[36]*f[39]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_59_2*f[36]*f[39]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*f_58_2*sin2th*f[37]*f[39]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*f_59_2*sin2th*f[37]*f[39]*f[68]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_58_2*f[36]*f[38]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_59_2*f[36]*f[38]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*f_58_2*sin2th*f[37]*f[38]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*f_59_2*sin2th*f[37]*f[38]*f[69]*f[71])/(4*U[3] - 2*U[4]) - (15*f_58_2*sin2th*f[36]*f[39]*f[69]*f[71])/(4*U[3] - 2*U[4]) - (15*f_59_2*sin2th*f[36]*f[39]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_58_2*f[37]*f[39]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (15*cos2th*f_59_2*f[37]*f[39]*f[69]*f[71])/(4*U[3] - 2*U[4]) + (18*cos2th*f_60_2*f[36]*f[38]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_61_2*f[36]*f[38]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*f_60_2*sin2th*f[37]*f[38]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*f_61_2*sin2th*f[37]*f[38]*f[68]*f[70])/(5*U[3] - 2*U[4]) - (18*f_60_2*sin2th*f[36]*f[39]*f[68]*f[70])/(5*U[3] - 2*U[4]) - (18*f_61_2*sin2th*f[36]*f[39]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_60_2*f[37]*f[39]*f[68]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_61_2*f[37]*f[39]*f[68]*f[70])/(5*U[3] - 2*U[4]) - (18*f_60_2*sin2th*f[36]*f[38]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*f_61_2*sin2th*f[36]*f[38]*f[69]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_60_2*f[37]*f[38]*f[69]*f[70])/(5*U[3] - 2*U[4]) + (18*cos2th*f_61_2*f[37]*f[38]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*cos2th*f_60_2*f[36]*f[39]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*cos2th*f_61_2*f[36]*f[39]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*f_60_2*sin2th*f[37]*f[39]*f[69]*f[70])/(5*U[3] - 2*U[4]) - (18*f_61_2*sin2th*f[37]*f[39]*f[69]*f[70])/(5*U[3] - 2*U[4]) + (18*f_60_2*sin2th*f[36]*f[38]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*f_61_2*sin2th*f[36]*f[38]*f[68]*f[71])/(5*U[3] - 2*U[4]) - (18*cos2th*f_60_2*f[37]*f[38]*f[68]*f[71])/(5*U[3] - 2*U[4]) - (18*cos2th*f_61_2*f[37]*f[38]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_60_2*f[36]*f[39]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_61_2*f[36]*f[39]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*f_60_2*sin2th*f[37]*f[39]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*f_61_2*sin2th*f[37]*f[39]*f[68]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_60_2*f[36]*f[38]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_61_2*f[36]*f[38]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*f_60_2*sin2th*f[37]*f[38]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*f_61_2*sin2th*f[37]*f[38]*f[69]*f[71])/(5*U[3] - 2*U[4]) - (18*f_60_2*sin2th*f[36]*f[39]*f[69]*f[71])/(5*U[3] - 2*U[4]) - (18*f_61_2*sin2th*f[36]*f[39]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_60_2*f[37]*f[39]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (18*cos2th*f_61_2*f[37]*f[39]*f[69]*f[71])/(5*U[3] - 2*U[4]) + (21*cos2th*f_62_2*f[36]*f[38]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_63_2*f[36]*f[38]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*f_62_2*sin2th*f[37]*f[38]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*f_63_2*sin2th*f[37]*f[38]*f[68]*f[70])/(6*U[3] - 2*U[4]) - (21*f_62_2*sin2th*f[36]*f[39]*f[68]*f[70])/(6*U[3] - 2*U[4]) - (21*f_63_2*sin2th*f[36]*f[39]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_62_2*f[37]*f[39]*f[68]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_63_2*f[37]*f[39]*f[68]*f[70])/(6*U[3] - 2*U[4]) - (21*f_62_2*sin2th*f[36]*f[38]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*f_63_2*sin2th*f[36]*f[38]*f[69]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_62_2*f[37]*f[38]*f[69]*f[70])/(6*U[3] - 2*U[4]) + (21*cos2th*f_63_2*f[37]*f[38]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*cos2th*f_62_2*f[36]*f[39]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*cos2th*f_63_2*f[36]*f[39]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*f_62_2*sin2th*f[37]*f[39]*f[69]*f[70])/(6*U[3] - 2*U[4]) - (21*f_63_2*sin2th*f[37]*f[39]*f[69]*f[70])/(6*U[3] - 2*U[4]) + (21*f_62_2*sin2th*f[36]*f[38]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*f_63_2*sin2th*f[36]*f[38]*f[68]*f[71])/(6*U[3] - 2*U[4]) - (21*cos2th*f_62_2*f[37]*f[38]*f[68]*f[71])/(6*U[3] - 2*U[4]) - (21*cos2th*f_63_2*f[37]*f[38]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_62_2*f[36]*f[39]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_63_2*f[36]*f[39]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*f_62_2*sin2th*f[37]*f[39]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*f_63_2*sin2th*f[37]*f[39]*f[68]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_62_2*f[36]*f[38]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_63_2*f[36]*f[38]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*f_62_2*sin2th*f[37]*f[38]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*f_63_2*sin2th*f[37]*f[38]*f[69]*f[71])/(6*U[3] - 2*U[4]) - (21*f_62_2*sin2th*f[36]*f[39]*f[69]*f[71])/(6*U[3] - 2*U[4]) - (21*f_63_2*sin2th*f[36]*f[39]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_62_2*f[37]*f[39]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (21*cos2th*f_63_2*f[37]*f[39]*f[69]*f[71])/(6*U[3] - 2*U[4]) + (6*cos2th*f_54_2*f[34]*f[36]*f[66]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_55_2*f[34]*f[36]*f[66]*f[68])/(2*U[3] - U[4]) + (6*f_54_2*sin2th*f[35]*f[36]*f[66]*f[68])/(2*U[3] - U[4]) + (6*f_55_2*sin2th*f[35]*f[36]*f[66]*f[68])/(2*U[3] - U[4]) - (6*f_54_2*sin2th*f[34]*f[37]*f[66]*f[68])/(2*U[3] - U[4]) - (6*f_55_2*sin2th*f[34]*f[37]*f[66]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_54_2*f[35]*f[37]*f[66]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_55_2*f[35]*f[37]*f[66]*f[68])/(2*U[3] - U[4]) - (6*f_54_2*sin2th*f[34]*f[36]*f[67]*f[68])/(2*U[3] - U[4]) - (6*f_55_2*sin2th*f[34]*f[36]*f[67]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_54_2*f[35]*f[36]*f[67]*f[68])/(2*U[3] - U[4]) + (6*cos2th*f_55_2*f[35]*f[36]*f[67]*f[68])/(2*U[3] - U[4]) - (6*cos2th*f_54_2*f[34]*f[37]*f[67]*f[68])/(2*U[3] - U[4]) - (6*cos2th*f_55_2*f[34]*f[37]*f[67]*f[68])/(2*U[3] - U[4]) - (6*f_54_2*sin2th*f[35]*f[37]*f[67]*f[68])/(2*U[3] - U[4]) - (6*f_55_2*sin2th*f[35]*f[37]*f[67]*f[68])/(2*U[3] - U[4]) + (6*f_54_2*sin2th*f[34]*f[36]*f[66]*f[69])/(2*U[3] - U[4]) + (6*f_55_2*sin2th*f[34]*f[36]*f[66]*f[69])/(2*U[3] - U[4]) - (6*cos2th*f_54_2*f[35]*f[36]*f[66]*f[69])/(2*U[3] - U[4]) - (6*cos2th*f_55_2*f[35]*f[36]*f[66]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_54_2*f[34]*f[37]*f[66]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_55_2*f[34]*f[37]*f[66]*f[69])/(2*U[3] - U[4]) + (6*f_54_2*sin2th*f[35]*f[37]*f[66]*f[69])/(2*U[3] - U[4]) + (6*f_55_2*sin2th*f[35]*f[37]*f[66]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_54_2*f[34]*f[36]*f[67]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_55_2*f[34]*f[36]*f[67]*f[69])/(2*U[3] - U[4]) + (6*f_54_2*sin2th*f[35]*f[36]*f[67]*f[69])/(2*U[3] - U[4]) + (6*f_55_2*sin2th*f[35]*f[36]*f[67]*f[69])/(2*U[3] - U[4]) - (6*f_54_2*sin2th*f[34]*f[37]*f[67]*f[69])/(2*U[3] - U[4]) - (6*f_55_2*sin2th*f[34]*f[37]*f[67]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_54_2*f[35]*f[37]*f[67]*f[69])/(2*U[3] - U[4]) + (6*cos2th*f_55_2*f[35]*f[37]*f[67]*f[69])/(2*U[3] - U[4]) + (8*cos2th*f_56_2*f[34]*f[36]*f[66]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_57_2*f[34]*f[36]*f[66]*f[68])/(3*U[3] - U[4]) + (8*f_56_2*sin2th*f[35]*f[36]*f[66]*f[68])/(3*U[3] - U[4]) + (8*f_57_2*sin2th*f[35]*f[36]*f[66]*f[68])/(3*U[3] - U[4]) - (8*f_56_2*sin2th*f[34]*f[37]*f[66]*f[68])/(3*U[3] - U[4]) - (8*f_57_2*sin2th*f[34]*f[37]*f[66]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_56_2*f[35]*f[37]*f[66]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_57_2*f[35]*f[37]*f[66]*f[68])/(3*U[3] - U[4]) - (8*f_56_2*sin2th*f[34]*f[36]*f[67]*f[68])/(3*U[3] - U[4]) - (8*f_57_2*sin2th*f[34]*f[36]*f[67]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_56_2*f[35]*f[36]*f[67]*f[68])/(3*U[3] - U[4]) + (8*cos2th*f_57_2*f[35]*f[36]*f[67]*f[68])/(3*U[3] - U[4]) - (8*cos2th*f_56_2*f[34]*f[37]*f[67]*f[68])/(3*U[3] - U[4]) - (8*cos2th*f_57_2*f[34]*f[37]*f[67]*f[68])/(3*U[3] - U[4]) - (8*f_56_2*sin2th*f[35]*f[37]*f[67]*f[68])/(3*U[3] - U[4]) - (8*f_57_2*sin2th*f[35]*f[37]*f[67]*f[68])/(3*U[3] - U[4]) + (8*f_56_2*sin2th*f[34]*f[36]*f[66]*f[69])/(3*U[3] - U[4]) + (8*f_57_2*sin2th*f[34]*f[36]*f[66]*f[69])/(3*U[3] - U[4]) - (8*cos2th*f_56_2*f[35]*f[36]*f[66]*f[69])/(3*U[3] - U[4]) - (8*cos2th*f_57_2*f[35]*f[36]*f[66]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_56_2*f[34]*f[37]*f[66]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_57_2*f[34]*f[37]*f[66]*f[69])/(3*U[3] - U[4]) + (8*f_56_2*sin2th*f[35]*f[37]*f[66]*f[69])/(3*U[3] - U[4]) + (8*f_57_2*sin2th*f[35]*f[37]*f[66]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_56_2*f[34]*f[36]*f[67]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_57_2*f[34]*f[36]*f[67]*f[69])/(3*U[3] - U[4]) + (8*f_56_2*sin2th*f[35]*f[36]*f[67]*f[69])/(3*U[3] - U[4]) + (8*f_57_2*sin2th*f[35]*f[36]*f[67]*f[69])/(3*U[3] - U[4]) - (8*f_56_2*sin2th*f[34]*f[37]*f[67]*f[69])/(3*U[3] - U[4]) - (8*f_57_2*sin2th*f[34]*f[37]*f[67]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_56_2*f[35]*f[37]*f[67]*f[69])/(3*U[3] - U[4]) + (8*cos2th*f_57_2*f[35]*f[37]*f[67]*f[69])/(3*U[3] - U[4]) + (10*cos2th*f_58_2*f[34]*f[36]*f[66]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_59_2*f[34]*f[36]*f[66]*f[68])/(4*U[3] - U[4]) + (10*f_58_2*sin2th*f[35]*f[36]*f[66]*f[68])/(4*U[3] - U[4]) + (10*f_59_2*sin2th*f[35]*f[36]*f[66]*f[68])/(4*U[3] - U[4]) - (10*f_58_2*sin2th*f[34]*f[37]*f[66]*f[68])/(4*U[3] - U[4]) - (10*f_59_2*sin2th*f[34]*f[37]*f[66]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_58_2*f[35]*f[37]*f[66]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_59_2*f[35]*f[37]*f[66]*f[68])/(4*U[3] - U[4]) - (10*f_58_2*sin2th*f[34]*f[36]*f[67]*f[68])/(4*U[3] - U[4]) - (10*f_59_2*sin2th*f[34]*f[36]*f[67]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_58_2*f[35]*f[36]*f[67]*f[68])/(4*U[3] - U[4]) + (10*cos2th*f_59_2*f[35]*f[36]*f[67]*f[68])/(4*U[3] - U[4]) - (10*cos2th*f_58_2*f[34]*f[37]*f[67]*f[68])/(4*U[3] - U[4]) - (10*cos2th*f_59_2*f[34]*f[37]*f[67]*f[68])/(4*U[3] - U[4]) - (10*f_58_2*sin2th*f[35]*f[37]*f[67]*f[68])/(4*U[3] - U[4]) - (10*f_59_2*sin2th*f[35]*f[37]*f[67]*f[68])/(4*U[3] - U[4]) + (10*f_58_2*sin2th*f[34]*f[36]*f[66]*f[69])/(4*U[3] - U[4]) + (10*f_59_2*sin2th*f[34]*f[36]*f[66]*f[69])/(4*U[3] - U[4]) - (10*cos2th*f_58_2*f[35]*f[36]*f[66]*f[69])/(4*U[3] - U[4]) - (10*cos2th*f_59_2*f[35]*f[36]*f[66]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_58_2*f[34]*f[37]*f[66]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_59_2*f[34]*f[37]*f[66]*f[69])/(4*U[3] - U[4]) + (10*f_58_2*sin2th*f[35]*f[37]*f[66]*f[69])/(4*U[3] - U[4]) + (10*f_59_2*sin2th*f[35]*f[37]*f[66]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_58_2*f[34]*f[36]*f[67]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_59_2*f[34]*f[36]*f[67]*f[69])/(4*U[3] - U[4]) + (10*f_58_2*sin2th*f[35]*f[36]*f[67]*f[69])/(4*U[3] - U[4]) + (10*f_59_2*sin2th*f[35]*f[36]*f[67]*f[69])/(4*U[3] - U[4]) - (10*f_58_2*sin2th*f[34]*f[37]*f[67]*f[69])/(4*U[3] - U[4]) - (10*f_59_2*sin2th*f[34]*f[37]*f[67]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_58_2*f[35]*f[37]*f[67]*f[69])/(4*U[3] - U[4]) + (10*cos2th*f_59_2*f[35]*f[37]*f[67]*f[69])/(4*U[3] - U[4]) + (12*cos2th*f_60_2*f[34]*f[36]*f[66]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_61_2*f[34]*f[36]*f[66]*f[68])/(5*U[3] - U[4]) + (12*f_60_2*sin2th*f[35]*f[36]*f[66]*f[68])/(5*U[3] - U[4]) + (12*f_61_2*sin2th*f[35]*f[36]*f[66]*f[68])/(5*U[3] - U[4]) - (12*f_60_2*sin2th*f[34]*f[37]*f[66]*f[68])/(5*U[3] - U[4]) - (12*f_61_2*sin2th*f[34]*f[37]*f[66]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_60_2*f[35]*f[37]*f[66]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_61_2*f[35]*f[37]*f[66]*f[68])/(5*U[3] - U[4]) - (12*f_60_2*sin2th*f[34]*f[36]*f[67]*f[68])/(5*U[3] - U[4]) - (12*f_61_2*sin2th*f[34]*f[36]*f[67]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_60_2*f[35]*f[36]*f[67]*f[68])/(5*U[3] - U[4]) + (12*cos2th*f_61_2*f[35]*f[36]*f[67]*f[68])/(5*U[3] - U[4]) - (12*cos2th*f_60_2*f[34]*f[37]*f[67]*f[68])/(5*U[3] - U[4]) - (12*cos2th*f_61_2*f[34]*f[37]*f[67]*f[68])/(5*U[3] - U[4]) - (12*f_60_2*sin2th*f[35]*f[37]*f[67]*f[68])/(5*U[3] - U[4]) - (12*f_61_2*sin2th*f[35]*f[37]*f[67]*f[68])/(5*U[3] - U[4]) + (12*f_60_2*sin2th*f[34]*f[36]*f[66]*f[69])/(5*U[3] - U[4]) + (12*f_61_2*sin2th*f[34]*f[36]*f[66]*f[69])/(5*U[3] - U[4]) - (12*cos2th*f_60_2*f[35]*f[36]*f[66]*f[69])/(5*U[3] - U[4]) - (12*cos2th*f_61_2*f[35]*f[36]*f[66]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_60_2*f[34]*f[37]*f[66]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_61_2*f[34]*f[37]*f[66]*f[69])/(5*U[3] - U[4]) + (12*f_60_2*sin2th*f[35]*f[37]*f[66]*f[69])/(5*U[3] - U[4]) + (12*f_61_2*sin2th*f[35]*f[37]*f[66]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_60_2*f[34]*f[36]*f[67]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_61_2*f[34]*f[36]*f[67]*f[69])/(5*U[3] - U[4]) + (12*f_60_2*sin2th*f[35]*f[36]*f[67]*f[69])/(5*U[3] - U[4]) + (12*f_61_2*sin2th*f[35]*f[36]*f[67]*f[69])/(5*U[3] - U[4]) - (12*f_60_2*sin2th*f[34]*f[37]*f[67]*f[69])/(5*U[3] - U[4]) - (12*f_61_2*sin2th*f[34]*f[37]*f[67]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_60_2*f[35]*f[37]*f[67]*f[69])/(5*U[3] - U[4]) + (12*cos2th*f_61_2*f[35]*f[37]*f[67]*f[69])/(5*U[3] - U[4]) + (14*cos2th*f_62_2*f[34]*f[36]*f[66]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_63_2*f[34]*f[36]*f[66]*f[68])/(6*U[3] - U[4]) + (14*f_62_2*sin2th*f[35]*f[36]*f[66]*f[68])/(6*U[3] - U[4]) + (14*f_63_2*sin2th*f[35]*f[36]*f[66]*f[68])/(6*U[3] - U[4]) - (14*f_62_2*sin2th*f[34]*f[37]*f[66]*f[68])/(6*U[3] - U[4]) - (14*f_63_2*sin2th*f[34]*f[37]*f[66]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_62_2*f[35]*f[37]*f[66]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_63_2*f[35]*f[37]*f[66]*f[68])/(6*U[3] - U[4]) - (14*f_62_2*sin2th*f[34]*f[36]*f[67]*f[68])/(6*U[3] - U[4]) - (14*f_63_2*sin2th*f[34]*f[36]*f[67]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_62_2*f[35]*f[36]*f[67]*f[68])/(6*U[3] - U[4]) + (14*cos2th*f_63_2*f[35]*f[36]*f[67]*f[68])/(6*U[3] - U[4]) - (14*cos2th*f_62_2*f[34]*f[37]*f[67]*f[68])/(6*U[3] - U[4]) - (14*cos2th*f_63_2*f[34]*f[37]*f[67]*f[68])/(6*U[3] - U[4]) - (14*f_62_2*sin2th*f[35]*f[37]*f[67]*f[68])/(6*U[3] - U[4]) - (14*f_63_2*sin2th*f[35]*f[37]*f[67]*f[68])/(6*U[3] - U[4]) + (14*f_62_2*sin2th*f[34]*f[36]*f[66]*f[69])/(6*U[3] - U[4]) + (14*f_63_2*sin2th*f[34]*f[36]*f[66]*f[69])/(6*U[3] - U[4]) - (14*cos2th*f_62_2*f[35]*f[36]*f[66]*f[69])/(6*U[3] - U[4]) - (14*cos2th*f_63_2*f[35]*f[36]*f[66]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_62_2*f[34]*f[37]*f[66]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_63_2*f[34]*f[37]*f[66]*f[69])/(6*U[3] - U[4]) + (14*f_62_2*sin2th*f[35]*f[37]*f[66]*f[69])/(6*U[3] - U[4]) + (14*f_63_2*sin2th*f[35]*f[37]*f[66]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_62_2*f[34]*f[36]*f[67]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_63_2*f[34]*f[36]*f[67]*f[69])/(6*U[3] - U[4]) + (14*f_62_2*sin2th*f[35]*f[36]*f[67]*f[69])/(6*U[3] - U[4]) + (14*f_63_2*sin2th*f[35]*f[36]*f[67]*f[69])/(6*U[3] - U[4]) - (14*f_62_2*sin2th*f[34]*f[37]*f[67]*f[69])/(6*U[3] - U[4]) - (14*f_63_2*sin2th*f[34]*f[37]*f[67]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_62_2*f[35]*f[37]*f[67]*f[69])/(6*U[3] - U[4]) + (14*cos2th*f_63_2*f[35]*f[37]*f[67]*f[69])/(6*U[3] - U[4]) - (2*cos2th*f_50_2*f[34]*f[36]*f[66]*f[68])/U[4] - (2*cos2th*f_51_2*f[34]*f[36]*f[66]*f[68])/U[4] - (2*f_50_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[4] - (2*f_51_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[4] + (2*f_50_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[4] + (2*f_51_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[4] - (2*cos2th*f_50_2*f[35]*f[37]*f[66]*f[68])/U[4] - (2*cos2th*f_51_2*f[35]*f[37]*f[66]*f[68])/U[4] + (2*f_50_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[4] + (2*f_51_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[4] - (2*cos2th*f_50_2*f[35]*f[36]*f[67]*f[68])/U[4] - (2*cos2th*f_51_2*f[35]*f[36]*f[67]*f[68])/U[4] + (2*cos2th*f_50_2*f[34]*f[37]*f[67]*f[68])/U[4] + (2*cos2th*f_51_2*f[34]*f[37]*f[67]*f[68])/U[4] + (2*f_50_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[4] + (2*f_51_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[4] - (2*f_50_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[4] - (2*f_51_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[4] + (2*cos2th*f_50_2*f[35]*f[36]*f[66]*f[69])/U[4] + (2*cos2th*f_51_2*f[35]*f[36]*f[66]*f[69])/U[4] - (2*cos2th*f_50_2*f[34]*f[37]*f[66]*f[69])/U[4] - (2*cos2th*f_51_2*f[34]*f[37]*f[66]*f[69])/U[4] - (2*f_50_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[4] - (2*f_51_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[4] - (2*cos2th*f_50_2*f[34]*f[36]*f[67]*f[69])/U[4] - (2*cos2th*f_51_2*f[34]*f[36]*f[67]*f[69])/U[4] - (2*f_50_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[4] - (2*f_51_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[4] + (2*f_50_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[4] + (2*f_51_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[4] - (2*cos2th*f_50_2*f[35]*f[37]*f[67]*f[69])/U[4] - (2*cos2th*f_51_2*f[35]*f[37]*f[67]*f[69])/U[4] - (3*cos2th*f_50_2*f[36]*f[38]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_51_2*f[36]*f[38]*f[68]*f[70])/(2.*U[4]) - (3*f_50_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[4]) - (3*f_51_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[4]) + (3*f_50_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[4]) + (3*f_51_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_50_2*f[37]*f[39]*f[68]*f[70])/(2.*U[4]) - (3*cos2th*f_51_2*f[37]*f[39]*f[68]*f[70])/(2.*U[4]) + (3*f_50_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[4]) + (3*f_51_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_50_2*f[37]*f[38]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_51_2*f[37]*f[38]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_50_2*f[36]*f[39]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_51_2*f[36]*f[39]*f[69]*f[70])/(2.*U[4]) + (3*f_50_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[4]) + (3*f_51_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[4]) - (3*f_50_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[4]) - (3*f_51_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_50_2*f[37]*f[38]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_51_2*f[37]*f[38]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_50_2*f[36]*f[39]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_51_2*f[36]*f[39]*f[68]*f[71])/(2.*U[4]) - (3*f_50_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[4]) - (3*f_51_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_50_2*f[36]*f[38]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_51_2*f[36]*f[38]*f[69]*f[71])/(2.*U[4]) - (3*f_50_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[4]) - (3*f_51_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[4]) + (3*f_50_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[4]) + (3*f_51_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_50_2*f[37]*f[39]*f[69]*f[71])/(2.*U[4]) - (3*cos2th*f_51_2*f[37]*f[39]*f[69]*f[71])/(2.*U[4]) - (4*cos2th*f_50_2*f[38]*f[40]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_51_2*f[38]*f[40]*f[70]*f[72])/(3.*U[4]) - (4*f_50_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[4]) - (4*f_51_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[4]) + (4*f_50_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[4]) + (4*f_51_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_50_2*f[39]*f[41]*f[70]*f[72])/(3.*U[4]) - (4*cos2th*f_51_2*f[39]*f[41]*f[70]*f[72])/(3.*U[4]) + (4*f_50_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[4]) + (4*f_51_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_50_2*f[39]*f[40]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_51_2*f[39]*f[40]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_50_2*f[38]*f[41]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_51_2*f[38]*f[41]*f[71]*f[72])/(3.*U[4]) + (4*f_50_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[4]) + (4*f_51_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[4]) - (4*f_50_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[4]) - (4*f_51_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_50_2*f[39]*f[40]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_51_2*f[39]*f[40]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_50_2*f[38]*f[41]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_51_2*f[38]*f[41]*f[70]*f[73])/(3.*U[4]) - (4*f_50_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[4]) - (4*f_51_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_50_2*f[38]*f[40]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_51_2*f[38]*f[40]*f[71]*f[73])/(3.*U[4]) - (4*f_50_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[4]) - (4*f_51_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[4]) + (4*f_50_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[4]) + (4*f_51_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_50_2*f[39]*f[41]*f[71]*f[73])/(3.*U[4]) - (4*cos2th*f_51_2*f[39]*f[41]*f[71]*f[73])/(3.*U[4]) - (5*cos2th*f_50_2*f[40]*f[42]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_51_2*f[40]*f[42]*f[72]*f[74])/(4.*U[4]) - (5*f_50_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[4]) - (5*f_51_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[4]) + (5*f_50_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[4]) + (5*f_51_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_50_2*f[41]*f[43]*f[72]*f[74])/(4.*U[4]) - (5*cos2th*f_51_2*f[41]*f[43]*f[72]*f[74])/(4.*U[4]) + (5*f_50_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[4]) + (5*f_51_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_50_2*f[41]*f[42]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_51_2*f[41]*f[42]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_50_2*f[40]*f[43]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_51_2*f[40]*f[43]*f[73]*f[74])/(4.*U[4]) + (5*f_50_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[4]) + (5*f_51_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[4]) - (5*f_50_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[4]) - (5*f_51_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_50_2*f[41]*f[42]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_51_2*f[41]*f[42]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_50_2*f[40]*f[43]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_51_2*f[40]*f[43]*f[72]*f[75])/(4.*U[4]) - (5*f_50_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[4]) - (5*f_51_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_50_2*f[40]*f[42]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_51_2*f[40]*f[42]*f[73]*f[75])/(4.*U[4]) - (5*f_50_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[4]) - (5*f_51_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[4]) + (5*f_50_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[4]) + (5*f_51_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_50_2*f[41]*f[43]*f[73]*f[75])/(4.*U[4]) - (5*cos2th*f_51_2*f[41]*f[43]*f[73]*f[75])/(4.*U[4]) - (6*cos2th*f_50_2*f[42]*f[44]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_51_2*f[42]*f[44]*f[74]*f[76])/(5.*U[4]) - (6*f_50_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[4]) - (6*f_51_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[4]) + (6*f_50_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[4]) + (6*f_51_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_50_2*f[43]*f[45]*f[74]*f[76])/(5.*U[4]) - (6*cos2th*f_51_2*f[43]*f[45]*f[74]*f[76])/(5.*U[4]) + (6*f_50_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[4]) + (6*f_51_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_50_2*f[43]*f[44]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_51_2*f[43]*f[44]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_50_2*f[42]*f[45]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_51_2*f[42]*f[45]*f[75]*f[76])/(5.*U[4]) + (6*f_50_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[4]) + (6*f_51_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[4]) - (6*f_50_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[4]) - (6*f_51_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_50_2*f[43]*f[44]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_51_2*f[43]*f[44]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_50_2*f[42]*f[45]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_51_2*f[42]*f[45]*f[74]*f[77])/(5.*U[4]) - (6*f_50_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[4]) - (6*f_51_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_50_2*f[42]*f[44]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_51_2*f[42]*f[44]*f[75]*f[77])/(5.*U[4]) - (6*f_50_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[4]) - (6*f_51_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[4]) + (6*f_50_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[4]) + (6*f_51_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_50_2*f[43]*f[45]*f[75]*f[77])/(5.*U[4]) - (6*cos2th*f_51_2*f[43]*f[45]*f[75]*f[77])/(5.*U[4]) - (7*cos2th*f_50_2*f[44]*f[46]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_51_2*f[44]*f[46]*f[76]*f[78])/(6.*U[4]) - (7*f_50_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[4]) - (7*f_51_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[4]) + (7*f_50_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[4]) + (7*f_51_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_50_2*f[45]*f[47]*f[76]*f[78])/(6.*U[4]) - (7*cos2th*f_51_2*f[45]*f[47]*f[76]*f[78])/(6.*U[4]) + (7*f_50_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[4]) + (7*f_51_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_50_2*f[45]*f[46]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_51_2*f[45]*f[46]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_50_2*f[44]*f[47]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_51_2*f[44]*f[47]*f[77]*f[78])/(6.*U[4]) + (7*f_50_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[4]) + (7*f_51_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[4]) - (7*f_50_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[4]) - (7*f_51_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_50_2*f[45]*f[46]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_51_2*f[45]*f[46]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_50_2*f[44]*f[47]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_51_2*f[44]*f[47]*f[76]*f[79])/(6.*U[4]) - (7*f_50_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[4]) - (7*f_51_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_50_2*f[44]*f[46]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_51_2*f[44]*f[46]*f[77]*f[79])/(6.*U[4]) - (7*f_50_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[4]) - (7*f_51_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[4]) + (7*f_50_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[4]) + (7*f_51_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_50_2*f[45]*f[47]*f[77]*f[79])/(6.*U[4]) - (7*cos2th*f_51_2*f[45]*f[47]*f[77]*f[79])/(6.*U[4])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) - (J[3]*J[4]*((-2*cos2th*f_64_2*f[2]*f[4]*f[50]*f[52])/U[0] - (2*cos2th*f_65_2*f[2]*f[4]*f[50]*f[52])/U[0] + (2*f_64_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[0] + (2*f_65_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[0] - (2*f_64_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[0] - (2*f_65_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[0] - (2*cos2th*f_64_2*f[3]*f[5]*f[50]*f[52])/U[0] - (2*cos2th*f_65_2*f[3]*f[5]*f[50]*f[52])/U[0] - (2*f_64_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[0] - (2*f_65_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[0] - (2*cos2th*f_64_2*f[3]*f[4]*f[51]*f[52])/U[0] - (2*cos2th*f_65_2*f[3]*f[4]*f[51]*f[52])/U[0] + (2*cos2th*f_64_2*f[2]*f[5]*f[51]*f[52])/U[0] + (2*cos2th*f_65_2*f[2]*f[5]*f[51]*f[52])/U[0] - (2*f_64_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[0] - (2*f_65_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[0] + (2*f_64_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[0] + (2*f_65_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[0] + (2*cos2th*f_64_2*f[3]*f[4]*f[50]*f[53])/U[0] + (2*cos2th*f_65_2*f[3]*f[4]*f[50]*f[53])/U[0] - (2*cos2th*f_64_2*f[2]*f[5]*f[50]*f[53])/U[0] - (2*cos2th*f_65_2*f[2]*f[5]*f[50]*f[53])/U[0] + (2*f_64_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[0] + (2*f_65_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[0] - (2*cos2th*f_64_2*f[2]*f[4]*f[51]*f[53])/U[0] - (2*cos2th*f_65_2*f[2]*f[4]*f[51]*f[53])/U[0] + (2*f_64_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[0] + (2*f_65_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[0] - (2*f_64_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[0] - (2*f_65_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[0] - (2*cos2th*f_64_2*f[3]*f[5]*f[51]*f[53])/U[0] - (2*cos2th*f_65_2*f[3]*f[5]*f[51]*f[53])/U[0] - (3*cos2th*f_64_2*f[4]*f[6]*f[52]*f[54])/(2.*U[0]) - (3*cos2th*f_65_2*f[4]*f[6]*f[52]*f[54])/(2.*U[0]) + (3*f_64_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[0]) + (3*f_65_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[0]) - (3*f_64_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[0]) - (3*f_65_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[0]) - (3*cos2th*f_64_2*f[5]*f[7]*f[52]*f[54])/(2.*U[0]) - (3*cos2th*f_65_2*f[5]*f[7]*f[52]*f[54])/(2.*U[0]) - (3*f_64_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[0]) - (3*f_65_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[0]) - (3*cos2th*f_64_2*f[5]*f[6]*f[53]*f[54])/(2.*U[0]) - (3*cos2th*f_65_2*f[5]*f[6]*f[53]*f[54])/(2.*U[0]) + (3*cos2th*f_64_2*f[4]*f[7]*f[53]*f[54])/(2.*U[0]) + (3*cos2th*f_65_2*f[4]*f[7]*f[53]*f[54])/(2.*U[0]) - (3*f_64_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[0]) - (3*f_65_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[0]) + (3*f_64_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[0]) + (3*f_65_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_64_2*f[5]*f[6]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_65_2*f[5]*f[6]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_64_2*f[4]*f[7]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_65_2*f[4]*f[7]*f[52]*f[55])/(2.*U[0]) + (3*f_64_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[0]) + (3*f_65_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_64_2*f[4]*f[6]*f[53]*f[55])/(2.*U[0]) - (3*cos2th*f_65_2*f[4]*f[6]*f[53]*f[55])/(2.*U[0]) + (3*f_64_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[0]) + (3*f_65_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[0]) - (3*f_64_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[0]) - (3*f_65_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[0]) - (3*cos2th*f_64_2*f[5]*f[7]*f[53]*f[55])/(2.*U[0]) - (3*cos2th*f_65_2*f[5]*f[7]*f[53]*f[55])/(2.*U[0]) - (4*cos2th*f_64_2*f[6]*f[8]*f[54]*f[56])/(3.*U[0]) - (4*cos2th*f_65_2*f[6]*f[8]*f[54]*f[56])/(3.*U[0]) + (4*f_64_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[0]) + (4*f_65_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[0]) - (4*f_64_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[0]) - (4*f_65_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[0]) - (4*cos2th*f_64_2*f[7]*f[9]*f[54]*f[56])/(3.*U[0]) - (4*cos2th*f_65_2*f[7]*f[9]*f[54]*f[56])/(3.*U[0]) - (4*f_64_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[0]) - (4*f_65_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[0]) - (4*cos2th*f_64_2*f[7]*f[8]*f[55]*f[56])/(3.*U[0]) - (4*cos2th*f_65_2*f[7]*f[8]*f[55]*f[56])/(3.*U[0]) + (4*cos2th*f_64_2*f[6]*f[9]*f[55]*f[56])/(3.*U[0]) + (4*cos2th*f_65_2*f[6]*f[9]*f[55]*f[56])/(3.*U[0]) - (4*f_64_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[0]) - (4*f_65_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[0]) + (4*f_64_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[0]) + (4*f_65_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_64_2*f[7]*f[8]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_65_2*f[7]*f[8]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_64_2*f[6]*f[9]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_65_2*f[6]*f[9]*f[54]*f[57])/(3.*U[0]) + (4*f_64_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[0]) + (4*f_65_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_64_2*f[6]*f[8]*f[55]*f[57])/(3.*U[0]) - (4*cos2th*f_65_2*f[6]*f[8]*f[55]*f[57])/(3.*U[0]) + (4*f_64_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[0]) + (4*f_65_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[0]) - (4*f_64_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[0]) - (4*f_65_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[0]) - (4*cos2th*f_64_2*f[7]*f[9]*f[55]*f[57])/(3.*U[0]) - (4*cos2th*f_65_2*f[7]*f[9]*f[55]*f[57])/(3.*U[0]) - (5*cos2th*f_64_2*f[8]*f[10]*f[56]*f[58])/(4.*U[0]) - (5*cos2th*f_65_2*f[8]*f[10]*f[56]*f[58])/(4.*U[0]) + (5*f_64_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[0]) + (5*f_65_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[0]) - (5*f_64_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[0]) - (5*f_65_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[0]) - (5*cos2th*f_64_2*f[9]*f[11]*f[56]*f[58])/(4.*U[0]) - (5*cos2th*f_65_2*f[9]*f[11]*f[56]*f[58])/(4.*U[0]) - (5*f_64_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[0]) - (5*f_65_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[0]) - (5*cos2th*f_64_2*f[9]*f[10]*f[57]*f[58])/(4.*U[0]) - (5*cos2th*f_65_2*f[9]*f[10]*f[57]*f[58])/(4.*U[0]) + (5*cos2th*f_64_2*f[8]*f[11]*f[57]*f[58])/(4.*U[0]) + (5*cos2th*f_65_2*f[8]*f[11]*f[57]*f[58])/(4.*U[0]) - (5*f_64_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[0]) - (5*f_65_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[0]) + (5*f_64_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[0]) + (5*f_65_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_64_2*f[9]*f[10]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_65_2*f[9]*f[10]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_64_2*f[8]*f[11]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_65_2*f[8]*f[11]*f[56]*f[59])/(4.*U[0]) + (5*f_64_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[0]) + (5*f_65_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_64_2*f[8]*f[10]*f[57]*f[59])/(4.*U[0]) - (5*cos2th*f_65_2*f[8]*f[10]*f[57]*f[59])/(4.*U[0]) + (5*f_64_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[0]) + (5*f_65_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[0]) - (5*f_64_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[0]) - (5*f_65_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[0]) - (5*cos2th*f_64_2*f[9]*f[11]*f[57]*f[59])/(4.*U[0]) - (5*cos2th*f_65_2*f[9]*f[11]*f[57]*f[59])/(4.*U[0]) - (6*cos2th*f_64_2*f[10]*f[12]*f[58]*f[60])/(5.*U[0]) - (6*cos2th*f_65_2*f[10]*f[12]*f[58]*f[60])/(5.*U[0]) + (6*f_64_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[0]) + (6*f_65_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[0]) - (6*f_64_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[0]) - (6*f_65_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[0]) - (6*cos2th*f_64_2*f[11]*f[13]*f[58]*f[60])/(5.*U[0]) - (6*cos2th*f_65_2*f[11]*f[13]*f[58]*f[60])/(5.*U[0]) - (6*f_64_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[0]) - (6*f_65_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[0]) - (6*cos2th*f_64_2*f[11]*f[12]*f[59]*f[60])/(5.*U[0]) - (6*cos2th*f_65_2*f[11]*f[12]*f[59]*f[60])/(5.*U[0]) + (6*cos2th*f_64_2*f[10]*f[13]*f[59]*f[60])/(5.*U[0]) + (6*cos2th*f_65_2*f[10]*f[13]*f[59]*f[60])/(5.*U[0]) - (6*f_64_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[0]) - (6*f_65_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[0]) + (6*f_64_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[0]) + (6*f_65_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_64_2*f[11]*f[12]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_65_2*f[11]*f[12]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_64_2*f[10]*f[13]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_65_2*f[10]*f[13]*f[58]*f[61])/(5.*U[0]) + (6*f_64_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[0]) + (6*f_65_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_64_2*f[10]*f[12]*f[59]*f[61])/(5.*U[0]) - (6*cos2th*f_65_2*f[10]*f[12]*f[59]*f[61])/(5.*U[0]) + (6*f_64_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[0]) + (6*f_65_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[0]) - (6*f_64_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[0]) - (6*f_65_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[0]) - (6*cos2th*f_64_2*f[11]*f[13]*f[59]*f[61])/(5.*U[0]) - (6*cos2th*f_65_2*f[11]*f[13]*f[59]*f[61])/(5.*U[0]) - (7*cos2th*f_64_2*f[12]*f[14]*f[60]*f[62])/(6.*U[0]) - (7*cos2th*f_65_2*f[12]*f[14]*f[60]*f[62])/(6.*U[0]) + (7*f_64_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[0]) + (7*f_65_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[0]) - (7*f_64_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[0]) - (7*f_65_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[0]) - (7*cos2th*f_64_2*f[13]*f[15]*f[60]*f[62])/(6.*U[0]) - (7*cos2th*f_65_2*f[13]*f[15]*f[60]*f[62])/(6.*U[0]) - (7*f_64_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[0]) - (7*f_65_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[0]) - (7*cos2th*f_64_2*f[13]*f[14]*f[61]*f[62])/(6.*U[0]) - (7*cos2th*f_65_2*f[13]*f[14]*f[61]*f[62])/(6.*U[0]) + (7*cos2th*f_64_2*f[12]*f[15]*f[61]*f[62])/(6.*U[0]) + (7*cos2th*f_65_2*f[12]*f[15]*f[61]*f[62])/(6.*U[0]) - (7*f_64_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[0]) - (7*f_65_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[0]) + (7*f_64_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[0]) + (7*f_65_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_64_2*f[13]*f[14]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_65_2*f[13]*f[14]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_64_2*f[12]*f[15]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_65_2*f[12]*f[15]*f[60]*f[63])/(6.*U[0]) + (7*f_64_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[0]) + (7*f_65_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_64_2*f[12]*f[14]*f[61]*f[63])/(6.*U[0]) - (7*cos2th*f_65_2*f[12]*f[14]*f[61]*f[63])/(6.*U[0]) + (7*f_64_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[0]) + (7*f_65_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[0]) - (7*f_64_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[0]) - (7*f_65_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[0]) - (7*cos2th*f_64_2*f[13]*f[15]*f[61]*f[63])/(6.*U[0]) - (7*cos2th*f_65_2*f[13]*f[15]*f[61]*f[63])/(6.*U[0]) + (2*cos2th*f_66_2*f[0]*f[2]*f[48]*f[50])/U[4] + (2*cos2th*f_67_2*f[0]*f[2]*f[48]*f[50])/U[4] + (3*cos2th*f_68_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) + (3*cos2th*f_69_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) + (4*cos2th*f_70_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) + (4*cos2th*f_71_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) + (5*cos2th*f_72_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) + (5*cos2th*f_73_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) + (6*cos2th*f_74_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) + (6*cos2th*f_75_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) + (7*cos2th*f_76_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) + (7*cos2th*f_77_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] - (2*f_67_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] - (3*f_68_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) - (3*f_69_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) - (4*f_70_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) - (4*f_71_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) - (5*f_72_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) - (5*f_73_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) - (6*f_74_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) - (6*f_75_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) - (7*f_76_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) - (7*f_77_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] + (2*f_67_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] + (3*f_68_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) + (3*f_69_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) + (4*f_70_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) + (4*f_71_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) + (5*f_72_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) + (5*f_73_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) + (6*f_74_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) + (6*f_75_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) + (7*f_76_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) + (7*f_77_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) + (2*cos2th*f_66_2*f[1]*f[3]*f[48]*f[50])/U[4] + (2*cos2th*f_67_2*f[1]*f[3]*f[48]*f[50])/U[4] + (3*cos2th*f_68_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) + (3*cos2th*f_69_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) + (4*cos2th*f_70_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) + (4*cos2th*f_71_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) + (5*cos2th*f_72_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) + (5*cos2th*f_73_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) + (6*cos2th*f_74_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) + (6*cos2th*f_75_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) + (7*cos2th*f_76_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) + (7*cos2th*f_77_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] + (2*f_67_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] + (3*f_68_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) + (3*f_69_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) + (4*f_70_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) + (4*f_71_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) + (5*f_72_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) + (5*f_73_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) + (6*f_74_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) + (6*f_75_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) + (7*f_76_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) + (7*f_77_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) + (2*cos2th*f_66_2*f[1]*f[2]*f[49]*f[50])/U[4] + (2*cos2th*f_67_2*f[1]*f[2]*f[49]*f[50])/U[4] + (3*cos2th*f_68_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) + (3*cos2th*f_69_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) + (4*cos2th*f_70_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) + (4*cos2th*f_71_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) + (5*cos2th*f_72_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) + (5*cos2th*f_73_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) + (6*cos2th*f_74_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) + (6*cos2th*f_75_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) + (7*cos2th*f_76_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) + (7*cos2th*f_77_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) - (2*cos2th*f_66_2*f[0]*f[3]*f[49]*f[50])/U[4] - (2*cos2th*f_67_2*f[0]*f[3]*f[49]*f[50])/U[4] - (3*cos2th*f_68_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) - (3*cos2th*f_69_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) - (4*cos2th*f_70_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) - (4*cos2th*f_71_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) - (5*cos2th*f_72_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) - (5*cos2th*f_73_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) - (6*cos2th*f_74_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) - (6*cos2th*f_75_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) - (7*cos2th*f_76_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) - (7*cos2th*f_77_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] + (2*f_67_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] + (3*f_68_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) + (3*f_69_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) + (4*f_70_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) + (4*f_71_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) + (5*f_72_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) + (5*f_73_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) + (6*f_74_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) + (6*f_75_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) + (7*f_76_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) + (7*f_77_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] - (2*f_67_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] - (3*f_68_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) - (3*f_69_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) - (4*f_70_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) - (4*f_71_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) - (5*f_72_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) - (5*f_73_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) - (6*f_74_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) - (6*f_75_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) - (7*f_76_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) - (7*f_77_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_66_2*f[1]*f[2]*f[48]*f[51])/U[4] - (2*cos2th*f_67_2*f[1]*f[2]*f[48]*f[51])/U[4] - (3*cos2th*f_68_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) - (3*cos2th*f_69_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) - (4*cos2th*f_70_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) - (4*cos2th*f_71_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) - (5*cos2th*f_72_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) - (5*cos2th*f_73_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) - (6*cos2th*f_74_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) - (6*cos2th*f_75_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) - (7*cos2th*f_76_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) - (7*cos2th*f_77_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_66_2*f[0]*f[3]*f[48]*f[51])/U[4] + (2*cos2th*f_67_2*f[0]*f[3]*f[48]*f[51])/U[4] + (3*cos2th*f_68_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) + (3*cos2th*f_69_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) + (4*cos2th*f_70_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) + (4*cos2th*f_71_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) + (5*cos2th*f_72_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) + (5*cos2th*f_73_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) + (6*cos2th*f_74_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) + (6*cos2th*f_75_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) + (7*cos2th*f_76_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) + (7*cos2th*f_77_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) - (2*f_66_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] - (2*f_67_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] - (3*f_68_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) - (3*f_69_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) - (4*f_70_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) - (4*f_71_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) - (5*f_72_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) - (5*f_73_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) - (6*f_74_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) - (6*f_75_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) - (7*f_76_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) - (7*f_77_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_66_2*f[0]*f[2]*f[49]*f[51])/U[4] + (2*cos2th*f_67_2*f[0]*f[2]*f[49]*f[51])/U[4] + (3*cos2th*f_68_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) + (3*cos2th*f_69_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) + (4*cos2th*f_70_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) + (4*cos2th*f_71_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) + (5*cos2th*f_72_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) + (5*cos2th*f_73_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) + (6*cos2th*f_74_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) + (6*cos2th*f_75_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) + (7*cos2th*f_76_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) + (7*cos2th*f_77_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) - (2*f_66_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] - (2*f_67_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] - (3*f_68_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) - (3*f_69_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) - (4*f_70_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) - (4*f_71_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) - (5*f_72_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) - (5*f_73_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) - (6*f_74_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) - (6*f_75_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) - (7*f_76_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) - (7*f_77_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) + (2*f_66_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] + (2*f_67_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] + (3*f_68_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) + (3*f_69_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) + (4*f_70_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) + (4*f_71_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) + (5*f_72_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) + (5*f_73_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) + (6*f_74_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) + (6*f_75_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) + (7*f_76_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) + (7*f_77_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) + (2*cos2th*f_66_2*f[1]*f[3]*f[49]*f[51])/U[4] + (2*cos2th*f_67_2*f[1]*f[3]*f[49]*f[51])/U[4] + (3*cos2th*f_68_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) + (3*cos2th*f_69_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) + (4*cos2th*f_70_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) + (4*cos2th*f_71_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) + (5*cos2th*f_72_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) + (5*cos2th*f_73_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) + (6*cos2th*f_74_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) + (6*cos2th*f_75_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) + (7*cos2th*f_76_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) + (7*cos2th*f_77_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) + (14*cos2th*f_66_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_67_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + U[4]) - (14*f_66_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + U[4]) - (14*f_67_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*f_66_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*f_67_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_66_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_67_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*f_66_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*f_67_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_66_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_67_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + U[4]) - (14*cos2th*f_66_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + U[4]) - (14*cos2th*f_67_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*f_66_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*f_67_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + U[4]) - (14*f_66_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*f_67_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*cos2th*f_66_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*cos2th*f_67_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_66_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_67_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*f_66_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*f_67_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_66_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_67_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + U[4]) - (14*f_66_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + U[4]) - (14*f_67_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*f_66_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*f_67_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_66_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_67_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + U[4]) + (12*cos2th*f_66_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_67_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + U[4]) - (12*f_66_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + U[4]) - (12*f_67_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*f_66_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*f_67_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_66_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_67_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*f_66_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*f_67_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_66_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_67_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + U[4]) - (12*cos2th*f_66_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + U[4]) - (12*cos2th*f_67_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*f_66_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*f_67_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + U[4]) - (12*f_66_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*f_67_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*cos2th*f_66_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*cos2th*f_67_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_66_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_67_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*f_66_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*f_67_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_66_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_67_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + U[4]) - (12*f_66_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + U[4]) - (12*f_67_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*f_66_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*f_67_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_66_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_67_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + U[4]) + (10*cos2th*f_66_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_67_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + U[4]) - (10*f_66_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + U[4]) - (10*f_67_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*f_66_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*f_67_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_66_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_67_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*f_66_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*f_67_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_66_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_67_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + U[4]) - (10*cos2th*f_66_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + U[4]) - (10*cos2th*f_67_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*f_66_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*f_67_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + U[4]) - (10*f_66_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*f_67_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*cos2th*f_66_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*cos2th*f_67_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_66_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_67_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*f_66_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*f_67_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_66_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_67_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + U[4]) - (10*f_66_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + U[4]) - (10*f_67_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*f_66_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*f_67_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_66_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_67_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + U[4]) + (8*cos2th*f_66_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_67_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + U[4]) - (8*f_66_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + U[4]) - (8*f_67_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*f_66_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*f_67_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_66_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_67_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*f_66_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*f_67_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_66_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_67_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + U[4]) - (8*cos2th*f_66_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + U[4]) - (8*cos2th*f_67_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*f_66_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*f_67_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + U[4]) - (8*f_66_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*f_67_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*cos2th*f_66_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*cos2th*f_67_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_66_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_67_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*f_66_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*f_67_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_66_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_67_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + U[4]) - (8*f_66_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + U[4]) - (8*f_67_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*f_66_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*f_67_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_66_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_67_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + U[4]) + (6*cos2th*f_66_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_67_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + U[4]) - (6*f_66_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + U[4]) - (6*f_67_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*f_66_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*f_67_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_66_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_67_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*f_66_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*f_67_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_66_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_67_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + U[4]) - (6*cos2th*f_66_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + U[4]) - (6*cos2th*f_67_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*f_66_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*f_67_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + U[4]) - (6*f_66_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*f_67_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*cos2th*f_66_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*cos2th*f_67_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_66_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_67_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*f_66_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*f_67_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_66_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_67_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + U[4]) - (6*f_66_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + U[4]) - (6*f_67_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*f_66_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*f_67_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_66_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_67_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + U[4]) + (21*cos2th*f_68_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_68_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_69_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_68_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_69_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 2*U[4]) - (21*f_68_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_69_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_68_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_69_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_68_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_69_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_68_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_69_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 2*U[4]) - (18*f_68_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_69_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_68_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_69_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_68_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_69_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_68_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_69_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 2*U[4]) - (15*f_68_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_69_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_68_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_69_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_68_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_69_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_68_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_69_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 2*U[4]) - (12*f_68_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_69_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_68_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_69_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 2*U[4]) - (6*cos2th*f_68_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 2*U[4]) - (6*cos2th*f_69_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*f_68_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*f_69_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 2*U[4]) - (6*f_68_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*f_69_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*cos2th*f_68_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*cos2th*f_69_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 2*U[4]) + (28*cos2th*f_70_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_70_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_71_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_70_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_71_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 3*U[4]) - (28*f_70_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_71_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_70_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_71_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_70_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_71_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_70_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_71_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 3*U[4]) - (24*f_70_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_71_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_70_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_71_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_70_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_71_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_70_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_71_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 3*U[4]) - (20*f_70_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_71_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_70_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_71_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_70_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_71_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_70_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_71_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 3*U[4]) - (12*f_70_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_71_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_70_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_71_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 3*U[4]) - (8*cos2th*f_70_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 3*U[4]) - (8*cos2th*f_71_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*f_70_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*f_71_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 3*U[4]) - (8*f_70_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*f_71_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*cos2th*f_70_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*cos2th*f_71_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 3*U[4]) + (35*cos2th*f_72_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_72_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_73_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_72_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_73_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 4*U[4]) - (35*f_72_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_73_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_72_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_73_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_72_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_73_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_72_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_73_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 4*U[4]) - (30*f_72_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_73_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_72_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_73_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_72_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_73_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_72_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_73_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 4*U[4]) - (20*f_72_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_73_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_72_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_73_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_72_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_73_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_72_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_73_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 4*U[4]) - (15*f_72_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_73_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_72_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_73_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 4*U[4]) - (10*cos2th*f_72_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 4*U[4]) - (10*cos2th*f_73_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*f_72_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*f_73_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 4*U[4]) - (10*f_72_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*f_73_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*cos2th*f_72_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*cos2th*f_73_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 4*U[4]) + (42*cos2th*f_74_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_74_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_75_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_74_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_75_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 5*U[4]) - (42*f_74_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_75_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_74_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_75_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_74_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_75_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_74_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_75_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 5*U[4]) - (30*f_74_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_75_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_74_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_75_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_74_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_75_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_74_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_75_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 5*U[4]) - (24*f_74_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_75_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_74_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_75_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_74_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_75_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_74_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_75_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 5*U[4]) - (18*f_74_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_75_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_74_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_75_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 5*U[4]) - (12*cos2th*f_74_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 5*U[4]) - (12*cos2th*f_75_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*f_74_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*f_75_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 5*U[4]) - (12*f_74_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*f_75_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*cos2th*f_74_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*cos2th*f_75_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 5*U[4]) + (42*cos2th*f_76_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_76_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_77_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_76_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_77_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 6*U[4]) - (42*f_76_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_77_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_76_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_77_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_76_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_77_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_76_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_77_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 6*U[4]) - (35*f_76_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_77_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_76_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_77_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_76_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_77_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_76_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_77_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 6*U[4]) - (28*f_76_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_77_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_76_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_77_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_76_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_77_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_76_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_77_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 6*U[4]) - (21*f_76_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_77_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_76_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_77_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 6*U[4]) - (14*cos2th*f_76_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 6*U[4]) - (14*cos2th*f_77_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*f_76_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*f_77_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 6*U[4]) - (14*f_76_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*f_77_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*cos2th*f_76_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*cos2th*f_77_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 6*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[3]*J[4]*((-2*cos2th*f_66_2*f[2]*f[4]*f[50]*f[52])/U[0] - (2*cos2th*f_67_2*f[2]*f[4]*f[50]*f[52])/U[0] + (2*f_66_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[0] + (2*f_67_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[0] - (2*f_66_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[0] - (2*f_67_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[0] - (2*cos2th*f_66_2*f[3]*f[5]*f[50]*f[52])/U[0] - (2*cos2th*f_67_2*f[3]*f[5]*f[50]*f[52])/U[0] - (2*f_66_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[0] - (2*f_67_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[0] - (2*cos2th*f_66_2*f[3]*f[4]*f[51]*f[52])/U[0] - (2*cos2th*f_67_2*f[3]*f[4]*f[51]*f[52])/U[0] + (2*cos2th*f_66_2*f[2]*f[5]*f[51]*f[52])/U[0] + (2*cos2th*f_67_2*f[2]*f[5]*f[51]*f[52])/U[0] - (2*f_66_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[0] - (2*f_67_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[0] + (2*f_66_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[0] + (2*f_67_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[0] + (2*cos2th*f_66_2*f[3]*f[4]*f[50]*f[53])/U[0] + (2*cos2th*f_67_2*f[3]*f[4]*f[50]*f[53])/U[0] - (2*cos2th*f_66_2*f[2]*f[5]*f[50]*f[53])/U[0] - (2*cos2th*f_67_2*f[2]*f[5]*f[50]*f[53])/U[0] + (2*f_66_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[0] + (2*f_67_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[0] - (2*cos2th*f_66_2*f[2]*f[4]*f[51]*f[53])/U[0] - (2*cos2th*f_67_2*f[2]*f[4]*f[51]*f[53])/U[0] + (2*f_66_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[0] + (2*f_67_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[0] - (2*f_66_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[0] - (2*f_67_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[0] - (2*cos2th*f_66_2*f[3]*f[5]*f[51]*f[53])/U[0] - (2*cos2th*f_67_2*f[3]*f[5]*f[51]*f[53])/U[0] - (3*cos2th*f_66_2*f[4]*f[6]*f[52]*f[54])/(2.*U[0]) - (3*cos2th*f_67_2*f[4]*f[6]*f[52]*f[54])/(2.*U[0]) + (3*f_66_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[0]) + (3*f_67_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[0]) - (3*f_66_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[0]) - (3*f_67_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[0]) - (3*cos2th*f_66_2*f[5]*f[7]*f[52]*f[54])/(2.*U[0]) - (3*cos2th*f_67_2*f[5]*f[7]*f[52]*f[54])/(2.*U[0]) - (3*f_66_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[0]) - (3*f_67_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[0]) - (3*cos2th*f_66_2*f[5]*f[6]*f[53]*f[54])/(2.*U[0]) - (3*cos2th*f_67_2*f[5]*f[6]*f[53]*f[54])/(2.*U[0]) + (3*cos2th*f_66_2*f[4]*f[7]*f[53]*f[54])/(2.*U[0]) + (3*cos2th*f_67_2*f[4]*f[7]*f[53]*f[54])/(2.*U[0]) - (3*f_66_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[0]) - (3*f_67_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[0]) + (3*f_66_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[0]) + (3*f_67_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_66_2*f[5]*f[6]*f[52]*f[55])/(2.*U[0]) + (3*cos2th*f_67_2*f[5]*f[6]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_66_2*f[4]*f[7]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_67_2*f[4]*f[7]*f[52]*f[55])/(2.*U[0]) + (3*f_66_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[0]) + (3*f_67_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[0]) - (3*cos2th*f_66_2*f[4]*f[6]*f[53]*f[55])/(2.*U[0]) - (3*cos2th*f_67_2*f[4]*f[6]*f[53]*f[55])/(2.*U[0]) + (3*f_66_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[0]) + (3*f_67_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[0]) - (3*f_66_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[0]) - (3*f_67_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[0]) - (3*cos2th*f_66_2*f[5]*f[7]*f[53]*f[55])/(2.*U[0]) - (3*cos2th*f_67_2*f[5]*f[7]*f[53]*f[55])/(2.*U[0]) - (4*cos2th*f_66_2*f[6]*f[8]*f[54]*f[56])/(3.*U[0]) - (4*cos2th*f_67_2*f[6]*f[8]*f[54]*f[56])/(3.*U[0]) + (4*f_66_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[0]) + (4*f_67_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[0]) - (4*f_66_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[0]) - (4*f_67_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[0]) - (4*cos2th*f_66_2*f[7]*f[9]*f[54]*f[56])/(3.*U[0]) - (4*cos2th*f_67_2*f[7]*f[9]*f[54]*f[56])/(3.*U[0]) - (4*f_66_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[0]) - (4*f_67_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[0]) - (4*cos2th*f_66_2*f[7]*f[8]*f[55]*f[56])/(3.*U[0]) - (4*cos2th*f_67_2*f[7]*f[8]*f[55]*f[56])/(3.*U[0]) + (4*cos2th*f_66_2*f[6]*f[9]*f[55]*f[56])/(3.*U[0]) + (4*cos2th*f_67_2*f[6]*f[9]*f[55]*f[56])/(3.*U[0]) - (4*f_66_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[0]) - (4*f_67_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[0]) + (4*f_66_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[0]) + (4*f_67_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_66_2*f[7]*f[8]*f[54]*f[57])/(3.*U[0]) + (4*cos2th*f_67_2*f[7]*f[8]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_66_2*f[6]*f[9]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_67_2*f[6]*f[9]*f[54]*f[57])/(3.*U[0]) + (4*f_66_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[0]) + (4*f_67_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[0]) - (4*cos2th*f_66_2*f[6]*f[8]*f[55]*f[57])/(3.*U[0]) - (4*cos2th*f_67_2*f[6]*f[8]*f[55]*f[57])/(3.*U[0]) + (4*f_66_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[0]) + (4*f_67_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[0]) - (4*f_66_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[0]) - (4*f_67_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[0]) - (4*cos2th*f_66_2*f[7]*f[9]*f[55]*f[57])/(3.*U[0]) - (4*cos2th*f_67_2*f[7]*f[9]*f[55]*f[57])/(3.*U[0]) - (5*cos2th*f_66_2*f[8]*f[10]*f[56]*f[58])/(4.*U[0]) - (5*cos2th*f_67_2*f[8]*f[10]*f[56]*f[58])/(4.*U[0]) + (5*f_66_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[0]) + (5*f_67_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[0]) - (5*f_66_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[0]) - (5*f_67_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[0]) - (5*cos2th*f_66_2*f[9]*f[11]*f[56]*f[58])/(4.*U[0]) - (5*cos2th*f_67_2*f[9]*f[11]*f[56]*f[58])/(4.*U[0]) - (5*f_66_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[0]) - (5*f_67_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[0]) - (5*cos2th*f_66_2*f[9]*f[10]*f[57]*f[58])/(4.*U[0]) - (5*cos2th*f_67_2*f[9]*f[10]*f[57]*f[58])/(4.*U[0]) + (5*cos2th*f_66_2*f[8]*f[11]*f[57]*f[58])/(4.*U[0]) + (5*cos2th*f_67_2*f[8]*f[11]*f[57]*f[58])/(4.*U[0]) - (5*f_66_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[0]) - (5*f_67_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[0]) + (5*f_66_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[0]) + (5*f_67_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_66_2*f[9]*f[10]*f[56]*f[59])/(4.*U[0]) + (5*cos2th*f_67_2*f[9]*f[10]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_66_2*f[8]*f[11]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_67_2*f[8]*f[11]*f[56]*f[59])/(4.*U[0]) + (5*f_66_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[0]) + (5*f_67_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[0]) - (5*cos2th*f_66_2*f[8]*f[10]*f[57]*f[59])/(4.*U[0]) - (5*cos2th*f_67_2*f[8]*f[10]*f[57]*f[59])/(4.*U[0]) + (5*f_66_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[0]) + (5*f_67_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[0]) - (5*f_66_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[0]) - (5*f_67_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[0]) - (5*cos2th*f_66_2*f[9]*f[11]*f[57]*f[59])/(4.*U[0]) - (5*cos2th*f_67_2*f[9]*f[11]*f[57]*f[59])/(4.*U[0]) - (6*cos2th*f_66_2*f[10]*f[12]*f[58]*f[60])/(5.*U[0]) - (6*cos2th*f_67_2*f[10]*f[12]*f[58]*f[60])/(5.*U[0]) + (6*f_66_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[0]) + (6*f_67_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[0]) - (6*f_66_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[0]) - (6*f_67_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[0]) - (6*cos2th*f_66_2*f[11]*f[13]*f[58]*f[60])/(5.*U[0]) - (6*cos2th*f_67_2*f[11]*f[13]*f[58]*f[60])/(5.*U[0]) - (6*f_66_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[0]) - (6*f_67_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[0]) - (6*cos2th*f_66_2*f[11]*f[12]*f[59]*f[60])/(5.*U[0]) - (6*cos2th*f_67_2*f[11]*f[12]*f[59]*f[60])/(5.*U[0]) + (6*cos2th*f_66_2*f[10]*f[13]*f[59]*f[60])/(5.*U[0]) + (6*cos2th*f_67_2*f[10]*f[13]*f[59]*f[60])/(5.*U[0]) - (6*f_66_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[0]) - (6*f_67_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[0]) + (6*f_66_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[0]) + (6*f_67_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_66_2*f[11]*f[12]*f[58]*f[61])/(5.*U[0]) + (6*cos2th*f_67_2*f[11]*f[12]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_66_2*f[10]*f[13]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_67_2*f[10]*f[13]*f[58]*f[61])/(5.*U[0]) + (6*f_66_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[0]) + (6*f_67_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[0]) - (6*cos2th*f_66_2*f[10]*f[12]*f[59]*f[61])/(5.*U[0]) - (6*cos2th*f_67_2*f[10]*f[12]*f[59]*f[61])/(5.*U[0]) + (6*f_66_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[0]) + (6*f_67_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[0]) - (6*f_66_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[0]) - (6*f_67_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[0]) - (6*cos2th*f_66_2*f[11]*f[13]*f[59]*f[61])/(5.*U[0]) - (6*cos2th*f_67_2*f[11]*f[13]*f[59]*f[61])/(5.*U[0]) - (7*cos2th*f_66_2*f[12]*f[14]*f[60]*f[62])/(6.*U[0]) - (7*cos2th*f_67_2*f[12]*f[14]*f[60]*f[62])/(6.*U[0]) + (7*f_66_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[0]) + (7*f_67_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[0]) - (7*f_66_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[0]) - (7*f_67_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[0]) - (7*cos2th*f_66_2*f[13]*f[15]*f[60]*f[62])/(6.*U[0]) - (7*cos2th*f_67_2*f[13]*f[15]*f[60]*f[62])/(6.*U[0]) - (7*f_66_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[0]) - (7*f_67_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[0]) - (7*cos2th*f_66_2*f[13]*f[14]*f[61]*f[62])/(6.*U[0]) - (7*cos2th*f_67_2*f[13]*f[14]*f[61]*f[62])/(6.*U[0]) + (7*cos2th*f_66_2*f[12]*f[15]*f[61]*f[62])/(6.*U[0]) + (7*cos2th*f_67_2*f[12]*f[15]*f[61]*f[62])/(6.*U[0]) - (7*f_66_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[0]) - (7*f_67_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[0]) + (7*f_66_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[0]) + (7*f_67_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_66_2*f[13]*f[14]*f[60]*f[63])/(6.*U[0]) + (7*cos2th*f_67_2*f[13]*f[14]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_66_2*f[12]*f[15]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_67_2*f[12]*f[15]*f[60]*f[63])/(6.*U[0]) + (7*f_66_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[0]) + (7*f_67_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[0]) - (7*cos2th*f_66_2*f[12]*f[14]*f[61]*f[63])/(6.*U[0]) - (7*cos2th*f_67_2*f[12]*f[14]*f[61]*f[63])/(6.*U[0]) + (7*f_66_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[0]) + (7*f_67_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[0]) - (7*f_66_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[0]) - (7*f_67_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[0]) - (7*cos2th*f_66_2*f[13]*f[15]*f[61]*f[63])/(6.*U[0]) - (7*cos2th*f_67_2*f[13]*f[15]*f[61]*f[63])/(6.*U[0]) + (2*cos2th*f_68_2*f[0]*f[2]*f[48]*f[50])/U[4] + (2*cos2th*f_69_2*f[0]*f[2]*f[48]*f[50])/U[4] + (3*cos2th*f_70_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) + (3*cos2th*f_71_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) + (4*cos2th*f_72_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) + (4*cos2th*f_73_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) + (5*cos2th*f_74_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) + (5*cos2th*f_75_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) + (6*cos2th*f_76_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) + (6*cos2th*f_77_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) + (7*cos2th*f_78_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) + (7*cos2th*f_79_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] - (2*f_69_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] - (3*f_70_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) - (3*f_71_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) - (4*f_72_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) - (4*f_73_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) - (5*f_74_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) - (5*f_75_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) - (6*f_76_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) - (6*f_77_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) - (7*f_78_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) - (7*f_79_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] + (2*f_69_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] + (3*f_70_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) + (3*f_71_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) + (4*f_72_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) + (4*f_73_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) + (5*f_74_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) + (5*f_75_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) + (6*f_76_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) + (6*f_77_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) + (7*f_78_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) + (7*f_79_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) + (2*cos2th*f_68_2*f[1]*f[3]*f[48]*f[50])/U[4] + (2*cos2th*f_69_2*f[1]*f[3]*f[48]*f[50])/U[4] + (3*cos2th*f_70_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) + (3*cos2th*f_71_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) + (4*cos2th*f_72_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) + (4*cos2th*f_73_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) + (5*cos2th*f_74_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) + (5*cos2th*f_75_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) + (6*cos2th*f_76_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) + (6*cos2th*f_77_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) + (7*cos2th*f_78_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) + (7*cos2th*f_79_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] + (2*f_69_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] + (3*f_70_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) + (3*f_71_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) + (4*f_72_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) + (4*f_73_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) + (5*f_74_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) + (5*f_75_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) + (6*f_76_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) + (6*f_77_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) + (7*f_78_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) + (7*f_79_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) + (2*cos2th*f_68_2*f[1]*f[2]*f[49]*f[50])/U[4] + (2*cos2th*f_69_2*f[1]*f[2]*f[49]*f[50])/U[4] + (3*cos2th*f_70_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) + (3*cos2th*f_71_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) + (4*cos2th*f_72_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) + (4*cos2th*f_73_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) + (5*cos2th*f_74_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) + (5*cos2th*f_75_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) + (6*cos2th*f_76_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) + (6*cos2th*f_77_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) + (7*cos2th*f_78_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) + (7*cos2th*f_79_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) - (2*cos2th*f_68_2*f[0]*f[3]*f[49]*f[50])/U[4] - (2*cos2th*f_69_2*f[0]*f[3]*f[49]*f[50])/U[4] - (3*cos2th*f_70_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) - (3*cos2th*f_71_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) - (4*cos2th*f_72_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) - (4*cos2th*f_73_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) - (5*cos2th*f_74_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) - (5*cos2th*f_75_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) - (6*cos2th*f_76_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) - (6*cos2th*f_77_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) - (7*cos2th*f_78_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) - (7*cos2th*f_79_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] + (2*f_69_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] + (3*f_70_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) + (3*f_71_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) + (4*f_72_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) + (4*f_73_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) + (5*f_74_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) + (5*f_75_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) + (6*f_76_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) + (6*f_77_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) + (7*f_78_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) + (7*f_79_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] - (2*f_69_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] - (3*f_70_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) - (3*f_71_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) - (4*f_72_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) - (4*f_73_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) - (5*f_74_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) - (5*f_75_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) - (6*f_76_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) - (6*f_77_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) - (7*f_78_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) - (7*f_79_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_68_2*f[1]*f[2]*f[48]*f[51])/U[4] - (2*cos2th*f_69_2*f[1]*f[2]*f[48]*f[51])/U[4] - (3*cos2th*f_70_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) - (3*cos2th*f_71_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) - (4*cos2th*f_72_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) - (4*cos2th*f_73_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) - (5*cos2th*f_74_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) - (5*cos2th*f_75_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) - (6*cos2th*f_76_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) - (6*cos2th*f_77_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) - (7*cos2th*f_78_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) - (7*cos2th*f_79_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_68_2*f[0]*f[3]*f[48]*f[51])/U[4] + (2*cos2th*f_69_2*f[0]*f[3]*f[48]*f[51])/U[4] + (3*cos2th*f_70_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) + (3*cos2th*f_71_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) + (4*cos2th*f_72_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) + (4*cos2th*f_73_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) + (5*cos2th*f_74_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) + (5*cos2th*f_75_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) + (6*cos2th*f_76_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) + (6*cos2th*f_77_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) + (7*cos2th*f_78_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) + (7*cos2th*f_79_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) - (2*f_68_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] - (2*f_69_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] - (3*f_70_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) - (3*f_71_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) - (4*f_72_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) - (4*f_73_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) - (5*f_74_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) - (5*f_75_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) - (6*f_76_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) - (6*f_77_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) - (7*f_78_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) - (7*f_79_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_68_2*f[0]*f[2]*f[49]*f[51])/U[4] + (2*cos2th*f_69_2*f[0]*f[2]*f[49]*f[51])/U[4] + (3*cos2th*f_70_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) + (3*cos2th*f_71_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) + (4*cos2th*f_72_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) + (4*cos2th*f_73_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) + (5*cos2th*f_74_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) + (5*cos2th*f_75_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) + (6*cos2th*f_76_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) + (6*cos2th*f_77_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) + (7*cos2th*f_78_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) + (7*cos2th*f_79_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) - (2*f_68_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] - (2*f_69_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] - (3*f_70_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) - (3*f_71_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) - (4*f_72_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) - (4*f_73_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) - (5*f_74_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) - (5*f_75_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) - (6*f_76_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) - (6*f_77_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) - (7*f_78_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) - (7*f_79_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) + (2*f_68_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] + (2*f_69_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] + (3*f_70_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) + (3*f_71_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) + (4*f_72_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) + (4*f_73_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) + (5*f_74_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) + (5*f_75_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) + (6*f_76_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) + (6*f_77_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) + (7*f_78_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) + (7*f_79_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) + (2*cos2th*f_68_2*f[1]*f[3]*f[49]*f[51])/U[4] + (2*cos2th*f_69_2*f[1]*f[3]*f[49]*f[51])/U[4] + (3*cos2th*f_70_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) + (3*cos2th*f_71_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) + (4*cos2th*f_72_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) + (4*cos2th*f_73_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) + (5*cos2th*f_74_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) + (5*cos2th*f_75_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) + (6*cos2th*f_76_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) + (6*cos2th*f_77_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) + (7*cos2th*f_78_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) + (7*cos2th*f_79_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) + (14*cos2th*f_68_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_69_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + U[4]) - (14*f_68_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + U[4]) - (14*f_69_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*f_68_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*f_69_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_68_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_69_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + U[4]) + (14*f_68_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*f_69_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_68_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*cos2th*f_69_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + U[4]) - (14*cos2th*f_68_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + U[4]) - (14*cos2th*f_69_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*f_68_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + U[4]) + (14*f_69_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + U[4]) - (14*f_68_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*f_69_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*cos2th*f_68_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*cos2th*f_69_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_68_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_69_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*f_68_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + U[4]) - (14*f_69_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_68_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_69_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + U[4]) - (14*f_68_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + U[4]) - (14*f_69_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*f_68_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*f_69_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_68_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + U[4]) + (14*cos2th*f_69_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + U[4]) + (12*cos2th*f_68_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_69_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + U[4]) - (12*f_68_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + U[4]) - (12*f_69_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*f_68_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*f_69_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_68_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_69_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + U[4]) + (12*f_68_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*f_69_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_68_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*cos2th*f_69_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + U[4]) - (12*cos2th*f_68_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + U[4]) - (12*cos2th*f_69_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*f_68_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + U[4]) + (12*f_69_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + U[4]) - (12*f_68_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*f_69_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*cos2th*f_68_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*cos2th*f_69_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_68_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_69_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*f_68_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + U[4]) - (12*f_69_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_68_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_69_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + U[4]) - (12*f_68_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + U[4]) - (12*f_69_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*f_68_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*f_69_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_68_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + U[4]) + (12*cos2th*f_69_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + U[4]) + (10*cos2th*f_68_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_69_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + U[4]) - (10*f_68_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + U[4]) - (10*f_69_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*f_68_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*f_69_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_68_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_69_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + U[4]) + (10*f_68_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*f_69_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_68_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*cos2th*f_69_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + U[4]) - (10*cos2th*f_68_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + U[4]) - (10*cos2th*f_69_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*f_68_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + U[4]) + (10*f_69_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + U[4]) - (10*f_68_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*f_69_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*cos2th*f_68_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*cos2th*f_69_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_68_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_69_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*f_68_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + U[4]) - (10*f_69_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_68_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_69_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + U[4]) - (10*f_68_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + U[4]) - (10*f_69_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*f_68_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*f_69_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_68_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + U[4]) + (10*cos2th*f_69_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + U[4]) + (8*cos2th*f_68_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_69_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + U[4]) - (8*f_68_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + U[4]) - (8*f_69_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*f_68_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*f_69_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_68_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_69_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + U[4]) + (8*f_68_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*f_69_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_68_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*cos2th*f_69_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + U[4]) - (8*cos2th*f_68_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + U[4]) - (8*cos2th*f_69_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*f_68_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + U[4]) + (8*f_69_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + U[4]) - (8*f_68_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*f_69_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*cos2th*f_68_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*cos2th*f_69_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_68_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_69_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*f_68_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + U[4]) - (8*f_69_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_68_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_69_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + U[4]) - (8*f_68_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + U[4]) - (8*f_69_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*f_68_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*f_69_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_68_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + U[4]) + (8*cos2th*f_69_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + U[4]) + (6*cos2th*f_68_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_69_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + U[4]) - (6*f_68_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + U[4]) - (6*f_69_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*f_68_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*f_69_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_68_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_69_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + U[4]) + (6*f_68_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*f_69_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_68_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*cos2th*f_69_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + U[4]) - (6*cos2th*f_68_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + U[4]) - (6*cos2th*f_69_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*f_68_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + U[4]) + (6*f_69_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + U[4]) - (6*f_68_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*f_69_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*cos2th*f_68_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*cos2th*f_69_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_68_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_69_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*f_68_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + U[4]) - (6*f_69_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_68_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_69_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + U[4]) - (6*f_68_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + U[4]) - (6*f_69_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*f_68_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*f_69_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_68_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + U[4]) + (6*cos2th*f_69_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + U[4]) + (21*cos2th*f_70_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_70_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_71_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_70_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 2*U[4]) + (21*f_71_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 2*U[4]) - (21*f_70_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_71_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_70_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_71_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_70_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_71_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_70_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 2*U[4]) + (18*f_71_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 2*U[4]) - (18*f_70_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_71_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_70_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_71_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_70_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_71_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_70_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 2*U[4]) + (15*f_71_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 2*U[4]) - (15*f_70_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_71_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_70_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_71_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_70_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_71_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_70_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 2*U[4]) + (12*f_71_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 2*U[4]) - (12*f_70_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_71_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_70_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_71_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 2*U[4]) - (6*cos2th*f_70_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 2*U[4]) - (6*cos2th*f_71_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*f_70_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 2*U[4]) + (6*f_71_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 2*U[4]) - (6*f_70_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*f_71_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*cos2th*f_70_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*cos2th*f_71_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 2*U[4]) + (28*cos2th*f_72_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_72_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_73_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_72_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 3*U[4]) + (28*f_73_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 3*U[4]) - (28*f_72_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_73_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_72_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_73_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_72_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_73_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_72_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 3*U[4]) + (24*f_73_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 3*U[4]) - (24*f_72_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_73_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_72_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_73_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_72_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_73_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_72_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 3*U[4]) + (20*f_73_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 3*U[4]) - (20*f_72_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_73_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_72_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_73_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_72_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_73_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_72_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 3*U[4]) + (12*f_73_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 3*U[4]) - (12*f_72_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_73_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_72_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_73_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 3*U[4]) - (8*cos2th*f_72_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 3*U[4]) - (8*cos2th*f_73_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*f_72_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 3*U[4]) + (8*f_73_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 3*U[4]) - (8*f_72_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*f_73_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*cos2th*f_72_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*cos2th*f_73_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 3*U[4]) + (35*cos2th*f_74_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_74_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_75_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_74_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 4*U[4]) + (35*f_75_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 4*U[4]) - (35*f_74_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_75_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_74_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_75_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_74_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_75_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_74_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 4*U[4]) + (30*f_75_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 4*U[4]) - (30*f_74_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_75_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_74_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_75_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_74_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_75_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_74_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 4*U[4]) + (20*f_75_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 4*U[4]) - (20*f_74_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_75_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_74_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_75_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_74_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_75_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_74_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 4*U[4]) + (15*f_75_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 4*U[4]) - (15*f_74_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_75_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_74_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_75_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 4*U[4]) - (10*cos2th*f_74_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 4*U[4]) - (10*cos2th*f_75_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*f_74_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 4*U[4]) + (10*f_75_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 4*U[4]) - (10*f_74_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*f_75_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*cos2th*f_74_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*cos2th*f_75_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 4*U[4]) + (42*cos2th*f_76_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[14]*f[60]*f[62])/(-6*U[0] + 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[15]*f[60]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[14]*f[61]*f[62])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_76_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_77_2*f[12]*f[15]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_76_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 5*U[4]) + (42*f_77_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[0] + 5*U[4]) - (42*f_76_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_77_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_76_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_77_2*f[13]*f[14]*f[60]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[15]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[14]*f[61]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[15]*f[61]*f[63])/(-6*U[0] + 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_76_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_77_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_76_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 5*U[4]) + (30*f_77_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 5*U[4]) - (30*f_76_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_77_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_76_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_77_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_76_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_77_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_76_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 5*U[4]) + (24*f_77_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 5*U[4]) - (24*f_76_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_77_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_76_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_77_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_76_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_77_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_76_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 5*U[4]) + (18*f_77_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 5*U[4]) - (18*f_76_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_77_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_76_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_77_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 5*U[4]) - (12*cos2th*f_76_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 5*U[4]) - (12*cos2th*f_77_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*f_76_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 5*U[4]) + (12*f_77_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 5*U[4]) - (12*f_76_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*f_77_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*cos2th*f_76_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*cos2th*f_77_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 5*U[4]) + (42*cos2th*f_78_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[12]*f[58]*f[60])/(-5*U[0] + 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[13]*f[58]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[12]*f[59]*f[60])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_78_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_79_2*f[10]*f[13]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_78_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 6*U[4]) + (42*f_79_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[0] + 6*U[4]) - (42*f_78_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_79_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_78_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_79_2*f[11]*f[12]*f[58]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[13]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[12]*f[59]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[13]*f[59]*f[61])/(-5*U[0] + 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[10]*f[56]*f[58])/(-4*U[0] + 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[11]*f[56]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[10]*f[57]*f[58])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_78_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_79_2*f[8]*f[11]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_78_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 6*U[4]) + (35*f_79_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[0] + 6*U[4]) - (35*f_78_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_79_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_78_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_79_2*f[9]*f[10]*f[56]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[11]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[10]*f[57]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[11]*f[57]*f[59])/(-4*U[0] + 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[8]*f[54]*f[56])/(-3*U[0] + 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[9]*f[54]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[8]*f[55]*f[56])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_78_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_79_2*f[6]*f[9]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_78_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 6*U[4]) + (28*f_79_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[0] + 6*U[4]) - (28*f_78_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_79_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_78_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_79_2*f[7]*f[8]*f[54]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[9]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[8]*f[55]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[9]*f[55]*f[57])/(-3*U[0] + 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[6]*f[52]*f[54])/(-2*U[0] + 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[7]*f[52]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[6]*f[53]*f[54])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_78_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_79_2*f[4]*f[7]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_78_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 6*U[4]) + (21*f_79_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[0] + 6*U[4]) - (21*f_78_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_79_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_78_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_79_2*f[5]*f[6]*f[52]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[7]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[6]*f[53]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[7]*f[53]*f[55])/(-2*U[0] + 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[4]*f[50]*f[52])/(-U[0] + 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[5]*f[50]*f[52])/(-U[0] + 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[4]*f[51]*f[52])/(-U[0] + 6*U[4]) - (14*cos2th*f_78_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 6*U[4]) - (14*cos2th*f_79_2*f[2]*f[5]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*f_78_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 6*U[4]) + (14*f_79_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[0] + 6*U[4]) - (14*f_78_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*f_79_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*cos2th*f_78_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*cos2th*f_79_2*f[3]*f[4]*f[50]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[5]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[4]*f[51]*f[53])/(-U[0] + 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[5]*f[51]*f[53])/(-U[0] + 6*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[0]*J[4]*((-6*cos2th*f_10_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) - (6*cos2th*f_11_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) - (7*cos2th*f_12_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) - (7*cos2th*f_13_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) - (2*cos2th*f_2_2*f[16]*f[18]*f[64]*f[66])/U[0] - (2*cos2th*f_3_2*f[16]*f[18]*f[64]*f[66])/U[0] - (3*cos2th*f_4_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) - (3*cos2th*f_5_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) - (4*cos2th*f_6_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) - (4*cos2th*f_7_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) - (5*cos2th*f_8_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) - (5*cos2th*f_9_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) + (6*f_11_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) + (7*f_12_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) + (7*f_13_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) + (2*f_2_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] + (2*f_3_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] + (3*f_4_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) + (3*f_5_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) + (4*f_6_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) + (4*f_7_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) + (5*f_8_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) + (5*f_9_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) - (6*f_11_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) - (7*f_12_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) - (7*f_13_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) - (2*f_2_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] - (2*f_3_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] - (3*f_4_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) - (3*f_5_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) - (4*f_6_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) - (4*f_7_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) - (5*f_8_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) - (5*f_9_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) - (6*cos2th*f_10_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) - (6*cos2th*f_11_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) - (7*cos2th*f_12_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) - (7*cos2th*f_13_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) - (2*cos2th*f_2_2*f[17]*f[19]*f[64]*f[66])/U[0] - (2*cos2th*f_3_2*f[17]*f[19]*f[64]*f[66])/U[0] - (3*cos2th*f_4_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) - (3*cos2th*f_5_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) - (4*cos2th*f_6_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) - (4*cos2th*f_7_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) - (5*cos2th*f_8_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) - (5*cos2th*f_9_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) - (6*f_11_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) - (7*f_12_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) - (7*f_13_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) - (2*f_2_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] - (2*f_3_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] - (3*f_4_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) - (3*f_5_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) - (4*f_6_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) - (4*f_7_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) - (5*f_8_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) - (5*f_9_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) - (6*cos2th*f_10_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) - (6*cos2th*f_11_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) - (7*cos2th*f_12_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) - (7*cos2th*f_13_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) - (2*cos2th*f_2_2*f[17]*f[18]*f[65]*f[66])/U[0] - (2*cos2th*f_3_2*f[17]*f[18]*f[65]*f[66])/U[0] - (3*cos2th*f_4_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) - (3*cos2th*f_5_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) - (4*cos2th*f_6_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) - (4*cos2th*f_7_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) - (5*cos2th*f_8_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) - (5*cos2th*f_9_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) + (6*cos2th*f_10_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) + (6*cos2th*f_11_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) + (7*cos2th*f_12_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) + (7*cos2th*f_13_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) + (2*cos2th*f_2_2*f[16]*f[19]*f[65]*f[66])/U[0] + (2*cos2th*f_3_2*f[16]*f[19]*f[65]*f[66])/U[0] + (3*cos2th*f_4_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) + (3*cos2th*f_5_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) + (4*cos2th*f_6_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) + (4*cos2th*f_7_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) + (5*cos2th*f_8_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) + (5*cos2th*f_9_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) - (6*f_10_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) - (6*f_11_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) - (7*f_12_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) - (7*f_13_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) - (2*f_2_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] - (2*f_3_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] - (3*f_4_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) - (3*f_5_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) - (4*f_6_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) - (4*f_7_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) - (5*f_8_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) - (5*f_9_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) + (6*f_10_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) + (6*f_11_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) + (7*f_12_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) + (7*f_13_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) + (2*f_2_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] + (2*f_3_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] + (3*f_4_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) + (3*f_5_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) + (4*f_6_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) + (4*f_7_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) + (5*f_8_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) + (5*f_9_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_10_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) + (6*cos2th*f_11_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) + (7*cos2th*f_12_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) + (7*cos2th*f_13_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) + (2*cos2th*f_2_2*f[17]*f[18]*f[64]*f[67])/U[0] + (2*cos2th*f_3_2*f[17]*f[18]*f[64]*f[67])/U[0] + (3*cos2th*f_4_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) + (3*cos2th*f_5_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) + (4*cos2th*f_6_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) + (4*cos2th*f_7_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_8_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) + (5*cos2th*f_9_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_10_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) - (6*cos2th*f_11_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) - (7*cos2th*f_12_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) - (7*cos2th*f_13_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) - (2*cos2th*f_2_2*f[16]*f[19]*f[64]*f[67])/U[0] - (2*cos2th*f_3_2*f[16]*f[19]*f[64]*f[67])/U[0] - (3*cos2th*f_4_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) - (3*cos2th*f_5_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) - (4*cos2th*f_6_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) - (4*cos2th*f_7_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_8_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) - (5*cos2th*f_9_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) + (6*f_10_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) + (6*f_11_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) + (7*f_12_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) + (7*f_13_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) + (2*f_2_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] + (2*f_3_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] + (3*f_4_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) + (3*f_5_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) + (4*f_6_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) + (4*f_7_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) + (5*f_8_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) + (5*f_9_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_10_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) - (6*cos2th*f_11_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) - (7*cos2th*f_12_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) - (7*cos2th*f_13_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) - (2*cos2th*f_2_2*f[16]*f[18]*f[65]*f[67])/U[0] - (2*cos2th*f_3_2*f[16]*f[18]*f[65]*f[67])/U[0] - (3*cos2th*f_4_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) - (3*cos2th*f_5_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) - (4*cos2th*f_6_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) - (4*cos2th*f_7_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) - (5*cos2th*f_8_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) - (5*cos2th*f_9_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) + (6*f_10_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) + (6*f_11_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) + (7*f_12_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) + (7*f_13_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) + (2*f_2_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] + (2*f_3_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] + (3*f_4_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) + (3*f_5_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) + (4*f_6_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) + (4*f_7_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) + (5*f_8_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) + (5*f_9_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) - (6*f_10_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) - (6*f_11_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) - (7*f_12_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) - (7*f_13_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) - (2*f_2_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] - (2*f_3_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] - (3*f_4_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) - (3*f_5_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) - (4*f_6_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) - (4*f_7_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) - (5*f_8_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) - (5*f_9_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) - (6*cos2th*f_10_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) - (6*cos2th*f_11_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) - (7*cos2th*f_12_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) - (7*cos2th*f_13_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) - (2*cos2th*f_2_2*f[17]*f[19]*f[65]*f[67])/U[0] - (2*cos2th*f_3_2*f[17]*f[19]*f[65]*f[67])/U[0] - (3*cos2th*f_4_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) - (3*cos2th*f_5_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) - (4*cos2th*f_6_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) - (4*cos2th*f_7_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) - (5*cos2th*f_8_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) - (5*cos2th*f_9_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) + (2*cos2th*f_0_2*f[18]*f[20]*f[66]*f[68])/U[4] + (2*cos2th*f_1_2*f[18]*f[20]*f[66]*f[68])/U[4] - (2*f_0_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[4] - (2*f_1_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[4] + (2*f_0_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[4] + (2*f_1_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[4] + (2*cos2th*f_0_2*f[19]*f[21]*f[66]*f[68])/U[4] + (2*cos2th*f_1_2*f[19]*f[21]*f[66]*f[68])/U[4] + (2*f_0_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[4] + (2*f_1_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[4] + (2*cos2th*f_0_2*f[19]*f[20]*f[67]*f[68])/U[4] + (2*cos2th*f_1_2*f[19]*f[20]*f[67]*f[68])/U[4] - (2*cos2th*f_0_2*f[18]*f[21]*f[67]*f[68])/U[4] - (2*cos2th*f_1_2*f[18]*f[21]*f[67]*f[68])/U[4] + (2*f_0_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[4] + (2*f_1_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[4] - (2*f_0_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[4] - (2*f_1_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[4] - (2*cos2th*f_0_2*f[19]*f[20]*f[66]*f[69])/U[4] - (2*cos2th*f_1_2*f[19]*f[20]*f[66]*f[69])/U[4] + (2*cos2th*f_0_2*f[18]*f[21]*f[66]*f[69])/U[4] + (2*cos2th*f_1_2*f[18]*f[21]*f[66]*f[69])/U[4] - (2*f_0_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[4] - (2*f_1_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[4] + (2*cos2th*f_0_2*f[18]*f[20]*f[67]*f[69])/U[4] + (2*cos2th*f_1_2*f[18]*f[20]*f[67]*f[69])/U[4] - (2*f_0_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[4] - (2*f_1_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[4] + (2*f_0_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[4] + (2*f_1_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[4] + (2*cos2th*f_0_2*f[19]*f[21]*f[67]*f[69])/U[4] + (2*cos2th*f_1_2*f[19]*f[21]*f[67]*f[69])/U[4] + (3*cos2th*f_0_2*f[20]*f[22]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_1_2*f[20]*f[22]*f[68]*f[70])/(2.*U[4]) - (3*f_0_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[4]) - (3*f_1_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[4]) + (3*f_0_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[4]) + (3*f_1_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_0_2*f[21]*f[23]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_1_2*f[21]*f[23]*f[68]*f[70])/(2.*U[4]) + (3*f_0_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[4]) + (3*f_1_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_0_2*f[21]*f[22]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_1_2*f[21]*f[22]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_0_2*f[20]*f[23]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_1_2*f[20]*f[23]*f[69]*f[70])/(2.*U[4]) + (3*f_0_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[4]) + (3*f_1_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[4]) - (3*f_0_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[4]) - (3*f_1_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_0_2*f[21]*f[22]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_1_2*f[21]*f[22]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_0_2*f[20]*f[23]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_1_2*f[20]*f[23]*f[68]*f[71])/(2.*U[4]) - (3*f_0_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[4]) - (3*f_1_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_0_2*f[20]*f[22]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_1_2*f[20]*f[22]*f[69]*f[71])/(2.*U[4]) - (3*f_0_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[4]) - (3*f_1_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[4]) + (3*f_0_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[4]) + (3*f_1_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_0_2*f[21]*f[23]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_1_2*f[21]*f[23]*f[69]*f[71])/(2.*U[4]) + (4*cos2th*f_0_2*f[22]*f[24]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_1_2*f[22]*f[24]*f[70]*f[72])/(3.*U[4]) - (4*f_0_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[4]) - (4*f_1_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[4]) + (4*f_0_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[4]) + (4*f_1_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_0_2*f[23]*f[25]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_1_2*f[23]*f[25]*f[70]*f[72])/(3.*U[4]) + (4*f_0_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[4]) + (4*f_1_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_0_2*f[23]*f[24]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_1_2*f[23]*f[24]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_0_2*f[22]*f[25]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_1_2*f[22]*f[25]*f[71]*f[72])/(3.*U[4]) + (4*f_0_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[4]) + (4*f_1_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[4]) - (4*f_0_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[4]) - (4*f_1_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_0_2*f[23]*f[24]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_1_2*f[23]*f[24]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_0_2*f[22]*f[25]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_1_2*f[22]*f[25]*f[70]*f[73])/(3.*U[4]) - (4*f_0_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[4]) - (4*f_1_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_0_2*f[22]*f[24]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_1_2*f[22]*f[24]*f[71]*f[73])/(3.*U[4]) - (4*f_0_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[4]) - (4*f_1_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[4]) + (4*f_0_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[4]) + (4*f_1_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_0_2*f[23]*f[25]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_1_2*f[23]*f[25]*f[71]*f[73])/(3.*U[4]) + (5*cos2th*f_0_2*f[24]*f[26]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_1_2*f[24]*f[26]*f[72]*f[74])/(4.*U[4]) - (5*f_0_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[4]) - (5*f_1_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[4]) + (5*f_0_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[4]) + (5*f_1_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_0_2*f[25]*f[27]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_1_2*f[25]*f[27]*f[72]*f[74])/(4.*U[4]) + (5*f_0_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[4]) + (5*f_1_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_0_2*f[25]*f[26]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_1_2*f[25]*f[26]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_0_2*f[24]*f[27]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_1_2*f[24]*f[27]*f[73]*f[74])/(4.*U[4]) + (5*f_0_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[4]) + (5*f_1_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[4]) - (5*f_0_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[4]) - (5*f_1_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_0_2*f[25]*f[26]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_1_2*f[25]*f[26]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_0_2*f[24]*f[27]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_1_2*f[24]*f[27]*f[72]*f[75])/(4.*U[4]) - (5*f_0_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[4]) - (5*f_1_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_0_2*f[24]*f[26]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_1_2*f[24]*f[26]*f[73]*f[75])/(4.*U[4]) - (5*f_0_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[4]) - (5*f_1_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[4]) + (5*f_0_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[4]) + (5*f_1_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_0_2*f[25]*f[27]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_1_2*f[25]*f[27]*f[73]*f[75])/(4.*U[4]) + (6*cos2th*f_0_2*f[26]*f[28]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_1_2*f[26]*f[28]*f[74]*f[76])/(5.*U[4]) - (6*f_0_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[4]) - (6*f_1_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[4]) + (6*f_0_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[4]) + (6*f_1_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_0_2*f[27]*f[29]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_1_2*f[27]*f[29]*f[74]*f[76])/(5.*U[4]) + (6*f_0_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[4]) + (6*f_1_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_0_2*f[27]*f[28]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_1_2*f[27]*f[28]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_0_2*f[26]*f[29]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_1_2*f[26]*f[29]*f[75]*f[76])/(5.*U[4]) + (6*f_0_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[4]) + (6*f_1_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[4]) - (6*f_0_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[4]) - (6*f_1_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_0_2*f[27]*f[28]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_1_2*f[27]*f[28]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_0_2*f[26]*f[29]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_1_2*f[26]*f[29]*f[74]*f[77])/(5.*U[4]) - (6*f_0_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[4]) - (6*f_1_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_0_2*f[26]*f[28]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_1_2*f[26]*f[28]*f[75]*f[77])/(5.*U[4]) - (6*f_0_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[4]) - (6*f_1_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[4]) + (6*f_0_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[4]) + (6*f_1_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_0_2*f[27]*f[29]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_1_2*f[27]*f[29]*f[75]*f[77])/(5.*U[4]) + (7*cos2th*f_0_2*f[28]*f[30]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_1_2*f[28]*f[30]*f[76]*f[78])/(6.*U[4]) - (7*f_0_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[4]) - (7*f_1_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[4]) + (7*f_0_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[4]) + (7*f_1_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_0_2*f[29]*f[31]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_1_2*f[29]*f[31]*f[76]*f[78])/(6.*U[4]) + (7*f_0_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[4]) + (7*f_1_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_0_2*f[29]*f[30]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_1_2*f[29]*f[30]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_0_2*f[28]*f[31]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_1_2*f[28]*f[31]*f[77]*f[78])/(6.*U[4]) + (7*f_0_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[4]) + (7*f_1_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[4]) - (7*f_0_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[4]) - (7*f_1_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_0_2*f[29]*f[30]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_1_2*f[29]*f[30]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_0_2*f[28]*f[31]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_1_2*f[28]*f[31]*f[76]*f[79])/(6.*U[4]) - (7*f_0_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[4]) - (7*f_1_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_0_2*f[28]*f[30]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_1_2*f[28]*f[30]*f[77]*f[79])/(6.*U[4]) - (7*f_0_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[4]) - (7*f_1_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[4]) + (7*f_0_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[4]) + (7*f_1_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_0_2*f[29]*f[31]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_1_2*f[29]*f[31]*f[77]*f[79])/(6.*U[4]) + (14*cos2th*f_12_2*f[18]*f[20]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_13_2*f[18]*f[20]*f[66]*f[68])/(-6*U[0] + U[4]) - (14*f_12_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-6*U[0] + U[4]) - (14*f_13_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*f_12_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*f_13_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_12_2*f[19]*f[21]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_13_2*f[19]*f[21]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*f_12_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*f_13_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_12_2*f[19]*f[20]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_13_2*f[19]*f[20]*f[67]*f[68])/(-6*U[0] + U[4]) - (14*cos2th*f_12_2*f[18]*f[21]*f[67]*f[68])/(-6*U[0] + U[4]) - (14*cos2th*f_13_2*f[18]*f[21]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*f_12_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*f_13_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-6*U[0] + U[4]) - (14*f_12_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*f_13_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*cos2th*f_12_2*f[19]*f[20]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*cos2th*f_13_2*f[19]*f[20]*f[66]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_12_2*f[18]*f[21]*f[66]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_13_2*f[18]*f[21]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*f_12_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*f_13_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_12_2*f[18]*f[20]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_13_2*f[18]*f[20]*f[67]*f[69])/(-6*U[0] + U[4]) - (14*f_12_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-6*U[0] + U[4]) - (14*f_13_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*f_12_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*f_13_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_12_2*f[19]*f[21]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_13_2*f[19]*f[21]*f[67]*f[69])/(-6*U[0] + U[4]) + (12*cos2th*f_10_2*f[18]*f[20]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_11_2*f[18]*f[20]*f[66]*f[68])/(-5*U[0] + U[4]) - (12*f_10_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-5*U[0] + U[4]) - (12*f_11_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*f_10_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*f_11_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_10_2*f[19]*f[21]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_11_2*f[19]*f[21]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*f_10_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*f_11_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_10_2*f[19]*f[20]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_11_2*f[19]*f[20]*f[67]*f[68])/(-5*U[0] + U[4]) - (12*cos2th*f_10_2*f[18]*f[21]*f[67]*f[68])/(-5*U[0] + U[4]) - (12*cos2th*f_11_2*f[18]*f[21]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*f_10_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*f_11_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-5*U[0] + U[4]) - (12*f_10_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*f_11_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*cos2th*f_10_2*f[19]*f[20]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*cos2th*f_11_2*f[19]*f[20]*f[66]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_10_2*f[18]*f[21]*f[66]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_11_2*f[18]*f[21]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*f_10_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*f_11_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_10_2*f[18]*f[20]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_11_2*f[18]*f[20]*f[67]*f[69])/(-5*U[0] + U[4]) - (12*f_10_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-5*U[0] + U[4]) - (12*f_11_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*f_10_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*f_11_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_10_2*f[19]*f[21]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_11_2*f[19]*f[21]*f[67]*f[69])/(-5*U[0] + U[4]) + (10*cos2th*f_8_2*f[18]*f[20]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_9_2*f[18]*f[20]*f[66]*f[68])/(-4*U[0] + U[4]) - (10*f_8_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-4*U[0] + U[4]) - (10*f_9_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*f_8_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*f_9_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_8_2*f[19]*f[21]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_9_2*f[19]*f[21]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*f_8_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*f_9_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_8_2*f[19]*f[20]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_9_2*f[19]*f[20]*f[67]*f[68])/(-4*U[0] + U[4]) - (10*cos2th*f_8_2*f[18]*f[21]*f[67]*f[68])/(-4*U[0] + U[4]) - (10*cos2th*f_9_2*f[18]*f[21]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*f_8_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*f_9_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-4*U[0] + U[4]) - (10*f_8_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*f_9_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*cos2th*f_8_2*f[19]*f[20]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*cos2th*f_9_2*f[19]*f[20]*f[66]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_8_2*f[18]*f[21]*f[66]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_9_2*f[18]*f[21]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*f_8_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*f_9_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_8_2*f[18]*f[20]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_9_2*f[18]*f[20]*f[67]*f[69])/(-4*U[0] + U[4]) - (10*f_8_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-4*U[0] + U[4]) - (10*f_9_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*f_8_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*f_9_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_8_2*f[19]*f[21]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_9_2*f[19]*f[21]*f[67]*f[69])/(-4*U[0] + U[4]) + (8*cos2th*f_6_2*f[18]*f[20]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_7_2*f[18]*f[20]*f[66]*f[68])/(-3*U[0] + U[4]) - (8*f_6_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-3*U[0] + U[4]) - (8*f_7_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*f_6_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*f_7_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_6_2*f[19]*f[21]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_7_2*f[19]*f[21]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*f_6_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*f_7_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_6_2*f[19]*f[20]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_7_2*f[19]*f[20]*f[67]*f[68])/(-3*U[0] + U[4]) - (8*cos2th*f_6_2*f[18]*f[21]*f[67]*f[68])/(-3*U[0] + U[4]) - (8*cos2th*f_7_2*f[18]*f[21]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*f_6_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*f_7_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-3*U[0] + U[4]) - (8*f_6_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*f_7_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*cos2th*f_6_2*f[19]*f[20]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*cos2th*f_7_2*f[19]*f[20]*f[66]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_6_2*f[18]*f[21]*f[66]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_7_2*f[18]*f[21]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*f_6_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*f_7_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_6_2*f[18]*f[20]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_7_2*f[18]*f[20]*f[67]*f[69])/(-3*U[0] + U[4]) - (8*f_6_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-3*U[0] + U[4]) - (8*f_7_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*f_6_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*f_7_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_6_2*f[19]*f[21]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_7_2*f[19]*f[21]*f[67]*f[69])/(-3*U[0] + U[4]) + (6*cos2th*f_4_2*f[18]*f[20]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_5_2*f[18]*f[20]*f[66]*f[68])/(-2*U[0] + U[4]) - (6*f_4_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-2*U[0] + U[4]) - (6*f_5_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*f_4_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*f_5_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_4_2*f[19]*f[21]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_5_2*f[19]*f[21]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*f_4_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*f_5_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_4_2*f[19]*f[20]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_5_2*f[19]*f[20]*f[67]*f[68])/(-2*U[0] + U[4]) - (6*cos2th*f_4_2*f[18]*f[21]*f[67]*f[68])/(-2*U[0] + U[4]) - (6*cos2th*f_5_2*f[18]*f[21]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*f_4_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*f_5_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-2*U[0] + U[4]) - (6*f_4_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*f_5_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*cos2th*f_4_2*f[19]*f[20]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*cos2th*f_5_2*f[19]*f[20]*f[66]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_4_2*f[18]*f[21]*f[66]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_5_2*f[18]*f[21]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*f_4_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*f_5_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_4_2*f[18]*f[20]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_5_2*f[18]*f[20]*f[67]*f[69])/(-2*U[0] + U[4]) - (6*f_4_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-2*U[0] + U[4]) - (6*f_5_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*f_4_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*f_5_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_4_2*f[19]*f[21]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_5_2*f[19]*f[21]*f[67]*f[69])/(-2*U[0] + U[4]) + (21*cos2th*f_12_2*f[20]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_13_2*f[20]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[4]) - (21*f_12_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[4]) - (21*f_13_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_12_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_13_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_12_2*f[21]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_13_2*f[21]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_12_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_13_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_12_2*f[21]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_13_2*f[21]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_12_2*f[20]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_13_2*f[20]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_12_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_13_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[4]) - (21*f_12_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_13_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_12_2*f[21]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_13_2*f[21]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_12_2*f[20]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_13_2*f[20]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_12_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_13_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_12_2*f[20]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_13_2*f[20]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_12_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_13_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*f_12_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*f_13_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_12_2*f[21]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_13_2*f[21]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (18*cos2th*f_10_2*f[20]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_11_2*f[20]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[4]) - (18*f_10_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[4]) - (18*f_11_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_10_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_11_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_10_2*f[21]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_11_2*f[21]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_10_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_11_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_10_2*f[21]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_11_2*f[21]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_10_2*f[20]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_11_2*f[20]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_10_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_11_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[4]) - (18*f_10_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_11_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_10_2*f[21]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_11_2*f[21]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_10_2*f[20]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_11_2*f[20]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_10_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_11_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_10_2*f[20]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_11_2*f[20]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_10_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_11_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*f_10_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*f_11_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_10_2*f[21]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_11_2*f[21]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (15*cos2th*f_8_2*f[20]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_9_2*f[20]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[4]) - (15*f_8_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[4]) - (15*f_9_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_8_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_9_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_8_2*f[21]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_9_2*f[21]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_8_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_9_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_8_2*f[21]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_9_2*f[21]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_8_2*f[20]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_9_2*f[20]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_8_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_9_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[4]) - (15*f_8_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_9_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_8_2*f[21]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_9_2*f[21]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_8_2*f[20]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_9_2*f[20]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_8_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_9_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_8_2*f[20]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_9_2*f[20]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_8_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_9_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*f_8_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*f_9_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_8_2*f[21]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_9_2*f[21]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (12*cos2th*f_6_2*f[20]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_7_2*f[20]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[4]) - (12*f_6_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[4]) - (12*f_7_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_6_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_7_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_6_2*f[21]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_7_2*f[21]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_6_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_7_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_6_2*f[21]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_7_2*f[21]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_6_2*f[20]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_7_2*f[20]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_6_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_7_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[4]) - (12*f_6_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_7_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_6_2*f[21]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_7_2*f[21]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_6_2*f[20]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_7_2*f[20]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_6_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_7_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_6_2*f[20]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_7_2*f[20]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_6_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_7_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*f_6_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*f_7_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_6_2*f[21]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_7_2*f[21]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (6*cos2th*f_2_2*f[20]*f[22]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_3_2*f[20]*f[22]*f[68]*f[70])/(-U[0] + 2*U[4]) - (6*f_2_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-U[0] + 2*U[4]) - (6*f_3_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*f_2_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*f_3_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_2_2*f[21]*f[23]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_3_2*f[21]*f[23]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*f_2_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*f_3_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_2_2*f[21]*f[22]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_3_2*f[21]*f[22]*f[69]*f[70])/(-U[0] + 2*U[4]) - (6*cos2th*f_2_2*f[20]*f[23]*f[69]*f[70])/(-U[0] + 2*U[4]) - (6*cos2th*f_3_2*f[20]*f[23]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*f_2_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*f_3_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-U[0] + 2*U[4]) - (6*f_2_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*f_3_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*cos2th*f_2_2*f[21]*f[22]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*cos2th*f_3_2*f[21]*f[22]*f[68]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_2_2*f[20]*f[23]*f[68]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_3_2*f[20]*f[23]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*f_2_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*f_3_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_2_2*f[20]*f[22]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_3_2*f[20]*f[22]*f[69]*f[71])/(-U[0] + 2*U[4]) - (6*f_2_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-U[0] + 2*U[4]) - (6*f_3_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*f_2_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*f_3_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_2_2*f[21]*f[23]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_3_2*f[21]*f[23]*f[69]*f[71])/(-U[0] + 2*U[4]) + (28*cos2th*f_12_2*f[22]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_13_2*f[22]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[4]) - (28*f_12_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[4]) - (28*f_13_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_12_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_13_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_12_2*f[23]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_13_2*f[23]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_12_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_13_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_12_2*f[23]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_13_2*f[23]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_12_2*f[22]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_13_2*f[22]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_12_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_13_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[4]) - (28*f_12_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_13_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_12_2*f[23]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_13_2*f[23]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_12_2*f[22]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_13_2*f[22]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_12_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_13_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_12_2*f[22]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_13_2*f[22]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_12_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_13_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*f_12_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*f_13_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_12_2*f[23]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_13_2*f[23]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (24*cos2th*f_10_2*f[22]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_11_2*f[22]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[4]) - (24*f_10_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[4]) - (24*f_11_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_10_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_11_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_10_2*f[23]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_11_2*f[23]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_10_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_11_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_10_2*f[23]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_11_2*f[23]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_10_2*f[22]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_11_2*f[22]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_10_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_11_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[4]) - (24*f_10_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_11_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_10_2*f[23]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_11_2*f[23]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_10_2*f[22]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_11_2*f[22]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_10_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_11_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_10_2*f[22]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_11_2*f[22]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_10_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_11_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*f_10_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*f_11_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_10_2*f[23]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_11_2*f[23]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (20*cos2th*f_8_2*f[22]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_9_2*f[22]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[4]) - (20*f_8_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[4]) - (20*f_9_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_8_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_9_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_8_2*f[23]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_9_2*f[23]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_8_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_9_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_8_2*f[23]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_9_2*f[23]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_8_2*f[22]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_9_2*f[22]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_8_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_9_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[4]) - (20*f_8_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_9_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_8_2*f[23]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_9_2*f[23]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_8_2*f[22]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_9_2*f[22]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_8_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_9_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_8_2*f[22]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_9_2*f[22]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_8_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_9_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*f_8_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*f_9_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_8_2*f[23]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_9_2*f[23]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (12*cos2th*f_4_2*f[22]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_5_2*f[22]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[4]) - (12*f_4_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[4]) - (12*f_5_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_4_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_5_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_4_2*f[23]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_5_2*f[23]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_4_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_5_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_4_2*f[23]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_5_2*f[23]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_4_2*f[22]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_5_2*f[22]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_4_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_5_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[4]) - (12*f_4_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_5_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_4_2*f[23]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_5_2*f[23]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_4_2*f[22]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_5_2*f[22]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_4_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_5_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_4_2*f[22]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_5_2*f[22]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_4_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_5_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*f_4_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*f_5_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_4_2*f[23]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_5_2*f[23]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (8*cos2th*f_2_2*f[22]*f[24]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_3_2*f[22]*f[24]*f[70]*f[72])/(-U[0] + 3*U[4]) - (8*f_2_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-U[0] + 3*U[4]) - (8*f_3_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*f_2_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*f_3_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_2_2*f[23]*f[25]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_3_2*f[23]*f[25]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*f_2_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*f_3_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_2_2*f[23]*f[24]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_3_2*f[23]*f[24]*f[71]*f[72])/(-U[0] + 3*U[4]) - (8*cos2th*f_2_2*f[22]*f[25]*f[71]*f[72])/(-U[0] + 3*U[4]) - (8*cos2th*f_3_2*f[22]*f[25]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*f_2_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*f_3_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-U[0] + 3*U[4]) - (8*f_2_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*f_3_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*cos2th*f_2_2*f[23]*f[24]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*cos2th*f_3_2*f[23]*f[24]*f[70]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_2_2*f[22]*f[25]*f[70]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_3_2*f[22]*f[25]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*f_2_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*f_3_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_2_2*f[22]*f[24]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_3_2*f[22]*f[24]*f[71]*f[73])/(-U[0] + 3*U[4]) - (8*f_2_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-U[0] + 3*U[4]) - (8*f_3_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*f_2_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*f_3_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_2_2*f[23]*f[25]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_3_2*f[23]*f[25]*f[71]*f[73])/(-U[0] + 3*U[4]) + (35*cos2th*f_12_2*f[24]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_13_2*f[24]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[4]) - (35*f_12_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[4]) - (35*f_13_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_12_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_13_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_12_2*f[25]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_13_2*f[25]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_12_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_13_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_12_2*f[25]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_13_2*f[25]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_12_2*f[24]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_13_2*f[24]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_12_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_13_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[4]) - (35*f_12_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_13_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_12_2*f[25]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_13_2*f[25]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_12_2*f[24]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_13_2*f[24]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_12_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_13_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_12_2*f[24]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_13_2*f[24]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_12_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_13_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*f_12_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*f_13_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_12_2*f[25]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_13_2*f[25]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (30*cos2th*f_10_2*f[24]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_11_2*f[24]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[4]) - (30*f_10_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[4]) - (30*f_11_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_10_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_11_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_10_2*f[25]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_11_2*f[25]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_10_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_11_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_10_2*f[25]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_11_2*f[25]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_10_2*f[24]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_11_2*f[24]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_10_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_11_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[4]) - (30*f_10_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_11_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_10_2*f[25]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_11_2*f[25]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_10_2*f[24]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_11_2*f[24]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_10_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_11_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_10_2*f[24]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_11_2*f[24]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_10_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_11_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*f_10_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*f_11_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_10_2*f[25]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_11_2*f[25]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (20*cos2th*f_6_2*f[24]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_7_2*f[24]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[4]) - (20*f_6_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[4]) - (20*f_7_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_6_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_7_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_6_2*f[25]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_7_2*f[25]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_6_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_7_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_6_2*f[25]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_7_2*f[25]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_6_2*f[24]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_7_2*f[24]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_6_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_7_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[4]) - (20*f_6_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_7_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_6_2*f[25]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_7_2*f[25]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_6_2*f[24]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_7_2*f[24]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_6_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_7_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_6_2*f[24]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_7_2*f[24]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_6_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_7_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*f_6_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*f_7_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_6_2*f[25]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_7_2*f[25]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (15*cos2th*f_4_2*f[24]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_5_2*f[24]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[4]) - (15*f_4_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[4]) - (15*f_5_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_4_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_5_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_4_2*f[25]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_5_2*f[25]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_4_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_5_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_4_2*f[25]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_5_2*f[25]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_4_2*f[24]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_5_2*f[24]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_4_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_5_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[4]) - (15*f_4_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_5_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_4_2*f[25]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_5_2*f[25]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_4_2*f[24]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_5_2*f[24]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_4_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_5_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_4_2*f[24]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_5_2*f[24]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_4_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_5_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*f_4_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*f_5_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_4_2*f[25]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_5_2*f[25]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (10*cos2th*f_2_2*f[24]*f[26]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_3_2*f[24]*f[26]*f[72]*f[74])/(-U[0] + 4*U[4]) - (10*f_2_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-U[0] + 4*U[4]) - (10*f_3_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*f_2_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*f_3_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_2_2*f[25]*f[27]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_3_2*f[25]*f[27]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*f_2_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*f_3_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_2_2*f[25]*f[26]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_3_2*f[25]*f[26]*f[73]*f[74])/(-U[0] + 4*U[4]) - (10*cos2th*f_2_2*f[24]*f[27]*f[73]*f[74])/(-U[0] + 4*U[4]) - (10*cos2th*f_3_2*f[24]*f[27]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*f_2_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*f_3_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-U[0] + 4*U[4]) - (10*f_2_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*f_3_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*cos2th*f_2_2*f[25]*f[26]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*cos2th*f_3_2*f[25]*f[26]*f[72]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_2_2*f[24]*f[27]*f[72]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_3_2*f[24]*f[27]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*f_2_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*f_3_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_2_2*f[24]*f[26]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_3_2*f[24]*f[26]*f[73]*f[75])/(-U[0] + 4*U[4]) - (10*f_2_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-U[0] + 4*U[4]) - (10*f_3_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*f_2_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*f_3_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_2_2*f[25]*f[27]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_3_2*f[25]*f[27]*f[73]*f[75])/(-U[0] + 4*U[4]) + (42*cos2th*f_12_2*f[26]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_13_2*f[26]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[4]) - (42*f_12_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[4]) - (42*f_13_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_12_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_13_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_12_2*f[27]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_13_2*f[27]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_12_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_13_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_12_2*f[27]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_13_2*f[27]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_12_2*f[26]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_13_2*f[26]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_12_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_13_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[4]) - (42*f_12_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_13_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_12_2*f[27]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_13_2*f[27]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_12_2*f[26]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_13_2*f[26]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_12_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_13_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_12_2*f[26]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_13_2*f[26]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_12_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_13_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*f_12_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*f_13_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_12_2*f[27]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_13_2*f[27]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (30*cos2th*f_8_2*f[26]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_9_2*f[26]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[4]) - (30*f_8_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[4]) - (30*f_9_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_8_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_9_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_8_2*f[27]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_9_2*f[27]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_8_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_9_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_8_2*f[27]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_9_2*f[27]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_8_2*f[26]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_9_2*f[26]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_8_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_9_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[4]) - (30*f_8_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_9_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_8_2*f[27]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_9_2*f[27]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_8_2*f[26]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_9_2*f[26]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_8_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_9_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_8_2*f[26]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_9_2*f[26]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_8_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_9_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*f_8_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*f_9_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_8_2*f[27]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_9_2*f[27]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (24*cos2th*f_6_2*f[26]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_7_2*f[26]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[4]) - (24*f_6_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[4]) - (24*f_7_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_6_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_7_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_6_2*f[27]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_7_2*f[27]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_6_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_7_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_6_2*f[27]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_7_2*f[27]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_6_2*f[26]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_7_2*f[26]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_6_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_7_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[4]) - (24*f_6_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_7_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_6_2*f[27]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_7_2*f[27]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_6_2*f[26]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_7_2*f[26]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_6_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_7_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_6_2*f[26]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_7_2*f[26]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_6_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_7_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*f_6_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*f_7_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_6_2*f[27]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_7_2*f[27]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (18*cos2th*f_4_2*f[26]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_5_2*f[26]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[4]) - (18*f_4_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[4]) - (18*f_5_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_4_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_5_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_4_2*f[27]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_5_2*f[27]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_4_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_5_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_4_2*f[27]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_5_2*f[27]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_4_2*f[26]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_5_2*f[26]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_4_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_5_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[4]) - (18*f_4_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_5_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_4_2*f[27]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_5_2*f[27]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_4_2*f[26]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_5_2*f[26]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_4_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_5_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_4_2*f[26]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_5_2*f[26]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_4_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_5_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*f_4_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*f_5_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_4_2*f[27]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_5_2*f[27]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (12*cos2th*f_2_2*f[26]*f[28]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_3_2*f[26]*f[28]*f[74]*f[76])/(-U[0] + 5*U[4]) - (12*f_2_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-U[0] + 5*U[4]) - (12*f_3_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*f_2_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*f_3_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_2_2*f[27]*f[29]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_3_2*f[27]*f[29]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*f_2_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*f_3_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_2_2*f[27]*f[28]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_3_2*f[27]*f[28]*f[75]*f[76])/(-U[0] + 5*U[4]) - (12*cos2th*f_2_2*f[26]*f[29]*f[75]*f[76])/(-U[0] + 5*U[4]) - (12*cos2th*f_3_2*f[26]*f[29]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*f_2_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*f_3_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-U[0] + 5*U[4]) - (12*f_2_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*f_3_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*cos2th*f_2_2*f[27]*f[28]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*cos2th*f_3_2*f[27]*f[28]*f[74]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_2_2*f[26]*f[29]*f[74]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_3_2*f[26]*f[29]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*f_2_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*f_3_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_2_2*f[26]*f[28]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_3_2*f[26]*f[28]*f[75]*f[77])/(-U[0] + 5*U[4]) - (12*f_2_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-U[0] + 5*U[4]) - (12*f_3_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*f_2_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*f_3_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_2_2*f[27]*f[29]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_3_2*f[27]*f[29]*f[75]*f[77])/(-U[0] + 5*U[4]) + (42*cos2th*f_10_2*f[28]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_11_2*f[28]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[4]) - (42*f_10_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[4]) - (42*f_11_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_10_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_11_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_10_2*f[29]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_11_2*f[29]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_10_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_11_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_10_2*f[29]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_11_2*f[29]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_10_2*f[28]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_11_2*f[28]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_10_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_11_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[4]) - (42*f_10_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_11_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_10_2*f[29]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_11_2*f[29]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_10_2*f[28]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_11_2*f[28]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_10_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_11_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_10_2*f[28]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_11_2*f[28]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_10_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_11_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*f_10_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*f_11_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_10_2*f[29]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_11_2*f[29]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (35*cos2th*f_8_2*f[28]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_9_2*f[28]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[4]) - (35*f_8_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[4]) - (35*f_9_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_8_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_9_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_8_2*f[29]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_9_2*f[29]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_8_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_9_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_8_2*f[29]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_9_2*f[29]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_8_2*f[28]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_9_2*f[28]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_8_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_9_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[4]) - (35*f_8_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_9_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_8_2*f[29]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_9_2*f[29]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_8_2*f[28]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_9_2*f[28]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_8_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_9_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_8_2*f[28]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_9_2*f[28]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_8_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_9_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*f_8_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*f_9_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_8_2*f[29]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_9_2*f[29]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (28*cos2th*f_6_2*f[28]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_7_2*f[28]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[4]) - (28*f_6_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[4]) - (28*f_7_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_6_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_7_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_6_2*f[29]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_7_2*f[29]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_6_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_7_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_6_2*f[29]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_7_2*f[29]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_6_2*f[28]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_7_2*f[28]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_6_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_7_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[4]) - (28*f_6_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_7_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_6_2*f[29]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_7_2*f[29]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_6_2*f[28]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_7_2*f[28]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_6_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_7_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_6_2*f[28]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_7_2*f[28]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_6_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_7_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*f_6_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*f_7_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_6_2*f[29]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_7_2*f[29]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (21*cos2th*f_4_2*f[28]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_5_2*f[28]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[4]) - (21*f_4_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[4]) - (21*f_5_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_4_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_5_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_4_2*f[29]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_5_2*f[29]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_4_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_5_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_4_2*f[29]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_5_2*f[29]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_4_2*f[28]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_5_2*f[28]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_4_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_5_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[4]) - (21*f_4_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_5_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_4_2*f[29]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_5_2*f[29]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_4_2*f[28]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_5_2*f[28]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_4_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_5_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_4_2*f[28]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_5_2*f[28]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_4_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_5_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*f_4_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*f_5_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_4_2*f[29]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_5_2*f[29]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (14*cos2th*f_2_2*f[28]*f[30]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_3_2*f[28]*f[30]*f[76]*f[78])/(-U[0] + 6*U[4]) - (14*f_2_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-U[0] + 6*U[4]) - (14*f_3_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*f_2_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*f_3_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_2_2*f[29]*f[31]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_3_2*f[29]*f[31]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*f_2_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*f_3_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_2_2*f[29]*f[30]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_3_2*f[29]*f[30]*f[77]*f[78])/(-U[0] + 6*U[4]) - (14*cos2th*f_2_2*f[28]*f[31]*f[77]*f[78])/(-U[0] + 6*U[4]) - (14*cos2th*f_3_2*f[28]*f[31]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*f_2_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*f_3_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-U[0] + 6*U[4]) - (14*f_2_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*f_3_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*cos2th*f_2_2*f[29]*f[30]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*cos2th*f_3_2*f[29]*f[30]*f[76]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_2_2*f[28]*f[31]*f[76]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_3_2*f[28]*f[31]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*f_2_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*f_3_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_2_2*f[28]*f[30]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_3_2*f[28]*f[30]*f[77]*f[79])/(-U[0] + 6*U[4]) - (14*f_2_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-U[0] + 6*U[4]) - (14*f_3_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*f_2_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*f_3_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_2_2*f[29]*f[31]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_3_2*f[29]*f[31]*f[77]*f[79])/(-U[0] + 6*U[4])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[0]*J[4]*((-5*cos2th*f_10_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) - (5*cos2th*f_11_2*f[16]*f[18]*f[64]*f[66])/(4.*U[0]) - (6*cos2th*f_12_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) - (6*cos2th*f_13_2*f[16]*f[18]*f[64]*f[66])/(5.*U[0]) - (7*cos2th*f_14_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) - (7*cos2th*f_15_2*f[16]*f[18]*f[64]*f[66])/(6.*U[0]) - (2*cos2th*f_4_2*f[16]*f[18]*f[64]*f[66])/U[0] - (2*cos2th*f_5_2*f[16]*f[18]*f[64]*f[66])/U[0] - (3*cos2th*f_6_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) - (3*cos2th*f_7_2*f[16]*f[18]*f[64]*f[66])/(2.*U[0]) - (4*cos2th*f_8_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) - (4*cos2th*f_9_2*f[16]*f[18]*f[64]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) + (5*f_11_2*sin2th*f[17]*f[18]*f[64]*f[66])/(4.*U[0]) + (6*f_12_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) + (6*f_13_2*sin2th*f[17]*f[18]*f[64]*f[66])/(5.*U[0]) + (7*f_14_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) + (7*f_15_2*sin2th*f[17]*f[18]*f[64]*f[66])/(6.*U[0]) + (2*f_4_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] + (2*f_5_2*sin2th*f[17]*f[18]*f[64]*f[66])/U[0] + (3*f_6_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) + (3*f_7_2*sin2th*f[17]*f[18]*f[64]*f[66])/(2.*U[0]) + (4*f_8_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) + (4*f_9_2*sin2th*f[17]*f[18]*f[64]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) - (5*f_11_2*sin2th*f[16]*f[19]*f[64]*f[66])/(4.*U[0]) - (6*f_12_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) - (6*f_13_2*sin2th*f[16]*f[19]*f[64]*f[66])/(5.*U[0]) - (7*f_14_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) - (7*f_15_2*sin2th*f[16]*f[19]*f[64]*f[66])/(6.*U[0]) - (2*f_4_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] - (2*f_5_2*sin2th*f[16]*f[19]*f[64]*f[66])/U[0] - (3*f_6_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) - (3*f_7_2*sin2th*f[16]*f[19]*f[64]*f[66])/(2.*U[0]) - (4*f_8_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) - (4*f_9_2*sin2th*f[16]*f[19]*f[64]*f[66])/(3.*U[0]) - (5*cos2th*f_10_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) - (5*cos2th*f_11_2*f[17]*f[19]*f[64]*f[66])/(4.*U[0]) - (6*cos2th*f_12_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) - (6*cos2th*f_13_2*f[17]*f[19]*f[64]*f[66])/(5.*U[0]) - (7*cos2th*f_14_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) - (7*cos2th*f_15_2*f[17]*f[19]*f[64]*f[66])/(6.*U[0]) - (2*cos2th*f_4_2*f[17]*f[19]*f[64]*f[66])/U[0] - (2*cos2th*f_5_2*f[17]*f[19]*f[64]*f[66])/U[0] - (3*cos2th*f_6_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) - (3*cos2th*f_7_2*f[17]*f[19]*f[64]*f[66])/(2.*U[0]) - (4*cos2th*f_8_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) - (4*cos2th*f_9_2*f[17]*f[19]*f[64]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) - (5*f_11_2*sin2th*f[16]*f[18]*f[65]*f[66])/(4.*U[0]) - (6*f_12_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) - (6*f_13_2*sin2th*f[16]*f[18]*f[65]*f[66])/(5.*U[0]) - (7*f_14_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) - (7*f_15_2*sin2th*f[16]*f[18]*f[65]*f[66])/(6.*U[0]) - (2*f_4_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] - (2*f_5_2*sin2th*f[16]*f[18]*f[65]*f[66])/U[0] - (3*f_6_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) - (3*f_7_2*sin2th*f[16]*f[18]*f[65]*f[66])/(2.*U[0]) - (4*f_8_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) - (4*f_9_2*sin2th*f[16]*f[18]*f[65]*f[66])/(3.*U[0]) - (5*cos2th*f_10_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) - (5*cos2th*f_11_2*f[17]*f[18]*f[65]*f[66])/(4.*U[0]) - (6*cos2th*f_12_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) - (6*cos2th*f_13_2*f[17]*f[18]*f[65]*f[66])/(5.*U[0]) - (7*cos2th*f_14_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) - (7*cos2th*f_15_2*f[17]*f[18]*f[65]*f[66])/(6.*U[0]) - (2*cos2th*f_4_2*f[17]*f[18]*f[65]*f[66])/U[0] - (2*cos2th*f_5_2*f[17]*f[18]*f[65]*f[66])/U[0] - (3*cos2th*f_6_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) - (3*cos2th*f_7_2*f[17]*f[18]*f[65]*f[66])/(2.*U[0]) - (4*cos2th*f_8_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) - (4*cos2th*f_9_2*f[17]*f[18]*f[65]*f[66])/(3.*U[0]) + (5*cos2th*f_10_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) + (5*cos2th*f_11_2*f[16]*f[19]*f[65]*f[66])/(4.*U[0]) + (6*cos2th*f_12_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) + (6*cos2th*f_13_2*f[16]*f[19]*f[65]*f[66])/(5.*U[0]) + (7*cos2th*f_14_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) + (7*cos2th*f_15_2*f[16]*f[19]*f[65]*f[66])/(6.*U[0]) + (2*cos2th*f_4_2*f[16]*f[19]*f[65]*f[66])/U[0] + (2*cos2th*f_5_2*f[16]*f[19]*f[65]*f[66])/U[0] + (3*cos2th*f_6_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) + (3*cos2th*f_7_2*f[16]*f[19]*f[65]*f[66])/(2.*U[0]) + (4*cos2th*f_8_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) + (4*cos2th*f_9_2*f[16]*f[19]*f[65]*f[66])/(3.*U[0]) - (5*f_10_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) - (5*f_11_2*sin2th*f[17]*f[19]*f[65]*f[66])/(4.*U[0]) - (6*f_12_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) - (6*f_13_2*sin2th*f[17]*f[19]*f[65]*f[66])/(5.*U[0]) - (7*f_14_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) - (7*f_15_2*sin2th*f[17]*f[19]*f[65]*f[66])/(6.*U[0]) - (2*f_4_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] - (2*f_5_2*sin2th*f[17]*f[19]*f[65]*f[66])/U[0] - (3*f_6_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) - (3*f_7_2*sin2th*f[17]*f[19]*f[65]*f[66])/(2.*U[0]) - (4*f_8_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) - (4*f_9_2*sin2th*f[17]*f[19]*f[65]*f[66])/(3.*U[0]) + (5*f_10_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) + (5*f_11_2*sin2th*f[16]*f[18]*f[64]*f[67])/(4.*U[0]) + (6*f_12_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) + (6*f_13_2*sin2th*f[16]*f[18]*f[64]*f[67])/(5.*U[0]) + (7*f_14_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) + (7*f_15_2*sin2th*f[16]*f[18]*f[64]*f[67])/(6.*U[0]) + (2*f_4_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] + (2*f_5_2*sin2th*f[16]*f[18]*f[64]*f[67])/U[0] + (3*f_6_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) + (3*f_7_2*sin2th*f[16]*f[18]*f[64]*f[67])/(2.*U[0]) + (4*f_8_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) + (4*f_9_2*sin2th*f[16]*f[18]*f[64]*f[67])/(3.*U[0]) + (5*cos2th*f_10_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) + (5*cos2th*f_11_2*f[17]*f[18]*f[64]*f[67])/(4.*U[0]) + (6*cos2th*f_12_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) + (6*cos2th*f_13_2*f[17]*f[18]*f[64]*f[67])/(5.*U[0]) + (7*cos2th*f_14_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) + (7*cos2th*f_15_2*f[17]*f[18]*f[64]*f[67])/(6.*U[0]) + (2*cos2th*f_4_2*f[17]*f[18]*f[64]*f[67])/U[0] + (2*cos2th*f_5_2*f[17]*f[18]*f[64]*f[67])/U[0] + (3*cos2th*f_6_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) + (3*cos2th*f_7_2*f[17]*f[18]*f[64]*f[67])/(2.*U[0]) + (4*cos2th*f_8_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) + (4*cos2th*f_9_2*f[17]*f[18]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_10_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) - (5*cos2th*f_11_2*f[16]*f[19]*f[64]*f[67])/(4.*U[0]) - (6*cos2th*f_12_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) - (6*cos2th*f_13_2*f[16]*f[19]*f[64]*f[67])/(5.*U[0]) - (7*cos2th*f_14_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) - (7*cos2th*f_15_2*f[16]*f[19]*f[64]*f[67])/(6.*U[0]) - (2*cos2th*f_4_2*f[16]*f[19]*f[64]*f[67])/U[0] - (2*cos2th*f_5_2*f[16]*f[19]*f[64]*f[67])/U[0] - (3*cos2th*f_6_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) - (3*cos2th*f_7_2*f[16]*f[19]*f[64]*f[67])/(2.*U[0]) - (4*cos2th*f_8_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) - (4*cos2th*f_9_2*f[16]*f[19]*f[64]*f[67])/(3.*U[0]) + (5*f_10_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) + (5*f_11_2*sin2th*f[17]*f[19]*f[64]*f[67])/(4.*U[0]) + (6*f_12_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) + (6*f_13_2*sin2th*f[17]*f[19]*f[64]*f[67])/(5.*U[0]) + (7*f_14_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) + (7*f_15_2*sin2th*f[17]*f[19]*f[64]*f[67])/(6.*U[0]) + (2*f_4_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] + (2*f_5_2*sin2th*f[17]*f[19]*f[64]*f[67])/U[0] + (3*f_6_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) + (3*f_7_2*sin2th*f[17]*f[19]*f[64]*f[67])/(2.*U[0]) + (4*f_8_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) + (4*f_9_2*sin2th*f[17]*f[19]*f[64]*f[67])/(3.*U[0]) - (5*cos2th*f_10_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) - (5*cos2th*f_11_2*f[16]*f[18]*f[65]*f[67])/(4.*U[0]) - (6*cos2th*f_12_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) - (6*cos2th*f_13_2*f[16]*f[18]*f[65]*f[67])/(5.*U[0]) - (7*cos2th*f_14_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) - (7*cos2th*f_15_2*f[16]*f[18]*f[65]*f[67])/(6.*U[0]) - (2*cos2th*f_4_2*f[16]*f[18]*f[65]*f[67])/U[0] - (2*cos2th*f_5_2*f[16]*f[18]*f[65]*f[67])/U[0] - (3*cos2th*f_6_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) - (3*cos2th*f_7_2*f[16]*f[18]*f[65]*f[67])/(2.*U[0]) - (4*cos2th*f_8_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) - (4*cos2th*f_9_2*f[16]*f[18]*f[65]*f[67])/(3.*U[0]) + (5*f_10_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) + (5*f_11_2*sin2th*f[17]*f[18]*f[65]*f[67])/(4.*U[0]) + (6*f_12_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) + (6*f_13_2*sin2th*f[17]*f[18]*f[65]*f[67])/(5.*U[0]) + (7*f_14_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) + (7*f_15_2*sin2th*f[17]*f[18]*f[65]*f[67])/(6.*U[0]) + (2*f_4_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] + (2*f_5_2*sin2th*f[17]*f[18]*f[65]*f[67])/U[0] + (3*f_6_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) + (3*f_7_2*sin2th*f[17]*f[18]*f[65]*f[67])/(2.*U[0]) + (4*f_8_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) + (4*f_9_2*sin2th*f[17]*f[18]*f[65]*f[67])/(3.*U[0]) - (5*f_10_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) - (5*f_11_2*sin2th*f[16]*f[19]*f[65]*f[67])/(4.*U[0]) - (6*f_12_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) - (6*f_13_2*sin2th*f[16]*f[19]*f[65]*f[67])/(5.*U[0]) - (7*f_14_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) - (7*f_15_2*sin2th*f[16]*f[19]*f[65]*f[67])/(6.*U[0]) - (2*f_4_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] - (2*f_5_2*sin2th*f[16]*f[19]*f[65]*f[67])/U[0] - (3*f_6_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) - (3*f_7_2*sin2th*f[16]*f[19]*f[65]*f[67])/(2.*U[0]) - (4*f_8_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) - (4*f_9_2*sin2th*f[16]*f[19]*f[65]*f[67])/(3.*U[0]) - (5*cos2th*f_10_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) - (5*cos2th*f_11_2*f[17]*f[19]*f[65]*f[67])/(4.*U[0]) - (6*cos2th*f_12_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) - (6*cos2th*f_13_2*f[17]*f[19]*f[65]*f[67])/(5.*U[0]) - (7*cos2th*f_14_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) - (7*cos2th*f_15_2*f[17]*f[19]*f[65]*f[67])/(6.*U[0]) - (2*cos2th*f_4_2*f[17]*f[19]*f[65]*f[67])/U[0] - (2*cos2th*f_5_2*f[17]*f[19]*f[65]*f[67])/U[0] - (3*cos2th*f_6_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) - (3*cos2th*f_7_2*f[17]*f[19]*f[65]*f[67])/(2.*U[0]) - (4*cos2th*f_8_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) - (4*cos2th*f_9_2*f[17]*f[19]*f[65]*f[67])/(3.*U[0]) + (2*cos2th*f_2_2*f[18]*f[20]*f[66]*f[68])/U[4] + (2*cos2th*f_3_2*f[18]*f[20]*f[66]*f[68])/U[4] - (2*f_2_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[4] - (2*f_3_2*sin2th*f[19]*f[20]*f[66]*f[68])/U[4] + (2*f_2_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[4] + (2*f_3_2*sin2th*f[18]*f[21]*f[66]*f[68])/U[4] + (2*cos2th*f_2_2*f[19]*f[21]*f[66]*f[68])/U[4] + (2*cos2th*f_3_2*f[19]*f[21]*f[66]*f[68])/U[4] + (2*f_2_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[4] + (2*f_3_2*sin2th*f[18]*f[20]*f[67]*f[68])/U[4] + (2*cos2th*f_2_2*f[19]*f[20]*f[67]*f[68])/U[4] + (2*cos2th*f_3_2*f[19]*f[20]*f[67]*f[68])/U[4] - (2*cos2th*f_2_2*f[18]*f[21]*f[67]*f[68])/U[4] - (2*cos2th*f_3_2*f[18]*f[21]*f[67]*f[68])/U[4] + (2*f_2_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[4] + (2*f_3_2*sin2th*f[19]*f[21]*f[67]*f[68])/U[4] - (2*f_2_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[4] - (2*f_3_2*sin2th*f[18]*f[20]*f[66]*f[69])/U[4] - (2*cos2th*f_2_2*f[19]*f[20]*f[66]*f[69])/U[4] - (2*cos2th*f_3_2*f[19]*f[20]*f[66]*f[69])/U[4] + (2*cos2th*f_2_2*f[18]*f[21]*f[66]*f[69])/U[4] + (2*cos2th*f_3_2*f[18]*f[21]*f[66]*f[69])/U[4] - (2*f_2_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[4] - (2*f_3_2*sin2th*f[19]*f[21]*f[66]*f[69])/U[4] + (2*cos2th*f_2_2*f[18]*f[20]*f[67]*f[69])/U[4] + (2*cos2th*f_3_2*f[18]*f[20]*f[67]*f[69])/U[4] - (2*f_2_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[4] - (2*f_3_2*sin2th*f[19]*f[20]*f[67]*f[69])/U[4] + (2*f_2_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[4] + (2*f_3_2*sin2th*f[18]*f[21]*f[67]*f[69])/U[4] + (2*cos2th*f_2_2*f[19]*f[21]*f[67]*f[69])/U[4] + (2*cos2th*f_3_2*f[19]*f[21]*f[67]*f[69])/U[4] + (3*cos2th*f_2_2*f[20]*f[22]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_3_2*f[20]*f[22]*f[68]*f[70])/(2.*U[4]) - (3*f_2_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[4]) - (3*f_3_2*sin2th*f[21]*f[22]*f[68]*f[70])/(2.*U[4]) + (3*f_2_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[4]) + (3*f_3_2*sin2th*f[20]*f[23]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_2_2*f[21]*f[23]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_3_2*f[21]*f[23]*f[68]*f[70])/(2.*U[4]) + (3*f_2_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[4]) + (3*f_3_2*sin2th*f[20]*f[22]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_2_2*f[21]*f[22]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_3_2*f[21]*f[22]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_2_2*f[20]*f[23]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_3_2*f[20]*f[23]*f[69]*f[70])/(2.*U[4]) + (3*f_2_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[4]) + (3*f_3_2*sin2th*f[21]*f[23]*f[69]*f[70])/(2.*U[4]) - (3*f_2_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[4]) - (3*f_3_2*sin2th*f[20]*f[22]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_2_2*f[21]*f[22]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_3_2*f[21]*f[22]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_2_2*f[20]*f[23]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_3_2*f[20]*f[23]*f[68]*f[71])/(2.*U[4]) - (3*f_2_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[4]) - (3*f_3_2*sin2th*f[21]*f[23]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_2_2*f[20]*f[22]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_3_2*f[20]*f[22]*f[69]*f[71])/(2.*U[4]) - (3*f_2_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[4]) - (3*f_3_2*sin2th*f[21]*f[22]*f[69]*f[71])/(2.*U[4]) + (3*f_2_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[4]) + (3*f_3_2*sin2th*f[20]*f[23]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_2_2*f[21]*f[23]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_3_2*f[21]*f[23]*f[69]*f[71])/(2.*U[4]) + (4*cos2th*f_2_2*f[22]*f[24]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_3_2*f[22]*f[24]*f[70]*f[72])/(3.*U[4]) - (4*f_2_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[4]) - (4*f_3_2*sin2th*f[23]*f[24]*f[70]*f[72])/(3.*U[4]) + (4*f_2_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[4]) + (4*f_3_2*sin2th*f[22]*f[25]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_2_2*f[23]*f[25]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_3_2*f[23]*f[25]*f[70]*f[72])/(3.*U[4]) + (4*f_2_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[4]) + (4*f_3_2*sin2th*f[22]*f[24]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_2_2*f[23]*f[24]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_3_2*f[23]*f[24]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_2_2*f[22]*f[25]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_3_2*f[22]*f[25]*f[71]*f[72])/(3.*U[4]) + (4*f_2_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[4]) + (4*f_3_2*sin2th*f[23]*f[25]*f[71]*f[72])/(3.*U[4]) - (4*f_2_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[4]) - (4*f_3_2*sin2th*f[22]*f[24]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_2_2*f[23]*f[24]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_3_2*f[23]*f[24]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_2_2*f[22]*f[25]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_3_2*f[22]*f[25]*f[70]*f[73])/(3.*U[4]) - (4*f_2_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[4]) - (4*f_3_2*sin2th*f[23]*f[25]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_2_2*f[22]*f[24]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_3_2*f[22]*f[24]*f[71]*f[73])/(3.*U[4]) - (4*f_2_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[4]) - (4*f_3_2*sin2th*f[23]*f[24]*f[71]*f[73])/(3.*U[4]) + (4*f_2_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[4]) + (4*f_3_2*sin2th*f[22]*f[25]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_2_2*f[23]*f[25]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_3_2*f[23]*f[25]*f[71]*f[73])/(3.*U[4]) + (5*cos2th*f_2_2*f[24]*f[26]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_3_2*f[24]*f[26]*f[72]*f[74])/(4.*U[4]) - (5*f_2_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[4]) - (5*f_3_2*sin2th*f[25]*f[26]*f[72]*f[74])/(4.*U[4]) + (5*f_2_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[4]) + (5*f_3_2*sin2th*f[24]*f[27]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_2_2*f[25]*f[27]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_3_2*f[25]*f[27]*f[72]*f[74])/(4.*U[4]) + (5*f_2_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[4]) + (5*f_3_2*sin2th*f[24]*f[26]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_2_2*f[25]*f[26]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_3_2*f[25]*f[26]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_2_2*f[24]*f[27]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_3_2*f[24]*f[27]*f[73]*f[74])/(4.*U[4]) + (5*f_2_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[4]) + (5*f_3_2*sin2th*f[25]*f[27]*f[73]*f[74])/(4.*U[4]) - (5*f_2_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[4]) - (5*f_3_2*sin2th*f[24]*f[26]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_2_2*f[25]*f[26]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_3_2*f[25]*f[26]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_2_2*f[24]*f[27]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_3_2*f[24]*f[27]*f[72]*f[75])/(4.*U[4]) - (5*f_2_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[4]) - (5*f_3_2*sin2th*f[25]*f[27]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_2_2*f[24]*f[26]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_3_2*f[24]*f[26]*f[73]*f[75])/(4.*U[4]) - (5*f_2_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[4]) - (5*f_3_2*sin2th*f[25]*f[26]*f[73]*f[75])/(4.*U[4]) + (5*f_2_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[4]) + (5*f_3_2*sin2th*f[24]*f[27]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_2_2*f[25]*f[27]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_3_2*f[25]*f[27]*f[73]*f[75])/(4.*U[4]) + (6*cos2th*f_2_2*f[26]*f[28]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_3_2*f[26]*f[28]*f[74]*f[76])/(5.*U[4]) - (6*f_2_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[4]) - (6*f_3_2*sin2th*f[27]*f[28]*f[74]*f[76])/(5.*U[4]) + (6*f_2_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[4]) + (6*f_3_2*sin2th*f[26]*f[29]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_2_2*f[27]*f[29]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_3_2*f[27]*f[29]*f[74]*f[76])/(5.*U[4]) + (6*f_2_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[4]) + (6*f_3_2*sin2th*f[26]*f[28]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_2_2*f[27]*f[28]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_3_2*f[27]*f[28]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_2_2*f[26]*f[29]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_3_2*f[26]*f[29]*f[75]*f[76])/(5.*U[4]) + (6*f_2_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[4]) + (6*f_3_2*sin2th*f[27]*f[29]*f[75]*f[76])/(5.*U[4]) - (6*f_2_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[4]) - (6*f_3_2*sin2th*f[26]*f[28]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_2_2*f[27]*f[28]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_3_2*f[27]*f[28]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_2_2*f[26]*f[29]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_3_2*f[26]*f[29]*f[74]*f[77])/(5.*U[4]) - (6*f_2_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[4]) - (6*f_3_2*sin2th*f[27]*f[29]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_2_2*f[26]*f[28]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_3_2*f[26]*f[28]*f[75]*f[77])/(5.*U[4]) - (6*f_2_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[4]) - (6*f_3_2*sin2th*f[27]*f[28]*f[75]*f[77])/(5.*U[4]) + (6*f_2_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[4]) + (6*f_3_2*sin2th*f[26]*f[29]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_2_2*f[27]*f[29]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_3_2*f[27]*f[29]*f[75]*f[77])/(5.*U[4]) + (7*cos2th*f_2_2*f[28]*f[30]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_3_2*f[28]*f[30]*f[76]*f[78])/(6.*U[4]) - (7*f_2_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[4]) - (7*f_3_2*sin2th*f[29]*f[30]*f[76]*f[78])/(6.*U[4]) + (7*f_2_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[4]) + (7*f_3_2*sin2th*f[28]*f[31]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_2_2*f[29]*f[31]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_3_2*f[29]*f[31]*f[76]*f[78])/(6.*U[4]) + (7*f_2_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[4]) + (7*f_3_2*sin2th*f[28]*f[30]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_2_2*f[29]*f[30]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_3_2*f[29]*f[30]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_2_2*f[28]*f[31]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_3_2*f[28]*f[31]*f[77]*f[78])/(6.*U[4]) + (7*f_2_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[4]) + (7*f_3_2*sin2th*f[29]*f[31]*f[77]*f[78])/(6.*U[4]) - (7*f_2_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[4]) - (7*f_3_2*sin2th*f[28]*f[30]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_2_2*f[29]*f[30]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_3_2*f[29]*f[30]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_2_2*f[28]*f[31]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_3_2*f[28]*f[31]*f[76]*f[79])/(6.*U[4]) - (7*f_2_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[4]) - (7*f_3_2*sin2th*f[29]*f[31]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_2_2*f[28]*f[30]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_3_2*f[28]*f[30]*f[77]*f[79])/(6.*U[4]) - (7*f_2_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[4]) - (7*f_3_2*sin2th*f[29]*f[30]*f[77]*f[79])/(6.*U[4]) + (7*f_2_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[4]) + (7*f_3_2*sin2th*f[28]*f[31]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_2_2*f[29]*f[31]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_3_2*f[29]*f[31]*f[77]*f[79])/(6.*U[4]) + (14*cos2th*f_14_2*f[18]*f[20]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_15_2*f[18]*f[20]*f[66]*f[68])/(-6*U[0] + U[4]) - (14*f_14_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-6*U[0] + U[4]) - (14*f_15_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*f_14_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*f_15_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_14_2*f[19]*f[21]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_15_2*f[19]*f[21]*f[66]*f[68])/(-6*U[0] + U[4]) + (14*f_14_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*f_15_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_14_2*f[19]*f[20]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*cos2th*f_15_2*f[19]*f[20]*f[67]*f[68])/(-6*U[0] + U[4]) - (14*cos2th*f_14_2*f[18]*f[21]*f[67]*f[68])/(-6*U[0] + U[4]) - (14*cos2th*f_15_2*f[18]*f[21]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*f_14_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-6*U[0] + U[4]) + (14*f_15_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-6*U[0] + U[4]) - (14*f_14_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*f_15_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*cos2th*f_14_2*f[19]*f[20]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*cos2th*f_15_2*f[19]*f[20]*f[66]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_14_2*f[18]*f[21]*f[66]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_15_2*f[18]*f[21]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*f_14_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-6*U[0] + U[4]) - (14*f_15_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_14_2*f[18]*f[20]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_15_2*f[18]*f[20]*f[67]*f[69])/(-6*U[0] + U[4]) - (14*f_14_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-6*U[0] + U[4]) - (14*f_15_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*f_14_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*f_15_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_14_2*f[19]*f[21]*f[67]*f[69])/(-6*U[0] + U[4]) + (14*cos2th*f_15_2*f[19]*f[21]*f[67]*f[69])/(-6*U[0] + U[4]) + (12*cos2th*f_12_2*f[18]*f[20]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_13_2*f[18]*f[20]*f[66]*f[68])/(-5*U[0] + U[4]) - (12*f_12_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-5*U[0] + U[4]) - (12*f_13_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*f_12_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*f_13_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_12_2*f[19]*f[21]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_13_2*f[19]*f[21]*f[66]*f[68])/(-5*U[0] + U[4]) + (12*f_12_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*f_13_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_12_2*f[19]*f[20]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*cos2th*f_13_2*f[19]*f[20]*f[67]*f[68])/(-5*U[0] + U[4]) - (12*cos2th*f_12_2*f[18]*f[21]*f[67]*f[68])/(-5*U[0] + U[4]) - (12*cos2th*f_13_2*f[18]*f[21]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*f_12_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-5*U[0] + U[4]) + (12*f_13_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-5*U[0] + U[4]) - (12*f_12_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*f_13_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*cos2th*f_12_2*f[19]*f[20]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*cos2th*f_13_2*f[19]*f[20]*f[66]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_12_2*f[18]*f[21]*f[66]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_13_2*f[18]*f[21]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*f_12_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-5*U[0] + U[4]) - (12*f_13_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_12_2*f[18]*f[20]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_13_2*f[18]*f[20]*f[67]*f[69])/(-5*U[0] + U[4]) - (12*f_12_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-5*U[0] + U[4]) - (12*f_13_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*f_12_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*f_13_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_12_2*f[19]*f[21]*f[67]*f[69])/(-5*U[0] + U[4]) + (12*cos2th*f_13_2*f[19]*f[21]*f[67]*f[69])/(-5*U[0] + U[4]) + (10*cos2th*f_10_2*f[18]*f[20]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_11_2*f[18]*f[20]*f[66]*f[68])/(-4*U[0] + U[4]) - (10*f_10_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-4*U[0] + U[4]) - (10*f_11_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*f_10_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*f_11_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_10_2*f[19]*f[21]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_11_2*f[19]*f[21]*f[66]*f[68])/(-4*U[0] + U[4]) + (10*f_10_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*f_11_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_10_2*f[19]*f[20]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*cos2th*f_11_2*f[19]*f[20]*f[67]*f[68])/(-4*U[0] + U[4]) - (10*cos2th*f_10_2*f[18]*f[21]*f[67]*f[68])/(-4*U[0] + U[4]) - (10*cos2th*f_11_2*f[18]*f[21]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*f_10_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-4*U[0] + U[4]) + (10*f_11_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-4*U[0] + U[4]) - (10*f_10_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*f_11_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*cos2th*f_10_2*f[19]*f[20]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*cos2th*f_11_2*f[19]*f[20]*f[66]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_10_2*f[18]*f[21]*f[66]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_11_2*f[18]*f[21]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*f_10_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-4*U[0] + U[4]) - (10*f_11_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_10_2*f[18]*f[20]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_11_2*f[18]*f[20]*f[67]*f[69])/(-4*U[0] + U[4]) - (10*f_10_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-4*U[0] + U[4]) - (10*f_11_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*f_10_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*f_11_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_10_2*f[19]*f[21]*f[67]*f[69])/(-4*U[0] + U[4]) + (10*cos2th*f_11_2*f[19]*f[21]*f[67]*f[69])/(-4*U[0] + U[4]) + (8*cos2th*f_8_2*f[18]*f[20]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_9_2*f[18]*f[20]*f[66]*f[68])/(-3*U[0] + U[4]) - (8*f_8_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-3*U[0] + U[4]) - (8*f_9_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*f_8_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*f_9_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_8_2*f[19]*f[21]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_9_2*f[19]*f[21]*f[66]*f[68])/(-3*U[0] + U[4]) + (8*f_8_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*f_9_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_8_2*f[19]*f[20]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*cos2th*f_9_2*f[19]*f[20]*f[67]*f[68])/(-3*U[0] + U[4]) - (8*cos2th*f_8_2*f[18]*f[21]*f[67]*f[68])/(-3*U[0] + U[4]) - (8*cos2th*f_9_2*f[18]*f[21]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*f_8_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-3*U[0] + U[4]) + (8*f_9_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-3*U[0] + U[4]) - (8*f_8_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*f_9_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*cos2th*f_8_2*f[19]*f[20]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*cos2th*f_9_2*f[19]*f[20]*f[66]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_8_2*f[18]*f[21]*f[66]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_9_2*f[18]*f[21]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*f_8_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-3*U[0] + U[4]) - (8*f_9_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_8_2*f[18]*f[20]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_9_2*f[18]*f[20]*f[67]*f[69])/(-3*U[0] + U[4]) - (8*f_8_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-3*U[0] + U[4]) - (8*f_9_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*f_8_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*f_9_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_8_2*f[19]*f[21]*f[67]*f[69])/(-3*U[0] + U[4]) + (8*cos2th*f_9_2*f[19]*f[21]*f[67]*f[69])/(-3*U[0] + U[4]) + (6*cos2th*f_6_2*f[18]*f[20]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_7_2*f[18]*f[20]*f[66]*f[68])/(-2*U[0] + U[4]) - (6*f_6_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-2*U[0] + U[4]) - (6*f_7_2*sin2th*f[19]*f[20]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*f_6_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*f_7_2*sin2th*f[18]*f[21]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_6_2*f[19]*f[21]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_7_2*f[19]*f[21]*f[66]*f[68])/(-2*U[0] + U[4]) + (6*f_6_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*f_7_2*sin2th*f[18]*f[20]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_6_2*f[19]*f[20]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*cos2th*f_7_2*f[19]*f[20]*f[67]*f[68])/(-2*U[0] + U[4]) - (6*cos2th*f_6_2*f[18]*f[21]*f[67]*f[68])/(-2*U[0] + U[4]) - (6*cos2th*f_7_2*f[18]*f[21]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*f_6_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-2*U[0] + U[4]) + (6*f_7_2*sin2th*f[19]*f[21]*f[67]*f[68])/(-2*U[0] + U[4]) - (6*f_6_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*f_7_2*sin2th*f[18]*f[20]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*cos2th*f_6_2*f[19]*f[20]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*cos2th*f_7_2*f[19]*f[20]*f[66]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_6_2*f[18]*f[21]*f[66]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_7_2*f[18]*f[21]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*f_6_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-2*U[0] + U[4]) - (6*f_7_2*sin2th*f[19]*f[21]*f[66]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_6_2*f[18]*f[20]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_7_2*f[18]*f[20]*f[67]*f[69])/(-2*U[0] + U[4]) - (6*f_6_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-2*U[0] + U[4]) - (6*f_7_2*sin2th*f[19]*f[20]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*f_6_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*f_7_2*sin2th*f[18]*f[21]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_6_2*f[19]*f[21]*f[67]*f[69])/(-2*U[0] + U[4]) + (6*cos2th*f_7_2*f[19]*f[21]*f[67]*f[69])/(-2*U[0] + U[4]) + (21*cos2th*f_14_2*f[20]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_15_2*f[20]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[4]) - (21*f_14_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[4]) - (21*f_15_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_14_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_15_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_14_2*f[21]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_15_2*f[21]*f[23]*f[68]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_14_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_15_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_14_2*f[21]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_15_2*f[21]*f[22]*f[69]*f[70])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_14_2*f[20]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_15_2*f[20]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_14_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[4]) + (21*f_15_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-6*U[0] + 2*U[4]) - (21*f_14_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_15_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_14_2*f[21]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*cos2th*f_15_2*f[21]*f[22]*f[68]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_14_2*f[20]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_15_2*f[20]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_14_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_15_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_14_2*f[20]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_15_2*f[20]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_14_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[4]) - (21*f_15_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*f_14_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*f_15_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_14_2*f[21]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (21*cos2th*f_15_2*f[21]*f[23]*f[69]*f[71])/(-6*U[0] + 2*U[4]) + (18*cos2th*f_12_2*f[20]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_13_2*f[20]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[4]) - (18*f_12_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[4]) - (18*f_13_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_12_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_13_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_12_2*f[21]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_13_2*f[21]*f[23]*f[68]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_12_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_13_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_12_2*f[21]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_13_2*f[21]*f[22]*f[69]*f[70])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_12_2*f[20]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_13_2*f[20]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_12_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[4]) + (18*f_13_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-5*U[0] + 2*U[4]) - (18*f_12_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_13_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_12_2*f[21]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*cos2th*f_13_2*f[21]*f[22]*f[68]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_12_2*f[20]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_13_2*f[20]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_12_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_13_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_12_2*f[20]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_13_2*f[20]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_12_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[4]) - (18*f_13_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*f_12_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*f_13_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_12_2*f[21]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (18*cos2th*f_13_2*f[21]*f[23]*f[69]*f[71])/(-5*U[0] + 2*U[4]) + (15*cos2th*f_10_2*f[20]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_11_2*f[20]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[4]) - (15*f_10_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[4]) - (15*f_11_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_10_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_11_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_10_2*f[21]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_11_2*f[21]*f[23]*f[68]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_10_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_11_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_10_2*f[21]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_11_2*f[21]*f[22]*f[69]*f[70])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_10_2*f[20]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_11_2*f[20]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_10_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[4]) + (15*f_11_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-4*U[0] + 2*U[4]) - (15*f_10_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_11_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_10_2*f[21]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*cos2th*f_11_2*f[21]*f[22]*f[68]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_10_2*f[20]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_11_2*f[20]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_10_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_11_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_10_2*f[20]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_11_2*f[20]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_10_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[4]) - (15*f_11_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*f_10_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*f_11_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_10_2*f[21]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (15*cos2th*f_11_2*f[21]*f[23]*f[69]*f[71])/(-4*U[0] + 2*U[4]) + (12*cos2th*f_8_2*f[20]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_9_2*f[20]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[4]) - (12*f_8_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[4]) - (12*f_9_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_8_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_9_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_8_2*f[21]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_9_2*f[21]*f[23]*f[68]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_8_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_9_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_8_2*f[21]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_9_2*f[21]*f[22]*f[69]*f[70])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_8_2*f[20]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_9_2*f[20]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_8_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[4]) + (12*f_9_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-3*U[0] + 2*U[4]) - (12*f_8_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_9_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_8_2*f[21]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*cos2th*f_9_2*f[21]*f[22]*f[68]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_8_2*f[20]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_9_2*f[20]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_8_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_9_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_8_2*f[20]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_9_2*f[20]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_8_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[4]) - (12*f_9_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*f_8_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*f_9_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_8_2*f[21]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (12*cos2th*f_9_2*f[21]*f[23]*f[69]*f[71])/(-3*U[0] + 2*U[4]) + (6*cos2th*f_4_2*f[20]*f[22]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_5_2*f[20]*f[22]*f[68]*f[70])/(-U[0] + 2*U[4]) - (6*f_4_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-U[0] + 2*U[4]) - (6*f_5_2*sin2th*f[21]*f[22]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*f_4_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*f_5_2*sin2th*f[20]*f[23]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_4_2*f[21]*f[23]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_5_2*f[21]*f[23]*f[68]*f[70])/(-U[0] + 2*U[4]) + (6*f_4_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*f_5_2*sin2th*f[20]*f[22]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_4_2*f[21]*f[22]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*cos2th*f_5_2*f[21]*f[22]*f[69]*f[70])/(-U[0] + 2*U[4]) - (6*cos2th*f_4_2*f[20]*f[23]*f[69]*f[70])/(-U[0] + 2*U[4]) - (6*cos2th*f_5_2*f[20]*f[23]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*f_4_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-U[0] + 2*U[4]) + (6*f_5_2*sin2th*f[21]*f[23]*f[69]*f[70])/(-U[0] + 2*U[4]) - (6*f_4_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*f_5_2*sin2th*f[20]*f[22]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*cos2th*f_4_2*f[21]*f[22]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*cos2th*f_5_2*f[21]*f[22]*f[68]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_4_2*f[20]*f[23]*f[68]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_5_2*f[20]*f[23]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*f_4_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-U[0] + 2*U[4]) - (6*f_5_2*sin2th*f[21]*f[23]*f[68]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_4_2*f[20]*f[22]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_5_2*f[20]*f[22]*f[69]*f[71])/(-U[0] + 2*U[4]) - (6*f_4_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-U[0] + 2*U[4]) - (6*f_5_2*sin2th*f[21]*f[22]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*f_4_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*f_5_2*sin2th*f[20]*f[23]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_4_2*f[21]*f[23]*f[69]*f[71])/(-U[0] + 2*U[4]) + (6*cos2th*f_5_2*f[21]*f[23]*f[69]*f[71])/(-U[0] + 2*U[4]) + (28*cos2th*f_14_2*f[22]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_15_2*f[22]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[4]) - (28*f_14_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[4]) - (28*f_15_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_14_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_15_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_14_2*f[23]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_15_2*f[23]*f[25]*f[70]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_14_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_15_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_14_2*f[23]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_15_2*f[23]*f[24]*f[71]*f[72])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_14_2*f[22]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_15_2*f[22]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_14_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[4]) + (28*f_15_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-6*U[0] + 3*U[4]) - (28*f_14_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_15_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_14_2*f[23]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*cos2th*f_15_2*f[23]*f[24]*f[70]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_14_2*f[22]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_15_2*f[22]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_14_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_15_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_14_2*f[22]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_15_2*f[22]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_14_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[4]) - (28*f_15_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*f_14_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*f_15_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_14_2*f[23]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (28*cos2th*f_15_2*f[23]*f[25]*f[71]*f[73])/(-6*U[0] + 3*U[4]) + (24*cos2th*f_12_2*f[22]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_13_2*f[22]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[4]) - (24*f_12_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[4]) - (24*f_13_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_12_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_13_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_12_2*f[23]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_13_2*f[23]*f[25]*f[70]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_12_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_13_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_12_2*f[23]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_13_2*f[23]*f[24]*f[71]*f[72])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_12_2*f[22]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_13_2*f[22]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_12_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[4]) + (24*f_13_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-5*U[0] + 3*U[4]) - (24*f_12_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_13_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_12_2*f[23]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*cos2th*f_13_2*f[23]*f[24]*f[70]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_12_2*f[22]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_13_2*f[22]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_12_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_13_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_12_2*f[22]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_13_2*f[22]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_12_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[4]) - (24*f_13_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*f_12_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*f_13_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_12_2*f[23]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (24*cos2th*f_13_2*f[23]*f[25]*f[71]*f[73])/(-5*U[0] + 3*U[4]) + (20*cos2th*f_10_2*f[22]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_11_2*f[22]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[4]) - (20*f_10_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[4]) - (20*f_11_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_10_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_11_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_10_2*f[23]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_11_2*f[23]*f[25]*f[70]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_10_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_11_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_10_2*f[23]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_11_2*f[23]*f[24]*f[71]*f[72])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_10_2*f[22]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_11_2*f[22]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_10_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[4]) + (20*f_11_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-4*U[0] + 3*U[4]) - (20*f_10_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_11_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_10_2*f[23]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*cos2th*f_11_2*f[23]*f[24]*f[70]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_10_2*f[22]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_11_2*f[22]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_10_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_11_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_10_2*f[22]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_11_2*f[22]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_10_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[4]) - (20*f_11_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*f_10_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*f_11_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_10_2*f[23]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (20*cos2th*f_11_2*f[23]*f[25]*f[71]*f[73])/(-4*U[0] + 3*U[4]) + (12*cos2th*f_6_2*f[22]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_7_2*f[22]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[4]) - (12*f_6_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[4]) - (12*f_7_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_6_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_7_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_6_2*f[23]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_7_2*f[23]*f[25]*f[70]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_6_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_7_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_6_2*f[23]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_7_2*f[23]*f[24]*f[71]*f[72])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_6_2*f[22]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_7_2*f[22]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_6_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[4]) + (12*f_7_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-2*U[0] + 3*U[4]) - (12*f_6_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_7_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_6_2*f[23]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*cos2th*f_7_2*f[23]*f[24]*f[70]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_6_2*f[22]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_7_2*f[22]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_6_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_7_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_6_2*f[22]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_7_2*f[22]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_6_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[4]) - (12*f_7_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*f_6_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*f_7_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_6_2*f[23]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (12*cos2th*f_7_2*f[23]*f[25]*f[71]*f[73])/(-2*U[0] + 3*U[4]) + (8*cos2th*f_4_2*f[22]*f[24]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_5_2*f[22]*f[24]*f[70]*f[72])/(-U[0] + 3*U[4]) - (8*f_4_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-U[0] + 3*U[4]) - (8*f_5_2*sin2th*f[23]*f[24]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*f_4_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*f_5_2*sin2th*f[22]*f[25]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_4_2*f[23]*f[25]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_5_2*f[23]*f[25]*f[70]*f[72])/(-U[0] + 3*U[4]) + (8*f_4_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*f_5_2*sin2th*f[22]*f[24]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_4_2*f[23]*f[24]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*cos2th*f_5_2*f[23]*f[24]*f[71]*f[72])/(-U[0] + 3*U[4]) - (8*cos2th*f_4_2*f[22]*f[25]*f[71]*f[72])/(-U[0] + 3*U[4]) - (8*cos2th*f_5_2*f[22]*f[25]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*f_4_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-U[0] + 3*U[4]) + (8*f_5_2*sin2th*f[23]*f[25]*f[71]*f[72])/(-U[0] + 3*U[4]) - (8*f_4_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*f_5_2*sin2th*f[22]*f[24]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*cos2th*f_4_2*f[23]*f[24]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*cos2th*f_5_2*f[23]*f[24]*f[70]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_4_2*f[22]*f[25]*f[70]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_5_2*f[22]*f[25]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*f_4_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-U[0] + 3*U[4]) - (8*f_5_2*sin2th*f[23]*f[25]*f[70]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_4_2*f[22]*f[24]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_5_2*f[22]*f[24]*f[71]*f[73])/(-U[0] + 3*U[4]) - (8*f_4_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-U[0] + 3*U[4]) - (8*f_5_2*sin2th*f[23]*f[24]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*f_4_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*f_5_2*sin2th*f[22]*f[25]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_4_2*f[23]*f[25]*f[71]*f[73])/(-U[0] + 3*U[4]) + (8*cos2th*f_5_2*f[23]*f[25]*f[71]*f[73])/(-U[0] + 3*U[4]) + (35*cos2th*f_14_2*f[24]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_15_2*f[24]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[4]) - (35*f_14_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[4]) - (35*f_15_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_14_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_15_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_14_2*f[25]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_15_2*f[25]*f[27]*f[72]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_14_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_15_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_14_2*f[25]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_15_2*f[25]*f[26]*f[73]*f[74])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_14_2*f[24]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_15_2*f[24]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_14_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[4]) + (35*f_15_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-6*U[0] + 4*U[4]) - (35*f_14_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_15_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_14_2*f[25]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*cos2th*f_15_2*f[25]*f[26]*f[72]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_14_2*f[24]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_15_2*f[24]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_14_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_15_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_14_2*f[24]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_15_2*f[24]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_14_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[4]) - (35*f_15_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*f_14_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*f_15_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_14_2*f[25]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (35*cos2th*f_15_2*f[25]*f[27]*f[73]*f[75])/(-6*U[0] + 4*U[4]) + (30*cos2th*f_12_2*f[24]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_13_2*f[24]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[4]) - (30*f_12_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[4]) - (30*f_13_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_12_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_13_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_12_2*f[25]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_13_2*f[25]*f[27]*f[72]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_12_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_13_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_12_2*f[25]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_13_2*f[25]*f[26]*f[73]*f[74])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_12_2*f[24]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_13_2*f[24]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_12_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[4]) + (30*f_13_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-5*U[0] + 4*U[4]) - (30*f_12_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_13_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_12_2*f[25]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*cos2th*f_13_2*f[25]*f[26]*f[72]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_12_2*f[24]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_13_2*f[24]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_12_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_13_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_12_2*f[24]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_13_2*f[24]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_12_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[4]) - (30*f_13_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*f_12_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*f_13_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_12_2*f[25]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (30*cos2th*f_13_2*f[25]*f[27]*f[73]*f[75])/(-5*U[0] + 4*U[4]) + (20*cos2th*f_8_2*f[24]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_9_2*f[24]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[4]) - (20*f_8_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[4]) - (20*f_9_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_8_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_9_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_8_2*f[25]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_9_2*f[25]*f[27]*f[72]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_8_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_9_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_8_2*f[25]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_9_2*f[25]*f[26]*f[73]*f[74])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_8_2*f[24]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_9_2*f[24]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_8_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[4]) + (20*f_9_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-3*U[0] + 4*U[4]) - (20*f_8_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_9_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_8_2*f[25]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*cos2th*f_9_2*f[25]*f[26]*f[72]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_8_2*f[24]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_9_2*f[24]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_8_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_9_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_8_2*f[24]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_9_2*f[24]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_8_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[4]) - (20*f_9_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*f_8_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*f_9_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_8_2*f[25]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (20*cos2th*f_9_2*f[25]*f[27]*f[73]*f[75])/(-3*U[0] + 4*U[4]) + (15*cos2th*f_6_2*f[24]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_7_2*f[24]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[4]) - (15*f_6_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[4]) - (15*f_7_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_6_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_7_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_6_2*f[25]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_7_2*f[25]*f[27]*f[72]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_6_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_7_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_6_2*f[25]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_7_2*f[25]*f[26]*f[73]*f[74])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_6_2*f[24]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_7_2*f[24]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_6_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[4]) + (15*f_7_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-2*U[0] + 4*U[4]) - (15*f_6_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_7_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_6_2*f[25]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*cos2th*f_7_2*f[25]*f[26]*f[72]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_6_2*f[24]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_7_2*f[24]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_6_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_7_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_6_2*f[24]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_7_2*f[24]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_6_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[4]) - (15*f_7_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*f_6_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*f_7_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_6_2*f[25]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (15*cos2th*f_7_2*f[25]*f[27]*f[73]*f[75])/(-2*U[0] + 4*U[4]) + (10*cos2th*f_4_2*f[24]*f[26]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_5_2*f[24]*f[26]*f[72]*f[74])/(-U[0] + 4*U[4]) - (10*f_4_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-U[0] + 4*U[4]) - (10*f_5_2*sin2th*f[25]*f[26]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*f_4_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*f_5_2*sin2th*f[24]*f[27]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_4_2*f[25]*f[27]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_5_2*f[25]*f[27]*f[72]*f[74])/(-U[0] + 4*U[4]) + (10*f_4_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*f_5_2*sin2th*f[24]*f[26]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_4_2*f[25]*f[26]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*cos2th*f_5_2*f[25]*f[26]*f[73]*f[74])/(-U[0] + 4*U[4]) - (10*cos2th*f_4_2*f[24]*f[27]*f[73]*f[74])/(-U[0] + 4*U[4]) - (10*cos2th*f_5_2*f[24]*f[27]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*f_4_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-U[0] + 4*U[4]) + (10*f_5_2*sin2th*f[25]*f[27]*f[73]*f[74])/(-U[0] + 4*U[4]) - (10*f_4_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*f_5_2*sin2th*f[24]*f[26]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*cos2th*f_4_2*f[25]*f[26]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*cos2th*f_5_2*f[25]*f[26]*f[72]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_4_2*f[24]*f[27]*f[72]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_5_2*f[24]*f[27]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*f_4_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-U[0] + 4*U[4]) - (10*f_5_2*sin2th*f[25]*f[27]*f[72]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_4_2*f[24]*f[26]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_5_2*f[24]*f[26]*f[73]*f[75])/(-U[0] + 4*U[4]) - (10*f_4_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-U[0] + 4*U[4]) - (10*f_5_2*sin2th*f[25]*f[26]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*f_4_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*f_5_2*sin2th*f[24]*f[27]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_4_2*f[25]*f[27]*f[73]*f[75])/(-U[0] + 4*U[4]) + (10*cos2th*f_5_2*f[25]*f[27]*f[73]*f[75])/(-U[0] + 4*U[4]) + (42*cos2th*f_14_2*f[26]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_15_2*f[26]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[4]) - (42*f_14_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[4]) - (42*f_15_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_14_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_15_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_14_2*f[27]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_15_2*f[27]*f[29]*f[74]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_14_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_15_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_14_2*f[27]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_15_2*f[27]*f[28]*f[75]*f[76])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_14_2*f[26]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_15_2*f[26]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_14_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[4]) + (42*f_15_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-6*U[0] + 5*U[4]) - (42*f_14_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_15_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_14_2*f[27]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*cos2th*f_15_2*f[27]*f[28]*f[74]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_14_2*f[26]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_15_2*f[26]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_14_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_15_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_14_2*f[26]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_15_2*f[26]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_14_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[4]) - (42*f_15_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*f_14_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*f_15_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_14_2*f[27]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (42*cos2th*f_15_2*f[27]*f[29]*f[75]*f[77])/(-6*U[0] + 5*U[4]) + (30*cos2th*f_10_2*f[26]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_11_2*f[26]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[4]) - (30*f_10_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[4]) - (30*f_11_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_10_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_11_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_10_2*f[27]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_11_2*f[27]*f[29]*f[74]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_10_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_11_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_10_2*f[27]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_11_2*f[27]*f[28]*f[75]*f[76])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_10_2*f[26]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_11_2*f[26]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_10_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[4]) + (30*f_11_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-4*U[0] + 5*U[4]) - (30*f_10_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_11_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_10_2*f[27]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*cos2th*f_11_2*f[27]*f[28]*f[74]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_10_2*f[26]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_11_2*f[26]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_10_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_11_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_10_2*f[26]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_11_2*f[26]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_10_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[4]) - (30*f_11_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*f_10_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*f_11_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_10_2*f[27]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (30*cos2th*f_11_2*f[27]*f[29]*f[75]*f[77])/(-4*U[0] + 5*U[4]) + (24*cos2th*f_8_2*f[26]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_9_2*f[26]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[4]) - (24*f_8_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[4]) - (24*f_9_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_8_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_9_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_8_2*f[27]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_9_2*f[27]*f[29]*f[74]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_8_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_9_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_8_2*f[27]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_9_2*f[27]*f[28]*f[75]*f[76])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_8_2*f[26]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_9_2*f[26]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_8_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[4]) + (24*f_9_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-3*U[0] + 5*U[4]) - (24*f_8_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_9_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_8_2*f[27]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*cos2th*f_9_2*f[27]*f[28]*f[74]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_8_2*f[26]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_9_2*f[26]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_8_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_9_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_8_2*f[26]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_9_2*f[26]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_8_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[4]) - (24*f_9_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*f_8_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*f_9_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_8_2*f[27]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (24*cos2th*f_9_2*f[27]*f[29]*f[75]*f[77])/(-3*U[0] + 5*U[4]) + (18*cos2th*f_6_2*f[26]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_7_2*f[26]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[4]) - (18*f_6_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[4]) - (18*f_7_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_6_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_7_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_6_2*f[27]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_7_2*f[27]*f[29]*f[74]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_6_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_7_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_6_2*f[27]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_7_2*f[27]*f[28]*f[75]*f[76])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_6_2*f[26]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_7_2*f[26]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_6_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[4]) + (18*f_7_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-2*U[0] + 5*U[4]) - (18*f_6_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_7_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_6_2*f[27]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*cos2th*f_7_2*f[27]*f[28]*f[74]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_6_2*f[26]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_7_2*f[26]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_6_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_7_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_6_2*f[26]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_7_2*f[26]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_6_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[4]) - (18*f_7_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*f_6_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*f_7_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_6_2*f[27]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (18*cos2th*f_7_2*f[27]*f[29]*f[75]*f[77])/(-2*U[0] + 5*U[4]) + (12*cos2th*f_4_2*f[26]*f[28]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_5_2*f[26]*f[28]*f[74]*f[76])/(-U[0] + 5*U[4]) - (12*f_4_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-U[0] + 5*U[4]) - (12*f_5_2*sin2th*f[27]*f[28]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*f_4_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*f_5_2*sin2th*f[26]*f[29]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_4_2*f[27]*f[29]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_5_2*f[27]*f[29]*f[74]*f[76])/(-U[0] + 5*U[4]) + (12*f_4_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*f_5_2*sin2th*f[26]*f[28]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_4_2*f[27]*f[28]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*cos2th*f_5_2*f[27]*f[28]*f[75]*f[76])/(-U[0] + 5*U[4]) - (12*cos2th*f_4_2*f[26]*f[29]*f[75]*f[76])/(-U[0] + 5*U[4]) - (12*cos2th*f_5_2*f[26]*f[29]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*f_4_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-U[0] + 5*U[4]) + (12*f_5_2*sin2th*f[27]*f[29]*f[75]*f[76])/(-U[0] + 5*U[4]) - (12*f_4_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*f_5_2*sin2th*f[26]*f[28]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*cos2th*f_4_2*f[27]*f[28]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*cos2th*f_5_2*f[27]*f[28]*f[74]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_4_2*f[26]*f[29]*f[74]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_5_2*f[26]*f[29]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*f_4_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-U[0] + 5*U[4]) - (12*f_5_2*sin2th*f[27]*f[29]*f[74]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_4_2*f[26]*f[28]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_5_2*f[26]*f[28]*f[75]*f[77])/(-U[0] + 5*U[4]) - (12*f_4_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-U[0] + 5*U[4]) - (12*f_5_2*sin2th*f[27]*f[28]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*f_4_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*f_5_2*sin2th*f[26]*f[29]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_4_2*f[27]*f[29]*f[75]*f[77])/(-U[0] + 5*U[4]) + (12*cos2th*f_5_2*f[27]*f[29]*f[75]*f[77])/(-U[0] + 5*U[4]) + (42*cos2th*f_12_2*f[28]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_13_2*f[28]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[4]) - (42*f_12_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[4]) - (42*f_13_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_12_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_13_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_12_2*f[29]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_13_2*f[29]*f[31]*f[76]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_12_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_13_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_12_2*f[29]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_13_2*f[29]*f[30]*f[77]*f[78])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_12_2*f[28]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_13_2*f[28]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_12_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[4]) + (42*f_13_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-5*U[0] + 6*U[4]) - (42*f_12_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_13_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_12_2*f[29]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*cos2th*f_13_2*f[29]*f[30]*f[76]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_12_2*f[28]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_13_2*f[28]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_12_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_13_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_12_2*f[28]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_13_2*f[28]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_12_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[4]) - (42*f_13_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*f_12_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*f_13_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_12_2*f[29]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (42*cos2th*f_13_2*f[29]*f[31]*f[77]*f[79])/(-5*U[0] + 6*U[4]) + (35*cos2th*f_10_2*f[28]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_11_2*f[28]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[4]) - (35*f_10_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[4]) - (35*f_11_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_10_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_11_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_10_2*f[29]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_11_2*f[29]*f[31]*f[76]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_10_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_11_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_10_2*f[29]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_11_2*f[29]*f[30]*f[77]*f[78])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_10_2*f[28]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_11_2*f[28]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_10_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[4]) + (35*f_11_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-4*U[0] + 6*U[4]) - (35*f_10_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_11_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_10_2*f[29]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*cos2th*f_11_2*f[29]*f[30]*f[76]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_10_2*f[28]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_11_2*f[28]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_10_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_11_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_10_2*f[28]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_11_2*f[28]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_10_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[4]) - (35*f_11_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*f_10_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*f_11_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_10_2*f[29]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (35*cos2th*f_11_2*f[29]*f[31]*f[77]*f[79])/(-4*U[0] + 6*U[4]) + (28*cos2th*f_8_2*f[28]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_9_2*f[28]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[4]) - (28*f_8_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[4]) - (28*f_9_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_8_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_9_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_8_2*f[29]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_9_2*f[29]*f[31]*f[76]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_8_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_9_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_8_2*f[29]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_9_2*f[29]*f[30]*f[77]*f[78])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_8_2*f[28]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_9_2*f[28]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_8_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[4]) + (28*f_9_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-3*U[0] + 6*U[4]) - (28*f_8_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_9_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_8_2*f[29]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*cos2th*f_9_2*f[29]*f[30]*f[76]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_8_2*f[28]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_9_2*f[28]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_8_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_9_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_8_2*f[28]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_9_2*f[28]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_8_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[4]) - (28*f_9_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*f_8_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*f_9_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_8_2*f[29]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (28*cos2th*f_9_2*f[29]*f[31]*f[77]*f[79])/(-3*U[0] + 6*U[4]) + (21*cos2th*f_6_2*f[28]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_7_2*f[28]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[4]) - (21*f_6_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[4]) - (21*f_7_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_6_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_7_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_6_2*f[29]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_7_2*f[29]*f[31]*f[76]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_6_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_7_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_6_2*f[29]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_7_2*f[29]*f[30]*f[77]*f[78])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_6_2*f[28]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_7_2*f[28]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_6_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[4]) + (21*f_7_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-2*U[0] + 6*U[4]) - (21*f_6_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_7_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_6_2*f[29]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*cos2th*f_7_2*f[29]*f[30]*f[76]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_6_2*f[28]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_7_2*f[28]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_6_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_7_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_6_2*f[28]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_7_2*f[28]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_6_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[4]) - (21*f_7_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*f_6_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*f_7_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_6_2*f[29]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (21*cos2th*f_7_2*f[29]*f[31]*f[77]*f[79])/(-2*U[0] + 6*U[4]) + (14*cos2th*f_4_2*f[28]*f[30]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_5_2*f[28]*f[30]*f[76]*f[78])/(-U[0] + 6*U[4]) - (14*f_4_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-U[0] + 6*U[4]) - (14*f_5_2*sin2th*f[29]*f[30]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*f_4_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*f_5_2*sin2th*f[28]*f[31]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_4_2*f[29]*f[31]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_5_2*f[29]*f[31]*f[76]*f[78])/(-U[0] + 6*U[4]) + (14*f_4_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*f_5_2*sin2th*f[28]*f[30]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_4_2*f[29]*f[30]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*cos2th*f_5_2*f[29]*f[30]*f[77]*f[78])/(-U[0] + 6*U[4]) - (14*cos2th*f_4_2*f[28]*f[31]*f[77]*f[78])/(-U[0] + 6*U[4]) - (14*cos2th*f_5_2*f[28]*f[31]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*f_4_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-U[0] + 6*U[4]) + (14*f_5_2*sin2th*f[29]*f[31]*f[77]*f[78])/(-U[0] + 6*U[4]) - (14*f_4_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*f_5_2*sin2th*f[28]*f[30]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*cos2th*f_4_2*f[29]*f[30]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*cos2th*f_5_2*f[29]*f[30]*f[76]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_4_2*f[28]*f[31]*f[76]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_5_2*f[28]*f[31]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*f_4_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-U[0] + 6*U[4]) - (14*f_5_2*sin2th*f[29]*f[31]*f[76]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_4_2*f[28]*f[30]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_5_2*f[28]*f[30]*f[77]*f[79])/(-U[0] + 6*U[4]) - (14*f_4_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-U[0] + 6*U[4]) - (14*f_5_2*sin2th*f[29]*f[30]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*f_4_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*f_5_2*sin2th*f[28]*f[31]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_4_2*f[29]*f[31]*f[77]*f[79])/(-U[0] + 6*U[4]) + (14*cos2th*f_5_2*f[29]*f[31]*f[77]*f[79])/(-U[0] + 6*U[4])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) - (J[3]*J[4]*((-2*cos2th*f_64_2*f[2]*f[4]*f[50]*f[52])/U[3] - (2*cos2th*f_65_2*f[2]*f[4]*f[50]*f[52])/U[3] + (2*f_64_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[3] + (2*f_65_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[3] - (2*f_64_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[3] - (2*f_65_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[3] - (2*cos2th*f_64_2*f[3]*f[5]*f[50]*f[52])/U[3] - (2*cos2th*f_65_2*f[3]*f[5]*f[50]*f[52])/U[3] - (2*f_64_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[3] - (2*f_65_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[3] - (2*cos2th*f_64_2*f[3]*f[4]*f[51]*f[52])/U[3] - (2*cos2th*f_65_2*f[3]*f[4]*f[51]*f[52])/U[3] + (2*cos2th*f_64_2*f[2]*f[5]*f[51]*f[52])/U[3] + (2*cos2th*f_65_2*f[2]*f[5]*f[51]*f[52])/U[3] - (2*f_64_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[3] - (2*f_65_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[3] + (2*f_64_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[3] + (2*f_65_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[3] + (2*cos2th*f_64_2*f[3]*f[4]*f[50]*f[53])/U[3] + (2*cos2th*f_65_2*f[3]*f[4]*f[50]*f[53])/U[3] - (2*cos2th*f_64_2*f[2]*f[5]*f[50]*f[53])/U[3] - (2*cos2th*f_65_2*f[2]*f[5]*f[50]*f[53])/U[3] + (2*f_64_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[3] + (2*f_65_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[3] - (2*cos2th*f_64_2*f[2]*f[4]*f[51]*f[53])/U[3] - (2*cos2th*f_65_2*f[2]*f[4]*f[51]*f[53])/U[3] + (2*f_64_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[3] + (2*f_65_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[3] - (2*f_64_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[3] - (2*f_65_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[3] - (2*cos2th*f_64_2*f[3]*f[5]*f[51]*f[53])/U[3] - (2*cos2th*f_65_2*f[3]*f[5]*f[51]*f[53])/U[3] - (3*cos2th*f_64_2*f[4]*f[6]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_65_2*f[4]*f[6]*f[52]*f[54])/(2.*U[3]) + (3*f_64_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[3]) + (3*f_65_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[3]) - (3*f_64_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[3]) - (3*f_65_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_64_2*f[5]*f[7]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_65_2*f[5]*f[7]*f[52]*f[54])/(2.*U[3]) - (3*f_64_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[3]) - (3*f_65_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_64_2*f[5]*f[6]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_65_2*f[5]*f[6]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_64_2*f[4]*f[7]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_65_2*f[4]*f[7]*f[53]*f[54])/(2.*U[3]) - (3*f_64_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[3]) - (3*f_65_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[3]) + (3*f_64_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[3]) + (3*f_65_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_64_2*f[5]*f[6]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_65_2*f[5]*f[6]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_64_2*f[4]*f[7]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_65_2*f[4]*f[7]*f[52]*f[55])/(2.*U[3]) + (3*f_64_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[3]) + (3*f_65_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_64_2*f[4]*f[6]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_65_2*f[4]*f[6]*f[53]*f[55])/(2.*U[3]) + (3*f_64_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[3]) + (3*f_65_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[3]) - (3*f_64_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[3]) - (3*f_65_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_64_2*f[5]*f[7]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_65_2*f[5]*f[7]*f[53]*f[55])/(2.*U[3]) - (4*cos2th*f_64_2*f[6]*f[8]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_65_2*f[6]*f[8]*f[54]*f[56])/(3.*U[3]) + (4*f_64_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[3]) + (4*f_65_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[3]) - (4*f_64_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[3]) - (4*f_65_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_64_2*f[7]*f[9]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_65_2*f[7]*f[9]*f[54]*f[56])/(3.*U[3]) - (4*f_64_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[3]) - (4*f_65_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_64_2*f[7]*f[8]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_65_2*f[7]*f[8]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_64_2*f[6]*f[9]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_65_2*f[6]*f[9]*f[55]*f[56])/(3.*U[3]) - (4*f_64_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[3]) - (4*f_65_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[3]) + (4*f_64_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[3]) + (4*f_65_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_64_2*f[7]*f[8]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_65_2*f[7]*f[8]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_64_2*f[6]*f[9]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_65_2*f[6]*f[9]*f[54]*f[57])/(3.*U[3]) + (4*f_64_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[3]) + (4*f_65_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_64_2*f[6]*f[8]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_65_2*f[6]*f[8]*f[55]*f[57])/(3.*U[3]) + (4*f_64_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[3]) + (4*f_65_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[3]) - (4*f_64_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[3]) - (4*f_65_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_64_2*f[7]*f[9]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_65_2*f[7]*f[9]*f[55]*f[57])/(3.*U[3]) - (5*cos2th*f_64_2*f[8]*f[10]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_65_2*f[8]*f[10]*f[56]*f[58])/(4.*U[3]) + (5*f_64_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[3]) + (5*f_65_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[3]) - (5*f_64_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[3]) - (5*f_65_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_64_2*f[9]*f[11]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_65_2*f[9]*f[11]*f[56]*f[58])/(4.*U[3]) - (5*f_64_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[3]) - (5*f_65_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_64_2*f[9]*f[10]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_65_2*f[9]*f[10]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_64_2*f[8]*f[11]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_65_2*f[8]*f[11]*f[57]*f[58])/(4.*U[3]) - (5*f_64_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[3]) - (5*f_65_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[3]) + (5*f_64_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[3]) + (5*f_65_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_64_2*f[9]*f[10]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_65_2*f[9]*f[10]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_64_2*f[8]*f[11]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_65_2*f[8]*f[11]*f[56]*f[59])/(4.*U[3]) + (5*f_64_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[3]) + (5*f_65_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_64_2*f[8]*f[10]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_65_2*f[8]*f[10]*f[57]*f[59])/(4.*U[3]) + (5*f_64_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[3]) + (5*f_65_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[3]) - (5*f_64_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[3]) - (5*f_65_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_64_2*f[9]*f[11]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_65_2*f[9]*f[11]*f[57]*f[59])/(4.*U[3]) - (6*cos2th*f_64_2*f[10]*f[12]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_65_2*f[10]*f[12]*f[58]*f[60])/(5.*U[3]) + (6*f_64_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[3]) + (6*f_65_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[3]) - (6*f_64_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[3]) - (6*f_65_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_64_2*f[11]*f[13]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_65_2*f[11]*f[13]*f[58]*f[60])/(5.*U[3]) - (6*f_64_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[3]) - (6*f_65_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_64_2*f[11]*f[12]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_65_2*f[11]*f[12]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_64_2*f[10]*f[13]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_65_2*f[10]*f[13]*f[59]*f[60])/(5.*U[3]) - (6*f_64_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[3]) - (6*f_65_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[3]) + (6*f_64_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[3]) + (6*f_65_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_64_2*f[11]*f[12]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_65_2*f[11]*f[12]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_64_2*f[10]*f[13]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_65_2*f[10]*f[13]*f[58]*f[61])/(5.*U[3]) + (6*f_64_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[3]) + (6*f_65_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_64_2*f[10]*f[12]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_65_2*f[10]*f[12]*f[59]*f[61])/(5.*U[3]) + (6*f_64_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[3]) + (6*f_65_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[3]) - (6*f_64_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[3]) - (6*f_65_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_64_2*f[11]*f[13]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_65_2*f[11]*f[13]*f[59]*f[61])/(5.*U[3]) - (7*cos2th*f_64_2*f[12]*f[14]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_65_2*f[12]*f[14]*f[60]*f[62])/(6.*U[3]) + (7*f_64_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[3]) + (7*f_65_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[3]) - (7*f_64_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[3]) - (7*f_65_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_64_2*f[13]*f[15]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_65_2*f[13]*f[15]*f[60]*f[62])/(6.*U[3]) - (7*f_64_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[3]) - (7*f_65_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_64_2*f[13]*f[14]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_65_2*f[13]*f[14]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_64_2*f[12]*f[15]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_65_2*f[12]*f[15]*f[61]*f[62])/(6.*U[3]) - (7*f_64_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[3]) - (7*f_65_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[3]) + (7*f_64_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[3]) + (7*f_65_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_64_2*f[13]*f[14]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_65_2*f[13]*f[14]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_64_2*f[12]*f[15]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_65_2*f[12]*f[15]*f[60]*f[63])/(6.*U[3]) + (7*f_64_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[3]) + (7*f_65_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_64_2*f[12]*f[14]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_65_2*f[12]*f[14]*f[61]*f[63])/(6.*U[3]) + (7*f_64_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[3]) + (7*f_65_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[3]) - (7*f_64_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[3]) - (7*f_65_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_64_2*f[13]*f[15]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_65_2*f[13]*f[15]*f[61]*f[63])/(6.*U[3]) + (2*cos2th*f_66_2*f[0]*f[2]*f[48]*f[50])/U[4] + (2*cos2th*f_67_2*f[0]*f[2]*f[48]*f[50])/U[4] + (3*cos2th*f_68_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) + (3*cos2th*f_69_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) + (4*cos2th*f_70_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) + (4*cos2th*f_71_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) + (5*cos2th*f_72_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) + (5*cos2th*f_73_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) + (6*cos2th*f_74_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) + (6*cos2th*f_75_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) + (7*cos2th*f_76_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) + (7*cos2th*f_77_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] - (2*f_67_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] - (3*f_68_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) - (3*f_69_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) - (4*f_70_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) - (4*f_71_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) - (5*f_72_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) - (5*f_73_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) - (6*f_74_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) - (6*f_75_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) - (7*f_76_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) - (7*f_77_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] + (2*f_67_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] + (3*f_68_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) + (3*f_69_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) + (4*f_70_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) + (4*f_71_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) + (5*f_72_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) + (5*f_73_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) + (6*f_74_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) + (6*f_75_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) + (7*f_76_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) + (7*f_77_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) + (2*cos2th*f_66_2*f[1]*f[3]*f[48]*f[50])/U[4] + (2*cos2th*f_67_2*f[1]*f[3]*f[48]*f[50])/U[4] + (3*cos2th*f_68_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) + (3*cos2th*f_69_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) + (4*cos2th*f_70_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) + (4*cos2th*f_71_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) + (5*cos2th*f_72_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) + (5*cos2th*f_73_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) + (6*cos2th*f_74_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) + (6*cos2th*f_75_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) + (7*cos2th*f_76_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) + (7*cos2th*f_77_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] + (2*f_67_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] + (3*f_68_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) + (3*f_69_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) + (4*f_70_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) + (4*f_71_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) + (5*f_72_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) + (5*f_73_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) + (6*f_74_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) + (6*f_75_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) + (7*f_76_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) + (7*f_77_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) + (2*cos2th*f_66_2*f[1]*f[2]*f[49]*f[50])/U[4] + (2*cos2th*f_67_2*f[1]*f[2]*f[49]*f[50])/U[4] + (3*cos2th*f_68_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) + (3*cos2th*f_69_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) + (4*cos2th*f_70_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) + (4*cos2th*f_71_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) + (5*cos2th*f_72_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) + (5*cos2th*f_73_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) + (6*cos2th*f_74_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) + (6*cos2th*f_75_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) + (7*cos2th*f_76_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) + (7*cos2th*f_77_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) - (2*cos2th*f_66_2*f[0]*f[3]*f[49]*f[50])/U[4] - (2*cos2th*f_67_2*f[0]*f[3]*f[49]*f[50])/U[4] - (3*cos2th*f_68_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) - (3*cos2th*f_69_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) - (4*cos2th*f_70_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) - (4*cos2th*f_71_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) - (5*cos2th*f_72_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) - (5*cos2th*f_73_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) - (6*cos2th*f_74_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) - (6*cos2th*f_75_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) - (7*cos2th*f_76_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) - (7*cos2th*f_77_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) + (2*f_66_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] + (2*f_67_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] + (3*f_68_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) + (3*f_69_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) + (4*f_70_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) + (4*f_71_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) + (5*f_72_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) + (5*f_73_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) + (6*f_74_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) + (6*f_75_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) + (7*f_76_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) + (7*f_77_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) - (2*f_66_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] - (2*f_67_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] - (3*f_68_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) - (3*f_69_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) - (4*f_70_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) - (4*f_71_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) - (5*f_72_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) - (5*f_73_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) - (6*f_74_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) - (6*f_75_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) - (7*f_76_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) - (7*f_77_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_66_2*f[1]*f[2]*f[48]*f[51])/U[4] - (2*cos2th*f_67_2*f[1]*f[2]*f[48]*f[51])/U[4] - (3*cos2th*f_68_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) - (3*cos2th*f_69_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) - (4*cos2th*f_70_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) - (4*cos2th*f_71_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) - (5*cos2th*f_72_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) - (5*cos2th*f_73_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) - (6*cos2th*f_74_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) - (6*cos2th*f_75_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) - (7*cos2th*f_76_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) - (7*cos2th*f_77_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_66_2*f[0]*f[3]*f[48]*f[51])/U[4] + (2*cos2th*f_67_2*f[0]*f[3]*f[48]*f[51])/U[4] + (3*cos2th*f_68_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) + (3*cos2th*f_69_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) + (4*cos2th*f_70_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) + (4*cos2th*f_71_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) + (5*cos2th*f_72_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) + (5*cos2th*f_73_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) + (6*cos2th*f_74_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) + (6*cos2th*f_75_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) + (7*cos2th*f_76_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) + (7*cos2th*f_77_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) - (2*f_66_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] - (2*f_67_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] - (3*f_68_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) - (3*f_69_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) - (4*f_70_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) - (4*f_71_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) - (5*f_72_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) - (5*f_73_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) - (6*f_74_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) - (6*f_75_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) - (7*f_76_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) - (7*f_77_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_66_2*f[0]*f[2]*f[49]*f[51])/U[4] + (2*cos2th*f_67_2*f[0]*f[2]*f[49]*f[51])/U[4] + (3*cos2th*f_68_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) + (3*cos2th*f_69_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) + (4*cos2th*f_70_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) + (4*cos2th*f_71_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) + (5*cos2th*f_72_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) + (5*cos2th*f_73_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) + (6*cos2th*f_74_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) + (6*cos2th*f_75_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) + (7*cos2th*f_76_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) + (7*cos2th*f_77_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) - (2*f_66_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] - (2*f_67_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] - (3*f_68_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) - (3*f_69_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) - (4*f_70_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) - (4*f_71_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) - (5*f_72_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) - (5*f_73_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) - (6*f_74_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) - (6*f_75_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) - (7*f_76_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) - (7*f_77_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) + (2*f_66_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] + (2*f_67_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] + (3*f_68_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) + (3*f_69_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) + (4*f_70_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) + (4*f_71_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) + (5*f_72_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) + (5*f_73_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) + (6*f_74_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) + (6*f_75_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) + (7*f_76_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) + (7*f_77_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) + (2*cos2th*f_66_2*f[1]*f[3]*f[49]*f[51])/U[4] + (2*cos2th*f_67_2*f[1]*f[3]*f[49]*f[51])/U[4] + (3*cos2th*f_68_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) + (3*cos2th*f_69_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) + (4*cos2th*f_70_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) + (4*cos2th*f_71_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) + (5*cos2th*f_72_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) + (5*cos2th*f_73_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) + (6*cos2th*f_74_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) + (6*cos2th*f_75_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) + (7*cos2th*f_76_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) + (7*cos2th*f_77_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) + (14*cos2th*f_66_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_67_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + U[4]) - (14*f_66_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + U[4]) - (14*f_67_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*f_66_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*f_67_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_66_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_67_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*f_66_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*f_67_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_66_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_67_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + U[4]) - (14*cos2th*f_66_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + U[4]) - (14*cos2th*f_67_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*f_66_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*f_67_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + U[4]) - (14*f_66_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*f_67_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*cos2th*f_66_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*cos2th*f_67_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_66_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_67_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*f_66_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*f_67_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_66_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_67_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + U[4]) - (14*f_66_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + U[4]) - (14*f_67_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*f_66_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*f_67_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_66_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_67_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + U[4]) + (12*cos2th*f_66_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_67_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + U[4]) - (12*f_66_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + U[4]) - (12*f_67_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*f_66_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*f_67_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_66_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_67_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*f_66_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*f_67_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_66_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_67_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + U[4]) - (12*cos2th*f_66_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + U[4]) - (12*cos2th*f_67_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*f_66_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*f_67_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + U[4]) - (12*f_66_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*f_67_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*cos2th*f_66_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*cos2th*f_67_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_66_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_67_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*f_66_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*f_67_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_66_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_67_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + U[4]) - (12*f_66_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + U[4]) - (12*f_67_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*f_66_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*f_67_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_66_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_67_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + U[4]) + (10*cos2th*f_66_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_67_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + U[4]) - (10*f_66_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + U[4]) - (10*f_67_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*f_66_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*f_67_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_66_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_67_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*f_66_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*f_67_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_66_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_67_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + U[4]) - (10*cos2th*f_66_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + U[4]) - (10*cos2th*f_67_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*f_66_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*f_67_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + U[4]) - (10*f_66_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*f_67_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*cos2th*f_66_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*cos2th*f_67_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_66_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_67_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*f_66_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*f_67_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_66_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_67_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + U[4]) - (10*f_66_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + U[4]) - (10*f_67_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*f_66_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*f_67_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_66_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_67_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + U[4]) + (8*cos2th*f_66_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_67_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + U[4]) - (8*f_66_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + U[4]) - (8*f_67_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*f_66_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*f_67_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_66_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_67_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*f_66_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*f_67_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_66_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_67_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + U[4]) - (8*cos2th*f_66_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + U[4]) - (8*cos2th*f_67_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*f_66_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*f_67_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + U[4]) - (8*f_66_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*f_67_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*cos2th*f_66_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*cos2th*f_67_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_66_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_67_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*f_66_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*f_67_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_66_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_67_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + U[4]) - (8*f_66_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + U[4]) - (8*f_67_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*f_66_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*f_67_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_66_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_67_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + U[4]) + (6*cos2th*f_66_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_67_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + U[4]) - (6*f_66_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + U[4]) - (6*f_67_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*f_66_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*f_67_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_66_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_67_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*f_66_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*f_67_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_66_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_67_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + U[4]) - (6*cos2th*f_66_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + U[4]) - (6*cos2th*f_67_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*f_66_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*f_67_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + U[4]) - (6*f_66_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*f_67_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*cos2th*f_66_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*cos2th*f_67_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_66_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_67_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*f_66_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*f_67_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_66_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_67_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + U[4]) - (6*f_66_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + U[4]) - (6*f_67_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*f_66_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*f_67_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_66_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_67_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + U[4]) + (21*cos2th*f_68_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_68_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_69_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_68_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_69_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 2*U[4]) - (21*f_68_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_69_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_68_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_69_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_68_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_69_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_68_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_69_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*f_68_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*f_69_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_68_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_69_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_68_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_69_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_68_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_69_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 2*U[4]) - (18*f_68_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_69_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_68_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_69_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_68_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_69_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_68_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_69_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*f_68_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*f_69_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_68_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_69_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_68_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_69_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_68_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_69_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 2*U[4]) - (15*f_68_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_69_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_68_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_69_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_68_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_69_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_68_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_69_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*f_68_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*f_69_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_68_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_69_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_68_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_69_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_68_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_69_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 2*U[4]) - (12*f_68_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_69_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_68_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_69_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_68_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_69_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_68_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_69_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*f_68_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*f_69_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_68_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_69_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 2*U[4]) - (6*cos2th*f_68_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 2*U[4]) - (6*cos2th*f_69_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*f_68_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*f_69_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 2*U[4]) - (6*f_68_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*f_69_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*cos2th*f_68_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*cos2th*f_69_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_68_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_69_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 2*U[4]) - (6*f_68_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 2*U[4]) - (6*f_69_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*f_68_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*f_69_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_68_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_69_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 2*U[4]) + (28*cos2th*f_70_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_70_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_71_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_70_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_71_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 3*U[4]) - (28*f_70_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_71_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_70_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_71_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_70_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_71_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_70_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_71_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*f_70_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*f_71_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_70_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_71_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_70_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_71_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_70_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_71_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 3*U[4]) - (24*f_70_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_71_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_70_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_71_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_70_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_71_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_70_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_71_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*f_70_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*f_71_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_70_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_71_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_70_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_71_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_70_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_71_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 3*U[4]) - (20*f_70_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_71_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_70_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_71_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_70_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_71_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_70_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_71_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*f_70_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*f_71_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_70_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_71_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_70_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_71_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_70_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_71_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 3*U[4]) - (12*f_70_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_71_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_70_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_71_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_70_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_71_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_70_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_71_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*f_70_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*f_71_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_70_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_71_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 3*U[4]) - (8*cos2th*f_70_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 3*U[4]) - (8*cos2th*f_71_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*f_70_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*f_71_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 3*U[4]) - (8*f_70_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*f_71_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*cos2th*f_70_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*cos2th*f_71_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_70_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_71_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 3*U[4]) - (8*f_70_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 3*U[4]) - (8*f_71_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*f_70_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*f_71_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_70_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_71_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 3*U[4]) + (35*cos2th*f_72_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_72_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_73_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_72_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_73_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 4*U[4]) - (35*f_72_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_73_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_72_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_73_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_72_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_73_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_72_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_73_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*f_72_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*f_73_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_72_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_73_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_72_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_73_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_72_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_73_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 4*U[4]) - (30*f_72_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_73_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_72_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_73_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_72_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_73_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_72_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_73_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*f_72_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*f_73_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_72_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_73_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_72_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_73_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_72_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_73_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 4*U[4]) - (20*f_72_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_73_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_72_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_73_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_72_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_73_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_72_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_73_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*f_72_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*f_73_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_72_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_73_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_72_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_73_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_72_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_73_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 4*U[4]) - (15*f_72_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_73_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_72_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_73_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_72_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_73_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_72_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_73_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*f_72_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*f_73_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_72_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_73_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 4*U[4]) - (10*cos2th*f_72_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 4*U[4]) - (10*cos2th*f_73_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*f_72_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*f_73_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 4*U[4]) - (10*f_72_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*f_73_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*cos2th*f_72_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*cos2th*f_73_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_72_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_73_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 4*U[4]) - (10*f_72_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 4*U[4]) - (10*f_73_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*f_72_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*f_73_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_72_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_73_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 4*U[4]) + (42*cos2th*f_74_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_74_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_75_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_74_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_75_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 5*U[4]) - (42*f_74_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_75_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_74_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_75_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_74_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_75_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_74_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_75_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*f_74_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*f_75_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_74_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_75_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_74_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_75_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_74_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_75_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 5*U[4]) - (30*f_74_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_75_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_74_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_75_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_74_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_75_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_74_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_75_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*f_74_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*f_75_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_74_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_75_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_74_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_75_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_74_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_75_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 5*U[4]) - (24*f_74_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_75_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_74_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_75_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_74_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_75_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_74_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_75_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*f_74_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*f_75_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_74_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_75_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_74_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_75_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_74_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_75_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 5*U[4]) - (18*f_74_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_75_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_74_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_75_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_74_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_75_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_74_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_75_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*f_74_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*f_75_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_74_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_75_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 5*U[4]) - (12*cos2th*f_74_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 5*U[4]) - (12*cos2th*f_75_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*f_74_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*f_75_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 5*U[4]) - (12*f_74_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*f_75_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*cos2th*f_74_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*cos2th*f_75_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_74_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_75_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 5*U[4]) - (12*f_74_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 5*U[4]) - (12*f_75_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*f_74_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*f_75_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_74_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_75_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 5*U[4]) + (42*cos2th*f_76_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_76_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_77_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_76_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_77_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 6*U[4]) - (42*f_76_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_77_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_76_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_77_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_76_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_77_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_76_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_77_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*f_76_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*f_77_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_76_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_77_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_76_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_77_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_76_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_77_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 6*U[4]) - (35*f_76_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_77_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_76_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_77_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_76_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_77_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_76_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_77_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*f_76_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*f_77_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_76_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_77_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_76_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_77_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_76_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_77_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 6*U[4]) - (28*f_76_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_77_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_76_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_77_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_76_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_77_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_76_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_77_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*f_76_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*f_77_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_76_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_77_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_76_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_77_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_76_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_77_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 6*U[4]) - (21*f_76_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_77_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_76_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_77_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_76_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_77_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_76_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_77_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*f_76_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*f_77_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_76_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_77_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 6*U[4]) - (14*cos2th*f_76_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 6*U[4]) - (14*cos2th*f_77_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*f_76_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*f_77_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 6*U[4]) - (14*f_76_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*f_77_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*cos2th*f_76_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*cos2th*f_77_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_76_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_77_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 6*U[4]) - (14*f_76_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 6*U[4]) - (14*f_77_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*f_76_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*f_77_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_76_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_77_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 6*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[3]*J[4]*((-2*cos2th*f_66_2*f[2]*f[4]*f[50]*f[52])/U[3] - (2*cos2th*f_67_2*f[2]*f[4]*f[50]*f[52])/U[3] + (2*f_66_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[3] + (2*f_67_2*sin2th*f[3]*f[4]*f[50]*f[52])/U[3] - (2*f_66_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[3] - (2*f_67_2*sin2th*f[2]*f[5]*f[50]*f[52])/U[3] - (2*cos2th*f_66_2*f[3]*f[5]*f[50]*f[52])/U[3] - (2*cos2th*f_67_2*f[3]*f[5]*f[50]*f[52])/U[3] - (2*f_66_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[3] - (2*f_67_2*sin2th*f[2]*f[4]*f[51]*f[52])/U[3] - (2*cos2th*f_66_2*f[3]*f[4]*f[51]*f[52])/U[3] - (2*cos2th*f_67_2*f[3]*f[4]*f[51]*f[52])/U[3] + (2*cos2th*f_66_2*f[2]*f[5]*f[51]*f[52])/U[3] + (2*cos2th*f_67_2*f[2]*f[5]*f[51]*f[52])/U[3] - (2*f_66_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[3] - (2*f_67_2*sin2th*f[3]*f[5]*f[51]*f[52])/U[3] + (2*f_66_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[3] + (2*f_67_2*sin2th*f[2]*f[4]*f[50]*f[53])/U[3] + (2*cos2th*f_66_2*f[3]*f[4]*f[50]*f[53])/U[3] + (2*cos2th*f_67_2*f[3]*f[4]*f[50]*f[53])/U[3] - (2*cos2th*f_66_2*f[2]*f[5]*f[50]*f[53])/U[3] - (2*cos2th*f_67_2*f[2]*f[5]*f[50]*f[53])/U[3] + (2*f_66_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[3] + (2*f_67_2*sin2th*f[3]*f[5]*f[50]*f[53])/U[3] - (2*cos2th*f_66_2*f[2]*f[4]*f[51]*f[53])/U[3] - (2*cos2th*f_67_2*f[2]*f[4]*f[51]*f[53])/U[3] + (2*f_66_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[3] + (2*f_67_2*sin2th*f[3]*f[4]*f[51]*f[53])/U[3] - (2*f_66_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[3] - (2*f_67_2*sin2th*f[2]*f[5]*f[51]*f[53])/U[3] - (2*cos2th*f_66_2*f[3]*f[5]*f[51]*f[53])/U[3] - (2*cos2th*f_67_2*f[3]*f[5]*f[51]*f[53])/U[3] - (3*cos2th*f_66_2*f[4]*f[6]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_67_2*f[4]*f[6]*f[52]*f[54])/(2.*U[3]) + (3*f_66_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[3]) + (3*f_67_2*sin2th*f[5]*f[6]*f[52]*f[54])/(2.*U[3]) - (3*f_66_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[3]) - (3*f_67_2*sin2th*f[4]*f[7]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_66_2*f[5]*f[7]*f[52]*f[54])/(2.*U[3]) - (3*cos2th*f_67_2*f[5]*f[7]*f[52]*f[54])/(2.*U[3]) - (3*f_66_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[3]) - (3*f_67_2*sin2th*f[4]*f[6]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_66_2*f[5]*f[6]*f[53]*f[54])/(2.*U[3]) - (3*cos2th*f_67_2*f[5]*f[6]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_66_2*f[4]*f[7]*f[53]*f[54])/(2.*U[3]) + (3*cos2th*f_67_2*f[4]*f[7]*f[53]*f[54])/(2.*U[3]) - (3*f_66_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[3]) - (3*f_67_2*sin2th*f[5]*f[7]*f[53]*f[54])/(2.*U[3]) + (3*f_66_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[3]) + (3*f_67_2*sin2th*f[4]*f[6]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_66_2*f[5]*f[6]*f[52]*f[55])/(2.*U[3]) + (3*cos2th*f_67_2*f[5]*f[6]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_66_2*f[4]*f[7]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_67_2*f[4]*f[7]*f[52]*f[55])/(2.*U[3]) + (3*f_66_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[3]) + (3*f_67_2*sin2th*f[5]*f[7]*f[52]*f[55])/(2.*U[3]) - (3*cos2th*f_66_2*f[4]*f[6]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_67_2*f[4]*f[6]*f[53]*f[55])/(2.*U[3]) + (3*f_66_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[3]) + (3*f_67_2*sin2th*f[5]*f[6]*f[53]*f[55])/(2.*U[3]) - (3*f_66_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[3]) - (3*f_67_2*sin2th*f[4]*f[7]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_66_2*f[5]*f[7]*f[53]*f[55])/(2.*U[3]) - (3*cos2th*f_67_2*f[5]*f[7]*f[53]*f[55])/(2.*U[3]) - (4*cos2th*f_66_2*f[6]*f[8]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_67_2*f[6]*f[8]*f[54]*f[56])/(3.*U[3]) + (4*f_66_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[3]) + (4*f_67_2*sin2th*f[7]*f[8]*f[54]*f[56])/(3.*U[3]) - (4*f_66_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[3]) - (4*f_67_2*sin2th*f[6]*f[9]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_66_2*f[7]*f[9]*f[54]*f[56])/(3.*U[3]) - (4*cos2th*f_67_2*f[7]*f[9]*f[54]*f[56])/(3.*U[3]) - (4*f_66_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[3]) - (4*f_67_2*sin2th*f[6]*f[8]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_66_2*f[7]*f[8]*f[55]*f[56])/(3.*U[3]) - (4*cos2th*f_67_2*f[7]*f[8]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_66_2*f[6]*f[9]*f[55]*f[56])/(3.*U[3]) + (4*cos2th*f_67_2*f[6]*f[9]*f[55]*f[56])/(3.*U[3]) - (4*f_66_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[3]) - (4*f_67_2*sin2th*f[7]*f[9]*f[55]*f[56])/(3.*U[3]) + (4*f_66_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[3]) + (4*f_67_2*sin2th*f[6]*f[8]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_66_2*f[7]*f[8]*f[54]*f[57])/(3.*U[3]) + (4*cos2th*f_67_2*f[7]*f[8]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_66_2*f[6]*f[9]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_67_2*f[6]*f[9]*f[54]*f[57])/(3.*U[3]) + (4*f_66_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[3]) + (4*f_67_2*sin2th*f[7]*f[9]*f[54]*f[57])/(3.*U[3]) - (4*cos2th*f_66_2*f[6]*f[8]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_67_2*f[6]*f[8]*f[55]*f[57])/(3.*U[3]) + (4*f_66_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[3]) + (4*f_67_2*sin2th*f[7]*f[8]*f[55]*f[57])/(3.*U[3]) - (4*f_66_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[3]) - (4*f_67_2*sin2th*f[6]*f[9]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_66_2*f[7]*f[9]*f[55]*f[57])/(3.*U[3]) - (4*cos2th*f_67_2*f[7]*f[9]*f[55]*f[57])/(3.*U[3]) - (5*cos2th*f_66_2*f[8]*f[10]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_67_2*f[8]*f[10]*f[56]*f[58])/(4.*U[3]) + (5*f_66_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[3]) + (5*f_67_2*sin2th*f[9]*f[10]*f[56]*f[58])/(4.*U[3]) - (5*f_66_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[3]) - (5*f_67_2*sin2th*f[8]*f[11]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_66_2*f[9]*f[11]*f[56]*f[58])/(4.*U[3]) - (5*cos2th*f_67_2*f[9]*f[11]*f[56]*f[58])/(4.*U[3]) - (5*f_66_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[3]) - (5*f_67_2*sin2th*f[8]*f[10]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_66_2*f[9]*f[10]*f[57]*f[58])/(4.*U[3]) - (5*cos2th*f_67_2*f[9]*f[10]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_66_2*f[8]*f[11]*f[57]*f[58])/(4.*U[3]) + (5*cos2th*f_67_2*f[8]*f[11]*f[57]*f[58])/(4.*U[3]) - (5*f_66_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[3]) - (5*f_67_2*sin2th*f[9]*f[11]*f[57]*f[58])/(4.*U[3]) + (5*f_66_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[3]) + (5*f_67_2*sin2th*f[8]*f[10]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_66_2*f[9]*f[10]*f[56]*f[59])/(4.*U[3]) + (5*cos2th*f_67_2*f[9]*f[10]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_66_2*f[8]*f[11]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_67_2*f[8]*f[11]*f[56]*f[59])/(4.*U[3]) + (5*f_66_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[3]) + (5*f_67_2*sin2th*f[9]*f[11]*f[56]*f[59])/(4.*U[3]) - (5*cos2th*f_66_2*f[8]*f[10]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_67_2*f[8]*f[10]*f[57]*f[59])/(4.*U[3]) + (5*f_66_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[3]) + (5*f_67_2*sin2th*f[9]*f[10]*f[57]*f[59])/(4.*U[3]) - (5*f_66_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[3]) - (5*f_67_2*sin2th*f[8]*f[11]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_66_2*f[9]*f[11]*f[57]*f[59])/(4.*U[3]) - (5*cos2th*f_67_2*f[9]*f[11]*f[57]*f[59])/(4.*U[3]) - (6*cos2th*f_66_2*f[10]*f[12]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_67_2*f[10]*f[12]*f[58]*f[60])/(5.*U[3]) + (6*f_66_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[3]) + (6*f_67_2*sin2th*f[11]*f[12]*f[58]*f[60])/(5.*U[3]) - (6*f_66_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[3]) - (6*f_67_2*sin2th*f[10]*f[13]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_66_2*f[11]*f[13]*f[58]*f[60])/(5.*U[3]) - (6*cos2th*f_67_2*f[11]*f[13]*f[58]*f[60])/(5.*U[3]) - (6*f_66_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[3]) - (6*f_67_2*sin2th*f[10]*f[12]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_66_2*f[11]*f[12]*f[59]*f[60])/(5.*U[3]) - (6*cos2th*f_67_2*f[11]*f[12]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_66_2*f[10]*f[13]*f[59]*f[60])/(5.*U[3]) + (6*cos2th*f_67_2*f[10]*f[13]*f[59]*f[60])/(5.*U[3]) - (6*f_66_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[3]) - (6*f_67_2*sin2th*f[11]*f[13]*f[59]*f[60])/(5.*U[3]) + (6*f_66_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[3]) + (6*f_67_2*sin2th*f[10]*f[12]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_66_2*f[11]*f[12]*f[58]*f[61])/(5.*U[3]) + (6*cos2th*f_67_2*f[11]*f[12]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_66_2*f[10]*f[13]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_67_2*f[10]*f[13]*f[58]*f[61])/(5.*U[3]) + (6*f_66_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[3]) + (6*f_67_2*sin2th*f[11]*f[13]*f[58]*f[61])/(5.*U[3]) - (6*cos2th*f_66_2*f[10]*f[12]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_67_2*f[10]*f[12]*f[59]*f[61])/(5.*U[3]) + (6*f_66_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[3]) + (6*f_67_2*sin2th*f[11]*f[12]*f[59]*f[61])/(5.*U[3]) - (6*f_66_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[3]) - (6*f_67_2*sin2th*f[10]*f[13]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_66_2*f[11]*f[13]*f[59]*f[61])/(5.*U[3]) - (6*cos2th*f_67_2*f[11]*f[13]*f[59]*f[61])/(5.*U[3]) - (7*cos2th*f_66_2*f[12]*f[14]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_67_2*f[12]*f[14]*f[60]*f[62])/(6.*U[3]) + (7*f_66_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[3]) + (7*f_67_2*sin2th*f[13]*f[14]*f[60]*f[62])/(6.*U[3]) - (7*f_66_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[3]) - (7*f_67_2*sin2th*f[12]*f[15]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_66_2*f[13]*f[15]*f[60]*f[62])/(6.*U[3]) - (7*cos2th*f_67_2*f[13]*f[15]*f[60]*f[62])/(6.*U[3]) - (7*f_66_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[3]) - (7*f_67_2*sin2th*f[12]*f[14]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_66_2*f[13]*f[14]*f[61]*f[62])/(6.*U[3]) - (7*cos2th*f_67_2*f[13]*f[14]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_66_2*f[12]*f[15]*f[61]*f[62])/(6.*U[3]) + (7*cos2th*f_67_2*f[12]*f[15]*f[61]*f[62])/(6.*U[3]) - (7*f_66_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[3]) - (7*f_67_2*sin2th*f[13]*f[15]*f[61]*f[62])/(6.*U[3]) + (7*f_66_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[3]) + (7*f_67_2*sin2th*f[12]*f[14]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_66_2*f[13]*f[14]*f[60]*f[63])/(6.*U[3]) + (7*cos2th*f_67_2*f[13]*f[14]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_66_2*f[12]*f[15]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_67_2*f[12]*f[15]*f[60]*f[63])/(6.*U[3]) + (7*f_66_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[3]) + (7*f_67_2*sin2th*f[13]*f[15]*f[60]*f[63])/(6.*U[3]) - (7*cos2th*f_66_2*f[12]*f[14]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_67_2*f[12]*f[14]*f[61]*f[63])/(6.*U[3]) + (7*f_66_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[3]) + (7*f_67_2*sin2th*f[13]*f[14]*f[61]*f[63])/(6.*U[3]) - (7*f_66_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[3]) - (7*f_67_2*sin2th*f[12]*f[15]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_66_2*f[13]*f[15]*f[61]*f[63])/(6.*U[3]) - (7*cos2th*f_67_2*f[13]*f[15]*f[61]*f[63])/(6.*U[3]) + (2*cos2th*f_68_2*f[0]*f[2]*f[48]*f[50])/U[4] + (2*cos2th*f_69_2*f[0]*f[2]*f[48]*f[50])/U[4] + (3*cos2th*f_70_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) + (3*cos2th*f_71_2*f[0]*f[2]*f[48]*f[50])/(2.*U[4]) + (4*cos2th*f_72_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) + (4*cos2th*f_73_2*f[0]*f[2]*f[48]*f[50])/(3.*U[4]) + (5*cos2th*f_74_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) + (5*cos2th*f_75_2*f[0]*f[2]*f[48]*f[50])/(4.*U[4]) + (6*cos2th*f_76_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) + (6*cos2th*f_77_2*f[0]*f[2]*f[48]*f[50])/(5.*U[4]) + (7*cos2th*f_78_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) + (7*cos2th*f_79_2*f[0]*f[2]*f[48]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] - (2*f_69_2*sin2th*f[1]*f[2]*f[48]*f[50])/U[4] - (3*f_70_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) - (3*f_71_2*sin2th*f[1]*f[2]*f[48]*f[50])/(2.*U[4]) - (4*f_72_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) - (4*f_73_2*sin2th*f[1]*f[2]*f[48]*f[50])/(3.*U[4]) - (5*f_74_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) - (5*f_75_2*sin2th*f[1]*f[2]*f[48]*f[50])/(4.*U[4]) - (6*f_76_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) - (6*f_77_2*sin2th*f[1]*f[2]*f[48]*f[50])/(5.*U[4]) - (7*f_78_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) - (7*f_79_2*sin2th*f[1]*f[2]*f[48]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] + (2*f_69_2*sin2th*f[0]*f[3]*f[48]*f[50])/U[4] + (3*f_70_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) + (3*f_71_2*sin2th*f[0]*f[3]*f[48]*f[50])/(2.*U[4]) + (4*f_72_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) + (4*f_73_2*sin2th*f[0]*f[3]*f[48]*f[50])/(3.*U[4]) + (5*f_74_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) + (5*f_75_2*sin2th*f[0]*f[3]*f[48]*f[50])/(4.*U[4]) + (6*f_76_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) + (6*f_77_2*sin2th*f[0]*f[3]*f[48]*f[50])/(5.*U[4]) + (7*f_78_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) + (7*f_79_2*sin2th*f[0]*f[3]*f[48]*f[50])/(6.*U[4]) + (2*cos2th*f_68_2*f[1]*f[3]*f[48]*f[50])/U[4] + (2*cos2th*f_69_2*f[1]*f[3]*f[48]*f[50])/U[4] + (3*cos2th*f_70_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) + (3*cos2th*f_71_2*f[1]*f[3]*f[48]*f[50])/(2.*U[4]) + (4*cos2th*f_72_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) + (4*cos2th*f_73_2*f[1]*f[3]*f[48]*f[50])/(3.*U[4]) + (5*cos2th*f_74_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) + (5*cos2th*f_75_2*f[1]*f[3]*f[48]*f[50])/(4.*U[4]) + (6*cos2th*f_76_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) + (6*cos2th*f_77_2*f[1]*f[3]*f[48]*f[50])/(5.*U[4]) + (7*cos2th*f_78_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) + (7*cos2th*f_79_2*f[1]*f[3]*f[48]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] + (2*f_69_2*sin2th*f[0]*f[2]*f[49]*f[50])/U[4] + (3*f_70_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) + (3*f_71_2*sin2th*f[0]*f[2]*f[49]*f[50])/(2.*U[4]) + (4*f_72_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) + (4*f_73_2*sin2th*f[0]*f[2]*f[49]*f[50])/(3.*U[4]) + (5*f_74_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) + (5*f_75_2*sin2th*f[0]*f[2]*f[49]*f[50])/(4.*U[4]) + (6*f_76_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) + (6*f_77_2*sin2th*f[0]*f[2]*f[49]*f[50])/(5.*U[4]) + (7*f_78_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) + (7*f_79_2*sin2th*f[0]*f[2]*f[49]*f[50])/(6.*U[4]) + (2*cos2th*f_68_2*f[1]*f[2]*f[49]*f[50])/U[4] + (2*cos2th*f_69_2*f[1]*f[2]*f[49]*f[50])/U[4] + (3*cos2th*f_70_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) + (3*cos2th*f_71_2*f[1]*f[2]*f[49]*f[50])/(2.*U[4]) + (4*cos2th*f_72_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) + (4*cos2th*f_73_2*f[1]*f[2]*f[49]*f[50])/(3.*U[4]) + (5*cos2th*f_74_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) + (5*cos2th*f_75_2*f[1]*f[2]*f[49]*f[50])/(4.*U[4]) + (6*cos2th*f_76_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) + (6*cos2th*f_77_2*f[1]*f[2]*f[49]*f[50])/(5.*U[4]) + (7*cos2th*f_78_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) + (7*cos2th*f_79_2*f[1]*f[2]*f[49]*f[50])/(6.*U[4]) - (2*cos2th*f_68_2*f[0]*f[3]*f[49]*f[50])/U[4] - (2*cos2th*f_69_2*f[0]*f[3]*f[49]*f[50])/U[4] - (3*cos2th*f_70_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) - (3*cos2th*f_71_2*f[0]*f[3]*f[49]*f[50])/(2.*U[4]) - (4*cos2th*f_72_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) - (4*cos2th*f_73_2*f[0]*f[3]*f[49]*f[50])/(3.*U[4]) - (5*cos2th*f_74_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) - (5*cos2th*f_75_2*f[0]*f[3]*f[49]*f[50])/(4.*U[4]) - (6*cos2th*f_76_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) - (6*cos2th*f_77_2*f[0]*f[3]*f[49]*f[50])/(5.*U[4]) - (7*cos2th*f_78_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) - (7*cos2th*f_79_2*f[0]*f[3]*f[49]*f[50])/(6.*U[4]) + (2*f_68_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] + (2*f_69_2*sin2th*f[1]*f[3]*f[49]*f[50])/U[4] + (3*f_70_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) + (3*f_71_2*sin2th*f[1]*f[3]*f[49]*f[50])/(2.*U[4]) + (4*f_72_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) + (4*f_73_2*sin2th*f[1]*f[3]*f[49]*f[50])/(3.*U[4]) + (5*f_74_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) + (5*f_75_2*sin2th*f[1]*f[3]*f[49]*f[50])/(4.*U[4]) + (6*f_76_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) + (6*f_77_2*sin2th*f[1]*f[3]*f[49]*f[50])/(5.*U[4]) + (7*f_78_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) + (7*f_79_2*sin2th*f[1]*f[3]*f[49]*f[50])/(6.*U[4]) - (2*f_68_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] - (2*f_69_2*sin2th*f[0]*f[2]*f[48]*f[51])/U[4] - (3*f_70_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) - (3*f_71_2*sin2th*f[0]*f[2]*f[48]*f[51])/(2.*U[4]) - (4*f_72_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) - (4*f_73_2*sin2th*f[0]*f[2]*f[48]*f[51])/(3.*U[4]) - (5*f_74_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) - (5*f_75_2*sin2th*f[0]*f[2]*f[48]*f[51])/(4.*U[4]) - (6*f_76_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) - (6*f_77_2*sin2th*f[0]*f[2]*f[48]*f[51])/(5.*U[4]) - (7*f_78_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) - (7*f_79_2*sin2th*f[0]*f[2]*f[48]*f[51])/(6.*U[4]) - (2*cos2th*f_68_2*f[1]*f[2]*f[48]*f[51])/U[4] - (2*cos2th*f_69_2*f[1]*f[2]*f[48]*f[51])/U[4] - (3*cos2th*f_70_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) - (3*cos2th*f_71_2*f[1]*f[2]*f[48]*f[51])/(2.*U[4]) - (4*cos2th*f_72_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) - (4*cos2th*f_73_2*f[1]*f[2]*f[48]*f[51])/(3.*U[4]) - (5*cos2th*f_74_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) - (5*cos2th*f_75_2*f[1]*f[2]*f[48]*f[51])/(4.*U[4]) - (6*cos2th*f_76_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) - (6*cos2th*f_77_2*f[1]*f[2]*f[48]*f[51])/(5.*U[4]) - (7*cos2th*f_78_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) - (7*cos2th*f_79_2*f[1]*f[2]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_68_2*f[0]*f[3]*f[48]*f[51])/U[4] + (2*cos2th*f_69_2*f[0]*f[3]*f[48]*f[51])/U[4] + (3*cos2th*f_70_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) + (3*cos2th*f_71_2*f[0]*f[3]*f[48]*f[51])/(2.*U[4]) + (4*cos2th*f_72_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) + (4*cos2th*f_73_2*f[0]*f[3]*f[48]*f[51])/(3.*U[4]) + (5*cos2th*f_74_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) + (5*cos2th*f_75_2*f[0]*f[3]*f[48]*f[51])/(4.*U[4]) + (6*cos2th*f_76_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) + (6*cos2th*f_77_2*f[0]*f[3]*f[48]*f[51])/(5.*U[4]) + (7*cos2th*f_78_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) + (7*cos2th*f_79_2*f[0]*f[3]*f[48]*f[51])/(6.*U[4]) - (2*f_68_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] - (2*f_69_2*sin2th*f[1]*f[3]*f[48]*f[51])/U[4] - (3*f_70_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) - (3*f_71_2*sin2th*f[1]*f[3]*f[48]*f[51])/(2.*U[4]) - (4*f_72_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) - (4*f_73_2*sin2th*f[1]*f[3]*f[48]*f[51])/(3.*U[4]) - (5*f_74_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) - (5*f_75_2*sin2th*f[1]*f[3]*f[48]*f[51])/(4.*U[4]) - (6*f_76_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) - (6*f_77_2*sin2th*f[1]*f[3]*f[48]*f[51])/(5.*U[4]) - (7*f_78_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) - (7*f_79_2*sin2th*f[1]*f[3]*f[48]*f[51])/(6.*U[4]) + (2*cos2th*f_68_2*f[0]*f[2]*f[49]*f[51])/U[4] + (2*cos2th*f_69_2*f[0]*f[2]*f[49]*f[51])/U[4] + (3*cos2th*f_70_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) + (3*cos2th*f_71_2*f[0]*f[2]*f[49]*f[51])/(2.*U[4]) + (4*cos2th*f_72_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) + (4*cos2th*f_73_2*f[0]*f[2]*f[49]*f[51])/(3.*U[4]) + (5*cos2th*f_74_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) + (5*cos2th*f_75_2*f[0]*f[2]*f[49]*f[51])/(4.*U[4]) + (6*cos2th*f_76_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) + (6*cos2th*f_77_2*f[0]*f[2]*f[49]*f[51])/(5.*U[4]) + (7*cos2th*f_78_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) + (7*cos2th*f_79_2*f[0]*f[2]*f[49]*f[51])/(6.*U[4]) - (2*f_68_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] - (2*f_69_2*sin2th*f[1]*f[2]*f[49]*f[51])/U[4] - (3*f_70_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) - (3*f_71_2*sin2th*f[1]*f[2]*f[49]*f[51])/(2.*U[4]) - (4*f_72_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) - (4*f_73_2*sin2th*f[1]*f[2]*f[49]*f[51])/(3.*U[4]) - (5*f_74_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) - (5*f_75_2*sin2th*f[1]*f[2]*f[49]*f[51])/(4.*U[4]) - (6*f_76_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) - (6*f_77_2*sin2th*f[1]*f[2]*f[49]*f[51])/(5.*U[4]) - (7*f_78_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) - (7*f_79_2*sin2th*f[1]*f[2]*f[49]*f[51])/(6.*U[4]) + (2*f_68_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] + (2*f_69_2*sin2th*f[0]*f[3]*f[49]*f[51])/U[4] + (3*f_70_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) + (3*f_71_2*sin2th*f[0]*f[3]*f[49]*f[51])/(2.*U[4]) + (4*f_72_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) + (4*f_73_2*sin2th*f[0]*f[3]*f[49]*f[51])/(3.*U[4]) + (5*f_74_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) + (5*f_75_2*sin2th*f[0]*f[3]*f[49]*f[51])/(4.*U[4]) + (6*f_76_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) + (6*f_77_2*sin2th*f[0]*f[3]*f[49]*f[51])/(5.*U[4]) + (7*f_78_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) + (7*f_79_2*sin2th*f[0]*f[3]*f[49]*f[51])/(6.*U[4]) + (2*cos2th*f_68_2*f[1]*f[3]*f[49]*f[51])/U[4] + (2*cos2th*f_69_2*f[1]*f[3]*f[49]*f[51])/U[4] + (3*cos2th*f_70_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) + (3*cos2th*f_71_2*f[1]*f[3]*f[49]*f[51])/(2.*U[4]) + (4*cos2th*f_72_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) + (4*cos2th*f_73_2*f[1]*f[3]*f[49]*f[51])/(3.*U[4]) + (5*cos2th*f_74_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) + (5*cos2th*f_75_2*f[1]*f[3]*f[49]*f[51])/(4.*U[4]) + (6*cos2th*f_76_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) + (6*cos2th*f_77_2*f[1]*f[3]*f[49]*f[51])/(5.*U[4]) + (7*cos2th*f_78_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) + (7*cos2th*f_79_2*f[1]*f[3]*f[49]*f[51])/(6.*U[4]) + (14*cos2th*f_68_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_69_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + U[4]) - (14*f_68_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + U[4]) - (14*f_69_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*f_68_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*f_69_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_68_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_69_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + U[4]) + (14*f_68_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*f_69_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_68_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*cos2th*f_69_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + U[4]) - (14*cos2th*f_68_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + U[4]) - (14*cos2th*f_69_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*f_68_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + U[4]) + (14*f_69_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + U[4]) - (14*f_68_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*f_69_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*cos2th*f_68_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*cos2th*f_69_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_68_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_69_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*f_68_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + U[4]) - (14*f_69_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_68_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_69_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + U[4]) - (14*f_68_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + U[4]) - (14*f_69_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*f_68_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*f_69_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_68_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + U[4]) + (14*cos2th*f_69_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + U[4]) + (12*cos2th*f_68_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_69_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + U[4]) - (12*f_68_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + U[4]) - (12*f_69_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*f_68_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*f_69_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_68_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_69_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + U[4]) + (12*f_68_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*f_69_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_68_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*cos2th*f_69_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + U[4]) - (12*cos2th*f_68_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + U[4]) - (12*cos2th*f_69_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*f_68_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + U[4]) + (12*f_69_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + U[4]) - (12*f_68_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*f_69_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*cos2th*f_68_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*cos2th*f_69_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_68_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_69_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*f_68_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + U[4]) - (12*f_69_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_68_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_69_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + U[4]) - (12*f_68_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + U[4]) - (12*f_69_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*f_68_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*f_69_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_68_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + U[4]) + (12*cos2th*f_69_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + U[4]) + (10*cos2th*f_68_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_69_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + U[4]) - (10*f_68_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + U[4]) - (10*f_69_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*f_68_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*f_69_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_68_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_69_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + U[4]) + (10*f_68_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*f_69_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_68_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*cos2th*f_69_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + U[4]) - (10*cos2th*f_68_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + U[4]) - (10*cos2th*f_69_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*f_68_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + U[4]) + (10*f_69_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + U[4]) - (10*f_68_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*f_69_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*cos2th*f_68_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*cos2th*f_69_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_68_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_69_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*f_68_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + U[4]) - (10*f_69_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_68_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_69_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + U[4]) - (10*f_68_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + U[4]) - (10*f_69_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*f_68_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*f_69_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_68_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + U[4]) + (10*cos2th*f_69_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + U[4]) + (8*cos2th*f_68_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_69_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + U[4]) - (8*f_68_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + U[4]) - (8*f_69_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*f_68_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*f_69_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_68_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_69_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + U[4]) + (8*f_68_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*f_69_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_68_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*cos2th*f_69_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + U[4]) - (8*cos2th*f_68_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + U[4]) - (8*cos2th*f_69_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*f_68_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + U[4]) + (8*f_69_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + U[4]) - (8*f_68_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*f_69_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*cos2th*f_68_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*cos2th*f_69_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_68_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_69_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*f_68_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + U[4]) - (8*f_69_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_68_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_69_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + U[4]) - (8*f_68_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + U[4]) - (8*f_69_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*f_68_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*f_69_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_68_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + U[4]) + (8*cos2th*f_69_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + U[4]) + (6*cos2th*f_68_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_69_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + U[4]) - (6*f_68_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + U[4]) - (6*f_69_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*f_68_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*f_69_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_68_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_69_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + U[4]) + (6*f_68_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*f_69_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_68_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*cos2th*f_69_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + U[4]) - (6*cos2th*f_68_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + U[4]) - (6*cos2th*f_69_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*f_68_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + U[4]) + (6*f_69_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + U[4]) - (6*f_68_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*f_69_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*cos2th*f_68_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*cos2th*f_69_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_68_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_69_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*f_68_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + U[4]) - (6*f_69_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_68_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_69_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + U[4]) - (6*f_68_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + U[4]) - (6*f_69_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*f_68_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*f_69_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_68_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + U[4]) + (6*cos2th*f_69_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + U[4]) + (21*cos2th*f_70_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_70_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_71_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_70_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 2*U[4]) + (21*f_71_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 2*U[4]) - (21*f_70_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_71_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_70_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_71_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_70_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_71_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_70_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 2*U[4]) - (21*f_71_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*f_70_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*f_71_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_70_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_71_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_70_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_71_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_70_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 2*U[4]) + (18*f_71_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 2*U[4]) - (18*f_70_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_71_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_70_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_71_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_70_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_71_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_70_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 2*U[4]) - (18*f_71_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*f_70_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*f_71_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_70_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_71_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_70_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_71_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_70_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 2*U[4]) + (15*f_71_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 2*U[4]) - (15*f_70_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_71_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_70_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_71_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_70_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_71_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_70_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 2*U[4]) - (15*f_71_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*f_70_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*f_71_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_70_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_71_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_70_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_71_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_70_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 2*U[4]) + (12*f_71_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 2*U[4]) - (12*f_70_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_71_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_70_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_71_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_70_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_71_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_70_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 2*U[4]) - (12*f_71_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*f_70_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*f_71_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_70_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_71_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 2*U[4]) - (6*cos2th*f_70_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 2*U[4]) - (6*cos2th*f_71_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*f_70_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 2*U[4]) + (6*f_71_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 2*U[4]) - (6*f_70_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*f_71_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*cos2th*f_70_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*cos2th*f_71_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_70_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_71_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 2*U[4]) - (6*f_70_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 2*U[4]) - (6*f_71_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*f_70_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*f_71_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_70_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 2*U[4]) + (6*cos2th*f_71_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 2*U[4]) + (28*cos2th*f_72_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_72_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_73_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_72_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 3*U[4]) + (28*f_73_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 3*U[4]) - (28*f_72_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_73_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_72_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_73_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_72_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_73_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_72_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 3*U[4]) - (28*f_73_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*f_72_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*f_73_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_72_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_73_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_72_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_73_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_72_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 3*U[4]) + (24*f_73_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 3*U[4]) - (24*f_72_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_73_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_72_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_73_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_72_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_73_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_72_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 3*U[4]) - (24*f_73_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*f_72_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*f_73_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_72_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_73_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_72_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_73_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_72_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 3*U[4]) + (20*f_73_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 3*U[4]) - (20*f_72_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_73_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_72_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_73_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_72_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_73_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_72_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 3*U[4]) - (20*f_73_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*f_72_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*f_73_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_72_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_73_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_72_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_73_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_72_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 3*U[4]) + (12*f_73_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 3*U[4]) - (12*f_72_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_73_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_72_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_73_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_72_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_73_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_72_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 3*U[4]) - (12*f_73_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*f_72_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*f_73_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_72_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_73_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 3*U[4]) - (8*cos2th*f_72_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 3*U[4]) - (8*cos2th*f_73_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*f_72_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 3*U[4]) + (8*f_73_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 3*U[4]) - (8*f_72_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*f_73_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*cos2th*f_72_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*cos2th*f_73_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_72_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_73_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 3*U[4]) - (8*f_72_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 3*U[4]) - (8*f_73_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*f_72_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*f_73_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_72_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 3*U[4]) + (8*cos2th*f_73_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 3*U[4]) + (35*cos2th*f_74_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_74_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_75_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_74_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 4*U[4]) + (35*f_75_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 4*U[4]) - (35*f_74_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_75_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_74_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_75_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_74_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_75_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_74_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 4*U[4]) - (35*f_75_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*f_74_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*f_75_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_74_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_75_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_74_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_75_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_74_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 4*U[4]) + (30*f_75_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 4*U[4]) - (30*f_74_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_75_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_74_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_75_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_74_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_75_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_74_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 4*U[4]) - (30*f_75_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*f_74_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*f_75_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_74_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_75_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_74_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_75_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_74_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 4*U[4]) + (20*f_75_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 4*U[4]) - (20*f_74_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_75_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_74_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_75_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_74_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_75_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_74_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 4*U[4]) - (20*f_75_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*f_74_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*f_75_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_74_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_75_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_74_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_75_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_74_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 4*U[4]) + (15*f_75_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 4*U[4]) - (15*f_74_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_75_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_74_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_75_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_74_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_75_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_74_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 4*U[4]) - (15*f_75_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*f_74_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*f_75_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_74_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_75_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 4*U[4]) - (10*cos2th*f_74_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 4*U[4]) - (10*cos2th*f_75_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*f_74_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 4*U[4]) + (10*f_75_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 4*U[4]) - (10*f_74_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*f_75_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*cos2th*f_74_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*cos2th*f_75_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_74_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_75_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 4*U[4]) - (10*f_74_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 4*U[4]) - (10*f_75_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*f_74_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*f_75_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_74_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 4*U[4]) + (10*cos2th*f_75_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 4*U[4]) + (42*cos2th*f_76_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[14]*f[60]*f[62])/(-6*U[3] + 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[14]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[15]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[15]*f[60]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[14]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[14]*f[61]*f[62])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_76_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_77_2*f[12]*f[15]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_76_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 5*U[4]) + (42*f_77_2*sin2th*f[13]*f[15]*f[61]*f[62])/(-6*U[3] + 5*U[4]) - (42*f_76_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_77_2*sin2th*f[12]*f[14]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_76_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_77_2*f[13]*f[14]*f[60]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[15]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[15]*f[60]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_76_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_77_2*f[12]*f[14]*f[61]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_76_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 5*U[4]) - (42*f_77_2*sin2th*f[13]*f[14]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*f_76_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*f_77_2*sin2th*f[12]*f[15]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_76_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_77_2*f[13]*f[15]*f[61]*f[63])/(-6*U[3] + 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_76_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_77_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_76_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 5*U[4]) + (30*f_77_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 5*U[4]) - (30*f_76_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_77_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_76_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_77_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_76_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_77_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_76_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 5*U[4]) - (30*f_77_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*f_76_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*f_77_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_76_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_77_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_76_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_77_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_76_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 5*U[4]) + (24*f_77_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 5*U[4]) - (24*f_76_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_77_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_76_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_77_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_76_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_77_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_76_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 5*U[4]) - (24*f_77_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*f_76_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*f_77_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_76_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_77_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_76_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_77_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_76_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 5*U[4]) + (18*f_77_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 5*U[4]) - (18*f_76_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_77_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_76_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_77_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_76_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_77_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_76_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 5*U[4]) - (18*f_77_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*f_76_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*f_77_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_76_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_77_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 5*U[4]) - (12*cos2th*f_76_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 5*U[4]) - (12*cos2th*f_77_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*f_76_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 5*U[4]) + (12*f_77_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 5*U[4]) - (12*f_76_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*f_77_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*cos2th*f_76_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*cos2th*f_77_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_76_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_77_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 5*U[4]) - (12*f_76_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 5*U[4]) - (12*f_77_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*f_76_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*f_77_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_76_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 5*U[4]) + (12*cos2th*f_77_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 5*U[4]) + (42*cos2th*f_78_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[12]*f[58]*f[60])/(-5*U[3] + 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[12]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[13]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[13]*f[58]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[12]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[12]*f[59]*f[60])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_78_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_79_2*f[10]*f[13]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_78_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 6*U[4]) + (42*f_79_2*sin2th*f[11]*f[13]*f[59]*f[60])/(-5*U[3] + 6*U[4]) - (42*f_78_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_79_2*sin2th*f[10]*f[12]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_78_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_79_2*f[11]*f[12]*f[58]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[13]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[13]*f[58]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_78_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_79_2*f[10]*f[12]*f[59]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_78_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 6*U[4]) - (42*f_79_2*sin2th*f[11]*f[12]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*f_78_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*f_79_2*sin2th*f[10]*f[13]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_78_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_79_2*f[11]*f[13]*f[59]*f[61])/(-5*U[3] + 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[10]*f[56]*f[58])/(-4*U[3] + 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[10]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[11]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[11]*f[56]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[10]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[10]*f[57]*f[58])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_78_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_79_2*f[8]*f[11]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_78_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 6*U[4]) + (35*f_79_2*sin2th*f[9]*f[11]*f[57]*f[58])/(-4*U[3] + 6*U[4]) - (35*f_78_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_79_2*sin2th*f[8]*f[10]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_78_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_79_2*f[9]*f[10]*f[56]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[11]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[11]*f[56]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_78_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_79_2*f[8]*f[10]*f[57]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_78_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 6*U[4]) - (35*f_79_2*sin2th*f[9]*f[10]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*f_78_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*f_79_2*sin2th*f[8]*f[11]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_78_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_79_2*f[9]*f[11]*f[57]*f[59])/(-4*U[3] + 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[8]*f[54]*f[56])/(-3*U[3] + 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[8]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[9]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[9]*f[54]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[8]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[8]*f[55]*f[56])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_78_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_79_2*f[6]*f[9]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_78_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 6*U[4]) + (28*f_79_2*sin2th*f[7]*f[9]*f[55]*f[56])/(-3*U[3] + 6*U[4]) - (28*f_78_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_79_2*sin2th*f[6]*f[8]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_78_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_79_2*f[7]*f[8]*f[54]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[9]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[9]*f[54]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_78_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_79_2*f[6]*f[8]*f[55]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_78_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 6*U[4]) - (28*f_79_2*sin2th*f[7]*f[8]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*f_78_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*f_79_2*sin2th*f[6]*f[9]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_78_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_79_2*f[7]*f[9]*f[55]*f[57])/(-3*U[3] + 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[6]*f[52]*f[54])/(-2*U[3] + 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[6]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[7]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[7]*f[52]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[6]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[6]*f[53]*f[54])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_78_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_79_2*f[4]*f[7]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_78_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 6*U[4]) + (21*f_79_2*sin2th*f[5]*f[7]*f[53]*f[54])/(-2*U[3] + 6*U[4]) - (21*f_78_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_79_2*sin2th*f[4]*f[6]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_78_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_79_2*f[5]*f[6]*f[52]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[7]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[7]*f[52]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_78_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_79_2*f[4]*f[6]*f[53]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_78_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 6*U[4]) - (21*f_79_2*sin2th*f[5]*f[6]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*f_78_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*f_79_2*sin2th*f[4]*f[7]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_78_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_79_2*f[5]*f[7]*f[53]*f[55])/(-2*U[3] + 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[4]*f[50]*f[52])/(-U[3] + 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[4]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[5]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[5]*f[50]*f[52])/(-U[3] + 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[4]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[4]*f[51]*f[52])/(-U[3] + 6*U[4]) - (14*cos2th*f_78_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 6*U[4]) - (14*cos2th*f_79_2*f[2]*f[5]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*f_78_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 6*U[4]) + (14*f_79_2*sin2th*f[3]*f[5]*f[51]*f[52])/(-U[3] + 6*U[4]) - (14*f_78_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*f_79_2*sin2th*f[2]*f[4]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*cos2th*f_78_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*cos2th*f_79_2*f[3]*f[4]*f[50]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[5]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[5]*f[50]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_78_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_79_2*f[2]*f[4]*f[51]*f[53])/(-U[3] + 6*U[4]) - (14*f_78_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 6*U[4]) - (14*f_79_2*sin2th*f[3]*f[4]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*f_78_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*f_79_2*sin2th*f[2]*f[5]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_78_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 6*U[4]) + (14*cos2th*f_79_2*f[3]*f[5]*f[51]*f[53])/(-U[3] + 6*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J[2]*J[3]*((-2*cos2th*f_50_2*f[32]*f[34]*f[64]*f[66])/U[3] - (2*cos2th*f_51_2*f[32]*f[34]*f[64]*f[66])/U[3] - (3*cos2th*f_52_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) - (3*cos2th*f_53_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) - (4*cos2th*f_54_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) - (4*cos2th*f_55_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) - (5*cos2th*f_56_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) - (5*cos2th*f_57_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) - (6*cos2th*f_58_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) - (6*cos2th*f_59_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) - (7*cos2th*f_60_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) - (7*cos2th*f_61_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] - (2*f_51_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] - (3*f_52_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) - (3*f_53_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) - (4*f_54_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) - (4*f_55_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) - (5*f_56_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) - (5*f_57_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) - (6*f_58_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) - (6*f_59_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) - (7*f_60_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) - (7*f_61_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] + (2*f_51_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] + (3*f_52_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) + (3*f_53_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) + (4*f_54_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) + (4*f_55_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) + (5*f_56_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) + (5*f_57_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) + (6*f_58_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) + (6*f_59_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) + (7*f_60_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) + (7*f_61_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) - (2*cos2th*f_50_2*f[33]*f[35]*f[64]*f[66])/U[3] - (2*cos2th*f_51_2*f[33]*f[35]*f[64]*f[66])/U[3] - (3*cos2th*f_52_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) - (3*cos2th*f_53_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) - (4*cos2th*f_54_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) - (4*cos2th*f_55_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) - (5*cos2th*f_56_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) - (5*cos2th*f_57_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) - (6*cos2th*f_58_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) - (6*cos2th*f_59_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) - (7*cos2th*f_60_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) - (7*cos2th*f_61_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] + (2*f_51_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] + (3*f_52_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) + (3*f_53_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) + (4*f_54_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) + (4*f_55_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) + (5*f_56_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) + (5*f_57_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) + (6*f_58_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) + (6*f_59_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) + (7*f_60_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) + (7*f_61_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) - (2*cos2th*f_50_2*f[33]*f[34]*f[65]*f[66])/U[3] - (2*cos2th*f_51_2*f[33]*f[34]*f[65]*f[66])/U[3] - (3*cos2th*f_52_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) - (3*cos2th*f_53_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) - (4*cos2th*f_54_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) - (4*cos2th*f_55_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) - (5*cos2th*f_56_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) - (5*cos2th*f_57_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) - (6*cos2th*f_58_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) - (6*cos2th*f_59_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) - (7*cos2th*f_60_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) - (7*cos2th*f_61_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) + (2*cos2th*f_50_2*f[32]*f[35]*f[65]*f[66])/U[3] + (2*cos2th*f_51_2*f[32]*f[35]*f[65]*f[66])/U[3] + (3*cos2th*f_52_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) + (3*cos2th*f_53_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) + (4*cos2th*f_54_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) + (4*cos2th*f_55_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) + (5*cos2th*f_56_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) + (5*cos2th*f_57_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) + (6*cos2th*f_58_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) + (6*cos2th*f_59_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) + (7*cos2th*f_60_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) + (7*cos2th*f_61_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) + (2*f_50_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] + (2*f_51_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] + (3*f_52_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) + (3*f_53_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) + (4*f_54_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) + (4*f_55_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) + (5*f_56_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) + (5*f_57_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) + (6*f_58_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) + (6*f_59_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) + (7*f_60_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) + (7*f_61_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) - (2*f_50_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] - (2*f_51_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] - (3*f_52_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) - (3*f_53_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) - (4*f_54_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) - (4*f_55_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) - (5*f_56_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) - (5*f_57_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) - (6*f_58_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) - (6*f_59_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) - (7*f_60_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) - (7*f_61_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[33]*f[34]*f[64]*f[67])/U[3] + (2*cos2th*f_51_2*f[33]*f[34]*f[64]*f[67])/U[3] + (3*cos2th*f_52_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) + (3*cos2th*f_53_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) + (4*cos2th*f_54_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) + (4*cos2th*f_55_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) + (5*cos2th*f_56_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) + (5*cos2th*f_57_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) + (6*cos2th*f_58_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) + (6*cos2th*f_59_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) + (7*cos2th*f_60_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) + (7*cos2th*f_61_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_50_2*f[32]*f[35]*f[64]*f[67])/U[3] - (2*cos2th*f_51_2*f[32]*f[35]*f[64]*f[67])/U[3] - (3*cos2th*f_52_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) - (3*cos2th*f_53_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) - (4*cos2th*f_54_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) - (4*cos2th*f_55_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) - (5*cos2th*f_56_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) - (5*cos2th*f_57_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) - (6*cos2th*f_58_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) - (6*cos2th*f_59_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) - (7*cos2th*f_60_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) - (7*cos2th*f_61_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) - (2*f_50_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] - (2*f_51_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] - (3*f_52_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) - (3*f_53_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) - (4*f_54_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) - (4*f_55_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) - (5*f_56_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) - (5*f_57_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) - (6*f_58_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) - (6*f_59_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) - (7*f_60_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) - (7*f_61_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_50_2*f[32]*f[34]*f[65]*f[67])/U[3] - (2*cos2th*f_51_2*f[32]*f[34]*f[65]*f[67])/U[3] - (3*cos2th*f_52_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) - (3*cos2th*f_53_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) - (4*cos2th*f_54_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) - (4*cos2th*f_55_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) - (5*cos2th*f_56_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) - (5*cos2th*f_57_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) - (6*cos2th*f_58_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) - (6*cos2th*f_59_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) - (7*cos2th*f_60_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) - (7*cos2th*f_61_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) - (2*f_50_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] - (2*f_51_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] - (3*f_52_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) - (3*f_53_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) - (4*f_54_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) - (4*f_55_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) - (5*f_56_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) - (5*f_57_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) - (6*f_58_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) - (6*f_59_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) - (7*f_60_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) - (7*f_61_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) + (2*f_50_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] + (2*f_51_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] + (3*f_52_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) + (3*f_53_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) + (4*f_54_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) + (4*f_55_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) + (5*f_56_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) + (5*f_57_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) + (6*f_58_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) + (6*f_59_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) + (7*f_60_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) + (7*f_61_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) - (2*cos2th*f_50_2*f[33]*f[35]*f[65]*f[67])/U[3] - (2*cos2th*f_51_2*f[33]*f[35]*f[65]*f[67])/U[3] - (3*cos2th*f_52_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) - (3*cos2th*f_53_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) - (4*cos2th*f_54_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) - (4*cos2th*f_55_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) - (5*cos2th*f_56_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) - (5*cos2th*f_57_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) - (6*cos2th*f_58_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) - (6*cos2th*f_59_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) - (7*cos2th*f_60_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) - (7*cos2th*f_61_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (2*cos2th*f_48_2*f[34]*f[36]*f[66]*f[68])/U[4] + (2*cos2th*f_49_2*f[34]*f[36]*f[66]*f[68])/U[4] + (2*f_48_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[4] + (2*f_49_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[4] - (2*f_48_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[4] - (2*f_49_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[4] + (2*cos2th*f_48_2*f[35]*f[37]*f[66]*f[68])/U[4] + (2*cos2th*f_49_2*f[35]*f[37]*f[66]*f[68])/U[4] - (2*f_48_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[4] - (2*f_49_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[4] + (2*cos2th*f_48_2*f[35]*f[36]*f[67]*f[68])/U[4] + (2*cos2th*f_49_2*f[35]*f[36]*f[67]*f[68])/U[4] - (2*cos2th*f_48_2*f[34]*f[37]*f[67]*f[68])/U[4] - (2*cos2th*f_49_2*f[34]*f[37]*f[67]*f[68])/U[4] - (2*f_48_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[4] - (2*f_49_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[4] + (2*f_48_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[4] + (2*f_49_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[4] - (2*cos2th*f_48_2*f[35]*f[36]*f[66]*f[69])/U[4] - (2*cos2th*f_49_2*f[35]*f[36]*f[66]*f[69])/U[4] + (2*cos2th*f_48_2*f[34]*f[37]*f[66]*f[69])/U[4] + (2*cos2th*f_49_2*f[34]*f[37]*f[66]*f[69])/U[4] + (2*f_48_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[4] + (2*f_49_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[4] + (2*cos2th*f_48_2*f[34]*f[36]*f[67]*f[69])/U[4] + (2*cos2th*f_49_2*f[34]*f[36]*f[67]*f[69])/U[4] + (2*f_48_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[4] + (2*f_49_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[4] - (2*f_48_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[4] - (2*f_49_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[4] + (2*cos2th*f_48_2*f[35]*f[37]*f[67]*f[69])/U[4] + (2*cos2th*f_49_2*f[35]*f[37]*f[67]*f[69])/U[4] + (3*cos2th*f_48_2*f[36]*f[38]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_49_2*f[36]*f[38]*f[68]*f[70])/(2.*U[4]) + (3*f_48_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[4]) + (3*f_49_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[4]) - (3*f_48_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[4]) - (3*f_49_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_48_2*f[37]*f[39]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_49_2*f[37]*f[39]*f[68]*f[70])/(2.*U[4]) - (3*f_48_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[4]) - (3*f_49_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_48_2*f[37]*f[38]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_49_2*f[37]*f[38]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_48_2*f[36]*f[39]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_49_2*f[36]*f[39]*f[69]*f[70])/(2.*U[4]) - (3*f_48_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[4]) - (3*f_49_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[4]) + (3*f_48_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[4]) + (3*f_49_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_48_2*f[37]*f[38]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_49_2*f[37]*f[38]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_48_2*f[36]*f[39]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_49_2*f[36]*f[39]*f[68]*f[71])/(2.*U[4]) + (3*f_48_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[4]) + (3*f_49_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_48_2*f[36]*f[38]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_49_2*f[36]*f[38]*f[69]*f[71])/(2.*U[4]) + (3*f_48_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[4]) + (3*f_49_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[4]) - (3*f_48_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[4]) - (3*f_49_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_48_2*f[37]*f[39]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_49_2*f[37]*f[39]*f[69]*f[71])/(2.*U[4]) + (4*cos2th*f_48_2*f[38]*f[40]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_49_2*f[38]*f[40]*f[70]*f[72])/(3.*U[4]) + (4*f_48_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[4]) + (4*f_49_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[4]) - (4*f_48_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[4]) - (4*f_49_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_48_2*f[39]*f[41]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_49_2*f[39]*f[41]*f[70]*f[72])/(3.*U[4]) - (4*f_48_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[4]) - (4*f_49_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_48_2*f[39]*f[40]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_49_2*f[39]*f[40]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_48_2*f[38]*f[41]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_49_2*f[38]*f[41]*f[71]*f[72])/(3.*U[4]) - (4*f_48_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[4]) - (4*f_49_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[4]) + (4*f_48_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[4]) + (4*f_49_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_48_2*f[39]*f[40]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_49_2*f[39]*f[40]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_48_2*f[38]*f[41]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_49_2*f[38]*f[41]*f[70]*f[73])/(3.*U[4]) + (4*f_48_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[4]) + (4*f_49_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_48_2*f[38]*f[40]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_49_2*f[38]*f[40]*f[71]*f[73])/(3.*U[4]) + (4*f_48_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[4]) + (4*f_49_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[4]) - (4*f_48_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[4]) - (4*f_49_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_48_2*f[39]*f[41]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_49_2*f[39]*f[41]*f[71]*f[73])/(3.*U[4]) + (5*cos2th*f_48_2*f[40]*f[42]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_49_2*f[40]*f[42]*f[72]*f[74])/(4.*U[4]) + (5*f_48_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[4]) + (5*f_49_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[4]) - (5*f_48_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[4]) - (5*f_49_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_48_2*f[41]*f[43]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_49_2*f[41]*f[43]*f[72]*f[74])/(4.*U[4]) - (5*f_48_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[4]) - (5*f_49_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_48_2*f[41]*f[42]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_49_2*f[41]*f[42]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_48_2*f[40]*f[43]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_49_2*f[40]*f[43]*f[73]*f[74])/(4.*U[4]) - (5*f_48_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[4]) - (5*f_49_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[4]) + (5*f_48_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[4]) + (5*f_49_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_48_2*f[41]*f[42]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_49_2*f[41]*f[42]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_48_2*f[40]*f[43]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_49_2*f[40]*f[43]*f[72]*f[75])/(4.*U[4]) + (5*f_48_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[4]) + (5*f_49_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_48_2*f[40]*f[42]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_49_2*f[40]*f[42]*f[73]*f[75])/(4.*U[4]) + (5*f_48_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[4]) + (5*f_49_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[4]) - (5*f_48_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[4]) - (5*f_49_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_48_2*f[41]*f[43]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_49_2*f[41]*f[43]*f[73]*f[75])/(4.*U[4]) + (6*cos2th*f_48_2*f[42]*f[44]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_49_2*f[42]*f[44]*f[74]*f[76])/(5.*U[4]) + (6*f_48_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[4]) + (6*f_49_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[4]) - (6*f_48_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[4]) - (6*f_49_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_48_2*f[43]*f[45]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_49_2*f[43]*f[45]*f[74]*f[76])/(5.*U[4]) - (6*f_48_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[4]) - (6*f_49_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_48_2*f[43]*f[44]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_49_2*f[43]*f[44]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_48_2*f[42]*f[45]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_49_2*f[42]*f[45]*f[75]*f[76])/(5.*U[4]) - (6*f_48_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[4]) - (6*f_49_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[4]) + (6*f_48_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[4]) + (6*f_49_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_48_2*f[43]*f[44]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_49_2*f[43]*f[44]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_48_2*f[42]*f[45]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_49_2*f[42]*f[45]*f[74]*f[77])/(5.*U[4]) + (6*f_48_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[4]) + (6*f_49_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_48_2*f[42]*f[44]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_49_2*f[42]*f[44]*f[75]*f[77])/(5.*U[4]) + (6*f_48_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[4]) + (6*f_49_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[4]) - (6*f_48_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[4]) - (6*f_49_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_48_2*f[43]*f[45]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_49_2*f[43]*f[45]*f[75]*f[77])/(5.*U[4]) + (7*cos2th*f_48_2*f[44]*f[46]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_49_2*f[44]*f[46]*f[76]*f[78])/(6.*U[4]) + (7*f_48_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[4]) + (7*f_49_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[4]) - (7*f_48_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[4]) - (7*f_49_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_48_2*f[45]*f[47]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_49_2*f[45]*f[47]*f[76]*f[78])/(6.*U[4]) - (7*f_48_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[4]) - (7*f_49_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_48_2*f[45]*f[46]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_49_2*f[45]*f[46]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_48_2*f[44]*f[47]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_49_2*f[44]*f[47]*f[77]*f[78])/(6.*U[4]) - (7*f_48_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[4]) - (7*f_49_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[4]) + (7*f_48_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[4]) + (7*f_49_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_48_2*f[45]*f[46]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_49_2*f[45]*f[46]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_48_2*f[44]*f[47]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_49_2*f[44]*f[47]*f[76]*f[79])/(6.*U[4]) + (7*f_48_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[4]) + (7*f_49_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_48_2*f[44]*f[46]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_49_2*f[44]*f[46]*f[77]*f[79])/(6.*U[4]) + (7*f_48_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[4]) + (7*f_49_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[4]) - (7*f_48_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[4]) - (7*f_49_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_48_2*f[45]*f[47]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_49_2*f[45]*f[47]*f[77]*f[79])/(6.*U[4]) + (14*cos2th*f_60_2*f[34]*f[36]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_61_2*f[34]*f[36]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*f_60_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*f_61_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-6*U[3] + U[4]) - (14*f_60_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-6*U[3] + U[4]) - (14*f_61_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_60_2*f[35]*f[37]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_61_2*f[35]*f[37]*f[66]*f[68])/(-6*U[3] + U[4]) - (14*f_60_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*f_61_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_60_2*f[35]*f[36]*f[67]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_61_2*f[35]*f[36]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*cos2th*f_60_2*f[34]*f[37]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*cos2th*f_61_2*f[34]*f[37]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*f_60_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*f_61_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-6*U[3] + U[4]) + (14*f_60_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*f_61_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-6*U[3] + U[4]) - (14*cos2th*f_60_2*f[35]*f[36]*f[66]*f[69])/(-6*U[3] + U[4]) - (14*cos2th*f_61_2*f[35]*f[36]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_60_2*f[34]*f[37]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_61_2*f[34]*f[37]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*f_60_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*f_61_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_60_2*f[34]*f[36]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_61_2*f[34]*f[36]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*f_60_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*f_61_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-6*U[3] + U[4]) - (14*f_60_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-6*U[3] + U[4]) - (14*f_61_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_60_2*f[35]*f[37]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_61_2*f[35]*f[37]*f[67]*f[69])/(-6*U[3] + U[4]) + (12*cos2th*f_58_2*f[34]*f[36]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_59_2*f[34]*f[36]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*f_58_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*f_59_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-5*U[3] + U[4]) - (12*f_58_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-5*U[3] + U[4]) - (12*f_59_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_58_2*f[35]*f[37]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_59_2*f[35]*f[37]*f[66]*f[68])/(-5*U[3] + U[4]) - (12*f_58_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*f_59_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_58_2*f[35]*f[36]*f[67]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_59_2*f[35]*f[36]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*cos2th*f_58_2*f[34]*f[37]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*cos2th*f_59_2*f[34]*f[37]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*f_58_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*f_59_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-5*U[3] + U[4]) + (12*f_58_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*f_59_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-5*U[3] + U[4]) - (12*cos2th*f_58_2*f[35]*f[36]*f[66]*f[69])/(-5*U[3] + U[4]) - (12*cos2th*f_59_2*f[35]*f[36]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_58_2*f[34]*f[37]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_59_2*f[34]*f[37]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*f_58_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*f_59_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_58_2*f[34]*f[36]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_59_2*f[34]*f[36]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*f_58_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*f_59_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-5*U[3] + U[4]) - (12*f_58_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-5*U[3] + U[4]) - (12*f_59_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_58_2*f[35]*f[37]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_59_2*f[35]*f[37]*f[67]*f[69])/(-5*U[3] + U[4]) + (10*cos2th*f_56_2*f[34]*f[36]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_57_2*f[34]*f[36]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*f_56_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*f_57_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-4*U[3] + U[4]) - (10*f_56_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-4*U[3] + U[4]) - (10*f_57_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_56_2*f[35]*f[37]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_57_2*f[35]*f[37]*f[66]*f[68])/(-4*U[3] + U[4]) - (10*f_56_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*f_57_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_56_2*f[35]*f[36]*f[67]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_57_2*f[35]*f[36]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*cos2th*f_56_2*f[34]*f[37]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*cos2th*f_57_2*f[34]*f[37]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*f_56_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*f_57_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-4*U[3] + U[4]) + (10*f_56_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*f_57_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-4*U[3] + U[4]) - (10*cos2th*f_56_2*f[35]*f[36]*f[66]*f[69])/(-4*U[3] + U[4]) - (10*cos2th*f_57_2*f[35]*f[36]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_56_2*f[34]*f[37]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_57_2*f[34]*f[37]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*f_56_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*f_57_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_56_2*f[34]*f[36]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_57_2*f[34]*f[36]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*f_56_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*f_57_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-4*U[3] + U[4]) - (10*f_56_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-4*U[3] + U[4]) - (10*f_57_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_56_2*f[35]*f[37]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_57_2*f[35]*f[37]*f[67]*f[69])/(-4*U[3] + U[4]) + (8*cos2th*f_54_2*f[34]*f[36]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_55_2*f[34]*f[36]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*f_54_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*f_55_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-3*U[3] + U[4]) - (8*f_54_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-3*U[3] + U[4]) - (8*f_55_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_54_2*f[35]*f[37]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_55_2*f[35]*f[37]*f[66]*f[68])/(-3*U[3] + U[4]) - (8*f_54_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*f_55_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_54_2*f[35]*f[36]*f[67]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_55_2*f[35]*f[36]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*cos2th*f_54_2*f[34]*f[37]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*cos2th*f_55_2*f[34]*f[37]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*f_54_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*f_55_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-3*U[3] + U[4]) + (8*f_54_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*f_55_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-3*U[3] + U[4]) - (8*cos2th*f_54_2*f[35]*f[36]*f[66]*f[69])/(-3*U[3] + U[4]) - (8*cos2th*f_55_2*f[35]*f[36]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_54_2*f[34]*f[37]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_55_2*f[34]*f[37]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*f_54_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*f_55_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_54_2*f[34]*f[36]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_55_2*f[34]*f[36]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*f_54_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*f_55_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-3*U[3] + U[4]) - (8*f_54_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-3*U[3] + U[4]) - (8*f_55_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_54_2*f[35]*f[37]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_55_2*f[35]*f[37]*f[67]*f[69])/(-3*U[3] + U[4]) + (6*cos2th*f_52_2*f[34]*f[36]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_53_2*f[34]*f[36]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*f_52_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*f_53_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-2*U[3] + U[4]) - (6*f_52_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-2*U[3] + U[4]) - (6*f_53_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_52_2*f[35]*f[37]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_53_2*f[35]*f[37]*f[66]*f[68])/(-2*U[3] + U[4]) - (6*f_52_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*f_53_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_52_2*f[35]*f[36]*f[67]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_53_2*f[35]*f[36]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*cos2th*f_52_2*f[34]*f[37]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*cos2th*f_53_2*f[34]*f[37]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*f_52_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*f_53_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-2*U[3] + U[4]) + (6*f_52_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*f_53_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-2*U[3] + U[4]) - (6*cos2th*f_52_2*f[35]*f[36]*f[66]*f[69])/(-2*U[3] + U[4]) - (6*cos2th*f_53_2*f[35]*f[36]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_52_2*f[34]*f[37]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_53_2*f[34]*f[37]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*f_52_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*f_53_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_52_2*f[34]*f[36]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_53_2*f[34]*f[36]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*f_52_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*f_53_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-2*U[3] + U[4]) - (6*f_52_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-2*U[3] + U[4]) - (6*f_53_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_52_2*f[35]*f[37]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_53_2*f[35]*f[37]*f[67]*f[69])/(-2*U[3] + U[4]) + (21*cos2th*f_60_2*f[36]*f[38]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_61_2*f[36]*f[38]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*f_60_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*f_61_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_60_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_61_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_60_2*f[37]*f[39]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_61_2*f[37]*f[39]*f[68]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_60_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_61_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_60_2*f[37]*f[38]*f[69]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_61_2*f[37]*f[38]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_60_2*f[36]*f[39]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_61_2*f[36]*f[39]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_60_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_61_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-6*U[3] + 2*U[4]) + (21*f_60_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_61_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_60_2*f[37]*f[38]*f[68]*f[71])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_61_2*f[37]*f[38]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_60_2*f[36]*f[39]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_61_2*f[36]*f[39]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_60_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_61_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_60_2*f[36]*f[38]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_61_2*f[36]*f[38]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_60_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_61_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-6*U[3] + 2*U[4]) - (21*f_60_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-6*U[3] + 2*U[4]) - (21*f_61_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_60_2*f[37]*f[39]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_61_2*f[37]*f[39]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (18*cos2th*f_58_2*f[36]*f[38]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_59_2*f[36]*f[38]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*f_58_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*f_59_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_58_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_59_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_58_2*f[37]*f[39]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_59_2*f[37]*f[39]*f[68]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_58_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_59_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_58_2*f[37]*f[38]*f[69]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_59_2*f[37]*f[38]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_58_2*f[36]*f[39]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_59_2*f[36]*f[39]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_58_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_59_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-5*U[3] + 2*U[4]) + (18*f_58_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_59_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_58_2*f[37]*f[38]*f[68]*f[71])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_59_2*f[37]*f[38]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_58_2*f[36]*f[39]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_59_2*f[36]*f[39]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_58_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_59_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_58_2*f[36]*f[38]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_59_2*f[36]*f[38]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_58_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_59_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-5*U[3] + 2*U[4]) - (18*f_58_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-5*U[3] + 2*U[4]) - (18*f_59_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_58_2*f[37]*f[39]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_59_2*f[37]*f[39]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (15*cos2th*f_56_2*f[36]*f[38]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_57_2*f[36]*f[38]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*f_56_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*f_57_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_56_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_57_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_56_2*f[37]*f[39]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_57_2*f[37]*f[39]*f[68]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_56_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_57_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_56_2*f[37]*f[38]*f[69]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_57_2*f[37]*f[38]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_56_2*f[36]*f[39]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_57_2*f[36]*f[39]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_56_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_57_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-4*U[3] + 2*U[4]) + (15*f_56_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_57_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_56_2*f[37]*f[38]*f[68]*f[71])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_57_2*f[37]*f[38]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_56_2*f[36]*f[39]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_57_2*f[36]*f[39]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_56_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_57_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_56_2*f[36]*f[38]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_57_2*f[36]*f[38]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_56_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_57_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-4*U[3] + 2*U[4]) - (15*f_56_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-4*U[3] + 2*U[4]) - (15*f_57_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_56_2*f[37]*f[39]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_57_2*f[37]*f[39]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (12*cos2th*f_54_2*f[36]*f[38]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_55_2*f[36]*f[38]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*f_54_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*f_55_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_54_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_55_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_54_2*f[37]*f[39]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_55_2*f[37]*f[39]*f[68]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_54_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_55_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_54_2*f[37]*f[38]*f[69]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_55_2*f[37]*f[38]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_54_2*f[36]*f[39]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_55_2*f[36]*f[39]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_54_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_55_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-3*U[3] + 2*U[4]) + (12*f_54_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_55_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_54_2*f[37]*f[38]*f[68]*f[71])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_55_2*f[37]*f[38]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_54_2*f[36]*f[39]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_55_2*f[36]*f[39]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_54_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_55_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_54_2*f[36]*f[38]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_55_2*f[36]*f[38]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_54_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_55_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-3*U[3] + 2*U[4]) - (12*f_54_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-3*U[3] + 2*U[4]) - (12*f_55_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_54_2*f[37]*f[39]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_55_2*f[37]*f[39]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (6*cos2th*f_50_2*f[36]*f[38]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_51_2*f[36]*f[38]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*f_50_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*f_51_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-U[3] + 2*U[4]) - (6*f_50_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-U[3] + 2*U[4]) - (6*f_51_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_50_2*f[37]*f[39]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_51_2*f[37]*f[39]*f[68]*f[70])/(-U[3] + 2*U[4]) - (6*f_50_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*f_51_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_50_2*f[37]*f[38]*f[69]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_51_2*f[37]*f[38]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*cos2th*f_50_2*f[36]*f[39]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*cos2th*f_51_2*f[36]*f[39]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*f_50_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*f_51_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-U[3] + 2*U[4]) + (6*f_50_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*f_51_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-U[3] + 2*U[4]) - (6*cos2th*f_50_2*f[37]*f[38]*f[68]*f[71])/(-U[3] + 2*U[4]) - (6*cos2th*f_51_2*f[37]*f[38]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_50_2*f[36]*f[39]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_51_2*f[36]*f[39]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*f_50_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*f_51_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_50_2*f[36]*f[38]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_51_2*f[36]*f[38]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*f_50_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*f_51_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-U[3] + 2*U[4]) - (6*f_50_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-U[3] + 2*U[4]) - (6*f_51_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_50_2*f[37]*f[39]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_51_2*f[37]*f[39]*f[69]*f[71])/(-U[3] + 2*U[4]) + (28*cos2th*f_60_2*f[38]*f[40]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_61_2*f[38]*f[40]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*f_60_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*f_61_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_60_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_61_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_60_2*f[39]*f[41]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_61_2*f[39]*f[41]*f[70]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_60_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_61_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_60_2*f[39]*f[40]*f[71]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_61_2*f[39]*f[40]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_60_2*f[38]*f[41]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_61_2*f[38]*f[41]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_60_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_61_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-6*U[3] + 3*U[4]) + (28*f_60_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_61_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_60_2*f[39]*f[40]*f[70]*f[73])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_61_2*f[39]*f[40]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_60_2*f[38]*f[41]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_61_2*f[38]*f[41]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_60_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_61_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_60_2*f[38]*f[40]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_61_2*f[38]*f[40]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_60_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_61_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-6*U[3] + 3*U[4]) - (28*f_60_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-6*U[3] + 3*U[4]) - (28*f_61_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_60_2*f[39]*f[41]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_61_2*f[39]*f[41]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (24*cos2th*f_58_2*f[38]*f[40]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_59_2*f[38]*f[40]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*f_58_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*f_59_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_58_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_59_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_58_2*f[39]*f[41]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_59_2*f[39]*f[41]*f[70]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_58_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_59_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_58_2*f[39]*f[40]*f[71]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_59_2*f[39]*f[40]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_58_2*f[38]*f[41]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_59_2*f[38]*f[41]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_58_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_59_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-5*U[3] + 3*U[4]) + (24*f_58_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_59_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_58_2*f[39]*f[40]*f[70]*f[73])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_59_2*f[39]*f[40]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_58_2*f[38]*f[41]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_59_2*f[38]*f[41]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_58_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_59_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_58_2*f[38]*f[40]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_59_2*f[38]*f[40]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_58_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_59_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-5*U[3] + 3*U[4]) - (24*f_58_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-5*U[3] + 3*U[4]) - (24*f_59_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_58_2*f[39]*f[41]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_59_2*f[39]*f[41]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (20*cos2th*f_56_2*f[38]*f[40]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_57_2*f[38]*f[40]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*f_56_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*f_57_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_56_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_57_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_56_2*f[39]*f[41]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_57_2*f[39]*f[41]*f[70]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_56_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_57_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_56_2*f[39]*f[40]*f[71]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_57_2*f[39]*f[40]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_56_2*f[38]*f[41]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_57_2*f[38]*f[41]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_56_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_57_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-4*U[3] + 3*U[4]) + (20*f_56_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_57_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_56_2*f[39]*f[40]*f[70]*f[73])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_57_2*f[39]*f[40]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_56_2*f[38]*f[41]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_57_2*f[38]*f[41]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_56_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_57_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_56_2*f[38]*f[40]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_57_2*f[38]*f[40]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_56_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_57_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-4*U[3] + 3*U[4]) - (20*f_56_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-4*U[3] + 3*U[4]) - (20*f_57_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_56_2*f[39]*f[41]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_57_2*f[39]*f[41]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (12*cos2th*f_52_2*f[38]*f[40]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_53_2*f[38]*f[40]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*f_52_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*f_53_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_52_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_53_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_52_2*f[39]*f[41]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_53_2*f[39]*f[41]*f[70]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_52_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_53_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_52_2*f[39]*f[40]*f[71]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_53_2*f[39]*f[40]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_52_2*f[38]*f[41]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_53_2*f[38]*f[41]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_52_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_53_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-2*U[3] + 3*U[4]) + (12*f_52_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_53_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_52_2*f[39]*f[40]*f[70]*f[73])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_53_2*f[39]*f[40]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_52_2*f[38]*f[41]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_53_2*f[38]*f[41]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_52_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_53_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_52_2*f[38]*f[40]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_53_2*f[38]*f[40]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_52_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_53_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-2*U[3] + 3*U[4]) - (12*f_52_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-2*U[3] + 3*U[4]) - (12*f_53_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_52_2*f[39]*f[41]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_53_2*f[39]*f[41]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (8*cos2th*f_50_2*f[38]*f[40]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_51_2*f[38]*f[40]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*f_50_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*f_51_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-U[3] + 3*U[4]) - (8*f_50_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-U[3] + 3*U[4]) - (8*f_51_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_50_2*f[39]*f[41]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_51_2*f[39]*f[41]*f[70]*f[72])/(-U[3] + 3*U[4]) - (8*f_50_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*f_51_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_50_2*f[39]*f[40]*f[71]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_51_2*f[39]*f[40]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*cos2th*f_50_2*f[38]*f[41]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*cos2th*f_51_2*f[38]*f[41]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*f_50_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*f_51_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-U[3] + 3*U[4]) + (8*f_50_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*f_51_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-U[3] + 3*U[4]) - (8*cos2th*f_50_2*f[39]*f[40]*f[70]*f[73])/(-U[3] + 3*U[4]) - (8*cos2th*f_51_2*f[39]*f[40]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_50_2*f[38]*f[41]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_51_2*f[38]*f[41]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*f_50_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*f_51_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_50_2*f[38]*f[40]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_51_2*f[38]*f[40]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*f_50_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*f_51_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-U[3] + 3*U[4]) - (8*f_50_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-U[3] + 3*U[4]) - (8*f_51_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_50_2*f[39]*f[41]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_51_2*f[39]*f[41]*f[71]*f[73])/(-U[3] + 3*U[4]) + (35*cos2th*f_60_2*f[40]*f[42]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_61_2*f[40]*f[42]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*f_60_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*f_61_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_60_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_61_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_60_2*f[41]*f[43]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_61_2*f[41]*f[43]*f[72]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_60_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_61_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_60_2*f[41]*f[42]*f[73]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_61_2*f[41]*f[42]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_60_2*f[40]*f[43]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_61_2*f[40]*f[43]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_60_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_61_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-6*U[3] + 4*U[4]) + (35*f_60_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_61_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_60_2*f[41]*f[42]*f[72]*f[75])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_61_2*f[41]*f[42]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_60_2*f[40]*f[43]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_61_2*f[40]*f[43]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_60_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_61_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_60_2*f[40]*f[42]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_61_2*f[40]*f[42]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_60_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_61_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-6*U[3] + 4*U[4]) - (35*f_60_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-6*U[3] + 4*U[4]) - (35*f_61_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_60_2*f[41]*f[43]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_61_2*f[41]*f[43]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (30*cos2th*f_58_2*f[40]*f[42]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_59_2*f[40]*f[42]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*f_58_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*f_59_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_58_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_59_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_58_2*f[41]*f[43]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_59_2*f[41]*f[43]*f[72]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_58_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_59_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_58_2*f[41]*f[42]*f[73]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_59_2*f[41]*f[42]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_58_2*f[40]*f[43]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_59_2*f[40]*f[43]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_58_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_59_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-5*U[3] + 4*U[4]) + (30*f_58_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_59_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_58_2*f[41]*f[42]*f[72]*f[75])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_59_2*f[41]*f[42]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_58_2*f[40]*f[43]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_59_2*f[40]*f[43]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_58_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_59_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_58_2*f[40]*f[42]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_59_2*f[40]*f[42]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_58_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_59_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-5*U[3] + 4*U[4]) - (30*f_58_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-5*U[3] + 4*U[4]) - (30*f_59_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_58_2*f[41]*f[43]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_59_2*f[41]*f[43]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (20*cos2th*f_54_2*f[40]*f[42]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_55_2*f[40]*f[42]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*f_54_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*f_55_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_54_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_55_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_54_2*f[41]*f[43]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_55_2*f[41]*f[43]*f[72]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_54_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_55_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_54_2*f[41]*f[42]*f[73]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_55_2*f[41]*f[42]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_54_2*f[40]*f[43]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_55_2*f[40]*f[43]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_54_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_55_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-3*U[3] + 4*U[4]) + (20*f_54_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_55_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_54_2*f[41]*f[42]*f[72]*f[75])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_55_2*f[41]*f[42]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_54_2*f[40]*f[43]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_55_2*f[40]*f[43]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_54_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_55_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_54_2*f[40]*f[42]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_55_2*f[40]*f[42]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_54_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_55_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-3*U[3] + 4*U[4]) - (20*f_54_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-3*U[3] + 4*U[4]) - (20*f_55_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_54_2*f[41]*f[43]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_55_2*f[41]*f[43]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (15*cos2th*f_52_2*f[40]*f[42]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_53_2*f[40]*f[42]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*f_52_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*f_53_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_52_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_53_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_52_2*f[41]*f[43]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_53_2*f[41]*f[43]*f[72]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_52_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_53_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_52_2*f[41]*f[42]*f[73]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_53_2*f[41]*f[42]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_52_2*f[40]*f[43]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_53_2*f[40]*f[43]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_52_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_53_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-2*U[3] + 4*U[4]) + (15*f_52_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_53_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_52_2*f[41]*f[42]*f[72]*f[75])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_53_2*f[41]*f[42]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_52_2*f[40]*f[43]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_53_2*f[40]*f[43]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_52_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_53_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_52_2*f[40]*f[42]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_53_2*f[40]*f[42]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_52_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_53_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-2*U[3] + 4*U[4]) - (15*f_52_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-2*U[3] + 4*U[4]) - (15*f_53_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_52_2*f[41]*f[43]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_53_2*f[41]*f[43]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (10*cos2th*f_50_2*f[40]*f[42]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_51_2*f[40]*f[42]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*f_50_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*f_51_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-U[3] + 4*U[4]) - (10*f_50_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-U[3] + 4*U[4]) - (10*f_51_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_50_2*f[41]*f[43]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_51_2*f[41]*f[43]*f[72]*f[74])/(-U[3] + 4*U[4]) - (10*f_50_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*f_51_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_50_2*f[41]*f[42]*f[73]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_51_2*f[41]*f[42]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*cos2th*f_50_2*f[40]*f[43]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*cos2th*f_51_2*f[40]*f[43]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*f_50_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*f_51_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-U[3] + 4*U[4]) + (10*f_50_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*f_51_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-U[3] + 4*U[4]) - (10*cos2th*f_50_2*f[41]*f[42]*f[72]*f[75])/(-U[3] + 4*U[4]) - (10*cos2th*f_51_2*f[41]*f[42]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_50_2*f[40]*f[43]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_51_2*f[40]*f[43]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*f_50_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*f_51_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_50_2*f[40]*f[42]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_51_2*f[40]*f[42]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*f_50_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*f_51_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-U[3] + 4*U[4]) - (10*f_50_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-U[3] + 4*U[4]) - (10*f_51_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_50_2*f[41]*f[43]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_51_2*f[41]*f[43]*f[73]*f[75])/(-U[3] + 4*U[4]) + (42*cos2th*f_60_2*f[42]*f[44]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_61_2*f[42]*f[44]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*f_60_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*f_61_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_60_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_61_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_60_2*f[43]*f[45]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_61_2*f[43]*f[45]*f[74]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_60_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_61_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_60_2*f[43]*f[44]*f[75]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_61_2*f[43]*f[44]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_60_2*f[42]*f[45]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_61_2*f[42]*f[45]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_60_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_61_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-6*U[3] + 5*U[4]) + (42*f_60_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_61_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_60_2*f[43]*f[44]*f[74]*f[77])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_61_2*f[43]*f[44]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_60_2*f[42]*f[45]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_61_2*f[42]*f[45]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_60_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_61_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_60_2*f[42]*f[44]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_61_2*f[42]*f[44]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_60_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_61_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-6*U[3] + 5*U[4]) - (42*f_60_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-6*U[3] + 5*U[4]) - (42*f_61_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_60_2*f[43]*f[45]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_61_2*f[43]*f[45]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (30*cos2th*f_56_2*f[42]*f[44]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_57_2*f[42]*f[44]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*f_56_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*f_57_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_56_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_57_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_56_2*f[43]*f[45]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_57_2*f[43]*f[45]*f[74]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_56_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_57_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_56_2*f[43]*f[44]*f[75]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_57_2*f[43]*f[44]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_56_2*f[42]*f[45]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_57_2*f[42]*f[45]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_56_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_57_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-4*U[3] + 5*U[4]) + (30*f_56_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_57_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_56_2*f[43]*f[44]*f[74]*f[77])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_57_2*f[43]*f[44]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_56_2*f[42]*f[45]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_57_2*f[42]*f[45]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_56_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_57_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_56_2*f[42]*f[44]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_57_2*f[42]*f[44]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_56_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_57_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-4*U[3] + 5*U[4]) - (30*f_56_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-4*U[3] + 5*U[4]) - (30*f_57_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_56_2*f[43]*f[45]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_57_2*f[43]*f[45]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (24*cos2th*f_54_2*f[42]*f[44]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_55_2*f[42]*f[44]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*f_54_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*f_55_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_54_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_55_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_54_2*f[43]*f[45]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_55_2*f[43]*f[45]*f[74]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_54_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_55_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_54_2*f[43]*f[44]*f[75]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_55_2*f[43]*f[44]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_54_2*f[42]*f[45]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_55_2*f[42]*f[45]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_54_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_55_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-3*U[3] + 5*U[4]) + (24*f_54_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_55_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_54_2*f[43]*f[44]*f[74]*f[77])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_55_2*f[43]*f[44]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_54_2*f[42]*f[45]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_55_2*f[42]*f[45]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_54_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_55_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_54_2*f[42]*f[44]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_55_2*f[42]*f[44]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_54_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_55_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-3*U[3] + 5*U[4]) - (24*f_54_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-3*U[3] + 5*U[4]) - (24*f_55_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_54_2*f[43]*f[45]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_55_2*f[43]*f[45]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (18*cos2th*f_52_2*f[42]*f[44]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_53_2*f[42]*f[44]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*f_52_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*f_53_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_52_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_53_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_52_2*f[43]*f[45]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_53_2*f[43]*f[45]*f[74]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_52_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_53_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_52_2*f[43]*f[44]*f[75]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_53_2*f[43]*f[44]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_52_2*f[42]*f[45]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_53_2*f[42]*f[45]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_52_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_53_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-2*U[3] + 5*U[4]) + (18*f_52_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_53_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_52_2*f[43]*f[44]*f[74]*f[77])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_53_2*f[43]*f[44]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_52_2*f[42]*f[45]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_53_2*f[42]*f[45]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_52_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_53_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_52_2*f[42]*f[44]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_53_2*f[42]*f[44]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_52_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_53_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-2*U[3] + 5*U[4]) - (18*f_52_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-2*U[3] + 5*U[4]) - (18*f_53_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_52_2*f[43]*f[45]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_53_2*f[43]*f[45]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (12*cos2th*f_50_2*f[42]*f[44]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_51_2*f[42]*f[44]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*f_50_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*f_51_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-U[3] + 5*U[4]) - (12*f_50_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-U[3] + 5*U[4]) - (12*f_51_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_50_2*f[43]*f[45]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_51_2*f[43]*f[45]*f[74]*f[76])/(-U[3] + 5*U[4]) - (12*f_50_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*f_51_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_50_2*f[43]*f[44]*f[75]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_51_2*f[43]*f[44]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*cos2th*f_50_2*f[42]*f[45]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*cos2th*f_51_2*f[42]*f[45]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*f_50_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*f_51_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-U[3] + 5*U[4]) + (12*f_50_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*f_51_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-U[3] + 5*U[4]) - (12*cos2th*f_50_2*f[43]*f[44]*f[74]*f[77])/(-U[3] + 5*U[4]) - (12*cos2th*f_51_2*f[43]*f[44]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_50_2*f[42]*f[45]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_51_2*f[42]*f[45]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*f_50_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*f_51_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_50_2*f[42]*f[44]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_51_2*f[42]*f[44]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*f_50_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*f_51_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-U[3] + 5*U[4]) - (12*f_50_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-U[3] + 5*U[4]) - (12*f_51_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_50_2*f[43]*f[45]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_51_2*f[43]*f[45]*f[75]*f[77])/(-U[3] + 5*U[4]) + (42*cos2th*f_58_2*f[44]*f[46]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_59_2*f[44]*f[46]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*f_58_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*f_59_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_58_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_59_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_58_2*f[45]*f[47]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_59_2*f[45]*f[47]*f[76]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_58_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_59_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_58_2*f[45]*f[46]*f[77]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_59_2*f[45]*f[46]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_58_2*f[44]*f[47]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_59_2*f[44]*f[47]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_58_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_59_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-5*U[3] + 6*U[4]) + (42*f_58_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_59_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_58_2*f[45]*f[46]*f[76]*f[79])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_59_2*f[45]*f[46]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_58_2*f[44]*f[47]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_59_2*f[44]*f[47]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_58_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_59_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_58_2*f[44]*f[46]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_59_2*f[44]*f[46]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_58_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_59_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-5*U[3] + 6*U[4]) - (42*f_58_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-5*U[3] + 6*U[4]) - (42*f_59_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_58_2*f[45]*f[47]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_59_2*f[45]*f[47]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (35*cos2th*f_56_2*f[44]*f[46]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_57_2*f[44]*f[46]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*f_56_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*f_57_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_56_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_57_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_56_2*f[45]*f[47]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_57_2*f[45]*f[47]*f[76]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_56_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_57_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_56_2*f[45]*f[46]*f[77]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_57_2*f[45]*f[46]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_56_2*f[44]*f[47]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_57_2*f[44]*f[47]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_56_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_57_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-4*U[3] + 6*U[4]) + (35*f_56_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_57_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_56_2*f[45]*f[46]*f[76]*f[79])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_57_2*f[45]*f[46]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_56_2*f[44]*f[47]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_57_2*f[44]*f[47]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_56_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_57_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_56_2*f[44]*f[46]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_57_2*f[44]*f[46]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_56_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_57_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-4*U[3] + 6*U[4]) - (35*f_56_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-4*U[3] + 6*U[4]) - (35*f_57_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_56_2*f[45]*f[47]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_57_2*f[45]*f[47]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (28*cos2th*f_54_2*f[44]*f[46]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_55_2*f[44]*f[46]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*f_54_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*f_55_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_54_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_55_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_54_2*f[45]*f[47]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_55_2*f[45]*f[47]*f[76]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_54_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_55_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_54_2*f[45]*f[46]*f[77]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_55_2*f[45]*f[46]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_54_2*f[44]*f[47]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_55_2*f[44]*f[47]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_54_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_55_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-3*U[3] + 6*U[4]) + (28*f_54_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_55_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_54_2*f[45]*f[46]*f[76]*f[79])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_55_2*f[45]*f[46]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_54_2*f[44]*f[47]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_55_2*f[44]*f[47]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_54_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_55_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_54_2*f[44]*f[46]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_55_2*f[44]*f[46]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_54_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_55_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-3*U[3] + 6*U[4]) - (28*f_54_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-3*U[3] + 6*U[4]) - (28*f_55_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_54_2*f[45]*f[47]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_55_2*f[45]*f[47]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (21*cos2th*f_52_2*f[44]*f[46]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_53_2*f[44]*f[46]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*f_52_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*f_53_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_52_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_53_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_52_2*f[45]*f[47]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_53_2*f[45]*f[47]*f[76]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_52_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_53_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_52_2*f[45]*f[46]*f[77]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_53_2*f[45]*f[46]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_52_2*f[44]*f[47]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_53_2*f[44]*f[47]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_52_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_53_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-2*U[3] + 6*U[4]) + (21*f_52_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_53_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_52_2*f[45]*f[46]*f[76]*f[79])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_53_2*f[45]*f[46]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_52_2*f[44]*f[47]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_53_2*f[44]*f[47]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_52_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_53_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_52_2*f[44]*f[46]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_53_2*f[44]*f[46]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_52_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_53_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-2*U[3] + 6*U[4]) - (21*f_52_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-2*U[3] + 6*U[4]) - (21*f_53_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_52_2*f[45]*f[47]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_53_2*f[45]*f[47]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (14*cos2th*f_50_2*f[44]*f[46]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_51_2*f[44]*f[46]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*f_50_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*f_51_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-U[3] + 6*U[4]) - (14*f_50_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-U[3] + 6*U[4]) - (14*f_51_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_50_2*f[45]*f[47]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_51_2*f[45]*f[47]*f[76]*f[78])/(-U[3] + 6*U[4]) - (14*f_50_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*f_51_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_50_2*f[45]*f[46]*f[77]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_51_2*f[45]*f[46]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*cos2th*f_50_2*f[44]*f[47]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*cos2th*f_51_2*f[44]*f[47]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*f_50_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*f_51_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-U[3] + 6*U[4]) + (14*f_50_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*f_51_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-U[3] + 6*U[4]) - (14*cos2th*f_50_2*f[45]*f[46]*f[76]*f[79])/(-U[3] + 6*U[4]) - (14*cos2th*f_51_2*f[45]*f[46]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_50_2*f[44]*f[47]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_51_2*f[44]*f[47]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*f_50_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*f_51_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_50_2*f[44]*f[46]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_51_2*f[44]*f[46]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*f_50_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*f_51_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-U[3] + 6*U[4]) - (14*f_50_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-U[3] + 6*U[4]) - (14*f_51_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_50_2*f[45]*f[47]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_51_2*f[45]*f[47]*f[77]*f[79])/(-U[3] + 6*U[4])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) - (J[2]*J[3]*((-2*cos2th*f_52_2*f[32]*f[34]*f[64]*f[66])/U[3] - (2*cos2th*f_53_2*f[32]*f[34]*f[64]*f[66])/U[3] - (3*cos2th*f_54_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) - (3*cos2th*f_55_2*f[32]*f[34]*f[64]*f[66])/(2.*U[3]) - (4*cos2th*f_56_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) - (4*cos2th*f_57_2*f[32]*f[34]*f[64]*f[66])/(3.*U[3]) - (5*cos2th*f_58_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) - (5*cos2th*f_59_2*f[32]*f[34]*f[64]*f[66])/(4.*U[3]) - (6*cos2th*f_60_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) - (6*cos2th*f_61_2*f[32]*f[34]*f[64]*f[66])/(5.*U[3]) - (7*cos2th*f_62_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) - (7*cos2th*f_63_2*f[32]*f[34]*f[64]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] - (2*f_53_2*sin2th*f[33]*f[34]*f[64]*f[66])/U[3] - (3*f_54_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) - (3*f_55_2*sin2th*f[33]*f[34]*f[64]*f[66])/(2.*U[3]) - (4*f_56_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) - (4*f_57_2*sin2th*f[33]*f[34]*f[64]*f[66])/(3.*U[3]) - (5*f_58_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) - (5*f_59_2*sin2th*f[33]*f[34]*f[64]*f[66])/(4.*U[3]) - (6*f_60_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) - (6*f_61_2*sin2th*f[33]*f[34]*f[64]*f[66])/(5.*U[3]) - (7*f_62_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) - (7*f_63_2*sin2th*f[33]*f[34]*f[64]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] + (2*f_53_2*sin2th*f[32]*f[35]*f[64]*f[66])/U[3] + (3*f_54_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) + (3*f_55_2*sin2th*f[32]*f[35]*f[64]*f[66])/(2.*U[3]) + (4*f_56_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) + (4*f_57_2*sin2th*f[32]*f[35]*f[64]*f[66])/(3.*U[3]) + (5*f_58_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) + (5*f_59_2*sin2th*f[32]*f[35]*f[64]*f[66])/(4.*U[3]) + (6*f_60_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) + (6*f_61_2*sin2th*f[32]*f[35]*f[64]*f[66])/(5.*U[3]) + (7*f_62_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) + (7*f_63_2*sin2th*f[32]*f[35]*f[64]*f[66])/(6.*U[3]) - (2*cos2th*f_52_2*f[33]*f[35]*f[64]*f[66])/U[3] - (2*cos2th*f_53_2*f[33]*f[35]*f[64]*f[66])/U[3] - (3*cos2th*f_54_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) - (3*cos2th*f_55_2*f[33]*f[35]*f[64]*f[66])/(2.*U[3]) - (4*cos2th*f_56_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) - (4*cos2th*f_57_2*f[33]*f[35]*f[64]*f[66])/(3.*U[3]) - (5*cos2th*f_58_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) - (5*cos2th*f_59_2*f[33]*f[35]*f[64]*f[66])/(4.*U[3]) - (6*cos2th*f_60_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) - (6*cos2th*f_61_2*f[33]*f[35]*f[64]*f[66])/(5.*U[3]) - (7*cos2th*f_62_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) - (7*cos2th*f_63_2*f[33]*f[35]*f[64]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] + (2*f_53_2*sin2th*f[32]*f[34]*f[65]*f[66])/U[3] + (3*f_54_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) + (3*f_55_2*sin2th*f[32]*f[34]*f[65]*f[66])/(2.*U[3]) + (4*f_56_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) + (4*f_57_2*sin2th*f[32]*f[34]*f[65]*f[66])/(3.*U[3]) + (5*f_58_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) + (5*f_59_2*sin2th*f[32]*f[34]*f[65]*f[66])/(4.*U[3]) + (6*f_60_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) + (6*f_61_2*sin2th*f[32]*f[34]*f[65]*f[66])/(5.*U[3]) + (7*f_62_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) + (7*f_63_2*sin2th*f[32]*f[34]*f[65]*f[66])/(6.*U[3]) - (2*cos2th*f_52_2*f[33]*f[34]*f[65]*f[66])/U[3] - (2*cos2th*f_53_2*f[33]*f[34]*f[65]*f[66])/U[3] - (3*cos2th*f_54_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) - (3*cos2th*f_55_2*f[33]*f[34]*f[65]*f[66])/(2.*U[3]) - (4*cos2th*f_56_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) - (4*cos2th*f_57_2*f[33]*f[34]*f[65]*f[66])/(3.*U[3]) - (5*cos2th*f_58_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) - (5*cos2th*f_59_2*f[33]*f[34]*f[65]*f[66])/(4.*U[3]) - (6*cos2th*f_60_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) - (6*cos2th*f_61_2*f[33]*f[34]*f[65]*f[66])/(5.*U[3]) - (7*cos2th*f_62_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) - (7*cos2th*f_63_2*f[33]*f[34]*f[65]*f[66])/(6.*U[3]) + (2*cos2th*f_52_2*f[32]*f[35]*f[65]*f[66])/U[3] + (2*cos2th*f_53_2*f[32]*f[35]*f[65]*f[66])/U[3] + (3*cos2th*f_54_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) + (3*cos2th*f_55_2*f[32]*f[35]*f[65]*f[66])/(2.*U[3]) + (4*cos2th*f_56_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) + (4*cos2th*f_57_2*f[32]*f[35]*f[65]*f[66])/(3.*U[3]) + (5*cos2th*f_58_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) + (5*cos2th*f_59_2*f[32]*f[35]*f[65]*f[66])/(4.*U[3]) + (6*cos2th*f_60_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) + (6*cos2th*f_61_2*f[32]*f[35]*f[65]*f[66])/(5.*U[3]) + (7*cos2th*f_62_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) + (7*cos2th*f_63_2*f[32]*f[35]*f[65]*f[66])/(6.*U[3]) + (2*f_52_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] + (2*f_53_2*sin2th*f[33]*f[35]*f[65]*f[66])/U[3] + (3*f_54_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) + (3*f_55_2*sin2th*f[33]*f[35]*f[65]*f[66])/(2.*U[3]) + (4*f_56_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) + (4*f_57_2*sin2th*f[33]*f[35]*f[65]*f[66])/(3.*U[3]) + (5*f_58_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) + (5*f_59_2*sin2th*f[33]*f[35]*f[65]*f[66])/(4.*U[3]) + (6*f_60_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) + (6*f_61_2*sin2th*f[33]*f[35]*f[65]*f[66])/(5.*U[3]) + (7*f_62_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) + (7*f_63_2*sin2th*f[33]*f[35]*f[65]*f[66])/(6.*U[3]) - (2*f_52_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] - (2*f_53_2*sin2th*f[32]*f[34]*f[64]*f[67])/U[3] - (3*f_54_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) - (3*f_55_2*sin2th*f[32]*f[34]*f[64]*f[67])/(2.*U[3]) - (4*f_56_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) - (4*f_57_2*sin2th*f[32]*f[34]*f[64]*f[67])/(3.*U[3]) - (5*f_58_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) - (5*f_59_2*sin2th*f[32]*f[34]*f[64]*f[67])/(4.*U[3]) - (6*f_60_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) - (6*f_61_2*sin2th*f[32]*f[34]*f[64]*f[67])/(5.*U[3]) - (7*f_62_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) - (7*f_63_2*sin2th*f[32]*f[34]*f[64]*f[67])/(6.*U[3]) + (2*cos2th*f_52_2*f[33]*f[34]*f[64]*f[67])/U[3] + (2*cos2th*f_53_2*f[33]*f[34]*f[64]*f[67])/U[3] + (3*cos2th*f_54_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) + (3*cos2th*f_55_2*f[33]*f[34]*f[64]*f[67])/(2.*U[3]) + (4*cos2th*f_56_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) + (4*cos2th*f_57_2*f[33]*f[34]*f[64]*f[67])/(3.*U[3]) + (5*cos2th*f_58_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) + (5*cos2th*f_59_2*f[33]*f[34]*f[64]*f[67])/(4.*U[3]) + (6*cos2th*f_60_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) + (6*cos2th*f_61_2*f[33]*f[34]*f[64]*f[67])/(5.*U[3]) + (7*cos2th*f_62_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) + (7*cos2th*f_63_2*f[33]*f[34]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_52_2*f[32]*f[35]*f[64]*f[67])/U[3] - (2*cos2th*f_53_2*f[32]*f[35]*f[64]*f[67])/U[3] - (3*cos2th*f_54_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) - (3*cos2th*f_55_2*f[32]*f[35]*f[64]*f[67])/(2.*U[3]) - (4*cos2th*f_56_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) - (4*cos2th*f_57_2*f[32]*f[35]*f[64]*f[67])/(3.*U[3]) - (5*cos2th*f_58_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) - (5*cos2th*f_59_2*f[32]*f[35]*f[64]*f[67])/(4.*U[3]) - (6*cos2th*f_60_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) - (6*cos2th*f_61_2*f[32]*f[35]*f[64]*f[67])/(5.*U[3]) - (7*cos2th*f_62_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) - (7*cos2th*f_63_2*f[32]*f[35]*f[64]*f[67])/(6.*U[3]) - (2*f_52_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] - (2*f_53_2*sin2th*f[33]*f[35]*f[64]*f[67])/U[3] - (3*f_54_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) - (3*f_55_2*sin2th*f[33]*f[35]*f[64]*f[67])/(2.*U[3]) - (4*f_56_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) - (4*f_57_2*sin2th*f[33]*f[35]*f[64]*f[67])/(3.*U[3]) - (5*f_58_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) - (5*f_59_2*sin2th*f[33]*f[35]*f[64]*f[67])/(4.*U[3]) - (6*f_60_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) - (6*f_61_2*sin2th*f[33]*f[35]*f[64]*f[67])/(5.*U[3]) - (7*f_62_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) - (7*f_63_2*sin2th*f[33]*f[35]*f[64]*f[67])/(6.*U[3]) - (2*cos2th*f_52_2*f[32]*f[34]*f[65]*f[67])/U[3] - (2*cos2th*f_53_2*f[32]*f[34]*f[65]*f[67])/U[3] - (3*cos2th*f_54_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) - (3*cos2th*f_55_2*f[32]*f[34]*f[65]*f[67])/(2.*U[3]) - (4*cos2th*f_56_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) - (4*cos2th*f_57_2*f[32]*f[34]*f[65]*f[67])/(3.*U[3]) - (5*cos2th*f_58_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) - (5*cos2th*f_59_2*f[32]*f[34]*f[65]*f[67])/(4.*U[3]) - (6*cos2th*f_60_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) - (6*cos2th*f_61_2*f[32]*f[34]*f[65]*f[67])/(5.*U[3]) - (7*cos2th*f_62_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) - (7*cos2th*f_63_2*f[32]*f[34]*f[65]*f[67])/(6.*U[3]) - (2*f_52_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] - (2*f_53_2*sin2th*f[33]*f[34]*f[65]*f[67])/U[3] - (3*f_54_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) - (3*f_55_2*sin2th*f[33]*f[34]*f[65]*f[67])/(2.*U[3]) - (4*f_56_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) - (4*f_57_2*sin2th*f[33]*f[34]*f[65]*f[67])/(3.*U[3]) - (5*f_58_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) - (5*f_59_2*sin2th*f[33]*f[34]*f[65]*f[67])/(4.*U[3]) - (6*f_60_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) - (6*f_61_2*sin2th*f[33]*f[34]*f[65]*f[67])/(5.*U[3]) - (7*f_62_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) - (7*f_63_2*sin2th*f[33]*f[34]*f[65]*f[67])/(6.*U[3]) + (2*f_52_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] + (2*f_53_2*sin2th*f[32]*f[35]*f[65]*f[67])/U[3] + (3*f_54_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) + (3*f_55_2*sin2th*f[32]*f[35]*f[65]*f[67])/(2.*U[3]) + (4*f_56_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) + (4*f_57_2*sin2th*f[32]*f[35]*f[65]*f[67])/(3.*U[3]) + (5*f_58_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) + (5*f_59_2*sin2th*f[32]*f[35]*f[65]*f[67])/(4.*U[3]) + (6*f_60_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) + (6*f_61_2*sin2th*f[32]*f[35]*f[65]*f[67])/(5.*U[3]) + (7*f_62_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) + (7*f_63_2*sin2th*f[32]*f[35]*f[65]*f[67])/(6.*U[3]) - (2*cos2th*f_52_2*f[33]*f[35]*f[65]*f[67])/U[3] - (2*cos2th*f_53_2*f[33]*f[35]*f[65]*f[67])/U[3] - (3*cos2th*f_54_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) - (3*cos2th*f_55_2*f[33]*f[35]*f[65]*f[67])/(2.*U[3]) - (4*cos2th*f_56_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) - (4*cos2th*f_57_2*f[33]*f[35]*f[65]*f[67])/(3.*U[3]) - (5*cos2th*f_58_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) - (5*cos2th*f_59_2*f[33]*f[35]*f[65]*f[67])/(4.*U[3]) - (6*cos2th*f_60_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) - (6*cos2th*f_61_2*f[33]*f[35]*f[65]*f[67])/(5.*U[3]) - (7*cos2th*f_62_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) - (7*cos2th*f_63_2*f[33]*f[35]*f[65]*f[67])/(6.*U[3]) + (2*cos2th*f_50_2*f[34]*f[36]*f[66]*f[68])/U[4] + (2*cos2th*f_51_2*f[34]*f[36]*f[66]*f[68])/U[4] + (2*f_50_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[4] + (2*f_51_2*sin2th*f[35]*f[36]*f[66]*f[68])/U[4] - (2*f_50_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[4] - (2*f_51_2*sin2th*f[34]*f[37]*f[66]*f[68])/U[4] + (2*cos2th*f_50_2*f[35]*f[37]*f[66]*f[68])/U[4] + (2*cos2th*f_51_2*f[35]*f[37]*f[66]*f[68])/U[4] - (2*f_50_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[4] - (2*f_51_2*sin2th*f[34]*f[36]*f[67]*f[68])/U[4] + (2*cos2th*f_50_2*f[35]*f[36]*f[67]*f[68])/U[4] + (2*cos2th*f_51_2*f[35]*f[36]*f[67]*f[68])/U[4] - (2*cos2th*f_50_2*f[34]*f[37]*f[67]*f[68])/U[4] - (2*cos2th*f_51_2*f[34]*f[37]*f[67]*f[68])/U[4] - (2*f_50_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[4] - (2*f_51_2*sin2th*f[35]*f[37]*f[67]*f[68])/U[4] + (2*f_50_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[4] + (2*f_51_2*sin2th*f[34]*f[36]*f[66]*f[69])/U[4] - (2*cos2th*f_50_2*f[35]*f[36]*f[66]*f[69])/U[4] - (2*cos2th*f_51_2*f[35]*f[36]*f[66]*f[69])/U[4] + (2*cos2th*f_50_2*f[34]*f[37]*f[66]*f[69])/U[4] + (2*cos2th*f_51_2*f[34]*f[37]*f[66]*f[69])/U[4] + (2*f_50_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[4] + (2*f_51_2*sin2th*f[35]*f[37]*f[66]*f[69])/U[4] + (2*cos2th*f_50_2*f[34]*f[36]*f[67]*f[69])/U[4] + (2*cos2th*f_51_2*f[34]*f[36]*f[67]*f[69])/U[4] + (2*f_50_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[4] + (2*f_51_2*sin2th*f[35]*f[36]*f[67]*f[69])/U[4] - (2*f_50_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[4] - (2*f_51_2*sin2th*f[34]*f[37]*f[67]*f[69])/U[4] + (2*cos2th*f_50_2*f[35]*f[37]*f[67]*f[69])/U[4] + (2*cos2th*f_51_2*f[35]*f[37]*f[67]*f[69])/U[4] + (3*cos2th*f_50_2*f[36]*f[38]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_51_2*f[36]*f[38]*f[68]*f[70])/(2.*U[4]) + (3*f_50_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[4]) + (3*f_51_2*sin2th*f[37]*f[38]*f[68]*f[70])/(2.*U[4]) - (3*f_50_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[4]) - (3*f_51_2*sin2th*f[36]*f[39]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_50_2*f[37]*f[39]*f[68]*f[70])/(2.*U[4]) + (3*cos2th*f_51_2*f[37]*f[39]*f[68]*f[70])/(2.*U[4]) - (3*f_50_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[4]) - (3*f_51_2*sin2th*f[36]*f[38]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_50_2*f[37]*f[38]*f[69]*f[70])/(2.*U[4]) + (3*cos2th*f_51_2*f[37]*f[38]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_50_2*f[36]*f[39]*f[69]*f[70])/(2.*U[4]) - (3*cos2th*f_51_2*f[36]*f[39]*f[69]*f[70])/(2.*U[4]) - (3*f_50_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[4]) - (3*f_51_2*sin2th*f[37]*f[39]*f[69]*f[70])/(2.*U[4]) + (3*f_50_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[4]) + (3*f_51_2*sin2th*f[36]*f[38]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_50_2*f[37]*f[38]*f[68]*f[71])/(2.*U[4]) - (3*cos2th*f_51_2*f[37]*f[38]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_50_2*f[36]*f[39]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_51_2*f[36]*f[39]*f[68]*f[71])/(2.*U[4]) + (3*f_50_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[4]) + (3*f_51_2*sin2th*f[37]*f[39]*f[68]*f[71])/(2.*U[4]) + (3*cos2th*f_50_2*f[36]*f[38]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_51_2*f[36]*f[38]*f[69]*f[71])/(2.*U[4]) + (3*f_50_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[4]) + (3*f_51_2*sin2th*f[37]*f[38]*f[69]*f[71])/(2.*U[4]) - (3*f_50_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[4]) - (3*f_51_2*sin2th*f[36]*f[39]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_50_2*f[37]*f[39]*f[69]*f[71])/(2.*U[4]) + (3*cos2th*f_51_2*f[37]*f[39]*f[69]*f[71])/(2.*U[4]) + (4*cos2th*f_50_2*f[38]*f[40]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_51_2*f[38]*f[40]*f[70]*f[72])/(3.*U[4]) + (4*f_50_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[4]) + (4*f_51_2*sin2th*f[39]*f[40]*f[70]*f[72])/(3.*U[4]) - (4*f_50_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[4]) - (4*f_51_2*sin2th*f[38]*f[41]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_50_2*f[39]*f[41]*f[70]*f[72])/(3.*U[4]) + (4*cos2th*f_51_2*f[39]*f[41]*f[70]*f[72])/(3.*U[4]) - (4*f_50_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[4]) - (4*f_51_2*sin2th*f[38]*f[40]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_50_2*f[39]*f[40]*f[71]*f[72])/(3.*U[4]) + (4*cos2th*f_51_2*f[39]*f[40]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_50_2*f[38]*f[41]*f[71]*f[72])/(3.*U[4]) - (4*cos2th*f_51_2*f[38]*f[41]*f[71]*f[72])/(3.*U[4]) - (4*f_50_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[4]) - (4*f_51_2*sin2th*f[39]*f[41]*f[71]*f[72])/(3.*U[4]) + (4*f_50_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[4]) + (4*f_51_2*sin2th*f[38]*f[40]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_50_2*f[39]*f[40]*f[70]*f[73])/(3.*U[4]) - (4*cos2th*f_51_2*f[39]*f[40]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_50_2*f[38]*f[41]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_51_2*f[38]*f[41]*f[70]*f[73])/(3.*U[4]) + (4*f_50_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[4]) + (4*f_51_2*sin2th*f[39]*f[41]*f[70]*f[73])/(3.*U[4]) + (4*cos2th*f_50_2*f[38]*f[40]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_51_2*f[38]*f[40]*f[71]*f[73])/(3.*U[4]) + (4*f_50_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[4]) + (4*f_51_2*sin2th*f[39]*f[40]*f[71]*f[73])/(3.*U[4]) - (4*f_50_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[4]) - (4*f_51_2*sin2th*f[38]*f[41]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_50_2*f[39]*f[41]*f[71]*f[73])/(3.*U[4]) + (4*cos2th*f_51_2*f[39]*f[41]*f[71]*f[73])/(3.*U[4]) + (5*cos2th*f_50_2*f[40]*f[42]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_51_2*f[40]*f[42]*f[72]*f[74])/(4.*U[4]) + (5*f_50_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[4]) + (5*f_51_2*sin2th*f[41]*f[42]*f[72]*f[74])/(4.*U[4]) - (5*f_50_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[4]) - (5*f_51_2*sin2th*f[40]*f[43]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_50_2*f[41]*f[43]*f[72]*f[74])/(4.*U[4]) + (5*cos2th*f_51_2*f[41]*f[43]*f[72]*f[74])/(4.*U[4]) - (5*f_50_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[4]) - (5*f_51_2*sin2th*f[40]*f[42]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_50_2*f[41]*f[42]*f[73]*f[74])/(4.*U[4]) + (5*cos2th*f_51_2*f[41]*f[42]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_50_2*f[40]*f[43]*f[73]*f[74])/(4.*U[4]) - (5*cos2th*f_51_2*f[40]*f[43]*f[73]*f[74])/(4.*U[4]) - (5*f_50_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[4]) - (5*f_51_2*sin2th*f[41]*f[43]*f[73]*f[74])/(4.*U[4]) + (5*f_50_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[4]) + (5*f_51_2*sin2th*f[40]*f[42]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_50_2*f[41]*f[42]*f[72]*f[75])/(4.*U[4]) - (5*cos2th*f_51_2*f[41]*f[42]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_50_2*f[40]*f[43]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_51_2*f[40]*f[43]*f[72]*f[75])/(4.*U[4]) + (5*f_50_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[4]) + (5*f_51_2*sin2th*f[41]*f[43]*f[72]*f[75])/(4.*U[4]) + (5*cos2th*f_50_2*f[40]*f[42]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_51_2*f[40]*f[42]*f[73]*f[75])/(4.*U[4]) + (5*f_50_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[4]) + (5*f_51_2*sin2th*f[41]*f[42]*f[73]*f[75])/(4.*U[4]) - (5*f_50_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[4]) - (5*f_51_2*sin2th*f[40]*f[43]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_50_2*f[41]*f[43]*f[73]*f[75])/(4.*U[4]) + (5*cos2th*f_51_2*f[41]*f[43]*f[73]*f[75])/(4.*U[4]) + (6*cos2th*f_50_2*f[42]*f[44]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_51_2*f[42]*f[44]*f[74]*f[76])/(5.*U[4]) + (6*f_50_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[4]) + (6*f_51_2*sin2th*f[43]*f[44]*f[74]*f[76])/(5.*U[4]) - (6*f_50_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[4]) - (6*f_51_2*sin2th*f[42]*f[45]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_50_2*f[43]*f[45]*f[74]*f[76])/(5.*U[4]) + (6*cos2th*f_51_2*f[43]*f[45]*f[74]*f[76])/(5.*U[4]) - (6*f_50_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[4]) - (6*f_51_2*sin2th*f[42]*f[44]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_50_2*f[43]*f[44]*f[75]*f[76])/(5.*U[4]) + (6*cos2th*f_51_2*f[43]*f[44]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_50_2*f[42]*f[45]*f[75]*f[76])/(5.*U[4]) - (6*cos2th*f_51_2*f[42]*f[45]*f[75]*f[76])/(5.*U[4]) - (6*f_50_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[4]) - (6*f_51_2*sin2th*f[43]*f[45]*f[75]*f[76])/(5.*U[4]) + (6*f_50_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[4]) + (6*f_51_2*sin2th*f[42]*f[44]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_50_2*f[43]*f[44]*f[74]*f[77])/(5.*U[4]) - (6*cos2th*f_51_2*f[43]*f[44]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_50_2*f[42]*f[45]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_51_2*f[42]*f[45]*f[74]*f[77])/(5.*U[4]) + (6*f_50_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[4]) + (6*f_51_2*sin2th*f[43]*f[45]*f[74]*f[77])/(5.*U[4]) + (6*cos2th*f_50_2*f[42]*f[44]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_51_2*f[42]*f[44]*f[75]*f[77])/(5.*U[4]) + (6*f_50_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[4]) + (6*f_51_2*sin2th*f[43]*f[44]*f[75]*f[77])/(5.*U[4]) - (6*f_50_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[4]) - (6*f_51_2*sin2th*f[42]*f[45]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_50_2*f[43]*f[45]*f[75]*f[77])/(5.*U[4]) + (6*cos2th*f_51_2*f[43]*f[45]*f[75]*f[77])/(5.*U[4]) + (7*cos2th*f_50_2*f[44]*f[46]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_51_2*f[44]*f[46]*f[76]*f[78])/(6.*U[4]) + (7*f_50_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[4]) + (7*f_51_2*sin2th*f[45]*f[46]*f[76]*f[78])/(6.*U[4]) - (7*f_50_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[4]) - (7*f_51_2*sin2th*f[44]*f[47]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_50_2*f[45]*f[47]*f[76]*f[78])/(6.*U[4]) + (7*cos2th*f_51_2*f[45]*f[47]*f[76]*f[78])/(6.*U[4]) - (7*f_50_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[4]) - (7*f_51_2*sin2th*f[44]*f[46]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_50_2*f[45]*f[46]*f[77]*f[78])/(6.*U[4]) + (7*cos2th*f_51_2*f[45]*f[46]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_50_2*f[44]*f[47]*f[77]*f[78])/(6.*U[4]) - (7*cos2th*f_51_2*f[44]*f[47]*f[77]*f[78])/(6.*U[4]) - (7*f_50_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[4]) - (7*f_51_2*sin2th*f[45]*f[47]*f[77]*f[78])/(6.*U[4]) + (7*f_50_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[4]) + (7*f_51_2*sin2th*f[44]*f[46]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_50_2*f[45]*f[46]*f[76]*f[79])/(6.*U[4]) - (7*cos2th*f_51_2*f[45]*f[46]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_50_2*f[44]*f[47]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_51_2*f[44]*f[47]*f[76]*f[79])/(6.*U[4]) + (7*f_50_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[4]) + (7*f_51_2*sin2th*f[45]*f[47]*f[76]*f[79])/(6.*U[4]) + (7*cos2th*f_50_2*f[44]*f[46]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_51_2*f[44]*f[46]*f[77]*f[79])/(6.*U[4]) + (7*f_50_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[4]) + (7*f_51_2*sin2th*f[45]*f[46]*f[77]*f[79])/(6.*U[4]) - (7*f_50_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[4]) - (7*f_51_2*sin2th*f[44]*f[47]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_50_2*f[45]*f[47]*f[77]*f[79])/(6.*U[4]) + (7*cos2th*f_51_2*f[45]*f[47]*f[77]*f[79])/(6.*U[4]) + (14*cos2th*f_62_2*f[34]*f[36]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_63_2*f[34]*f[36]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*f_62_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*f_63_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-6*U[3] + U[4]) - (14*f_62_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-6*U[3] + U[4]) - (14*f_63_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_62_2*f[35]*f[37]*f[66]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_63_2*f[35]*f[37]*f[66]*f[68])/(-6*U[3] + U[4]) - (14*f_62_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*f_63_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_62_2*f[35]*f[36]*f[67]*f[68])/(-6*U[3] + U[4]) + (14*cos2th*f_63_2*f[35]*f[36]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*cos2th*f_62_2*f[34]*f[37]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*cos2th*f_63_2*f[34]*f[37]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*f_62_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-6*U[3] + U[4]) - (14*f_63_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-6*U[3] + U[4]) + (14*f_62_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*f_63_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-6*U[3] + U[4]) - (14*cos2th*f_62_2*f[35]*f[36]*f[66]*f[69])/(-6*U[3] + U[4]) - (14*cos2th*f_63_2*f[35]*f[36]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_62_2*f[34]*f[37]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_63_2*f[34]*f[37]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*f_62_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*f_63_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_62_2*f[34]*f[36]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_63_2*f[34]*f[36]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*f_62_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*f_63_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-6*U[3] + U[4]) - (14*f_62_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-6*U[3] + U[4]) - (14*f_63_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_62_2*f[35]*f[37]*f[67]*f[69])/(-6*U[3] + U[4]) + (14*cos2th*f_63_2*f[35]*f[37]*f[67]*f[69])/(-6*U[3] + U[4]) + (12*cos2th*f_60_2*f[34]*f[36]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_61_2*f[34]*f[36]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*f_60_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*f_61_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-5*U[3] + U[4]) - (12*f_60_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-5*U[3] + U[4]) - (12*f_61_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_60_2*f[35]*f[37]*f[66]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_61_2*f[35]*f[37]*f[66]*f[68])/(-5*U[3] + U[4]) - (12*f_60_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*f_61_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_60_2*f[35]*f[36]*f[67]*f[68])/(-5*U[3] + U[4]) + (12*cos2th*f_61_2*f[35]*f[36]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*cos2th*f_60_2*f[34]*f[37]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*cos2th*f_61_2*f[34]*f[37]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*f_60_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-5*U[3] + U[4]) - (12*f_61_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-5*U[3] + U[4]) + (12*f_60_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*f_61_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-5*U[3] + U[4]) - (12*cos2th*f_60_2*f[35]*f[36]*f[66]*f[69])/(-5*U[3] + U[4]) - (12*cos2th*f_61_2*f[35]*f[36]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_60_2*f[34]*f[37]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_61_2*f[34]*f[37]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*f_60_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*f_61_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_60_2*f[34]*f[36]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_61_2*f[34]*f[36]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*f_60_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*f_61_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-5*U[3] + U[4]) - (12*f_60_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-5*U[3] + U[4]) - (12*f_61_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_60_2*f[35]*f[37]*f[67]*f[69])/(-5*U[3] + U[4]) + (12*cos2th*f_61_2*f[35]*f[37]*f[67]*f[69])/(-5*U[3] + U[4]) + (10*cos2th*f_58_2*f[34]*f[36]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_59_2*f[34]*f[36]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*f_58_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*f_59_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-4*U[3] + U[4]) - (10*f_58_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-4*U[3] + U[4]) - (10*f_59_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_58_2*f[35]*f[37]*f[66]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_59_2*f[35]*f[37]*f[66]*f[68])/(-4*U[3] + U[4]) - (10*f_58_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*f_59_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_58_2*f[35]*f[36]*f[67]*f[68])/(-4*U[3] + U[4]) + (10*cos2th*f_59_2*f[35]*f[36]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*cos2th*f_58_2*f[34]*f[37]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*cos2th*f_59_2*f[34]*f[37]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*f_58_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-4*U[3] + U[4]) - (10*f_59_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-4*U[3] + U[4]) + (10*f_58_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*f_59_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-4*U[3] + U[4]) - (10*cos2th*f_58_2*f[35]*f[36]*f[66]*f[69])/(-4*U[3] + U[4]) - (10*cos2th*f_59_2*f[35]*f[36]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_58_2*f[34]*f[37]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_59_2*f[34]*f[37]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*f_58_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*f_59_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_58_2*f[34]*f[36]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_59_2*f[34]*f[36]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*f_58_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*f_59_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-4*U[3] + U[4]) - (10*f_58_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-4*U[3] + U[4]) - (10*f_59_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_58_2*f[35]*f[37]*f[67]*f[69])/(-4*U[3] + U[4]) + (10*cos2th*f_59_2*f[35]*f[37]*f[67]*f[69])/(-4*U[3] + U[4]) + (8*cos2th*f_56_2*f[34]*f[36]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_57_2*f[34]*f[36]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*f_56_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*f_57_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-3*U[3] + U[4]) - (8*f_56_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-3*U[3] + U[4]) - (8*f_57_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_56_2*f[35]*f[37]*f[66]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_57_2*f[35]*f[37]*f[66]*f[68])/(-3*U[3] + U[4]) - (8*f_56_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*f_57_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_56_2*f[35]*f[36]*f[67]*f[68])/(-3*U[3] + U[4]) + (8*cos2th*f_57_2*f[35]*f[36]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*cos2th*f_56_2*f[34]*f[37]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*cos2th*f_57_2*f[34]*f[37]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*f_56_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-3*U[3] + U[4]) - (8*f_57_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-3*U[3] + U[4]) + (8*f_56_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*f_57_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-3*U[3] + U[4]) - (8*cos2th*f_56_2*f[35]*f[36]*f[66]*f[69])/(-3*U[3] + U[4]) - (8*cos2th*f_57_2*f[35]*f[36]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_56_2*f[34]*f[37]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_57_2*f[34]*f[37]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*f_56_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*f_57_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_56_2*f[34]*f[36]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_57_2*f[34]*f[36]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*f_56_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*f_57_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-3*U[3] + U[4]) - (8*f_56_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-3*U[3] + U[4]) - (8*f_57_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_56_2*f[35]*f[37]*f[67]*f[69])/(-3*U[3] + U[4]) + (8*cos2th*f_57_2*f[35]*f[37]*f[67]*f[69])/(-3*U[3] + U[4]) + (6*cos2th*f_54_2*f[34]*f[36]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_55_2*f[34]*f[36]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*f_54_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*f_55_2*sin2th*f[35]*f[36]*f[66]*f[68])/(-2*U[3] + U[4]) - (6*f_54_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-2*U[3] + U[4]) - (6*f_55_2*sin2th*f[34]*f[37]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_54_2*f[35]*f[37]*f[66]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_55_2*f[35]*f[37]*f[66]*f[68])/(-2*U[3] + U[4]) - (6*f_54_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*f_55_2*sin2th*f[34]*f[36]*f[67]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_54_2*f[35]*f[36]*f[67]*f[68])/(-2*U[3] + U[4]) + (6*cos2th*f_55_2*f[35]*f[36]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*cos2th*f_54_2*f[34]*f[37]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*cos2th*f_55_2*f[34]*f[37]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*f_54_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-2*U[3] + U[4]) - (6*f_55_2*sin2th*f[35]*f[37]*f[67]*f[68])/(-2*U[3] + U[4]) + (6*f_54_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*f_55_2*sin2th*f[34]*f[36]*f[66]*f[69])/(-2*U[3] + U[4]) - (6*cos2th*f_54_2*f[35]*f[36]*f[66]*f[69])/(-2*U[3] + U[4]) - (6*cos2th*f_55_2*f[35]*f[36]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_54_2*f[34]*f[37]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_55_2*f[34]*f[37]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*f_54_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*f_55_2*sin2th*f[35]*f[37]*f[66]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_54_2*f[34]*f[36]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_55_2*f[34]*f[36]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*f_54_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*f_55_2*sin2th*f[35]*f[36]*f[67]*f[69])/(-2*U[3] + U[4]) - (6*f_54_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-2*U[3] + U[4]) - (6*f_55_2*sin2th*f[34]*f[37]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_54_2*f[35]*f[37]*f[67]*f[69])/(-2*U[3] + U[4]) + (6*cos2th*f_55_2*f[35]*f[37]*f[67]*f[69])/(-2*U[3] + U[4]) + (21*cos2th*f_62_2*f[36]*f[38]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_63_2*f[36]*f[38]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*f_62_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*f_63_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_62_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_63_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_62_2*f[37]*f[39]*f[68]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_63_2*f[37]*f[39]*f[68]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_62_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_63_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_62_2*f[37]*f[38]*f[69]*f[70])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_63_2*f[37]*f[38]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_62_2*f[36]*f[39]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_63_2*f[36]*f[39]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_62_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-6*U[3] + 2*U[4]) - (21*f_63_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-6*U[3] + 2*U[4]) + (21*f_62_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_63_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_62_2*f[37]*f[38]*f[68]*f[71])/(-6*U[3] + 2*U[4]) - (21*cos2th*f_63_2*f[37]*f[38]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_62_2*f[36]*f[39]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_63_2*f[36]*f[39]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_62_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_63_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_62_2*f[36]*f[38]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_63_2*f[36]*f[38]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_62_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*f_63_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-6*U[3] + 2*U[4]) - (21*f_62_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-6*U[3] + 2*U[4]) - (21*f_63_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_62_2*f[37]*f[39]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (21*cos2th*f_63_2*f[37]*f[39]*f[69]*f[71])/(-6*U[3] + 2*U[4]) + (18*cos2th*f_60_2*f[36]*f[38]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_61_2*f[36]*f[38]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*f_60_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*f_61_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_60_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_61_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_60_2*f[37]*f[39]*f[68]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_61_2*f[37]*f[39]*f[68]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_60_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_61_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_60_2*f[37]*f[38]*f[69]*f[70])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_61_2*f[37]*f[38]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_60_2*f[36]*f[39]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_61_2*f[36]*f[39]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_60_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-5*U[3] + 2*U[4]) - (18*f_61_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-5*U[3] + 2*U[4]) + (18*f_60_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_61_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_60_2*f[37]*f[38]*f[68]*f[71])/(-5*U[3] + 2*U[4]) - (18*cos2th*f_61_2*f[37]*f[38]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_60_2*f[36]*f[39]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_61_2*f[36]*f[39]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_60_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_61_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_60_2*f[36]*f[38]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_61_2*f[36]*f[38]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_60_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*f_61_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-5*U[3] + 2*U[4]) - (18*f_60_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-5*U[3] + 2*U[4]) - (18*f_61_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_60_2*f[37]*f[39]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (18*cos2th*f_61_2*f[37]*f[39]*f[69]*f[71])/(-5*U[3] + 2*U[4]) + (15*cos2th*f_58_2*f[36]*f[38]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_59_2*f[36]*f[38]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*f_58_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*f_59_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_58_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_59_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_58_2*f[37]*f[39]*f[68]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_59_2*f[37]*f[39]*f[68]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_58_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_59_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_58_2*f[37]*f[38]*f[69]*f[70])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_59_2*f[37]*f[38]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_58_2*f[36]*f[39]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_59_2*f[36]*f[39]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_58_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-4*U[3] + 2*U[4]) - (15*f_59_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-4*U[3] + 2*U[4]) + (15*f_58_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_59_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_58_2*f[37]*f[38]*f[68]*f[71])/(-4*U[3] + 2*U[4]) - (15*cos2th*f_59_2*f[37]*f[38]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_58_2*f[36]*f[39]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_59_2*f[36]*f[39]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_58_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_59_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_58_2*f[36]*f[38]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_59_2*f[36]*f[38]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_58_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*f_59_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-4*U[3] + 2*U[4]) - (15*f_58_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-4*U[3] + 2*U[4]) - (15*f_59_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_58_2*f[37]*f[39]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (15*cos2th*f_59_2*f[37]*f[39]*f[69]*f[71])/(-4*U[3] + 2*U[4]) + (12*cos2th*f_56_2*f[36]*f[38]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_57_2*f[36]*f[38]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*f_56_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*f_57_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_56_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_57_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_56_2*f[37]*f[39]*f[68]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_57_2*f[37]*f[39]*f[68]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_56_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_57_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_56_2*f[37]*f[38]*f[69]*f[70])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_57_2*f[37]*f[38]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_56_2*f[36]*f[39]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_57_2*f[36]*f[39]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_56_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-3*U[3] + 2*U[4]) - (12*f_57_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-3*U[3] + 2*U[4]) + (12*f_56_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_57_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_56_2*f[37]*f[38]*f[68]*f[71])/(-3*U[3] + 2*U[4]) - (12*cos2th*f_57_2*f[37]*f[38]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_56_2*f[36]*f[39]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_57_2*f[36]*f[39]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_56_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_57_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_56_2*f[36]*f[38]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_57_2*f[36]*f[38]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_56_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*f_57_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-3*U[3] + 2*U[4]) - (12*f_56_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-3*U[3] + 2*U[4]) - (12*f_57_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_56_2*f[37]*f[39]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (12*cos2th*f_57_2*f[37]*f[39]*f[69]*f[71])/(-3*U[3] + 2*U[4]) + (6*cos2th*f_52_2*f[36]*f[38]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_53_2*f[36]*f[38]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*f_52_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*f_53_2*sin2th*f[37]*f[38]*f[68]*f[70])/(-U[3] + 2*U[4]) - (6*f_52_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-U[3] + 2*U[4]) - (6*f_53_2*sin2th*f[36]*f[39]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_52_2*f[37]*f[39]*f[68]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_53_2*f[37]*f[39]*f[68]*f[70])/(-U[3] + 2*U[4]) - (6*f_52_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*f_53_2*sin2th*f[36]*f[38]*f[69]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_52_2*f[37]*f[38]*f[69]*f[70])/(-U[3] + 2*U[4]) + (6*cos2th*f_53_2*f[37]*f[38]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*cos2th*f_52_2*f[36]*f[39]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*cos2th*f_53_2*f[36]*f[39]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*f_52_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-U[3] + 2*U[4]) - (6*f_53_2*sin2th*f[37]*f[39]*f[69]*f[70])/(-U[3] + 2*U[4]) + (6*f_52_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*f_53_2*sin2th*f[36]*f[38]*f[68]*f[71])/(-U[3] + 2*U[4]) - (6*cos2th*f_52_2*f[37]*f[38]*f[68]*f[71])/(-U[3] + 2*U[4]) - (6*cos2th*f_53_2*f[37]*f[38]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_52_2*f[36]*f[39]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_53_2*f[36]*f[39]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*f_52_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*f_53_2*sin2th*f[37]*f[39]*f[68]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_52_2*f[36]*f[38]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_53_2*f[36]*f[38]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*f_52_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*f_53_2*sin2th*f[37]*f[38]*f[69]*f[71])/(-U[3] + 2*U[4]) - (6*f_52_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-U[3] + 2*U[4]) - (6*f_53_2*sin2th*f[36]*f[39]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_52_2*f[37]*f[39]*f[69]*f[71])/(-U[3] + 2*U[4]) + (6*cos2th*f_53_2*f[37]*f[39]*f[69]*f[71])/(-U[3] + 2*U[4]) + (28*cos2th*f_62_2*f[38]*f[40]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_63_2*f[38]*f[40]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*f_62_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*f_63_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_62_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_63_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_62_2*f[39]*f[41]*f[70]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_63_2*f[39]*f[41]*f[70]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_62_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_63_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_62_2*f[39]*f[40]*f[71]*f[72])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_63_2*f[39]*f[40]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_62_2*f[38]*f[41]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_63_2*f[38]*f[41]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_62_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-6*U[3] + 3*U[4]) - (28*f_63_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-6*U[3] + 3*U[4]) + (28*f_62_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_63_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_62_2*f[39]*f[40]*f[70]*f[73])/(-6*U[3] + 3*U[4]) - (28*cos2th*f_63_2*f[39]*f[40]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_62_2*f[38]*f[41]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_63_2*f[38]*f[41]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_62_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_63_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_62_2*f[38]*f[40]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_63_2*f[38]*f[40]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_62_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*f_63_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-6*U[3] + 3*U[4]) - (28*f_62_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-6*U[3] + 3*U[4]) - (28*f_63_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_62_2*f[39]*f[41]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (28*cos2th*f_63_2*f[39]*f[41]*f[71]*f[73])/(-6*U[3] + 3*U[4]) + (24*cos2th*f_60_2*f[38]*f[40]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_61_2*f[38]*f[40]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*f_60_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*f_61_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_60_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_61_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_60_2*f[39]*f[41]*f[70]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_61_2*f[39]*f[41]*f[70]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_60_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_61_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_60_2*f[39]*f[40]*f[71]*f[72])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_61_2*f[39]*f[40]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_60_2*f[38]*f[41]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_61_2*f[38]*f[41]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_60_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-5*U[3] + 3*U[4]) - (24*f_61_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-5*U[3] + 3*U[4]) + (24*f_60_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_61_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_60_2*f[39]*f[40]*f[70]*f[73])/(-5*U[3] + 3*U[4]) - (24*cos2th*f_61_2*f[39]*f[40]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_60_2*f[38]*f[41]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_61_2*f[38]*f[41]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_60_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_61_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_60_2*f[38]*f[40]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_61_2*f[38]*f[40]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_60_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*f_61_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-5*U[3] + 3*U[4]) - (24*f_60_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-5*U[3] + 3*U[4]) - (24*f_61_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_60_2*f[39]*f[41]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (24*cos2th*f_61_2*f[39]*f[41]*f[71]*f[73])/(-5*U[3] + 3*U[4]) + (20*cos2th*f_58_2*f[38]*f[40]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_59_2*f[38]*f[40]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*f_58_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*f_59_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_58_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_59_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_58_2*f[39]*f[41]*f[70]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_59_2*f[39]*f[41]*f[70]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_58_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_59_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_58_2*f[39]*f[40]*f[71]*f[72])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_59_2*f[39]*f[40]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_58_2*f[38]*f[41]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_59_2*f[38]*f[41]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_58_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-4*U[3] + 3*U[4]) - (20*f_59_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-4*U[3] + 3*U[4]) + (20*f_58_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_59_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_58_2*f[39]*f[40]*f[70]*f[73])/(-4*U[3] + 3*U[4]) - (20*cos2th*f_59_2*f[39]*f[40]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_58_2*f[38]*f[41]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_59_2*f[38]*f[41]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_58_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_59_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_58_2*f[38]*f[40]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_59_2*f[38]*f[40]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_58_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*f_59_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-4*U[3] + 3*U[4]) - (20*f_58_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-4*U[3] + 3*U[4]) - (20*f_59_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_58_2*f[39]*f[41]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (20*cos2th*f_59_2*f[39]*f[41]*f[71]*f[73])/(-4*U[3] + 3*U[4]) + (12*cos2th*f_54_2*f[38]*f[40]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_55_2*f[38]*f[40]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*f_54_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*f_55_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_54_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_55_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_54_2*f[39]*f[41]*f[70]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_55_2*f[39]*f[41]*f[70]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_54_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_55_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_54_2*f[39]*f[40]*f[71]*f[72])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_55_2*f[39]*f[40]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_54_2*f[38]*f[41]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_55_2*f[38]*f[41]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_54_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-2*U[3] + 3*U[4]) - (12*f_55_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-2*U[3] + 3*U[4]) + (12*f_54_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_55_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_54_2*f[39]*f[40]*f[70]*f[73])/(-2*U[3] + 3*U[4]) - (12*cos2th*f_55_2*f[39]*f[40]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_54_2*f[38]*f[41]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_55_2*f[38]*f[41]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_54_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_55_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_54_2*f[38]*f[40]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_55_2*f[38]*f[40]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_54_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*f_55_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-2*U[3] + 3*U[4]) - (12*f_54_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-2*U[3] + 3*U[4]) - (12*f_55_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_54_2*f[39]*f[41]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (12*cos2th*f_55_2*f[39]*f[41]*f[71]*f[73])/(-2*U[3] + 3*U[4]) + (8*cos2th*f_52_2*f[38]*f[40]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_53_2*f[38]*f[40]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*f_52_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*f_53_2*sin2th*f[39]*f[40]*f[70]*f[72])/(-U[3] + 3*U[4]) - (8*f_52_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-U[3] + 3*U[4]) - (8*f_53_2*sin2th*f[38]*f[41]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_52_2*f[39]*f[41]*f[70]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_53_2*f[39]*f[41]*f[70]*f[72])/(-U[3] + 3*U[4]) - (8*f_52_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*f_53_2*sin2th*f[38]*f[40]*f[71]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_52_2*f[39]*f[40]*f[71]*f[72])/(-U[3] + 3*U[4]) + (8*cos2th*f_53_2*f[39]*f[40]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*cos2th*f_52_2*f[38]*f[41]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*cos2th*f_53_2*f[38]*f[41]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*f_52_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-U[3] + 3*U[4]) - (8*f_53_2*sin2th*f[39]*f[41]*f[71]*f[72])/(-U[3] + 3*U[4]) + (8*f_52_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*f_53_2*sin2th*f[38]*f[40]*f[70]*f[73])/(-U[3] + 3*U[4]) - (8*cos2th*f_52_2*f[39]*f[40]*f[70]*f[73])/(-U[3] + 3*U[4]) - (8*cos2th*f_53_2*f[39]*f[40]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_52_2*f[38]*f[41]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_53_2*f[38]*f[41]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*f_52_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*f_53_2*sin2th*f[39]*f[41]*f[70]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_52_2*f[38]*f[40]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_53_2*f[38]*f[40]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*f_52_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*f_53_2*sin2th*f[39]*f[40]*f[71]*f[73])/(-U[3] + 3*U[4]) - (8*f_52_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-U[3] + 3*U[4]) - (8*f_53_2*sin2th*f[38]*f[41]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_52_2*f[39]*f[41]*f[71]*f[73])/(-U[3] + 3*U[4]) + (8*cos2th*f_53_2*f[39]*f[41]*f[71]*f[73])/(-U[3] + 3*U[4]) + (35*cos2th*f_62_2*f[40]*f[42]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_63_2*f[40]*f[42]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*f_62_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*f_63_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_62_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_63_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_62_2*f[41]*f[43]*f[72]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_63_2*f[41]*f[43]*f[72]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_62_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_63_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_62_2*f[41]*f[42]*f[73]*f[74])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_63_2*f[41]*f[42]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_62_2*f[40]*f[43]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_63_2*f[40]*f[43]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_62_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-6*U[3] + 4*U[4]) - (35*f_63_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-6*U[3] + 4*U[4]) + (35*f_62_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_63_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_62_2*f[41]*f[42]*f[72]*f[75])/(-6*U[3] + 4*U[4]) - (35*cos2th*f_63_2*f[41]*f[42]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_62_2*f[40]*f[43]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_63_2*f[40]*f[43]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_62_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_63_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_62_2*f[40]*f[42]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_63_2*f[40]*f[42]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_62_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*f_63_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-6*U[3] + 4*U[4]) - (35*f_62_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-6*U[3] + 4*U[4]) - (35*f_63_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_62_2*f[41]*f[43]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (35*cos2th*f_63_2*f[41]*f[43]*f[73]*f[75])/(-6*U[3] + 4*U[4]) + (30*cos2th*f_60_2*f[40]*f[42]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_61_2*f[40]*f[42]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*f_60_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*f_61_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_60_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_61_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_60_2*f[41]*f[43]*f[72]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_61_2*f[41]*f[43]*f[72]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_60_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_61_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_60_2*f[41]*f[42]*f[73]*f[74])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_61_2*f[41]*f[42]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_60_2*f[40]*f[43]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_61_2*f[40]*f[43]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_60_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-5*U[3] + 4*U[4]) - (30*f_61_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-5*U[3] + 4*U[4]) + (30*f_60_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_61_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_60_2*f[41]*f[42]*f[72]*f[75])/(-5*U[3] + 4*U[4]) - (30*cos2th*f_61_2*f[41]*f[42]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_60_2*f[40]*f[43]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_61_2*f[40]*f[43]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_60_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_61_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_60_2*f[40]*f[42]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_61_2*f[40]*f[42]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_60_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*f_61_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-5*U[3] + 4*U[4]) - (30*f_60_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-5*U[3] + 4*U[4]) - (30*f_61_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_60_2*f[41]*f[43]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (30*cos2th*f_61_2*f[41]*f[43]*f[73]*f[75])/(-5*U[3] + 4*U[4]) + (20*cos2th*f_56_2*f[40]*f[42]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_57_2*f[40]*f[42]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*f_56_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*f_57_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_56_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_57_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_56_2*f[41]*f[43]*f[72]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_57_2*f[41]*f[43]*f[72]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_56_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_57_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_56_2*f[41]*f[42]*f[73]*f[74])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_57_2*f[41]*f[42]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_56_2*f[40]*f[43]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_57_2*f[40]*f[43]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_56_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-3*U[3] + 4*U[4]) - (20*f_57_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-3*U[3] + 4*U[4]) + (20*f_56_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_57_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_56_2*f[41]*f[42]*f[72]*f[75])/(-3*U[3] + 4*U[4]) - (20*cos2th*f_57_2*f[41]*f[42]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_56_2*f[40]*f[43]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_57_2*f[40]*f[43]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_56_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_57_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_56_2*f[40]*f[42]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_57_2*f[40]*f[42]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_56_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*f_57_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-3*U[3] + 4*U[4]) - (20*f_56_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-3*U[3] + 4*U[4]) - (20*f_57_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_56_2*f[41]*f[43]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (20*cos2th*f_57_2*f[41]*f[43]*f[73]*f[75])/(-3*U[3] + 4*U[4]) + (15*cos2th*f_54_2*f[40]*f[42]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_55_2*f[40]*f[42]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*f_54_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*f_55_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_54_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_55_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_54_2*f[41]*f[43]*f[72]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_55_2*f[41]*f[43]*f[72]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_54_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_55_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_54_2*f[41]*f[42]*f[73]*f[74])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_55_2*f[41]*f[42]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_54_2*f[40]*f[43]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_55_2*f[40]*f[43]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_54_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-2*U[3] + 4*U[4]) - (15*f_55_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-2*U[3] + 4*U[4]) + (15*f_54_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_55_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_54_2*f[41]*f[42]*f[72]*f[75])/(-2*U[3] + 4*U[4]) - (15*cos2th*f_55_2*f[41]*f[42]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_54_2*f[40]*f[43]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_55_2*f[40]*f[43]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_54_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_55_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_54_2*f[40]*f[42]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_55_2*f[40]*f[42]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_54_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*f_55_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-2*U[3] + 4*U[4]) - (15*f_54_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-2*U[3] + 4*U[4]) - (15*f_55_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_54_2*f[41]*f[43]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (15*cos2th*f_55_2*f[41]*f[43]*f[73]*f[75])/(-2*U[3] + 4*U[4]) + (10*cos2th*f_52_2*f[40]*f[42]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_53_2*f[40]*f[42]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*f_52_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*f_53_2*sin2th*f[41]*f[42]*f[72]*f[74])/(-U[3] + 4*U[4]) - (10*f_52_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-U[3] + 4*U[4]) - (10*f_53_2*sin2th*f[40]*f[43]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_52_2*f[41]*f[43]*f[72]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_53_2*f[41]*f[43]*f[72]*f[74])/(-U[3] + 4*U[4]) - (10*f_52_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*f_53_2*sin2th*f[40]*f[42]*f[73]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_52_2*f[41]*f[42]*f[73]*f[74])/(-U[3] + 4*U[4]) + (10*cos2th*f_53_2*f[41]*f[42]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*cos2th*f_52_2*f[40]*f[43]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*cos2th*f_53_2*f[40]*f[43]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*f_52_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-U[3] + 4*U[4]) - (10*f_53_2*sin2th*f[41]*f[43]*f[73]*f[74])/(-U[3] + 4*U[4]) + (10*f_52_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*f_53_2*sin2th*f[40]*f[42]*f[72]*f[75])/(-U[3] + 4*U[4]) - (10*cos2th*f_52_2*f[41]*f[42]*f[72]*f[75])/(-U[3] + 4*U[4]) - (10*cos2th*f_53_2*f[41]*f[42]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_52_2*f[40]*f[43]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_53_2*f[40]*f[43]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*f_52_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*f_53_2*sin2th*f[41]*f[43]*f[72]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_52_2*f[40]*f[42]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_53_2*f[40]*f[42]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*f_52_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*f_53_2*sin2th*f[41]*f[42]*f[73]*f[75])/(-U[3] + 4*U[4]) - (10*f_52_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-U[3] + 4*U[4]) - (10*f_53_2*sin2th*f[40]*f[43]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_52_2*f[41]*f[43]*f[73]*f[75])/(-U[3] + 4*U[4]) + (10*cos2th*f_53_2*f[41]*f[43]*f[73]*f[75])/(-U[3] + 4*U[4]) + (42*cos2th*f_62_2*f[42]*f[44]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_63_2*f[42]*f[44]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*f_62_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*f_63_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_62_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_63_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_62_2*f[43]*f[45]*f[74]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_63_2*f[43]*f[45]*f[74]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_62_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_63_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_62_2*f[43]*f[44]*f[75]*f[76])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_63_2*f[43]*f[44]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_62_2*f[42]*f[45]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_63_2*f[42]*f[45]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_62_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-6*U[3] + 5*U[4]) - (42*f_63_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-6*U[3] + 5*U[4]) + (42*f_62_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_63_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_62_2*f[43]*f[44]*f[74]*f[77])/(-6*U[3] + 5*U[4]) - (42*cos2th*f_63_2*f[43]*f[44]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_62_2*f[42]*f[45]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_63_2*f[42]*f[45]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_62_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_63_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_62_2*f[42]*f[44]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_63_2*f[42]*f[44]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_62_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*f_63_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-6*U[3] + 5*U[4]) - (42*f_62_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-6*U[3] + 5*U[4]) - (42*f_63_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_62_2*f[43]*f[45]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (42*cos2th*f_63_2*f[43]*f[45]*f[75]*f[77])/(-6*U[3] + 5*U[4]) + (30*cos2th*f_58_2*f[42]*f[44]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_59_2*f[42]*f[44]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*f_58_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*f_59_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_58_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_59_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_58_2*f[43]*f[45]*f[74]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_59_2*f[43]*f[45]*f[74]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_58_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_59_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_58_2*f[43]*f[44]*f[75]*f[76])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_59_2*f[43]*f[44]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_58_2*f[42]*f[45]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_59_2*f[42]*f[45]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_58_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-4*U[3] + 5*U[4]) - (30*f_59_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-4*U[3] + 5*U[4]) + (30*f_58_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_59_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_58_2*f[43]*f[44]*f[74]*f[77])/(-4*U[3] + 5*U[4]) - (30*cos2th*f_59_2*f[43]*f[44]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_58_2*f[42]*f[45]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_59_2*f[42]*f[45]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_58_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_59_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_58_2*f[42]*f[44]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_59_2*f[42]*f[44]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_58_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*f_59_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-4*U[3] + 5*U[4]) - (30*f_58_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-4*U[3] + 5*U[4]) - (30*f_59_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_58_2*f[43]*f[45]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (30*cos2th*f_59_2*f[43]*f[45]*f[75]*f[77])/(-4*U[3] + 5*U[4]) + (24*cos2th*f_56_2*f[42]*f[44]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_57_2*f[42]*f[44]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*f_56_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*f_57_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_56_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_57_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_56_2*f[43]*f[45]*f[74]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_57_2*f[43]*f[45]*f[74]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_56_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_57_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_56_2*f[43]*f[44]*f[75]*f[76])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_57_2*f[43]*f[44]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_56_2*f[42]*f[45]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_57_2*f[42]*f[45]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_56_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-3*U[3] + 5*U[4]) - (24*f_57_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-3*U[3] + 5*U[4]) + (24*f_56_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_57_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_56_2*f[43]*f[44]*f[74]*f[77])/(-3*U[3] + 5*U[4]) - (24*cos2th*f_57_2*f[43]*f[44]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_56_2*f[42]*f[45]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_57_2*f[42]*f[45]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_56_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_57_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_56_2*f[42]*f[44]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_57_2*f[42]*f[44]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_56_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*f_57_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-3*U[3] + 5*U[4]) - (24*f_56_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-3*U[3] + 5*U[4]) - (24*f_57_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_56_2*f[43]*f[45]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (24*cos2th*f_57_2*f[43]*f[45]*f[75]*f[77])/(-3*U[3] + 5*U[4]) + (18*cos2th*f_54_2*f[42]*f[44]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_55_2*f[42]*f[44]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*f_54_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*f_55_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_54_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_55_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_54_2*f[43]*f[45]*f[74]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_55_2*f[43]*f[45]*f[74]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_54_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_55_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_54_2*f[43]*f[44]*f[75]*f[76])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_55_2*f[43]*f[44]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_54_2*f[42]*f[45]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_55_2*f[42]*f[45]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_54_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-2*U[3] + 5*U[4]) - (18*f_55_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-2*U[3] + 5*U[4]) + (18*f_54_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_55_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_54_2*f[43]*f[44]*f[74]*f[77])/(-2*U[3] + 5*U[4]) - (18*cos2th*f_55_2*f[43]*f[44]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_54_2*f[42]*f[45]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_55_2*f[42]*f[45]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_54_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_55_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_54_2*f[42]*f[44]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_55_2*f[42]*f[44]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_54_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*f_55_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-2*U[3] + 5*U[4]) - (18*f_54_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-2*U[3] + 5*U[4]) - (18*f_55_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_54_2*f[43]*f[45]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (18*cos2th*f_55_2*f[43]*f[45]*f[75]*f[77])/(-2*U[3] + 5*U[4]) + (12*cos2th*f_52_2*f[42]*f[44]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_53_2*f[42]*f[44]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*f_52_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*f_53_2*sin2th*f[43]*f[44]*f[74]*f[76])/(-U[3] + 5*U[4]) - (12*f_52_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-U[3] + 5*U[4]) - (12*f_53_2*sin2th*f[42]*f[45]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_52_2*f[43]*f[45]*f[74]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_53_2*f[43]*f[45]*f[74]*f[76])/(-U[3] + 5*U[4]) - (12*f_52_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*f_53_2*sin2th*f[42]*f[44]*f[75]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_52_2*f[43]*f[44]*f[75]*f[76])/(-U[3] + 5*U[4]) + (12*cos2th*f_53_2*f[43]*f[44]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*cos2th*f_52_2*f[42]*f[45]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*cos2th*f_53_2*f[42]*f[45]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*f_52_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-U[3] + 5*U[4]) - (12*f_53_2*sin2th*f[43]*f[45]*f[75]*f[76])/(-U[3] + 5*U[4]) + (12*f_52_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*f_53_2*sin2th*f[42]*f[44]*f[74]*f[77])/(-U[3] + 5*U[4]) - (12*cos2th*f_52_2*f[43]*f[44]*f[74]*f[77])/(-U[3] + 5*U[4]) - (12*cos2th*f_53_2*f[43]*f[44]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_52_2*f[42]*f[45]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_53_2*f[42]*f[45]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*f_52_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*f_53_2*sin2th*f[43]*f[45]*f[74]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_52_2*f[42]*f[44]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_53_2*f[42]*f[44]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*f_52_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*f_53_2*sin2th*f[43]*f[44]*f[75]*f[77])/(-U[3] + 5*U[4]) - (12*f_52_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-U[3] + 5*U[4]) - (12*f_53_2*sin2th*f[42]*f[45]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_52_2*f[43]*f[45]*f[75]*f[77])/(-U[3] + 5*U[4]) + (12*cos2th*f_53_2*f[43]*f[45]*f[75]*f[77])/(-U[3] + 5*U[4]) + (42*cos2th*f_60_2*f[44]*f[46]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_61_2*f[44]*f[46]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*f_60_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*f_61_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_60_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_61_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_60_2*f[45]*f[47]*f[76]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_61_2*f[45]*f[47]*f[76]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_60_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_61_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_60_2*f[45]*f[46]*f[77]*f[78])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_61_2*f[45]*f[46]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_60_2*f[44]*f[47]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_61_2*f[44]*f[47]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_60_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-5*U[3] + 6*U[4]) - (42*f_61_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-5*U[3] + 6*U[4]) + (42*f_60_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_61_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_60_2*f[45]*f[46]*f[76]*f[79])/(-5*U[3] + 6*U[4]) - (42*cos2th*f_61_2*f[45]*f[46]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_60_2*f[44]*f[47]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_61_2*f[44]*f[47]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_60_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_61_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_60_2*f[44]*f[46]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_61_2*f[44]*f[46]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_60_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*f_61_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-5*U[3] + 6*U[4]) - (42*f_60_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-5*U[3] + 6*U[4]) - (42*f_61_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_60_2*f[45]*f[47]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (42*cos2th*f_61_2*f[45]*f[47]*f[77]*f[79])/(-5*U[3] + 6*U[4]) + (35*cos2th*f_58_2*f[44]*f[46]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_59_2*f[44]*f[46]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*f_58_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*f_59_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_58_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_59_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_58_2*f[45]*f[47]*f[76]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_59_2*f[45]*f[47]*f[76]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_58_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_59_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_58_2*f[45]*f[46]*f[77]*f[78])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_59_2*f[45]*f[46]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_58_2*f[44]*f[47]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_59_2*f[44]*f[47]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_58_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-4*U[3] + 6*U[4]) - (35*f_59_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-4*U[3] + 6*U[4]) + (35*f_58_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_59_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_58_2*f[45]*f[46]*f[76]*f[79])/(-4*U[3] + 6*U[4]) - (35*cos2th*f_59_2*f[45]*f[46]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_58_2*f[44]*f[47]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_59_2*f[44]*f[47]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_58_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_59_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_58_2*f[44]*f[46]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_59_2*f[44]*f[46]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_58_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*f_59_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-4*U[3] + 6*U[4]) - (35*f_58_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-4*U[3] + 6*U[4]) - (35*f_59_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_58_2*f[45]*f[47]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (35*cos2th*f_59_2*f[45]*f[47]*f[77]*f[79])/(-4*U[3] + 6*U[4]) + (28*cos2th*f_56_2*f[44]*f[46]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_57_2*f[44]*f[46]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*f_56_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*f_57_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_56_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_57_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_56_2*f[45]*f[47]*f[76]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_57_2*f[45]*f[47]*f[76]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_56_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_57_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_56_2*f[45]*f[46]*f[77]*f[78])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_57_2*f[45]*f[46]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_56_2*f[44]*f[47]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_57_2*f[44]*f[47]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_56_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-3*U[3] + 6*U[4]) - (28*f_57_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-3*U[3] + 6*U[4]) + (28*f_56_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_57_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_56_2*f[45]*f[46]*f[76]*f[79])/(-3*U[3] + 6*U[4]) - (28*cos2th*f_57_2*f[45]*f[46]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_56_2*f[44]*f[47]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_57_2*f[44]*f[47]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_56_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_57_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_56_2*f[44]*f[46]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_57_2*f[44]*f[46]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_56_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*f_57_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-3*U[3] + 6*U[4]) - (28*f_56_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-3*U[3] + 6*U[4]) - (28*f_57_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_56_2*f[45]*f[47]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (28*cos2th*f_57_2*f[45]*f[47]*f[77]*f[79])/(-3*U[3] + 6*U[4]) + (21*cos2th*f_54_2*f[44]*f[46]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_55_2*f[44]*f[46]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*f_54_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*f_55_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_54_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_55_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_54_2*f[45]*f[47]*f[76]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_55_2*f[45]*f[47]*f[76]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_54_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_55_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_54_2*f[45]*f[46]*f[77]*f[78])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_55_2*f[45]*f[46]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_54_2*f[44]*f[47]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_55_2*f[44]*f[47]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_54_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-2*U[3] + 6*U[4]) - (21*f_55_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-2*U[3] + 6*U[4]) + (21*f_54_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_55_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_54_2*f[45]*f[46]*f[76]*f[79])/(-2*U[3] + 6*U[4]) - (21*cos2th*f_55_2*f[45]*f[46]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_54_2*f[44]*f[47]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_55_2*f[44]*f[47]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_54_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_55_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_54_2*f[44]*f[46]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_55_2*f[44]*f[46]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_54_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*f_55_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-2*U[3] + 6*U[4]) - (21*f_54_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-2*U[3] + 6*U[4]) - (21*f_55_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_54_2*f[45]*f[47]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (21*cos2th*f_55_2*f[45]*f[47]*f[77]*f[79])/(-2*U[3] + 6*U[4]) + (14*cos2th*f_52_2*f[44]*f[46]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_53_2*f[44]*f[46]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*f_52_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*f_53_2*sin2th*f[45]*f[46]*f[76]*f[78])/(-U[3] + 6*U[4]) - (14*f_52_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-U[3] + 6*U[4]) - (14*f_53_2*sin2th*f[44]*f[47]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_52_2*f[45]*f[47]*f[76]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_53_2*f[45]*f[47]*f[76]*f[78])/(-U[3] + 6*U[4]) - (14*f_52_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*f_53_2*sin2th*f[44]*f[46]*f[77]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_52_2*f[45]*f[46]*f[77]*f[78])/(-U[3] + 6*U[4]) + (14*cos2th*f_53_2*f[45]*f[46]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*cos2th*f_52_2*f[44]*f[47]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*cos2th*f_53_2*f[44]*f[47]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*f_52_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-U[3] + 6*U[4]) - (14*f_53_2*sin2th*f[45]*f[47]*f[77]*f[78])/(-U[3] + 6*U[4]) + (14*f_52_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*f_53_2*sin2th*f[44]*f[46]*f[76]*f[79])/(-U[3] + 6*U[4]) - (14*cos2th*f_52_2*f[45]*f[46]*f[76]*f[79])/(-U[3] + 6*U[4]) - (14*cos2th*f_53_2*f[45]*f[46]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_52_2*f[44]*f[47]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_53_2*f[44]*f[47]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*f_52_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*f_53_2*sin2th*f[45]*f[47]*f[76]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_52_2*f[44]*f[46]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_53_2*f[44]*f[46]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*f_52_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*f_53_2*sin2th*f[45]*f[46]*f[77]*f[79])/(-U[3] + 6*U[4]) - (14*f_52_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-U[3] + 6*U[4]) - (14*f_53_2*sin2th*f[44]*f[47]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_52_2*f[45]*f[47]*f[77]*f[79])/(-U[3] + 6*U[4]) + (14*cos2th*f_53_2*f[45]*f[47]*f[77]*f[79])/(-U[3] + 6*U[4])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)))/2. + ((J_0_2*(42*(sin2th*(-(f[27]*(f[15]*(f[11]*f[30] + f[10]*f[31]) + f[14]*(f[10]*f[30] - f[11]*f[31]))) + f[26]*(f[10]*(-(f[15]*f[30]) + f[14]*f[31]) + f[11]*(f[14]*f[30] + f[15]*f[31]))) + cos2th*(f[11]*(f[26]*(f[15]*f[30] - f[14]*f[31]) + f[27]*(f[14]*f[30] + f[15]*f[31])) + f[10]*(f[15]*(-(f[27]*f[30]) + f[26]*f[31]) + f[14]*(f[26]*f[30] + f[27]*f[31]))))*(-(1/(5*U[0] - 6*U[1])) + 1/(6*U[0] - 5*U[1])) + 30*(sin2th*(-(f[25]*(f[13]*(f[9]*f[28] + f[8]*f[29]) + f[12]*(f[8]*f[28] - f[9]*f[29]))) + f[24]*(f[8]*(-(f[13]*f[28]) + f[12]*f[29]) + f[9]*(f[12]*f[28] + f[13]*f[29]))) + cos2th*(f[9]*(f[24]*(f[13]*f[28] - f[12]*f[29]) + f[25]*(f[12]*f[28] + f[13]*f[29])) + f[8]*(f[13]*(-(f[25]*f[28]) + f[24]*f[29]) + f[12]*(f[24]*f[28] + f[25]*f[29]))))*(-(1/(4*U[0] - 5*U[1])) + 1/(5*U[0] - 4*U[1])) + 20*(sin2th*(-(f[23]*(f[11]*(f[7]*f[26] + f[6]*f[27]) + f[10]*(f[6]*f[26] - f[7]*f[27]))) + f[22]*(f[6]*(-(f[11]*f[26]) + f[10]*f[27]) + f[7]*(f[10]*f[26] + f[11]*f[27]))) + cos2th*(f[7]*(f[22]*(f[11]*f[26] - f[10]*f[27]) + f[23]*(f[10]*f[26] + f[11]*f[27])) + f[6]*(f[11]*(-(f[23]*f[26]) + f[22]*f[27]) + f[10]*(f[22]*f[26] + f[23]*f[27]))))*(-(1/(3*U[0] - 4*U[1])) + 1/(4*U[0] - 3*U[1])) + 12*(sin2th*(-(f[21]*(f[9]*(f[5]*f[24] + f[4]*f[25]) + f[8]*(f[4]*f[24] - f[5]*f[25]))) + f[20]*(f[4]*(-(f[9]*f[24]) + f[8]*f[25]) + f[5]*(f[8]*f[24] + f[9]*f[25]))) + cos2th*(f[5]*(f[20]*(f[9]*f[24] - f[8]*f[25]) + f[21]*(f[8]*f[24] + f[9]*f[25])) + f[4]*(f[9]*(-(f[21]*f[24]) + f[20]*f[25]) + f[8]*(f[20]*f[24] + f[21]*f[25]))))*(-(1/(2*U[0] - 3*U[1])) + 1/(3*U[0] - 2*U[1])) + 6*(sin2th*(-(f[19]*(f[7]*(f[3]*f[22] + f[2]*f[23]) + f[6]*(f[2]*f[22] - f[3]*f[23]))) + f[18]*(f[2]*(-(f[7]*f[22]) + f[6]*f[23]) + f[3]*(f[6]*f[22] + f[7]*f[23]))) + cos2th*(f[3]*(f[18]*(f[7]*f[22] - f[6]*f[23]) + f[19]*(f[6]*f[22] + f[7]*f[23])) + f[2]*(f[7]*(-(f[19]*f[22]) + f[18]*f[23]) + f[6]*(f[18]*f[22] + f[19]*f[23]))))*(-(1/(U[0] - 2*U[1])) + 1/(2*U[0] - U[1])) + 2*(sin2th*(-(f[17]*(f[5]*(f[1]*f[20] + f[0]*f[21]) + f[4]*(f[0]*f[20] - f[1]*f[21]))) + f[16]*(f[0]*(-(f[5]*f[20]) + f[4]*f[21]) + f[1]*(f[4]*f[20] + f[5]*f[21]))) + cos2th*(f[1]*(f[16]*(f[5]*f[20] - f[4]*f[21]) + f[17]*(f[4]*f[20] + f[5]*f[21])) + f[0]*(f[5]*(-(f[17]*f[20]) + f[16]*f[21]) + f[4]*(f[16]*f[20] + f[17]*f[21]))))*(1/U[0] + 1/U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J_0_2*(2*(sin2th*(-(f[17]*(f[5]*(f[1]*f[20] + f[0]*f[21]) + f[4]*(f[0]*f[20] - f[1]*f[21]))) + f[16]*(f[0]*(-(f[5]*f[20]) + f[4]*f[21]) + f[1]*(f[4]*f[20] + f[5]*f[21]))) + cos2th*(f[1]*(f[16]*(f[5]*f[20] - f[4]*f[21]) + f[17]*(f[4]*f[20] + f[5]*f[21])) + f[0]*(f[5]*(-(f[17]*f[20]) + f[16]*f[21]) + f[4]*(f[16]*f[20] + f[17]*f[21]))))*(1/U[0] + 1/U[1]) + 6*(sin2th*(-(f[19]*(f[7]*(f[3]*f[22] + f[2]*f[23]) + f[6]*(f[2]*f[22] - f[3]*f[23]))) + f[18]*(f[2]*(-(f[7]*f[22]) + f[6]*f[23]) + f[3]*(f[6]*f[22] + f[7]*f[23]))) + cos2th*(f[3]*(f[18]*(f[7]*f[22] - f[6]*f[23]) + f[19]*(f[6]*f[22] + f[7]*f[23])) + f[2]*(f[7]*(-(f[19]*f[22]) + f[18]*f[23]) + f[6]*(f[18]*f[22] + f[19]*f[23]))))*(-(1/(-2*U[0] + U[1])) + 1/(-U[0] + 2*U[1])) + 12*(sin2th*(-(f[21]*(f[9]*(f[5]*f[24] + f[4]*f[25]) + f[8]*(f[4]*f[24] - f[5]*f[25]))) + f[20]*(f[4]*(-(f[9]*f[24]) + f[8]*f[25]) + f[5]*(f[8]*f[24] + f[9]*f[25]))) + cos2th*(f[5]*(f[20]*(f[9]*f[24] - f[8]*f[25]) + f[21]*(f[8]*f[24] + f[9]*f[25])) + f[4]*(f[9]*(-(f[21]*f[24]) + f[20]*f[25]) + f[8]*(f[20]*f[24] + f[21]*f[25]))))*(-(1/(-3*U[0] + 2*U[1])) + 1/(-2*U[0] + 3*U[1])) + 20*(sin2th*(-(f[23]*(f[11]*(f[7]*f[26] + f[6]*f[27]) + f[10]*(f[6]*f[26] - f[7]*f[27]))) + f[22]*(f[6]*(-(f[11]*f[26]) + f[10]*f[27]) + f[7]*(f[10]*f[26] + f[11]*f[27]))) + cos2th*(f[7]*(f[22]*(f[11]*f[26] - f[10]*f[27]) + f[23]*(f[10]*f[26] + f[11]*f[27])) + f[6]*(f[11]*(-(f[23]*f[26]) + f[22]*f[27]) + f[10]*(f[22]*f[26] + f[23]*f[27]))))*(-(1/(-4*U[0] + 3*U[1])) + 1/(-3*U[0] + 4*U[1])) + 30*(sin2th*(-(f[25]*(f[13]*(f[9]*f[28] + f[8]*f[29]) + f[12]*(f[8]*f[28] - f[9]*f[29]))) + f[24]*(f[8]*(-(f[13]*f[28]) + f[12]*f[29]) + f[9]*(f[12]*f[28] + f[13]*f[29]))) + cos2th*(f[9]*(f[24]*(f[13]*f[28] - f[12]*f[29]) + f[25]*(f[12]*f[28] + f[13]*f[29])) + f[8]*(f[13]*(-(f[25]*f[28]) + f[24]*f[29]) + f[12]*(f[24]*f[28] + f[25]*f[29]))))*(-(1/(-5*U[0] + 4*U[1])) + 1/(-4*U[0] + 5*U[1])) + 42*(sin2th*(-(f[27]*(f[15]*(f[11]*f[30] + f[10]*f[31]) + f[14]*(f[10]*f[30] - f[11]*f[31]))) + f[26]*(f[10]*(-(f[15]*f[30]) + f[14]*f[31]) + f[11]*(f[14]*f[30] + f[15]*f[31]))) + cos2th*(f[11]*(f[26]*(f[15]*f[30] - f[14]*f[31]) + f[27]*(f[14]*f[30] + f[15]*f[31])) + f[10]*(f[15]*(-(f[27]*f[30]) + f[26]*f[31]) + f[14]*(f[26]*f[30] + f[27]*f[31]))))*(-(1/(-6*U[0] + 5*U[1])) + 1/(-5*U[0] + 6*U[1]))))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J_1_2*(42*(sin2th*(-(f[43]*(f[31]*(f[27]*f[46] + f[26]*f[47]) + f[30]*(f[26]*f[46] - f[27]*f[47]))) + f[42]*(f[26]*(-(f[31]*f[46]) + f[30]*f[47]) + f[27]*(f[30]*f[46] + f[31]*f[47]))) + cos2th*(f[27]*(f[42]*(f[31]*f[46] - f[30]*f[47]) + f[43]*(f[30]*f[46] + f[31]*f[47])) + f[26]*(f[31]*(-(f[43]*f[46]) + f[42]*f[47]) + f[30]*(f[42]*f[46] + f[43]*f[47]))))*(-(1/(5*U[1] - 6*U[2])) + 1/(6*U[1] - 5*U[2])) + 30*(sin2th*(-(f[41]*(f[29]*(f[25]*f[44] + f[24]*f[45]) + f[28]*(f[24]*f[44] - f[25]*f[45]))) + f[40]*(f[24]*(-(f[29]*f[44]) + f[28]*f[45]) + f[25]*(f[28]*f[44] + f[29]*f[45]))) + cos2th*(f[25]*(f[40]*(f[29]*f[44] - f[28]*f[45]) + f[41]*(f[28]*f[44] + f[29]*f[45])) + f[24]*(f[29]*(-(f[41]*f[44]) + f[40]*f[45]) + f[28]*(f[40]*f[44] + f[41]*f[45]))))*(-(1/(4*U[1] - 5*U[2])) + 1/(5*U[1] - 4*U[2])) + 20*(sin2th*(-(f[39]*(f[27]*(f[23]*f[42] + f[22]*f[43]) + f[26]*(f[22]*f[42] - f[23]*f[43]))) + f[38]*(f[22]*(-(f[27]*f[42]) + f[26]*f[43]) + f[23]*(f[26]*f[42] + f[27]*f[43]))) + cos2th*(f[23]*(f[38]*(f[27]*f[42] - f[26]*f[43]) + f[39]*(f[26]*f[42] + f[27]*f[43])) + f[22]*(f[27]*(-(f[39]*f[42]) + f[38]*f[43]) + f[26]*(f[38]*f[42] + f[39]*f[43]))))*(-(1/(3*U[1] - 4*U[2])) + 1/(4*U[1] - 3*U[2])) + 12*(sin2th*(-(f[37]*(f[25]*(f[21]*f[40] + f[20]*f[41]) + f[24]*(f[20]*f[40] - f[21]*f[41]))) + f[36]*(f[20]*(-(f[25]*f[40]) + f[24]*f[41]) + f[21]*(f[24]*f[40] + f[25]*f[41]))) + cos2th*(f[21]*(f[36]*(f[25]*f[40] - f[24]*f[41]) + f[37]*(f[24]*f[40] + f[25]*f[41])) + f[20]*(f[25]*(-(f[37]*f[40]) + f[36]*f[41]) + f[24]*(f[36]*f[40] + f[37]*f[41]))))*(-(1/(2*U[1] - 3*U[2])) + 1/(3*U[1] - 2*U[2])) + 6*(sin2th*(-(f[35]*(f[23]*(f[19]*f[38] + f[18]*f[39]) + f[22]*(f[18]*f[38] - f[19]*f[39]))) + f[34]*(f[18]*(-(f[23]*f[38]) + f[22]*f[39]) + f[19]*(f[22]*f[38] + f[23]*f[39]))) + cos2th*(f[19]*(f[34]*(f[23]*f[38] - f[22]*f[39]) + f[35]*(f[22]*f[38] + f[23]*f[39])) + f[18]*(f[23]*(-(f[35]*f[38]) + f[34]*f[39]) + f[22]*(f[34]*f[38] + f[35]*f[39]))))*(-(1/(U[1] - 2*U[2])) + 1/(2*U[1] - U[2])) + 2*(sin2th*(-(f[33]*(f[21]*(f[17]*f[36] + f[16]*f[37]) + f[20]*(f[16]*f[36] - f[17]*f[37]))) + f[32]*(f[16]*(-(f[21]*f[36]) + f[20]*f[37]) + f[17]*(f[20]*f[36] + f[21]*f[37]))) + cos2th*(f[17]*(f[32]*(f[21]*f[36] - f[20]*f[37]) + f[33]*(f[20]*f[36] + f[21]*f[37])) + f[16]*(f[21]*(-(f[33]*f[36]) + f[32]*f[37]) + f[20]*(f[32]*f[36] + f[33]*f[37]))))*(1/U[1] + 1/U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)) + (J_1_2*(2*(sin2th*(-(f[33]*(f[21]*(f[17]*f[36] + f[16]*f[37]) + f[20]*(f[16]*f[36] - f[17]*f[37]))) + f[32]*(f[16]*(-(f[21]*f[36]) + f[20]*f[37]) + f[17]*(f[20]*f[36] + f[21]*f[37]))) + cos2th*(f[17]*(f[32]*(f[21]*f[36] - f[20]*f[37]) + f[33]*(f[20]*f[36] + f[21]*f[37])) + f[16]*(f[21]*(-(f[33]*f[36]) + f[32]*f[37]) + f[20]*(f[32]*f[36] + f[33]*f[37]))))*(1/U[1] + 1/U[2]) + 6*(sin2th*(-(f[35]*(f[23]*(f[19]*f[38] + f[18]*f[39]) + f[22]*(f[18]*f[38] - f[19]*f[39]))) + f[34]*(f[18]*(-(f[23]*f[38]) + f[22]*f[39]) + f[19]*(f[22]*f[38] + f[23]*f[39]))) + cos2th*(f[19]*(f[34]*(f[23]*f[38] - f[22]*f[39]) + f[35]*(f[22]*f[38] + f[23]*f[39])) + f[18]*(f[23]*(-(f[35]*f[38]) + f[34]*f[39]) + f[22]*(f[34]*f[38] + f[35]*f[39]))))*(-(1/(-2*U[1] + U[2])) + 1/(-U[1] + 2*U[2])) + 12*(sin2th*(-(f[37]*(f[25]*(f[21]*f[40] + f[20]*f[41]) + f[24]*(f[20]*f[40] - f[21]*f[41]))) + f[36]*(f[20]*(-(f[25]*f[40]) + f[24]*f[41]) + f[21]*(f[24]*f[40] + f[25]*f[41]))) + cos2th*(f[21]*(f[36]*(f[25]*f[40] - f[24]*f[41]) + f[37]*(f[24]*f[40] + f[25]*f[41])) + f[20]*(f[25]*(-(f[37]*f[40]) + f[36]*f[41]) + f[24]*(f[36]*f[40] + f[37]*f[41]))))*(-(1/(-3*U[1] + 2*U[2])) + 1/(-2*U[1] + 3*U[2])) + 20*(sin2th*(-(f[39]*(f[27]*(f[23]*f[42] + f[22]*f[43]) + f[26]*(f[22]*f[42] - f[23]*f[43]))) + f[38]*(f[22]*(-(f[27]*f[42]) + f[26]*f[43]) + f[23]*(f[26]*f[42] + f[27]*f[43]))) + cos2th*(f[23]*(f[38]*(f[27]*f[42] - f[26]*f[43]) + f[39]*(f[26]*f[42] + f[27]*f[43])) + f[22]*(f[27]*(-(f[39]*f[42]) + f[38]*f[43]) + f[26]*(f[38]*f[42] + f[39]*f[43]))))*(-(1/(-4*U[1] + 3*U[2])) + 1/(-3*U[1] + 4*U[2])) + 30*(sin2th*(-(f[41]*(f[29]*(f[25]*f[44] + f[24]*f[45]) + f[28]*(f[24]*f[44] - f[25]*f[45]))) + f[40]*(f[24]*(-(f[29]*f[44]) + f[28]*f[45]) + f[25]*(f[28]*f[44] + f[29]*f[45]))) + cos2th*(f[25]*(f[40]*(f[29]*f[44] - f[28]*f[45]) + f[41]*(f[28]*f[44] + f[29]*f[45])) + f[24]*(f[29]*(-(f[41]*f[44]) + f[40]*f[45]) + f[28]*(f[40]*f[44] + f[41]*f[45]))))*(-(1/(-5*U[1] + 4*U[2])) + 1/(-4*U[1] + 5*U[2])) + 42*(sin2th*(-(f[43]*(f[31]*(f[27]*f[46] + f[26]*f[47]) + f[30]*(f[26]*f[46] - f[27]*f[47]))) + f[42]*(f[26]*(-(f[31]*f[46]) + f[30]*f[47]) + f[27]*(f[30]*f[46] + f[31]*f[47]))) + cos2th*(f[27]*(f[42]*(f[31]*f[46] - f[30]*f[47]) + f[43]*(f[30]*f[46] + f[31]*f[47])) + f[26]*(f[31]*(-(f[43]*f[46]) + f[42]*f[47]) + f[30]*(f[42]*f[46] + f[43]*f[47]))))*(-(1/(-6*U[1] + 5*U[2])) + 1/(-5*U[1] + 6*U[2]))))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)) + (J_2_2*(42*(sin2th*(-(f[59]*(f[47]*(f[43]*f[62] + f[42]*f[63]) + f[46]*(f[42]*f[62] - f[43]*f[63]))) + f[58]*(f[42]*(-(f[47]*f[62]) + f[46]*f[63]) + f[43]*(f[46]*f[62] + f[47]*f[63]))) + cos2th*(f[43]*(f[58]*(f[47]*f[62] - f[46]*f[63]) + f[59]*(f[46]*f[62] + f[47]*f[63])) + f[42]*(f[47]*(-(f[59]*f[62]) + f[58]*f[63]) + f[46]*(f[58]*f[62] + f[59]*f[63]))))*(-(1/(5*U[2] - 6*U[3])) + 1/(6*U[2] - 5*U[3])) + 30*(sin2th*(-(f[57]*(f[45]*(f[41]*f[60] + f[40]*f[61]) + f[44]*(f[40]*f[60] - f[41]*f[61]))) + f[56]*(f[40]*(-(f[45]*f[60]) + f[44]*f[61]) + f[41]*(f[44]*f[60] + f[45]*f[61]))) + cos2th*(f[41]*(f[56]*(f[45]*f[60] - f[44]*f[61]) + f[57]*(f[44]*f[60] + f[45]*f[61])) + f[40]*(f[45]*(-(f[57]*f[60]) + f[56]*f[61]) + f[44]*(f[56]*f[60] + f[57]*f[61]))))*(-(1/(4*U[2] - 5*U[3])) + 1/(5*U[2] - 4*U[3])) + 20*(sin2th*(-(f[55]*(f[43]*(f[39]*f[58] + f[38]*f[59]) + f[42]*(f[38]*f[58] - f[39]*f[59]))) + f[54]*(f[38]*(-(f[43]*f[58]) + f[42]*f[59]) + f[39]*(f[42]*f[58] + f[43]*f[59]))) + cos2th*(f[39]*(f[54]*(f[43]*f[58] - f[42]*f[59]) + f[55]*(f[42]*f[58] + f[43]*f[59])) + f[38]*(f[43]*(-(f[55]*f[58]) + f[54]*f[59]) + f[42]*(f[54]*f[58] + f[55]*f[59]))))*(-(1/(3*U[2] - 4*U[3])) + 1/(4*U[2] - 3*U[3])) + 12*(sin2th*(-(f[53]*(f[41]*(f[37]*f[56] + f[36]*f[57]) + f[40]*(f[36]*f[56] - f[37]*f[57]))) + f[52]*(f[36]*(-(f[41]*f[56]) + f[40]*f[57]) + f[37]*(f[40]*f[56] + f[41]*f[57]))) + cos2th*(f[37]*(f[52]*(f[41]*f[56] - f[40]*f[57]) + f[53]*(f[40]*f[56] + f[41]*f[57])) + f[36]*(f[41]*(-(f[53]*f[56]) + f[52]*f[57]) + f[40]*(f[52]*f[56] + f[53]*f[57]))))*(-(1/(2*U[2] - 3*U[3])) + 1/(3*U[2] - 2*U[3])) + 6*(sin2th*(-(f[51]*(f[39]*(f[35]*f[54] + f[34]*f[55]) + f[38]*(f[34]*f[54] - f[35]*f[55]))) + f[50]*(f[34]*(-(f[39]*f[54]) + f[38]*f[55]) + f[35]*(f[38]*f[54] + f[39]*f[55]))) + cos2th*(f[35]*(f[50]*(f[39]*f[54] - f[38]*f[55]) + f[51]*(f[38]*f[54] + f[39]*f[55])) + f[34]*(f[39]*(-(f[51]*f[54]) + f[50]*f[55]) + f[38]*(f[50]*f[54] + f[51]*f[55]))))*(-(1/(U[2] - 2*U[3])) + 1/(2*U[2] - U[3])) + 2*(sin2th*(-(f[49]*(f[37]*(f[33]*f[52] + f[32]*f[53]) + f[36]*(f[32]*f[52] - f[33]*f[53]))) + f[48]*(f[32]*(-(f[37]*f[52]) + f[36]*f[53]) + f[33]*(f[36]*f[52] + f[37]*f[53]))) + cos2th*(f[33]*(f[48]*(f[37]*f[52] - f[36]*f[53]) + f[49]*(f[36]*f[52] + f[37]*f[53])) + f[32]*(f[37]*(-(f[49]*f[52]) + f[48]*f[53]) + f[36]*(f[48]*f[52] + f[49]*f[53]))))*(1/U[2] + 1/U[3])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + (J_2_2*(2*(sin2th*(-(f[49]*(f[37]*(f[33]*f[52] + f[32]*f[53]) + f[36]*(f[32]*f[52] - f[33]*f[53]))) + f[48]*(f[32]*(-(f[37]*f[52]) + f[36]*f[53]) + f[33]*(f[36]*f[52] + f[37]*f[53]))) + cos2th*(f[33]*(f[48]*(f[37]*f[52] - f[36]*f[53]) + f[49]*(f[36]*f[52] + f[37]*f[53])) + f[32]*(f[37]*(-(f[49]*f[52]) + f[48]*f[53]) + f[36]*(f[48]*f[52] + f[49]*f[53]))))*(1/U[2] + 1/U[3]) + 6*(sin2th*(-(f[51]*(f[39]*(f[35]*f[54] + f[34]*f[55]) + f[38]*(f[34]*f[54] - f[35]*f[55]))) + f[50]*(f[34]*(-(f[39]*f[54]) + f[38]*f[55]) + f[35]*(f[38]*f[54] + f[39]*f[55]))) + cos2th*(f[35]*(f[50]*(f[39]*f[54] - f[38]*f[55]) + f[51]*(f[38]*f[54] + f[39]*f[55])) + f[34]*(f[39]*(-(f[51]*f[54]) + f[50]*f[55]) + f[38]*(f[50]*f[54] + f[51]*f[55]))))*(-(1/(-2*U[2] + U[3])) + 1/(-U[2] + 2*U[3])) + 12*(sin2th*(-(f[53]*(f[41]*(f[37]*f[56] + f[36]*f[57]) + f[40]*(f[36]*f[56] - f[37]*f[57]))) + f[52]*(f[36]*(-(f[41]*f[56]) + f[40]*f[57]) + f[37]*(f[40]*f[56] + f[41]*f[57]))) + cos2th*(f[37]*(f[52]*(f[41]*f[56] - f[40]*f[57]) + f[53]*(f[40]*f[56] + f[41]*f[57])) + f[36]*(f[41]*(-(f[53]*f[56]) + f[52]*f[57]) + f[40]*(f[52]*f[56] + f[53]*f[57]))))*(-(1/(-3*U[2] + 2*U[3])) + 1/(-2*U[2] + 3*U[3])) + 20*(sin2th*(-(f[55]*(f[43]*(f[39]*f[58] + f[38]*f[59]) + f[42]*(f[38]*f[58] - f[39]*f[59]))) + f[54]*(f[38]*(-(f[43]*f[58]) + f[42]*f[59]) + f[39]*(f[42]*f[58] + f[43]*f[59]))) + cos2th*(f[39]*(f[54]*(f[43]*f[58] - f[42]*f[59]) + f[55]*(f[42]*f[58] + f[43]*f[59])) + f[38]*(f[43]*(-(f[55]*f[58]) + f[54]*f[59]) + f[42]*(f[54]*f[58] + f[55]*f[59]))))*(-(1/(-4*U[2] + 3*U[3])) + 1/(-3*U[2] + 4*U[3])) + 30*(sin2th*(-(f[57]*(f[45]*(f[41]*f[60] + f[40]*f[61]) + f[44]*(f[40]*f[60] - f[41]*f[61]))) + f[56]*(f[40]*(-(f[45]*f[60]) + f[44]*f[61]) + f[41]*(f[44]*f[60] + f[45]*f[61]))) + cos2th*(f[41]*(f[56]*(f[45]*f[60] - f[44]*f[61]) + f[57]*(f[44]*f[60] + f[45]*f[61])) + f[40]*(f[45]*(-(f[57]*f[60]) + f[56]*f[61]) + f[44]*(f[56]*f[60] + f[57]*f[61]))))*(-(1/(-5*U[2] + 4*U[3])) + 1/(-4*U[2] + 5*U[3])) + 42*(sin2th*(-(f[59]*(f[47]*(f[43]*f[62] + f[42]*f[63]) + f[46]*(f[42]*f[62] - f[43]*f[63]))) + f[58]*(f[42]*(-(f[47]*f[62]) + f[46]*f[63]) + f[43]*(f[46]*f[62] + f[47]*f[63]))) + cos2th*(f[43]*(f[58]*(f[47]*f[62] - f[46]*f[63]) + f[59]*(f[46]*f[62] + f[47]*f[63])) + f[42]*(f[47]*(-(f[59]*f[62]) + f[58]*f[63]) + f[46]*(f[58]*f[62] + f[59]*f[63]))))*(-(1/(-6*U[2] + 5*U[3])) + 1/(-5*U[2] + 6*U[3]))))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + (J_4_2*(42*(sin2th*(f[75]*(f[15]*(f[11]*f[78] + f[10]*f[79]) + f[14]*(f[10]*f[78] - f[11]*f[79])) - f[74]*(f[10]*(-(f[15]*f[78]) + f[14]*f[79]) + f[11]*(f[14]*f[78] + f[15]*f[79]))) + cos2th*(f[11]*(f[74]*(f[15]*f[78] - f[14]*f[79]) + f[75]*(f[14]*f[78] + f[15]*f[79])) + f[10]*(f[15]*(-(f[75]*f[78]) + f[74]*f[79]) + f[14]*(f[74]*f[78] + f[75]*f[79]))))*(-(1/(5*U[0] - 6*U[4])) + 1/(6*U[0] - 5*U[4])) + 30*(sin2th*(f[73]*(f[13]*(f[9]*f[76] + f[8]*f[77]) + f[12]*(f[8]*f[76] - f[9]*f[77])) - f[72]*(f[8]*(-(f[13]*f[76]) + f[12]*f[77]) + f[9]*(f[12]*f[76] + f[13]*f[77]))) + cos2th*(f[9]*(f[72]*(f[13]*f[76] - f[12]*f[77]) + f[73]*(f[12]*f[76] + f[13]*f[77])) + f[8]*(f[13]*(-(f[73]*f[76]) + f[72]*f[77]) + f[12]*(f[72]*f[76] + f[73]*f[77]))))*(-(1/(4*U[0] - 5*U[4])) + 1/(5*U[0] - 4*U[4])) + 20*(sin2th*(f[71]*(f[11]*(f[7]*f[74] + f[6]*f[75]) + f[10]*(f[6]*f[74] - f[7]*f[75])) - f[70]*(f[6]*(-(f[11]*f[74]) + f[10]*f[75]) + f[7]*(f[10]*f[74] + f[11]*f[75]))) + cos2th*(f[7]*(f[70]*(f[11]*f[74] - f[10]*f[75]) + f[71]*(f[10]*f[74] + f[11]*f[75])) + f[6]*(f[11]*(-(f[71]*f[74]) + f[70]*f[75]) + f[10]*(f[70]*f[74] + f[71]*f[75]))))*(-(1/(3*U[0] - 4*U[4])) + 1/(4*U[0] - 3*U[4])) + 12*(sin2th*(f[69]*(f[9]*(f[5]*f[72] + f[4]*f[73]) + f[8]*(f[4]*f[72] - f[5]*f[73])) - f[68]*(f[4]*(-(f[9]*f[72]) + f[8]*f[73]) + f[5]*(f[8]*f[72] + f[9]*f[73]))) + cos2th*(f[5]*(f[68]*(f[9]*f[72] - f[8]*f[73]) + f[69]*(f[8]*f[72] + f[9]*f[73])) + f[4]*(f[9]*(-(f[69]*f[72]) + f[68]*f[73]) + f[8]*(f[68]*f[72] + f[69]*f[73]))))*(-(1/(2*U[0] - 3*U[4])) + 1/(3*U[0] - 2*U[4])) + 6*(sin2th*(f[67]*(f[7]*(f[3]*f[70] + f[2]*f[71]) + f[6]*(f[2]*f[70] - f[3]*f[71])) - f[66]*(f[2]*(-(f[7]*f[70]) + f[6]*f[71]) + f[3]*(f[6]*f[70] + f[7]*f[71]))) + cos2th*(f[3]*(f[66]*(f[7]*f[70] - f[6]*f[71]) + f[67]*(f[6]*f[70] + f[7]*f[71])) + f[2]*(f[7]*(-(f[67]*f[70]) + f[66]*f[71]) + f[6]*(f[66]*f[70] + f[67]*f[71]))))*(-(1/(U[0] - 2*U[4])) + 1/(2*U[0] - U[4])) + 2*(sin2th*(f[65]*(f[5]*(f[1]*f[68] + f[0]*f[69]) + f[4]*(f[0]*f[68] - f[1]*f[69])) - f[64]*(f[0]*(-(f[5]*f[68]) + f[4]*f[69]) + f[1]*(f[4]*f[68] + f[5]*f[69]))) + cos2th*(f[1]*(f[64]*(f[5]*f[68] - f[4]*f[69]) + f[65]*(f[4]*f[68] + f[5]*f[69])) + f[0]*(f[5]*(-(f[65]*f[68]) + f[64]*f[69]) + f[4]*(f[64]*f[68] + f[65]*f[69]))))*(1/U[0] + 1/U[4])))/((f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J_3_2*(42*(sin2th*(-(f[75]*(f[63]*(f[59]*f[78] + f[58]*f[79]) + f[62]*(f[58]*f[78] - f[59]*f[79]))) + f[74]*(f[58]*(-(f[63]*f[78]) + f[62]*f[79]) + f[59]*(f[62]*f[78] + f[63]*f[79]))) + cos2th*(f[59]*(f[74]*(f[63]*f[78] - f[62]*f[79]) + f[75]*(f[62]*f[78] + f[63]*f[79])) + f[58]*(f[63]*(-(f[75]*f[78]) + f[74]*f[79]) + f[62]*(f[74]*f[78] + f[75]*f[79]))))*(-(1/(5*U[3] - 6*U[4])) + 1/(6*U[3] - 5*U[4])) + 30*(sin2th*(-(f[73]*(f[61]*(f[57]*f[76] + f[56]*f[77]) + f[60]*(f[56]*f[76] - f[57]*f[77]))) + f[72]*(f[56]*(-(f[61]*f[76]) + f[60]*f[77]) + f[57]*(f[60]*f[76] + f[61]*f[77]))) + cos2th*(f[57]*(f[72]*(f[61]*f[76] - f[60]*f[77]) + f[73]*(f[60]*f[76] + f[61]*f[77])) + f[56]*(f[61]*(-(f[73]*f[76]) + f[72]*f[77]) + f[60]*(f[72]*f[76] + f[73]*f[77]))))*(-(1/(4*U[3] - 5*U[4])) + 1/(5*U[3] - 4*U[4])) + 20*(sin2th*(-(f[71]*(f[59]*(f[55]*f[74] + f[54]*f[75]) + f[58]*(f[54]*f[74] - f[55]*f[75]))) + f[70]*(f[54]*(-(f[59]*f[74]) + f[58]*f[75]) + f[55]*(f[58]*f[74] + f[59]*f[75]))) + cos2th*(f[55]*(f[70]*(f[59]*f[74] - f[58]*f[75]) + f[71]*(f[58]*f[74] + f[59]*f[75])) + f[54]*(f[59]*(-(f[71]*f[74]) + f[70]*f[75]) + f[58]*(f[70]*f[74] + f[71]*f[75]))))*(-(1/(3*U[3] - 4*U[4])) + 1/(4*U[3] - 3*U[4])) + 12*(sin2th*(-(f[69]*(f[57]*(f[53]*f[72] + f[52]*f[73]) + f[56]*(f[52]*f[72] - f[53]*f[73]))) + f[68]*(f[52]*(-(f[57]*f[72]) + f[56]*f[73]) + f[53]*(f[56]*f[72] + f[57]*f[73]))) + cos2th*(f[53]*(f[68]*(f[57]*f[72] - f[56]*f[73]) + f[69]*(f[56]*f[72] + f[57]*f[73])) + f[52]*(f[57]*(-(f[69]*f[72]) + f[68]*f[73]) + f[56]*(f[68]*f[72] + f[69]*f[73]))))*(-(1/(2*U[3] - 3*U[4])) + 1/(3*U[3] - 2*U[4])) + 6*(sin2th*(-(f[67]*(f[55]*(f[51]*f[70] + f[50]*f[71]) + f[54]*(f[50]*f[70] - f[51]*f[71]))) + f[66]*(f[50]*(-(f[55]*f[70]) + f[54]*f[71]) + f[51]*(f[54]*f[70] + f[55]*f[71]))) + cos2th*(f[51]*(f[66]*(f[55]*f[70] - f[54]*f[71]) + f[67]*(f[54]*f[70] + f[55]*f[71])) + f[50]*(f[55]*(-(f[67]*f[70]) + f[66]*f[71]) + f[54]*(f[66]*f[70] + f[67]*f[71]))))*(-(1/(U[3] - 2*U[4])) + 1/(2*U[3] - U[4])) + 2*(sin2th*(-(f[65]*(f[53]*(f[49]*f[68] + f[48]*f[69]) + f[52]*(f[48]*f[68] - f[49]*f[69]))) + f[64]*(f[48]*(-(f[53]*f[68]) + f[52]*f[69]) + f[49]*(f[52]*f[68] + f[53]*f[69]))) + cos2th*(f[49]*(f[64]*(f[53]*f[68] - f[52]*f[69]) + f[65]*(f[52]*f[68] + f[53]*f[69])) + f[48]*(f[53]*(-(f[65]*f[68]) + f[64]*f[69]) + f[52]*(f[64]*f[68] + f[65]*f[69]))))*(1/U[3] + 1/U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + (J_4_2*(2*(sin2th*(f[65]*(f[5]*(f[1]*f[68] + f[0]*f[69]) + f[4]*(f[0]*f[68] - f[1]*f[69])) - f[64]*(f[0]*(-(f[5]*f[68]) + f[4]*f[69]) + f[1]*(f[4]*f[68] + f[5]*f[69]))) + cos2th*(f[1]*(f[64]*(f[5]*f[68] - f[4]*f[69]) + f[65]*(f[4]*f[68] + f[5]*f[69])) + f[0]*(f[5]*(-(f[65]*f[68]) + f[64]*f[69]) + f[4]*(f[64]*f[68] + f[65]*f[69]))))*(1/U[0] + 1/U[4]) + 6*(sin2th*(f[67]*(f[7]*(f[3]*f[70] + f[2]*f[71]) + f[6]*(f[2]*f[70] - f[3]*f[71])) - f[66]*(f[2]*(-(f[7]*f[70]) + f[6]*f[71]) + f[3]*(f[6]*f[70] + f[7]*f[71]))) + cos2th*(f[3]*(f[66]*(f[7]*f[70] - f[6]*f[71]) + f[67]*(f[6]*f[70] + f[7]*f[71])) + f[2]*(f[7]*(-(f[67]*f[70]) + f[66]*f[71]) + f[6]*(f[66]*f[70] + f[67]*f[71]))))*(-(1/(-2*U[0] + U[4])) + 1/(-U[0] + 2*U[4])) + 12*(sin2th*(f[69]*(f[9]*(f[5]*f[72] + f[4]*f[73]) + f[8]*(f[4]*f[72] - f[5]*f[73])) - f[68]*(f[4]*(-(f[9]*f[72]) + f[8]*f[73]) + f[5]*(f[8]*f[72] + f[9]*f[73]))) + cos2th*(f[5]*(f[68]*(f[9]*f[72] - f[8]*f[73]) + f[69]*(f[8]*f[72] + f[9]*f[73])) + f[4]*(f[9]*(-(f[69]*f[72]) + f[68]*f[73]) + f[8]*(f[68]*f[72] + f[69]*f[73]))))*(-(1/(-3*U[0] + 2*U[4])) + 1/(-2*U[0] + 3*U[4])) + 20*(sin2th*(f[71]*(f[11]*(f[7]*f[74] + f[6]*f[75]) + f[10]*(f[6]*f[74] - f[7]*f[75])) - f[70]*(f[6]*(-(f[11]*f[74]) + f[10]*f[75]) + f[7]*(f[10]*f[74] + f[11]*f[75]))) + cos2th*(f[7]*(f[70]*(f[11]*f[74] - f[10]*f[75]) + f[71]*(f[10]*f[74] + f[11]*f[75])) + f[6]*(f[11]*(-(f[71]*f[74]) + f[70]*f[75]) + f[10]*(f[70]*f[74] + f[71]*f[75]))))*(-(1/(-4*U[0] + 3*U[4])) + 1/(-3*U[0] + 4*U[4])) + 30*(sin2th*(f[73]*(f[13]*(f[9]*f[76] + f[8]*f[77]) + f[12]*(f[8]*f[76] - f[9]*f[77])) - f[72]*(f[8]*(-(f[13]*f[76]) + f[12]*f[77]) + f[9]*(f[12]*f[76] + f[13]*f[77]))) + cos2th*(f[9]*(f[72]*(f[13]*f[76] - f[12]*f[77]) + f[73]*(f[12]*f[76] + f[13]*f[77])) + f[8]*(f[13]*(-(f[73]*f[76]) + f[72]*f[77]) + f[12]*(f[72]*f[76] + f[73]*f[77]))))*(-(1/(-5*U[0] + 4*U[4])) + 1/(-4*U[0] + 5*U[4])) + 42*(sin2th*(f[75]*(f[15]*(f[11]*f[78] + f[10]*f[79]) + f[14]*(f[10]*f[78] - f[11]*f[79])) - f[74]*(f[10]*(-(f[15]*f[78]) + f[14]*f[79]) + f[11]*(f[14]*f[78] + f[15]*f[79]))) + cos2th*(f[11]*(f[74]*(f[15]*f[78] - f[14]*f[79]) + f[75]*(f[14]*f[78] + f[15]*f[79])) + f[10]*(f[15]*(-(f[75]*f[78]) + f[74]*f[79]) + f[14]*(f[74]*f[78] + f[75]*f[79]))))*(-(1/(-6*U[0] + 5*U[4])) + 1/(-5*U[0] + 6*U[4]))))/((f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J_3_2*(2*(sin2th*(-(f[65]*(f[53]*(f[49]*f[68] + f[48]*f[69]) + f[52]*(f[48]*f[68] - f[49]*f[69]))) + f[64]*(f[48]*(-(f[53]*f[68]) + f[52]*f[69]) + f[49]*(f[52]*f[68] + f[53]*f[69]))) + cos2th*(f[49]*(f[64]*(f[53]*f[68] - f[52]*f[69]) + f[65]*(f[52]*f[68] + f[53]*f[69])) + f[48]*(f[53]*(-(f[65]*f[68]) + f[64]*f[69]) + f[52]*(f[64]*f[68] + f[65]*f[69]))))*(1/U[3] + 1/U[4]) + 6*(sin2th*(-(f[67]*(f[55]*(f[51]*f[70] + f[50]*f[71]) + f[54]*(f[50]*f[70] - f[51]*f[71]))) + f[66]*(f[50]*(-(f[55]*f[70]) + f[54]*f[71]) + f[51]*(f[54]*f[70] + f[55]*f[71]))) + cos2th*(f[51]*(f[66]*(f[55]*f[70] - f[54]*f[71]) + f[67]*(f[54]*f[70] + f[55]*f[71])) + f[50]*(f[55]*(-(f[67]*f[70]) + f[66]*f[71]) + f[54]*(f[66]*f[70] + f[67]*f[71]))))*(-(1/(-2*U[3] + U[4])) + 1/(-U[3] + 2*U[4])) + 12*(sin2th*(-(f[69]*(f[57]*(f[53]*f[72] + f[52]*f[73]) + f[56]*(f[52]*f[72] - f[53]*f[73]))) + f[68]*(f[52]*(-(f[57]*f[72]) + f[56]*f[73]) + f[53]*(f[56]*f[72] + f[57]*f[73]))) + cos2th*(f[53]*(f[68]*(f[57]*f[72] - f[56]*f[73]) + f[69]*(f[56]*f[72] + f[57]*f[73])) + f[52]*(f[57]*(-(f[69]*f[72]) + f[68]*f[73]) + f[56]*(f[68]*f[72] + f[69]*f[73]))))*(-(1/(-3*U[3] + 2*U[4])) + 1/(-2*U[3] + 3*U[4])) + 20*(sin2th*(-(f[71]*(f[59]*(f[55]*f[74] + f[54]*f[75]) + f[58]*(f[54]*f[74] - f[55]*f[75]))) + f[70]*(f[54]*(-(f[59]*f[74]) + f[58]*f[75]) + f[55]*(f[58]*f[74] + f[59]*f[75]))) + cos2th*(f[55]*(f[70]*(f[59]*f[74] - f[58]*f[75]) + f[71]*(f[58]*f[74] + f[59]*f[75])) + f[54]*(f[59]*(-(f[71]*f[74]) + f[70]*f[75]) + f[58]*(f[70]*f[74] + f[71]*f[75]))))*(-(1/(-4*U[3] + 3*U[4])) + 1/(-3*U[3] + 4*U[4])) + 30*(sin2th*(-(f[73]*(f[61]*(f[57]*f[76] + f[56]*f[77]) + f[60]*(f[56]*f[76] - f[57]*f[77]))) + f[72]*(f[56]*(-(f[61]*f[76]) + f[60]*f[77]) + f[57]*(f[60]*f[76] + f[61]*f[77]))) + cos2th*(f[57]*(f[72]*(f[61]*f[76] - f[60]*f[77]) + f[73]*(f[60]*f[76] + f[61]*f[77])) + f[56]*(f[61]*(-(f[73]*f[76]) + f[72]*f[77]) + f[60]*(f[72]*f[76] + f[73]*f[77]))))*(-(1/(-5*U[3] + 4*U[4])) + 1/(-4*U[3] + 5*U[4])) + 42*(sin2th*(-(f[75]*(f[63]*(f[59]*f[78] + f[58]*f[79]) + f[62]*(f[58]*f[78] - f[59]*f[79]))) + f[74]*(f[58]*(-(f[63]*f[78]) + f[62]*f[79]) + f[59]*(f[62]*f[78] + f[63]*f[79]))) + cos2th*(f[59]*(f[74]*(f[63]*f[78] - f[62]*f[79]) + f[75]*(f[62]*f[78] + f[63]*f[79])) + f[58]*(f[63]*(-(f[75]*f[78]) + f[74]*f[79]) + f[62]*(f[74]*f[78] + f[75]*f[79]))))*(-(1/(-6*U[3] + 5*U[4])) + 1/(-5*U[3] + 6*U[4]))))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)))/2. + ((J_0_2*((5*(f_10_2 + f_11_2)*(f_16_2/U[0] + f_17_2/U[0] + 2*((12*f_26_2)/(4*U[0] - 5*U[1]) + (12*f_27_2)/(4*U[0] - 5*U[1]) + (7*f_28_2)/(2*U[0] - 3*U[1]) + (7*f_29_2)/(2*U[0] - 3*U[1]) + (8*f_22_2)/(4*U[0] - 3*U[1]) + (8*f_23_2)/(4*U[0] - 3*U[1]) + (3*f_20_2)/(2*U[0] - U[1]) + (3*f_21_2)/(2*U[0] - U[1]) + (4*f_18_2)/(4*U[0] - U[1]) + (4*f_19_2)/(4*U[0] - U[1]))))/4. - (5*(f_8_2 + f_9_2)*(f_18_2/U[0] + f_19_2/U[0] + 2*((12*f_28_2)/(4*U[0] - 5*U[1]) + (12*f_29_2)/(4*U[0] - 5*U[1]) + (7*f_30_2)/(2*U[0] - 3*U[1]) + (7*f_31_2)/(2*U[0] - 3*U[1]) + (8*f_24_2)/(4*U[0] - 3*U[1]) + (8*f_25_2)/(4*U[0] - 3*U[1]) + (3*f_22_2)/(2*U[0] - U[1]) + (3*f_23_2)/(2*U[0] - U[1]) + (4*f_20_2)/(4*U[0] - U[1]) + (4*f_21_2)/(4*U[0] - U[1]))))/4. + (6*(f_12_2 + f_13_2)*(f_16_2/U[0] + f_17_2/U[0] + 5*((7*f_28_2)/(5*U[0] - 6*U[1]) + (7*f_29_2)/(5*U[0] - 6*U[1]) + (5*f_24_2)/(5*U[0] - 4*U[1]) + (5*f_25_2)/(5*U[0] - 4*U[1]) + (4*f_22_2)/(5*U[0] - 3*U[1]) + (4*f_23_2)/(5*U[0] - 3*U[1]) + (3*f_20_2)/(5*U[0] - 2*U[1]) + (3*f_21_2)/(5*U[0] - 2*U[1]) + (2*f_18_2)/(5*U[0] - U[1]) + (2*f_19_2)/(5*U[0] - U[1]))))/5. - (6*(f_10_2 + f_11_2)*(f_18_2/U[0] + f_19_2/U[0] + 5*((7*f_30_2)/(5*U[0] - 6*U[1]) + (7*f_31_2)/(5*U[0] - 6*U[1]) + (5*f_26_2)/(5*U[0] - 4*U[1]) + (5*f_27_2)/(5*U[0] - 4*U[1]) + (4*f_24_2)/(5*U[0] - 3*U[1]) + (4*f_25_2)/(5*U[0] - 3*U[1]) + (3*f_22_2)/(5*U[0] - 2*U[1]) + (3*f_23_2)/(5*U[0] - 2*U[1]) + (2*f_20_2)/(5*U[0] - U[1]) + (2*f_21_2)/(5*U[0] - U[1]))))/5. + 2*(f_4_2 + f_5_2)*(f_16_2/U[0] + f_17_2/U[0] + (7*f_28_2)/(U[0] - 6*U[1]) + (7*f_29_2)/(U[0] - 6*U[1]) + (6*f_26_2)/(U[0] - 5*U[1]) + (6*f_27_2)/(U[0] - 5*U[1]) + (5*f_24_2)/(U[0] - 4*U[1]) + (5*f_25_2)/(U[0] - 4*U[1]) + (4*f_22_2)/(U[0] - 3*U[1]) + (4*f_23_2)/(U[0] - 3*U[1]) + (3*f_20_2)/(U[0] - 2*U[1]) + (3*f_21_2)/(U[0] - 2*U[1])) - 2*(f_2_2 + f_3_2)*(f_18_2/U[0] + f_19_2/U[0] + (7*f_30_2)/(U[0] - 6*U[1]) + (7*f_31_2)/(U[0] - 6*U[1]) + (6*f_28_2)/(U[0] - 5*U[1]) + (6*f_29_2)/(U[0] - 5*U[1]) + (5*f_26_2)/(U[0] - 4*U[1]) + (5*f_27_2)/(U[0] - 4*U[1]) + (4*f_24_2)/(U[0] - 3*U[1]) + (4*f_25_2)/(U[0] - 3*U[1]) + (3*f_22_2)/(U[0] - 2*U[1]) + (3*f_23_2)/(U[0] - 2*U[1])) + (3*(f_6_2 + f_7_2)*(f_16_2/U[0] + f_17_2/U[0] + (12*f_26_2)/(2*U[0] - 5*U[1]) + (12*f_27_2)/(2*U[0] - 5*U[1]) + (7*f_28_2)/(U[0] - 3*U[1]) + (7*f_29_2)/(U[0] - 3*U[1]) + (8*f_22_2)/(2*U[0] - 3*U[1]) + (8*f_23_2)/(2*U[0] - 3*U[1]) + (5*f_24_2)/(U[0] - 2*U[1]) + (5*f_25_2)/(U[0] - 2*U[1]) + (4*f_18_2)/(2*U[0] - U[1]) + (4*f_19_2)/(2*U[0] - U[1])))/2. - (3*(f_4_2 + f_5_2)*(f_18_2/U[0] + f_19_2/U[0] + (12*f_28_2)/(2*U[0] - 5*U[1]) + (12*f_29_2)/(2*U[0] - 5*U[1]) + (7*f_30_2)/(U[0] - 3*U[1]) + (7*f_31_2)/(U[0] - 3*U[1]) + (8*f_24_2)/(2*U[0] - 3*U[1]) + (8*f_25_2)/(2*U[0] - 3*U[1]) + (5*f_26_2)/(U[0] - 2*U[1]) + (5*f_27_2)/(U[0] - 2*U[1]) + (4*f_20_2)/(2*U[0] - U[1]) + (4*f_21_2)/(2*U[0] - U[1])))/2. + (4*(f_8_2 + f_9_2)*(f_16_2/U[0] + f_17_2/U[0] + (18*f_26_2)/(3*U[0] - 5*U[1]) + (18*f_27_2)/(3*U[0] - 5*U[1]) + (15*f_24_2)/(3*U[0] - 4*U[1]) + (15*f_25_2)/(3*U[0] - 4*U[1]) + (7*f_28_2)/(U[0] - 2*U[1]) + (7*f_29_2)/(U[0] - 2*U[1]) + (9*f_20_2)/(3*U[0] - 2*U[1]) + (9*f_21_2)/(3*U[0] - 2*U[1]) + (6*f_18_2)/(3*U[0] - U[1]) + (6*f_19_2)/(3*U[0] - U[1])))/3. - (4*(f_6_2 + f_7_2)*(f_18_2/U[0] + f_19_2/U[0] + (18*f_28_2)/(3*U[0] - 5*U[1]) + (18*f_29_2)/(3*U[0] - 5*U[1]) + (15*f_26_2)/(3*U[0] - 4*U[1]) + (15*f_27_2)/(3*U[0] - 4*U[1]) + (7*f_30_2)/(U[0] - 2*U[1]) + (7*f_31_2)/(U[0] - 2*U[1]) + (9*f_22_2)/(3*U[0] - 2*U[1]) + (9*f_23_2)/(3*U[0] - 2*U[1]) + (6*f_20_2)/(3*U[0] - U[1]) + (6*f_21_2)/(3*U[0] - U[1])))/3. + (7*(f_14_2 + f_15_2)*(f_16_2/U[0] + f_17_2/U[0] + (36*f_26_2)/(6*U[0] - 5*U[1]) + (36*f_27_2)/(6*U[0] - 5*U[1]) + (15*f_24_2)/(3*U[0] - 2*U[1]) + (15*f_25_2)/(3*U[0] - 2*U[1]) + (8*f_22_2)/(2*U[0] - U[1]) + (8*f_23_2)/(2*U[0] - U[1]) + (9*f_20_2)/(3*U[0] - U[1]) + (9*f_21_2)/(3*U[0] - U[1]) + (12*f_18_2)/(6*U[0] - U[1]) + (12*f_19_2)/(6*U[0] - U[1])))/6. - (7*(f_12_2 + f_13_2)*(f_18_2/U[0] + f_19_2/U[0] + (36*f_28_2)/(6*U[0] - 5*U[1]) + (36*f_29_2)/(6*U[0] - 5*U[1]) + (15*f_26_2)/(3*U[0] - 2*U[1]) + (15*f_27_2)/(3*U[0] - 2*U[1]) + (8*f_24_2)/(2*U[0] - U[1]) + (8*f_25_2)/(2*U[0] - U[1]) + (9*f_22_2)/(3*U[0] - U[1]) + (9*f_23_2)/(3*U[0] - U[1]) + (12*f_20_2)/(6*U[0] - U[1]) + (12*f_21_2)/(6*U[0] - U[1])))/6. + ((f_0_2 + f_1_2)*(120*f_20_2 + 120*f_21_2 + 90*f_22_2 + 90*f_23_2 + 80*f_24_2 + 80*f_25_2 + 75*f_26_2 + 75*f_27_2 + 72*f_28_2 + 72*f_29_2 + 70*f_30_2 + 70*f_31_2))/(60.*U[1]) - ((120*f_18_2 + 120*f_19_2 + 90*f_20_2 + 90*f_21_2 + 80*f_22_2 + 80*f_23_2 + 75*f_24_2 + 75*f_25_2 + 72*f_26_2 + 72*f_27_2 + 70*f_28_2 + 70*f_29_2)*(f_2_2 + f_3_2))/(60.*U[1])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J_0_2*(-((f_18_2 + f_19_2)*(72*f_10_2 + 72*f_11_2 + 70*f_12_2 + 70*f_13_2 + 120*f_2_2 + 120*f_3_2 + 90*f_4_2 + 90*f_5_2 + 80*f_6_2 + 80*f_7_2 + 75*f_8_2 + 75*f_9_2))/(60.*U[0]) + ((f_16_2 + f_17_2)*(75*f_10_2 + 75*f_11_2 + 72*f_12_2 + 72*f_13_2 + 70*f_14_2 + 70*f_15_2 + 120*f_4_2 + 120*f_5_2 + 90*f_6_2 + 90*f_7_2 + 80*f_8_2 + 80*f_9_2))/(60.*U[0]) + 2*(f_20_2 + f_21_2)*(f_0_2/U[1] + f_1_2/U[1] + (7*f_12_2)/(-6*U[0] + U[1]) + (7*f_13_2)/(-6*U[0] + U[1]) + (6*f_10_2)/(-5*U[0] + U[1]) + (6*f_11_2)/(-5*U[0] + U[1]) + (5*f_8_2)/(-4*U[0] + U[1]) + (5*f_9_2)/(-4*U[0] + U[1]) + (4*f_6_2)/(-3*U[0] + U[1]) + (4*f_7_2)/(-3*U[0] + U[1]) + (3*f_4_2)/(-2*U[0] + U[1]) + (3*f_5_2)/(-2*U[0] + U[1])) - 2*(f_18_2 + f_19_2)*(f_2_2/U[1] + f_3_2/U[1] + (7*f_14_2)/(-6*U[0] + U[1]) + (7*f_15_2)/(-6*U[0] + U[1]) + (6*f_12_2)/(-5*U[0] + U[1]) + (6*f_13_2)/(-5*U[0] + U[1]) + (5*f_10_2)/(-4*U[0] + U[1]) + (5*f_11_2)/(-4*U[0] + U[1]) + (4*f_8_2)/(-3*U[0] + U[1]) + (4*f_9_2)/(-3*U[0] + U[1]) + (3*f_6_2)/(-2*U[0] + U[1]) + (3*f_7_2)/(-2*U[0] + U[1])) + (3*(f_22_2 + f_23_2)*((-4*f_2_2)/(U[0] - 2*U[1]) - (4*f_3_2)/(U[0] - 2*U[1]) - (5*f_8_2)/(2*U[0] - U[1]) - (5*f_9_2)/(2*U[0] - U[1]) - (7*f_12_2)/(3*U[0] - U[1]) - (7*f_13_2)/(3*U[0] - U[1]) + f_0_2/U[1] + f_1_2/U[1] + (12*f_10_2)/(-5*U[0] + 2*U[1]) + (12*f_11_2)/(-5*U[0] + 2*U[1]) + (8*f_6_2)/(-3*U[0] + 2*U[1]) + (8*f_7_2)/(-3*U[0] + 2*U[1])))/2. - (3*(f_20_2 + f_21_2)*((-4*f_4_2)/(U[0] - 2*U[1]) - (4*f_5_2)/(U[0] - 2*U[1]) - (5*f_10_2)/(2*U[0] - U[1]) - (5*f_11_2)/(2*U[0] - U[1]) - (7*f_14_2)/(3*U[0] - U[1]) - (7*f_15_2)/(3*U[0] - U[1]) + f_2_2/U[1] + f_3_2/U[1] + (12*f_12_2)/(-5*U[0] + 2*U[1]) + (12*f_13_2)/(-5*U[0] + 2*U[1]) + (8*f_8_2)/(-3*U[0] + 2*U[1]) + (8*f_9_2)/(-3*U[0] + 2*U[1])))/2. + (4*(f_24_2 + f_25_2)*((-6*f_2_2)/(U[0] - 3*U[1]) - (6*f_3_2)/(U[0] - 3*U[1]) - (7*f_12_2)/(2*U[0] - U[1]) - (7*f_13_2)/(2*U[0] - U[1]) + f_0_2/U[1] + f_1_2/U[1] + (18*f_10_2)/(-5*U[0] + 3*U[1]) + (18*f_11_2)/(-5*U[0] + 3*U[1]) + (15*f_8_2)/(-4*U[0] + 3*U[1]) + (15*f_9_2)/(-4*U[0] + 3*U[1]) + (9*f_4_2)/(-2*U[0] + 3*U[1]) + (9*f_5_2)/(-2*U[0] + 3*U[1])))/3. - (4*(f_22_2 + f_23_2)*((-6*f_4_2)/(U[0] - 3*U[1]) - (6*f_5_2)/(U[0] - 3*U[1]) - (7*f_14_2)/(2*U[0] - U[1]) - (7*f_15_2)/(2*U[0] - U[1]) + f_2_2/U[1] + f_3_2/U[1] + (18*f_12_2)/(-5*U[0] + 3*U[1]) + (18*f_13_2)/(-5*U[0] + 3*U[1]) + (15*f_10_2)/(-4*U[0] + 3*U[1]) + (15*f_11_2)/(-4*U[0] + 3*U[1]) + (9*f_6_2)/(-2*U[0] + 3*U[1]) + (9*f_7_2)/(-2*U[0] + 3*U[1])))/3. + (5*(f_26_2 + f_27_2)*((-8*f_2_2)/(U[0] - 4*U[1]) - (8*f_3_2)/(U[0] - 4*U[1]) - (6*f_4_2)/(U[0] - 2*U[1]) - (6*f_5_2)/(U[0] - 2*U[1]) + f_0_2/U[1] + f_1_2/U[1] + (28*f_12_2)/(-6*U[0] + 4*U[1]) + (28*f_13_2)/(-6*U[0] + 4*U[1]) + (24*f_10_2)/(-5*U[0] + 4*U[1]) + (24*f_11_2)/(-5*U[0] + 4*U[1]) + (16*f_6_2)/(-3*U[0] + 4*U[1]) + (16*f_7_2)/(-3*U[0] + 4*U[1])))/4. - (5*(f_24_2 + f_25_2)*((-8*f_4_2)/(U[0] - 4*U[1]) - (8*f_5_2)/(U[0] - 4*U[1]) - (6*f_6_2)/(U[0] - 2*U[1]) - (6*f_7_2)/(U[0] - 2*U[1]) + f_2_2/U[1] + f_3_2/U[1] + (28*f_14_2)/(-6*U[0] + 4*U[1]) + (28*f_15_2)/(-6*U[0] + 4*U[1]) + (24*f_12_2)/(-5*U[0] + 4*U[1]) + (24*f_13_2)/(-5*U[0] + 4*U[1]) + (16*f_8_2)/(-3*U[0] + 4*U[1]) + (16*f_9_2)/(-3*U[0] + 4*U[1])))/4. + (6*(f_28_2 + f_29_2)*((-10*f_2_2)/(U[0] - 5*U[1]) - (10*f_3_2)/(U[0] - 5*U[1]) + f_0_2/U[1] + f_1_2/U[1] + (35*f_12_2)/(-6*U[0] + 5*U[1]) + (35*f_13_2)/(-6*U[0] + 5*U[1]) + (25*f_8_2)/(-4*U[0] + 5*U[1]) + (25*f_9_2)/(-4*U[0] + 5*U[1]) + (20*f_6_2)/(-3*U[0] + 5*U[1]) + (20*f_7_2)/(-3*U[0] + 5*U[1]) + (15*f_4_2)/(-2*U[0] + 5*U[1]) + (15*f_5_2)/(-2*U[0] + 5*U[1])))/5. - (6*(f_26_2 + f_27_2)*((-10*f_4_2)/(U[0] - 5*U[1]) - (10*f_5_2)/(U[0] - 5*U[1]) + f_2_2/U[1] + f_3_2/U[1] + (35*f_14_2)/(-6*U[0] + 5*U[1]) + (35*f_15_2)/(-6*U[0] + 5*U[1]) + (25*f_10_2)/(-4*U[0] + 5*U[1]) + (25*f_11_2)/(-4*U[0] + 5*U[1]) + (20*f_8_2)/(-3*U[0] + 5*U[1]) + (20*f_9_2)/(-3*U[0] + 5*U[1]) + (15*f_6_2)/(-2*U[0] + 5*U[1]) + (15*f_7_2)/(-2*U[0] + 5*U[1])))/5. - (7*(f_28_2 + f_29_2)*((-12*f_4_2)/(U[0] - 6*U[1]) - (12*f_5_2)/(U[0] - 6*U[1]) - (9*f_6_2)/(U[0] - 3*U[1]) - (9*f_7_2)/(U[0] - 3*U[1]) - (8*f_8_2)/(U[0] - 2*U[1]) - (8*f_9_2)/(U[0] - 2*U[1]) + f_2_2/U[1] + f_3_2/U[1] + (36*f_12_2)/(-5*U[0] + 6*U[1]) + (36*f_13_2)/(-5*U[0] + 6*U[1]) + (30*f_10_2)/(-4*U[0] + 6*U[1]) + (30*f_11_2)/(-4*U[0] + 6*U[1])))/6. + (7*(f_30_2 + f_31_2)*((-12*f_2_2)/(U[0] - 6*U[1]) - (12*f_3_2)/(U[0] - 6*U[1]) - (9*f_4_2)/(U[0] - 3*U[1]) - (9*f_5_2)/(U[0] - 3*U[1]) - (8*f_6_2)/(U[0] - 2*U[1]) - (8*f_7_2)/(U[0] - 2*U[1]) + f_0_2/U[1] + f_1_2/U[1] + (36*f_10_2)/(-5*U[0] + 6*U[1]) + (36*f_11_2)/(-5*U[0] + 6*U[1]) + (30*f_8_2)/(-4*U[0] + 6*U[1]) + (30*f_9_2)/(-4*U[0] + 6*U[1])))/6.))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J_1_2*((5*(f_26_2 + f_27_2)*(f_32_2/U[1] + f_33_2/U[1] + 2*((12*f_42_2)/(4*U[1] - 5*U[2]) + (12*f_43_2)/(4*U[1] - 5*U[2]) + (7*f_44_2)/(2*U[1] - 3*U[2]) + (7*f_45_2)/(2*U[1] - 3*U[2]) + (8*f_38_2)/(4*U[1] - 3*U[2]) + (8*f_39_2)/(4*U[1] - 3*U[2]) + (3*f_36_2)/(2*U[1] - U[2]) + (3*f_37_2)/(2*U[1] - U[2]) + (4*f_34_2)/(4*U[1] - U[2]) + (4*f_35_2)/(4*U[1] - U[2]))))/4. - (5*(f_24_2 + f_25_2)*(f_34_2/U[1] + f_35_2/U[1] + 2*((12*f_44_2)/(4*U[1] - 5*U[2]) + (12*f_45_2)/(4*U[1] - 5*U[2]) + (7*f_46_2)/(2*U[1] - 3*U[2]) + (7*f_47_2)/(2*U[1] - 3*U[2]) + (8*f_40_2)/(4*U[1] - 3*U[2]) + (8*f_41_2)/(4*U[1] - 3*U[2]) + (3*f_38_2)/(2*U[1] - U[2]) + (3*f_39_2)/(2*U[1] - U[2]) + (4*f_36_2)/(4*U[1] - U[2]) + (4*f_37_2)/(4*U[1] - U[2]))))/4. + (6*(f_28_2 + f_29_2)*(f_32_2/U[1] + f_33_2/U[1] + 5*((7*f_44_2)/(5*U[1] - 6*U[2]) + (7*f_45_2)/(5*U[1] - 6*U[2]) + (5*f_40_2)/(5*U[1] - 4*U[2]) + (5*f_41_2)/(5*U[1] - 4*U[2]) + (4*f_38_2)/(5*U[1] - 3*U[2]) + (4*f_39_2)/(5*U[1] - 3*U[2]) + (3*f_36_2)/(5*U[1] - 2*U[2]) + (3*f_37_2)/(5*U[1] - 2*U[2]) + (2*f_34_2)/(5*U[1] - U[2]) + (2*f_35_2)/(5*U[1] - U[2]))))/5. - (6*(f_26_2 + f_27_2)*(f_34_2/U[1] + f_35_2/U[1] + 5*((7*f_46_2)/(5*U[1] - 6*U[2]) + (7*f_47_2)/(5*U[1] - 6*U[2]) + (5*f_42_2)/(5*U[1] - 4*U[2]) + (5*f_43_2)/(5*U[1] - 4*U[2]) + (4*f_40_2)/(5*U[1] - 3*U[2]) + (4*f_41_2)/(5*U[1] - 3*U[2]) + (3*f_38_2)/(5*U[1] - 2*U[2]) + (3*f_39_2)/(5*U[1] - 2*U[2]) + (2*f_36_2)/(5*U[1] - U[2]) + (2*f_37_2)/(5*U[1] - U[2]))))/5. + 2*(f_20_2 + f_21_2)*(f_32_2/U[1] + f_33_2/U[1] + (7*f_44_2)/(U[1] - 6*U[2]) + (7*f_45_2)/(U[1] - 6*U[2]) + (6*f_42_2)/(U[1] - 5*U[2]) + (6*f_43_2)/(U[1] - 5*U[2]) + (5*f_40_2)/(U[1] - 4*U[2]) + (5*f_41_2)/(U[1] - 4*U[2]) + (4*f_38_2)/(U[1] - 3*U[2]) + (4*f_39_2)/(U[1] - 3*U[2]) + (3*f_36_2)/(U[1] - 2*U[2]) + (3*f_37_2)/(U[1] - 2*U[2])) - 2*(f_18_2 + f_19_2)*(f_34_2/U[1] + f_35_2/U[1] + (7*f_46_2)/(U[1] - 6*U[2]) + (7*f_47_2)/(U[1] - 6*U[2]) + (6*f_44_2)/(U[1] - 5*U[2]) + (6*f_45_2)/(U[1] - 5*U[2]) + (5*f_42_2)/(U[1] - 4*U[2]) + (5*f_43_2)/(U[1] - 4*U[2]) + (4*f_40_2)/(U[1] - 3*U[2]) + (4*f_41_2)/(U[1] - 3*U[2]) + (3*f_38_2)/(U[1] - 2*U[2]) + (3*f_39_2)/(U[1] - 2*U[2])) + (3*(f_22_2 + f_23_2)*(f_32_2/U[1] + f_33_2/U[1] + (12*f_42_2)/(2*U[1] - 5*U[2]) + (12*f_43_2)/(2*U[1] - 5*U[2]) + (7*f_44_2)/(U[1] - 3*U[2]) + (7*f_45_2)/(U[1] - 3*U[2]) + (8*f_38_2)/(2*U[1] - 3*U[2]) + (8*f_39_2)/(2*U[1] - 3*U[2]) + (5*f_40_2)/(U[1] - 2*U[2]) + (5*f_41_2)/(U[1] - 2*U[2]) + (4*f_34_2)/(2*U[1] - U[2]) + (4*f_35_2)/(2*U[1] - U[2])))/2. - (3*(f_20_2 + f_21_2)*(f_34_2/U[1] + f_35_2/U[1] + (12*f_44_2)/(2*U[1] - 5*U[2]) + (12*f_45_2)/(2*U[1] - 5*U[2]) + (7*f_46_2)/(U[1] - 3*U[2]) + (7*f_47_2)/(U[1] - 3*U[2]) + (8*f_40_2)/(2*U[1] - 3*U[2]) + (8*f_41_2)/(2*U[1] - 3*U[2]) + (5*f_42_2)/(U[1] - 2*U[2]) + (5*f_43_2)/(U[1] - 2*U[2]) + (4*f_36_2)/(2*U[1] - U[2]) + (4*f_37_2)/(2*U[1] - U[2])))/2. + (4*(f_24_2 + f_25_2)*(f_32_2/U[1] + f_33_2/U[1] + (18*f_42_2)/(3*U[1] - 5*U[2]) + (18*f_43_2)/(3*U[1] - 5*U[2]) + (15*f_40_2)/(3*U[1] - 4*U[2]) + (15*f_41_2)/(3*U[1] - 4*U[2]) + (7*f_44_2)/(U[1] - 2*U[2]) + (7*f_45_2)/(U[1] - 2*U[2]) + (9*f_36_2)/(3*U[1] - 2*U[2]) + (9*f_37_2)/(3*U[1] - 2*U[2]) + (6*f_34_2)/(3*U[1] - U[2]) + (6*f_35_2)/(3*U[1] - U[2])))/3. - (4*(f_22_2 + f_23_2)*(f_34_2/U[1] + f_35_2/U[1] + (18*f_44_2)/(3*U[1] - 5*U[2]) + (18*f_45_2)/(3*U[1] - 5*U[2]) + (15*f_42_2)/(3*U[1] - 4*U[2]) + (15*f_43_2)/(3*U[1] - 4*U[2]) + (7*f_46_2)/(U[1] - 2*U[2]) + (7*f_47_2)/(U[1] - 2*U[2]) + (9*f_38_2)/(3*U[1] - 2*U[2]) + (9*f_39_2)/(3*U[1] - 2*U[2]) + (6*f_36_2)/(3*U[1] - U[2]) + (6*f_37_2)/(3*U[1] - U[2])))/3. + (7*(f_30_2 + f_31_2)*(f_32_2/U[1] + f_33_2/U[1] + (36*f_42_2)/(6*U[1] - 5*U[2]) + (36*f_43_2)/(6*U[1] - 5*U[2]) + (15*f_40_2)/(3*U[1] - 2*U[2]) + (15*f_41_2)/(3*U[1] - 2*U[2]) + (8*f_38_2)/(2*U[1] - U[2]) + (8*f_39_2)/(2*U[1] - U[2]) + (9*f_36_2)/(3*U[1] - U[2]) + (9*f_37_2)/(3*U[1] - U[2]) + (12*f_34_2)/(6*U[1] - U[2]) + (12*f_35_2)/(6*U[1] - U[2])))/6. - (7*(f_28_2 + f_29_2)*(f_34_2/U[1] + f_35_2/U[1] + (36*f_44_2)/(6*U[1] - 5*U[2]) + (36*f_45_2)/(6*U[1] - 5*U[2]) + (15*f_42_2)/(3*U[1] - 2*U[2]) + (15*f_43_2)/(3*U[1] - 2*U[2]) + (8*f_40_2)/(2*U[1] - U[2]) + (8*f_41_2)/(2*U[1] - U[2]) + (9*f_38_2)/(3*U[1] - U[2]) + (9*f_39_2)/(3*U[1] - U[2]) + (12*f_36_2)/(6*U[1] - U[2]) + (12*f_37_2)/(6*U[1] - U[2])))/6. - ((f_18_2 + f_19_2)*(120*f_34_2 + 120*f_35_2 + 90*f_36_2 + 90*f_37_2 + 80*f_38_2 + 80*f_39_2 + 75*f_40_2 + 75*f_41_2 + 72*f_42_2 + 72*f_43_2 + 70*f_44_2 + 70*f_45_2))/(60.*U[2]) + ((f_16_2 + f_17_2)*(120*f_36_2 + 120*f_37_2 + 90*f_38_2 + 90*f_39_2 + 80*f_40_2 + 80*f_41_2 + 75*f_42_2 + 75*f_43_2 + 72*f_44_2 + 72*f_45_2 + 70*f_46_2 + 70*f_47_2))/(60.*U[2])))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)) + (J_1_2*(((120*f_20_2 + 120*f_21_2 + 90*f_22_2 + 90*f_23_2 + 80*f_24_2 + 80*f_25_2 + 75*f_26_2 + 75*f_27_2 + 72*f_28_2 + 72*f_29_2 + 70*f_30_2 + 70*f_31_2)*(f_32_2 + f_33_2))/(60.*U[1]) - ((120*f_18_2 + 120*f_19_2 + 90*f_20_2 + 90*f_21_2 + 80*f_22_2 + 80*f_23_2 + 75*f_24_2 + 75*f_25_2 + 72*f_26_2 + 72*f_27_2 + 70*f_28_2 + 70*f_29_2)*(f_34_2 + f_35_2))/(60.*U[1]) + 2*(f_36_2 + f_37_2)*(f_16_2/U[2] + f_17_2/U[2] + (7*f_28_2)/(-6*U[1] + U[2]) + (7*f_29_2)/(-6*U[1] + U[2]) + (6*f_26_2)/(-5*U[1] + U[2]) + (6*f_27_2)/(-5*U[1] + U[2]) + (5*f_24_2)/(-4*U[1] + U[2]) + (5*f_25_2)/(-4*U[1] + U[2]) + (4*f_22_2)/(-3*U[1] + U[2]) + (4*f_23_2)/(-3*U[1] + U[2]) + (3*f_20_2)/(-2*U[1] + U[2]) + (3*f_21_2)/(-2*U[1] + U[2])) - 2*(f_34_2 + f_35_2)*(f_18_2/U[2] + f_19_2/U[2] + (7*f_30_2)/(-6*U[1] + U[2]) + (7*f_31_2)/(-6*U[1] + U[2]) + (6*f_28_2)/(-5*U[1] + U[2]) + (6*f_29_2)/(-5*U[1] + U[2]) + (5*f_26_2)/(-4*U[1] + U[2]) + (5*f_27_2)/(-4*U[1] + U[2]) + (4*f_24_2)/(-3*U[1] + U[2]) + (4*f_25_2)/(-3*U[1] + U[2]) + (3*f_22_2)/(-2*U[1] + U[2]) + (3*f_23_2)/(-2*U[1] + U[2])) + (3*(f_38_2 + f_39_2)*((-4*f_18_2)/(U[1] - 2*U[2]) - (4*f_19_2)/(U[1] - 2*U[2]) - (5*f_24_2)/(2*U[1] - U[2]) - (5*f_25_2)/(2*U[1] - U[2]) - (7*f_28_2)/(3*U[1] - U[2]) - (7*f_29_2)/(3*U[1] - U[2]) + f_16_2/U[2] + f_17_2/U[2] + (12*f_26_2)/(-5*U[1] + 2*U[2]) + (12*f_27_2)/(-5*U[1] + 2*U[2]) + (8*f_22_2)/(-3*U[1] + 2*U[2]) + (8*f_23_2)/(-3*U[1] + 2*U[2])))/2. - (3*(f_36_2 + f_37_2)*((-4*f_20_2)/(U[1] - 2*U[2]) - (4*f_21_2)/(U[1] - 2*U[2]) - (5*f_26_2)/(2*U[1] - U[2]) - (5*f_27_2)/(2*U[1] - U[2]) - (7*f_30_2)/(3*U[1] - U[2]) - (7*f_31_2)/(3*U[1] - U[2]) + f_18_2/U[2] + f_19_2/U[2] + (12*f_28_2)/(-5*U[1] + 2*U[2]) + (12*f_29_2)/(-5*U[1] + 2*U[2]) + (8*f_24_2)/(-3*U[1] + 2*U[2]) + (8*f_25_2)/(-3*U[1] + 2*U[2])))/2. + (4*(f_40_2 + f_41_2)*((-6*f_18_2)/(U[1] - 3*U[2]) - (6*f_19_2)/(U[1] - 3*U[2]) - (7*f_28_2)/(2*U[1] - U[2]) - (7*f_29_2)/(2*U[1] - U[2]) + f_16_2/U[2] + f_17_2/U[2] + (18*f_26_2)/(-5*U[1] + 3*U[2]) + (18*f_27_2)/(-5*U[1] + 3*U[2]) + (15*f_24_2)/(-4*U[1] + 3*U[2]) + (15*f_25_2)/(-4*U[1] + 3*U[2]) + (9*f_20_2)/(-2*U[1] + 3*U[2]) + (9*f_21_2)/(-2*U[1] + 3*U[2])))/3. - (4*(f_38_2 + f_39_2)*((-6*f_20_2)/(U[1] - 3*U[2]) - (6*f_21_2)/(U[1] - 3*U[2]) - (7*f_30_2)/(2*U[1] - U[2]) - (7*f_31_2)/(2*U[1] - U[2]) + f_18_2/U[2] + f_19_2/U[2] + (18*f_28_2)/(-5*U[1] + 3*U[2]) + (18*f_29_2)/(-5*U[1] + 3*U[2]) + (15*f_26_2)/(-4*U[1] + 3*U[2]) + (15*f_27_2)/(-4*U[1] + 3*U[2]) + (9*f_22_2)/(-2*U[1] + 3*U[2]) + (9*f_23_2)/(-2*U[1] + 3*U[2])))/3. + (5*(f_42_2 + f_43_2)*((-8*f_18_2)/(U[1] - 4*U[2]) - (8*f_19_2)/(U[1] - 4*U[2]) - (6*f_20_2)/(U[1] - 2*U[2]) - (6*f_21_2)/(U[1] - 2*U[2]) + f_16_2/U[2] + f_17_2/U[2] + (28*f_28_2)/(-6*U[1] + 4*U[2]) + (28*f_29_2)/(-6*U[1] + 4*U[2]) + (24*f_26_2)/(-5*U[1] + 4*U[2]) + (24*f_27_2)/(-5*U[1] + 4*U[2]) + (16*f_22_2)/(-3*U[1] + 4*U[2]) + (16*f_23_2)/(-3*U[1] + 4*U[2])))/4. - (5*(f_40_2 + f_41_2)*((-8*f_20_2)/(U[1] - 4*U[2]) - (8*f_21_2)/(U[1] - 4*U[2]) - (6*f_22_2)/(U[1] - 2*U[2]) - (6*f_23_2)/(U[1] - 2*U[2]) + f_18_2/U[2] + f_19_2/U[2] + (28*f_30_2)/(-6*U[1] + 4*U[2]) + (28*f_31_2)/(-6*U[1] + 4*U[2]) + (24*f_28_2)/(-5*U[1] + 4*U[2]) + (24*f_29_2)/(-5*U[1] + 4*U[2]) + (16*f_24_2)/(-3*U[1] + 4*U[2]) + (16*f_25_2)/(-3*U[1] + 4*U[2])))/4. + (6*(f_44_2 + f_45_2)*((-10*f_18_2)/(U[1] - 5*U[2]) - (10*f_19_2)/(U[1] - 5*U[2]) + f_16_2/U[2] + f_17_2/U[2] + (35*f_28_2)/(-6*U[1] + 5*U[2]) + (35*f_29_2)/(-6*U[1] + 5*U[2]) + (25*f_24_2)/(-4*U[1] + 5*U[2]) + (25*f_25_2)/(-4*U[1] + 5*U[2]) + (20*f_22_2)/(-3*U[1] + 5*U[2]) + (20*f_23_2)/(-3*U[1] + 5*U[2]) + (15*f_20_2)/(-2*U[1] + 5*U[2]) + (15*f_21_2)/(-2*U[1] + 5*U[2])))/5. - (6*(f_42_2 + f_43_2)*((-10*f_20_2)/(U[1] - 5*U[2]) - (10*f_21_2)/(U[1] - 5*U[2]) + f_18_2/U[2] + f_19_2/U[2] + (35*f_30_2)/(-6*U[1] + 5*U[2]) + (35*f_31_2)/(-6*U[1] + 5*U[2]) + (25*f_26_2)/(-4*U[1] + 5*U[2]) + (25*f_27_2)/(-4*U[1] + 5*U[2]) + (20*f_24_2)/(-3*U[1] + 5*U[2]) + (20*f_25_2)/(-3*U[1] + 5*U[2]) + (15*f_22_2)/(-2*U[1] + 5*U[2]) + (15*f_23_2)/(-2*U[1] + 5*U[2])))/5. + (7*(f_46_2 + f_47_2)*((-12*f_18_2)/(U[1] - 6*U[2]) - (12*f_19_2)/(U[1] - 6*U[2]) - (9*f_20_2)/(U[1] - 3*U[2]) - (9*f_21_2)/(U[1] - 3*U[2]) - (8*f_22_2)/(U[1] - 2*U[2]) - (8*f_23_2)/(U[1] - 2*U[2]) + f_16_2/U[2] + f_17_2/U[2] + (36*f_26_2)/(-5*U[1] + 6*U[2]) + (36*f_27_2)/(-5*U[1] + 6*U[2]) + (30*f_24_2)/(-4*U[1] + 6*U[2]) + (30*f_25_2)/(-4*U[1] + 6*U[2])))/6. - (7*(f_44_2 + f_45_2)*((-12*f_20_2)/(U[1] - 6*U[2]) - (12*f_21_2)/(U[1] - 6*U[2]) - (9*f_22_2)/(U[1] - 3*U[2]) - (9*f_23_2)/(U[1] - 3*U[2]) - (8*f_24_2)/(U[1] - 2*U[2]) - (8*f_25_2)/(U[1] - 2*U[2]) + f_18_2/U[2] + f_19_2/U[2] + (36*f_28_2)/(-5*U[1] + 6*U[2]) + (36*f_29_2)/(-5*U[1] + 6*U[2]) + (30*f_26_2)/(-4*U[1] + 6*U[2]) + (30*f_27_2)/(-4*U[1] + 6*U[2])))/6.))/((f_16_2 + f_17_2 + f_18_2 + f_19_2 + f_20_2 + f_21_2 + f_22_2 + f_23_2 + f_24_2 + f_25_2 + f_26_2 + f_27_2 + f_28_2 + f_29_2 + f_30_2 + f_31_2)*(f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)) + (J_2_2*((5*(f_42_2 + f_43_2)*(f_48_2/U[2] + f_49_2/U[2] + 2*((12*f_58_2)/(4*U[2] - 5*U[3]) + (12*f_59_2)/(4*U[2] - 5*U[3]) + (7*f_60_2)/(2*U[2] - 3*U[3]) + (7*f_61_2)/(2*U[2] - 3*U[3]) + (8*f_54_2)/(4*U[2] - 3*U[3]) + (8*f_55_2)/(4*U[2] - 3*U[3]) + (3*f_52_2)/(2*U[2] - U[3]) + (3*f_53_2)/(2*U[2] - U[3]) + (4*f_50_2)/(4*U[2] - U[3]) + (4*f_51_2)/(4*U[2] - U[3]))))/4. - (5*(f_40_2 + f_41_2)*(f_50_2/U[2] + f_51_2/U[2] + 2*((12*f_60_2)/(4*U[2] - 5*U[3]) + (12*f_61_2)/(4*U[2] - 5*U[3]) + (7*f_62_2)/(2*U[2] - 3*U[3]) + (7*f_63_2)/(2*U[2] - 3*U[3]) + (8*f_56_2)/(4*U[2] - 3*U[3]) + (8*f_57_2)/(4*U[2] - 3*U[3]) + (3*f_54_2)/(2*U[2] - U[3]) + (3*f_55_2)/(2*U[2] - U[3]) + (4*f_52_2)/(4*U[2] - U[3]) + (4*f_53_2)/(4*U[2] - U[3]))))/4. + (6*(f_44_2 + f_45_2)*(f_48_2/U[2] + f_49_2/U[2] + 5*((7*f_60_2)/(5*U[2] - 6*U[3]) + (7*f_61_2)/(5*U[2] - 6*U[3]) + (5*f_56_2)/(5*U[2] - 4*U[3]) + (5*f_57_2)/(5*U[2] - 4*U[3]) + (4*f_54_2)/(5*U[2] - 3*U[3]) + (4*f_55_2)/(5*U[2] - 3*U[3]) + (3*f_52_2)/(5*U[2] - 2*U[3]) + (3*f_53_2)/(5*U[2] - 2*U[3]) + (2*f_50_2)/(5*U[2] - U[3]) + (2*f_51_2)/(5*U[2] - U[3]))))/5. - (6*(f_42_2 + f_43_2)*(f_50_2/U[2] + f_51_2/U[2] + 5*((7*f_62_2)/(5*U[2] - 6*U[3]) + (7*f_63_2)/(5*U[2] - 6*U[3]) + (5*f_58_2)/(5*U[2] - 4*U[3]) + (5*f_59_2)/(5*U[2] - 4*U[3]) + (4*f_56_2)/(5*U[2] - 3*U[3]) + (4*f_57_2)/(5*U[2] - 3*U[3]) + (3*f_54_2)/(5*U[2] - 2*U[3]) + (3*f_55_2)/(5*U[2] - 2*U[3]) + (2*f_52_2)/(5*U[2] - U[3]) + (2*f_53_2)/(5*U[2] - U[3]))))/5. + 2*(f_36_2 + f_37_2)*(f_48_2/U[2] + f_49_2/U[2] + (7*f_60_2)/(U[2] - 6*U[3]) + (7*f_61_2)/(U[2] - 6*U[3]) + (6*f_58_2)/(U[2] - 5*U[3]) + (6*f_59_2)/(U[2] - 5*U[3]) + (5*f_56_2)/(U[2] - 4*U[3]) + (5*f_57_2)/(U[2] - 4*U[3]) + (4*f_54_2)/(U[2] - 3*U[3]) + (4*f_55_2)/(U[2] - 3*U[3]) + (3*f_52_2)/(U[2] - 2*U[3]) + (3*f_53_2)/(U[2] - 2*U[3])) - 2*(f_34_2 + f_35_2)*(f_50_2/U[2] + f_51_2/U[2] + (7*f_62_2)/(U[2] - 6*U[3]) + (7*f_63_2)/(U[2] - 6*U[3]) + (6*f_60_2)/(U[2] - 5*U[3]) + (6*f_61_2)/(U[2] - 5*U[3]) + (5*f_58_2)/(U[2] - 4*U[3]) + (5*f_59_2)/(U[2] - 4*U[3]) + (4*f_56_2)/(U[2] - 3*U[3]) + (4*f_57_2)/(U[2] - 3*U[3]) + (3*f_54_2)/(U[2] - 2*U[3]) + (3*f_55_2)/(U[2] - 2*U[3])) + (3*(f_38_2 + f_39_2)*(f_48_2/U[2] + f_49_2/U[2] + (12*f_58_2)/(2*U[2] - 5*U[3]) + (12*f_59_2)/(2*U[2] - 5*U[3]) + (7*f_60_2)/(U[2] - 3*U[3]) + (7*f_61_2)/(U[2] - 3*U[3]) + (8*f_54_2)/(2*U[2] - 3*U[3]) + (8*f_55_2)/(2*U[2] - 3*U[3]) + (5*f_56_2)/(U[2] - 2*U[3]) + (5*f_57_2)/(U[2] - 2*U[3]) + (4*f_50_2)/(2*U[2] - U[3]) + (4*f_51_2)/(2*U[2] - U[3])))/2. - (3*(f_36_2 + f_37_2)*(f_50_2/U[2] + f_51_2/U[2] + (12*f_60_2)/(2*U[2] - 5*U[3]) + (12*f_61_2)/(2*U[2] - 5*U[3]) + (7*f_62_2)/(U[2] - 3*U[3]) + (7*f_63_2)/(U[2] - 3*U[3]) + (8*f_56_2)/(2*U[2] - 3*U[3]) + (8*f_57_2)/(2*U[2] - 3*U[3]) + (5*f_58_2)/(U[2] - 2*U[3]) + (5*f_59_2)/(U[2] - 2*U[3]) + (4*f_52_2)/(2*U[2] - U[3]) + (4*f_53_2)/(2*U[2] - U[3])))/2. + (4*(f_40_2 + f_41_2)*(f_48_2/U[2] + f_49_2/U[2] + (18*f_58_2)/(3*U[2] - 5*U[3]) + (18*f_59_2)/(3*U[2] - 5*U[3]) + (15*f_56_2)/(3*U[2] - 4*U[3]) + (15*f_57_2)/(3*U[2] - 4*U[3]) + (7*f_60_2)/(U[2] - 2*U[3]) + (7*f_61_2)/(U[2] - 2*U[3]) + (9*f_52_2)/(3*U[2] - 2*U[3]) + (9*f_53_2)/(3*U[2] - 2*U[3]) + (6*f_50_2)/(3*U[2] - U[3]) + (6*f_51_2)/(3*U[2] - U[3])))/3. - (4*(f_38_2 + f_39_2)*(f_50_2/U[2] + f_51_2/U[2] + (18*f_60_2)/(3*U[2] - 5*U[3]) + (18*f_61_2)/(3*U[2] - 5*U[3]) + (15*f_58_2)/(3*U[2] - 4*U[3]) + (15*f_59_2)/(3*U[2] - 4*U[3]) + (7*f_62_2)/(U[2] - 2*U[3]) + (7*f_63_2)/(U[2] - 2*U[3]) + (9*f_54_2)/(3*U[2] - 2*U[3]) + (9*f_55_2)/(3*U[2] - 2*U[3]) + (6*f_52_2)/(3*U[2] - U[3]) + (6*f_53_2)/(3*U[2] - U[3])))/3. + (7*(f_46_2 + f_47_2)*(f_48_2/U[2] + f_49_2/U[2] + (36*f_58_2)/(6*U[2] - 5*U[3]) + (36*f_59_2)/(6*U[2] - 5*U[3]) + (15*f_56_2)/(3*U[2] - 2*U[3]) + (15*f_57_2)/(3*U[2] - 2*U[3]) + (8*f_54_2)/(2*U[2] - U[3]) + (8*f_55_2)/(2*U[2] - U[3]) + (9*f_52_2)/(3*U[2] - U[3]) + (9*f_53_2)/(3*U[2] - U[3]) + (12*f_50_2)/(6*U[2] - U[3]) + (12*f_51_2)/(6*U[2] - U[3])))/6. - (7*(f_44_2 + f_45_2)*(f_50_2/U[2] + f_51_2/U[2] + (36*f_60_2)/(6*U[2] - 5*U[3]) + (36*f_61_2)/(6*U[2] - 5*U[3]) + (15*f_58_2)/(3*U[2] - 2*U[3]) + (15*f_59_2)/(3*U[2] - 2*U[3]) + (8*f_56_2)/(2*U[2] - U[3]) + (8*f_57_2)/(2*U[2] - U[3]) + (9*f_54_2)/(3*U[2] - U[3]) + (9*f_55_2)/(3*U[2] - U[3]) + (12*f_52_2)/(6*U[2] - U[3]) + (12*f_53_2)/(6*U[2] - U[3])))/6. - ((f_34_2 + f_35_2)*(120*f_50_2 + 120*f_51_2 + 90*f_52_2 + 90*f_53_2 + 80*f_54_2 + 80*f_55_2 + 75*f_56_2 + 75*f_57_2 + 72*f_58_2 + 72*f_59_2 + 70*f_60_2 + 70*f_61_2))/(60.*U[3]) + ((f_32_2 + f_33_2)*(120*f_52_2 + 120*f_53_2 + 90*f_54_2 + 90*f_55_2 + 80*f_56_2 + 80*f_57_2 + 75*f_58_2 + 75*f_59_2 + 72*f_60_2 + 72*f_61_2 + 70*f_62_2 + 70*f_63_2))/(60.*U[3])))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + (J_2_2*(((120*f_36_2 + 120*f_37_2 + 90*f_38_2 + 90*f_39_2 + 80*f_40_2 + 80*f_41_2 + 75*f_42_2 + 75*f_43_2 + 72*f_44_2 + 72*f_45_2 + 70*f_46_2 + 70*f_47_2)*(f_48_2 + f_49_2))/(60.*U[2]) - ((120*f_34_2 + 120*f_35_2 + 90*f_36_2 + 90*f_37_2 + 80*f_38_2 + 80*f_39_2 + 75*f_40_2 + 75*f_41_2 + 72*f_42_2 + 72*f_43_2 + 70*f_44_2 + 70*f_45_2)*(f_50_2 + f_51_2))/(60.*U[2]) + 2*(f_52_2 + f_53_2)*(f_32_2/U[3] + f_33_2/U[3] + (7*f_44_2)/(-6*U[2] + U[3]) + (7*f_45_2)/(-6*U[2] + U[3]) + (6*f_42_2)/(-5*U[2] + U[3]) + (6*f_43_2)/(-5*U[2] + U[3]) + (5*f_40_2)/(-4*U[2] + U[3]) + (5*f_41_2)/(-4*U[2] + U[3]) + (4*f_38_2)/(-3*U[2] + U[3]) + (4*f_39_2)/(-3*U[2] + U[3]) + (3*f_36_2)/(-2*U[2] + U[3]) + (3*f_37_2)/(-2*U[2] + U[3])) - 2*(f_50_2 + f_51_2)*(f_34_2/U[3] + f_35_2/U[3] + (7*f_46_2)/(-6*U[2] + U[3]) + (7*f_47_2)/(-6*U[2] + U[3]) + (6*f_44_2)/(-5*U[2] + U[3]) + (6*f_45_2)/(-5*U[2] + U[3]) + (5*f_42_2)/(-4*U[2] + U[3]) + (5*f_43_2)/(-4*U[2] + U[3]) + (4*f_40_2)/(-3*U[2] + U[3]) + (4*f_41_2)/(-3*U[2] + U[3]) + (3*f_38_2)/(-2*U[2] + U[3]) + (3*f_39_2)/(-2*U[2] + U[3])) + (3*(f_54_2 + f_55_2)*((-4*f_34_2)/(U[2] - 2*U[3]) - (4*f_35_2)/(U[2] - 2*U[3]) - (5*f_40_2)/(2*U[2] - U[3]) - (5*f_41_2)/(2*U[2] - U[3]) - (7*f_44_2)/(3*U[2] - U[3]) - (7*f_45_2)/(3*U[2] - U[3]) + f_32_2/U[3] + f_33_2/U[3] + (12*f_42_2)/(-5*U[2] + 2*U[3]) + (12*f_43_2)/(-5*U[2] + 2*U[3]) + (8*f_38_2)/(-3*U[2] + 2*U[3]) + (8*f_39_2)/(-3*U[2] + 2*U[3])))/2. - (3*(f_52_2 + f_53_2)*((-4*f_36_2)/(U[2] - 2*U[3]) - (4*f_37_2)/(U[2] - 2*U[3]) - (5*f_42_2)/(2*U[2] - U[3]) - (5*f_43_2)/(2*U[2] - U[3]) - (7*f_46_2)/(3*U[2] - U[3]) - (7*f_47_2)/(3*U[2] - U[3]) + f_34_2/U[3] + f_35_2/U[3] + (12*f_44_2)/(-5*U[2] + 2*U[3]) + (12*f_45_2)/(-5*U[2] + 2*U[3]) + (8*f_40_2)/(-3*U[2] + 2*U[3]) + (8*f_41_2)/(-3*U[2] + 2*U[3])))/2. + (4*(f_56_2 + f_57_2)*((-6*f_34_2)/(U[2] - 3*U[3]) - (6*f_35_2)/(U[2] - 3*U[3]) - (7*f_44_2)/(2*U[2] - U[3]) - (7*f_45_2)/(2*U[2] - U[3]) + f_32_2/U[3] + f_33_2/U[3] + (18*f_42_2)/(-5*U[2] + 3*U[3]) + (18*f_43_2)/(-5*U[2] + 3*U[3]) + (15*f_40_2)/(-4*U[2] + 3*U[3]) + (15*f_41_2)/(-4*U[2] + 3*U[3]) + (9*f_36_2)/(-2*U[2] + 3*U[3]) + (9*f_37_2)/(-2*U[2] + 3*U[3])))/3. - (4*(f_54_2 + f_55_2)*((-6*f_36_2)/(U[2] - 3*U[3]) - (6*f_37_2)/(U[2] - 3*U[3]) - (7*f_46_2)/(2*U[2] - U[3]) - (7*f_47_2)/(2*U[2] - U[3]) + f_34_2/U[3] + f_35_2/U[3] + (18*f_44_2)/(-5*U[2] + 3*U[3]) + (18*f_45_2)/(-5*U[2] + 3*U[3]) + (15*f_42_2)/(-4*U[2] + 3*U[3]) + (15*f_43_2)/(-4*U[2] + 3*U[3]) + (9*f_38_2)/(-2*U[2] + 3*U[3]) + (9*f_39_2)/(-2*U[2] + 3*U[3])))/3. + (5*(f_58_2 + f_59_2)*((-8*f_34_2)/(U[2] - 4*U[3]) - (8*f_35_2)/(U[2] - 4*U[3]) - (6*f_36_2)/(U[2] - 2*U[3]) - (6*f_37_2)/(U[2] - 2*U[3]) + f_32_2/U[3] + f_33_2/U[3] + (28*f_44_2)/(-6*U[2] + 4*U[3]) + (28*f_45_2)/(-6*U[2] + 4*U[3]) + (24*f_42_2)/(-5*U[2] + 4*U[3]) + (24*f_43_2)/(-5*U[2] + 4*U[3]) + (16*f_38_2)/(-3*U[2] + 4*U[3]) + (16*f_39_2)/(-3*U[2] + 4*U[3])))/4. - (5*(f_56_2 + f_57_2)*((-8*f_36_2)/(U[2] - 4*U[3]) - (8*f_37_2)/(U[2] - 4*U[3]) - (6*f_38_2)/(U[2] - 2*U[3]) - (6*f_39_2)/(U[2] - 2*U[3]) + f_34_2/U[3] + f_35_2/U[3] + (28*f_46_2)/(-6*U[2] + 4*U[3]) + (28*f_47_2)/(-6*U[2] + 4*U[3]) + (24*f_44_2)/(-5*U[2] + 4*U[3]) + (24*f_45_2)/(-5*U[2] + 4*U[3]) + (16*f_40_2)/(-3*U[2] + 4*U[3]) + (16*f_41_2)/(-3*U[2] + 4*U[3])))/4. + (6*(f_60_2 + f_61_2)*((-10*f_34_2)/(U[2] - 5*U[3]) - (10*f_35_2)/(U[2] - 5*U[3]) + f_32_2/U[3] + f_33_2/U[3] + (35*f_44_2)/(-6*U[2] + 5*U[3]) + (35*f_45_2)/(-6*U[2] + 5*U[3]) + (25*f_40_2)/(-4*U[2] + 5*U[3]) + (25*f_41_2)/(-4*U[2] + 5*U[3]) + (20*f_38_2)/(-3*U[2] + 5*U[3]) + (20*f_39_2)/(-3*U[2] + 5*U[3]) + (15*f_36_2)/(-2*U[2] + 5*U[3]) + (15*f_37_2)/(-2*U[2] + 5*U[3])))/5. - (6*(f_58_2 + f_59_2)*((-10*f_36_2)/(U[2] - 5*U[3]) - (10*f_37_2)/(U[2] - 5*U[3]) + f_34_2/U[3] + f_35_2/U[3] + (35*f_46_2)/(-6*U[2] + 5*U[3]) + (35*f_47_2)/(-6*U[2] + 5*U[3]) + (25*f_42_2)/(-4*U[2] + 5*U[3]) + (25*f_43_2)/(-4*U[2] + 5*U[3]) + (20*f_40_2)/(-3*U[2] + 5*U[3]) + (20*f_41_2)/(-3*U[2] + 5*U[3]) + (15*f_38_2)/(-2*U[2] + 5*U[3]) + (15*f_39_2)/(-2*U[2] + 5*U[3])))/5. + (7*(f_62_2 + f_63_2)*((-12*f_34_2)/(U[2] - 6*U[3]) - (12*f_35_2)/(U[2] - 6*U[3]) - (9*f_36_2)/(U[2] - 3*U[3]) - (9*f_37_2)/(U[2] - 3*U[3]) - (8*f_38_2)/(U[2] - 2*U[3]) - (8*f_39_2)/(U[2] - 2*U[3]) + f_32_2/U[3] + f_33_2/U[3] + (36*f_42_2)/(-5*U[2] + 6*U[3]) + (36*f_43_2)/(-5*U[2] + 6*U[3]) + (30*f_40_2)/(-4*U[2] + 6*U[3]) + (30*f_41_2)/(-4*U[2] + 6*U[3])))/6. - (7*(f_60_2 + f_61_2)*((-12*f_36_2)/(U[2] - 6*U[3]) - (12*f_37_2)/(U[2] - 6*U[3]) - (9*f_38_2)/(U[2] - 3*U[3]) - (9*f_39_2)/(U[2] - 3*U[3]) - (8*f_40_2)/(U[2] - 2*U[3]) - (8*f_41_2)/(U[2] - 2*U[3]) + f_34_2/U[3] + f_35_2/U[3] + (36*f_44_2)/(-5*U[2] + 6*U[3]) + (36*f_45_2)/(-5*U[2] + 6*U[3]) + (30*f_42_2)/(-4*U[2] + 6*U[3]) + (30*f_43_2)/(-4*U[2] + 6*U[3])))/6.))/((f_32_2 + f_33_2 + f_34_2 + f_35_2 + f_36_2 + f_37_2 + f_38_2 + f_39_2 + f_40_2 + f_41_2 + f_42_2 + f_43_2 + f_44_2 + f_45_2 + f_46_2 + f_47_2)*(f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)) + (J_4_2*((5*(f_10_2 + f_11_2)*(f_64_2/U[0] + f_65_2/U[0] + 2*((12*f_74_2)/(4*U[0] - 5*U[4]) + (12*f_75_2)/(4*U[0] - 5*U[4]) + (7*f_76_2)/(2*U[0] - 3*U[4]) + (7*f_77_2)/(2*U[0] - 3*U[4]) + (8*f_70_2)/(4*U[0] - 3*U[4]) + (8*f_71_2)/(4*U[0] - 3*U[4]) + (3*f_68_2)/(2*U[0] - U[4]) + (3*f_69_2)/(2*U[0] - U[4]) + (4*f_66_2)/(4*U[0] - U[4]) + (4*f_67_2)/(4*U[0] - U[4]))))/4. - (5*(f_8_2 + f_9_2)*(f_66_2/U[0] + f_67_2/U[0] + 2*((12*f_76_2)/(4*U[0] - 5*U[4]) + (12*f_77_2)/(4*U[0] - 5*U[4]) + (7*f_78_2)/(2*U[0] - 3*U[4]) + (7*f_79_2)/(2*U[0] - 3*U[4]) + (8*f_72_2)/(4*U[0] - 3*U[4]) + (8*f_73_2)/(4*U[0] - 3*U[4]) + (3*f_70_2)/(2*U[0] - U[4]) + (3*f_71_2)/(2*U[0] - U[4]) + (4*f_68_2)/(4*U[0] - U[4]) + (4*f_69_2)/(4*U[0] - U[4]))))/4. + (6*(f_12_2 + f_13_2)*(f_64_2/U[0] + f_65_2/U[0] + 5*((7*f_76_2)/(5*U[0] - 6*U[4]) + (7*f_77_2)/(5*U[0] - 6*U[4]) + (5*f_72_2)/(5*U[0] - 4*U[4]) + (5*f_73_2)/(5*U[0] - 4*U[4]) + (4*f_70_2)/(5*U[0] - 3*U[4]) + (4*f_71_2)/(5*U[0] - 3*U[4]) + (3*f_68_2)/(5*U[0] - 2*U[4]) + (3*f_69_2)/(5*U[0] - 2*U[4]) + (2*f_66_2)/(5*U[0] - U[4]) + (2*f_67_2)/(5*U[0] - U[4]))))/5. - (6*(f_10_2 + f_11_2)*(f_66_2/U[0] + f_67_2/U[0] + 5*((7*f_78_2)/(5*U[0] - 6*U[4]) + (7*f_79_2)/(5*U[0] - 6*U[4]) + (5*f_74_2)/(5*U[0] - 4*U[4]) + (5*f_75_2)/(5*U[0] - 4*U[4]) + (4*f_72_2)/(5*U[0] - 3*U[4]) + (4*f_73_2)/(5*U[0] - 3*U[4]) + (3*f_70_2)/(5*U[0] - 2*U[4]) + (3*f_71_2)/(5*U[0] - 2*U[4]) + (2*f_68_2)/(5*U[0] - U[4]) + (2*f_69_2)/(5*U[0] - U[4]))))/5. + 2*(f_4_2 + f_5_2)*(f_64_2/U[0] + f_65_2/U[0] + (7*f_76_2)/(U[0] - 6*U[4]) + (7*f_77_2)/(U[0] - 6*U[4]) + (6*f_74_2)/(U[0] - 5*U[4]) + (6*f_75_2)/(U[0] - 5*U[4]) + (5*f_72_2)/(U[0] - 4*U[4]) + (5*f_73_2)/(U[0] - 4*U[4]) + (4*f_70_2)/(U[0] - 3*U[4]) + (4*f_71_2)/(U[0] - 3*U[4]) + (3*f_68_2)/(U[0] - 2*U[4]) + (3*f_69_2)/(U[0] - 2*U[4])) - 2*(f_2_2 + f_3_2)*(f_66_2/U[0] + f_67_2/U[0] + (7*f_78_2)/(U[0] - 6*U[4]) + (7*f_79_2)/(U[0] - 6*U[4]) + (6*f_76_2)/(U[0] - 5*U[4]) + (6*f_77_2)/(U[0] - 5*U[4]) + (5*f_74_2)/(U[0] - 4*U[4]) + (5*f_75_2)/(U[0] - 4*U[4]) + (4*f_72_2)/(U[0] - 3*U[4]) + (4*f_73_2)/(U[0] - 3*U[4]) + (3*f_70_2)/(U[0] - 2*U[4]) + (3*f_71_2)/(U[0] - 2*U[4])) + (3*(f_6_2 + f_7_2)*(f_64_2/U[0] + f_65_2/U[0] + (12*f_74_2)/(2*U[0] - 5*U[4]) + (12*f_75_2)/(2*U[0] - 5*U[4]) + (7*f_76_2)/(U[0] - 3*U[4]) + (7*f_77_2)/(U[0] - 3*U[4]) + (8*f_70_2)/(2*U[0] - 3*U[4]) + (8*f_71_2)/(2*U[0] - 3*U[4]) + (5*f_72_2)/(U[0] - 2*U[4]) + (5*f_73_2)/(U[0] - 2*U[4]) + (4*f_66_2)/(2*U[0] - U[4]) + (4*f_67_2)/(2*U[0] - U[4])))/2. - (3*(f_4_2 + f_5_2)*(f_66_2/U[0] + f_67_2/U[0] + (12*f_76_2)/(2*U[0] - 5*U[4]) + (12*f_77_2)/(2*U[0] - 5*U[4]) + (7*f_78_2)/(U[0] - 3*U[4]) + (7*f_79_2)/(U[0] - 3*U[4]) + (8*f_72_2)/(2*U[0] - 3*U[4]) + (8*f_73_2)/(2*U[0] - 3*U[4]) + (5*f_74_2)/(U[0] - 2*U[4]) + (5*f_75_2)/(U[0] - 2*U[4]) + (4*f_68_2)/(2*U[0] - U[4]) + (4*f_69_2)/(2*U[0] - U[4])))/2. + (4*(f_8_2 + f_9_2)*(f_64_2/U[0] + f_65_2/U[0] + (18*f_74_2)/(3*U[0] - 5*U[4]) + (18*f_75_2)/(3*U[0] - 5*U[4]) + (15*f_72_2)/(3*U[0] - 4*U[4]) + (15*f_73_2)/(3*U[0] - 4*U[4]) + (7*f_76_2)/(U[0] - 2*U[4]) + (7*f_77_2)/(U[0] - 2*U[4]) + (9*f_68_2)/(3*U[0] - 2*U[4]) + (9*f_69_2)/(3*U[0] - 2*U[4]) + (6*f_66_2)/(3*U[0] - U[4]) + (6*f_67_2)/(3*U[0] - U[4])))/3. - (4*(f_6_2 + f_7_2)*(f_66_2/U[0] + f_67_2/U[0] + (18*f_76_2)/(3*U[0] - 5*U[4]) + (18*f_77_2)/(3*U[0] - 5*U[4]) + (15*f_74_2)/(3*U[0] - 4*U[4]) + (15*f_75_2)/(3*U[0] - 4*U[4]) + (7*f_78_2)/(U[0] - 2*U[4]) + (7*f_79_2)/(U[0] - 2*U[4]) + (9*f_70_2)/(3*U[0] - 2*U[4]) + (9*f_71_2)/(3*U[0] - 2*U[4]) + (6*f_68_2)/(3*U[0] - U[4]) + (6*f_69_2)/(3*U[0] - U[4])))/3. + (7*(f_14_2 + f_15_2)*(f_64_2/U[0] + f_65_2/U[0] + (36*f_74_2)/(6*U[0] - 5*U[4]) + (36*f_75_2)/(6*U[0] - 5*U[4]) + (15*f_72_2)/(3*U[0] - 2*U[4]) + (15*f_73_2)/(3*U[0] - 2*U[4]) + (8*f_70_2)/(2*U[0] - U[4]) + (8*f_71_2)/(2*U[0] - U[4]) + (9*f_68_2)/(3*U[0] - U[4]) + (9*f_69_2)/(3*U[0] - U[4]) + (12*f_66_2)/(6*U[0] - U[4]) + (12*f_67_2)/(6*U[0] - U[4])))/6. - (7*(f_12_2 + f_13_2)*(f_66_2/U[0] + f_67_2/U[0] + (36*f_76_2)/(6*U[0] - 5*U[4]) + (36*f_77_2)/(6*U[0] - 5*U[4]) + (15*f_74_2)/(3*U[0] - 2*U[4]) + (15*f_75_2)/(3*U[0] - 2*U[4]) + (8*f_72_2)/(2*U[0] - U[4]) + (8*f_73_2)/(2*U[0] - U[4]) + (9*f_70_2)/(3*U[0] - U[4]) + (9*f_71_2)/(3*U[0] - U[4]) + (12*f_68_2)/(6*U[0] - U[4]) + (12*f_69_2)/(6*U[0] - U[4])))/6. - ((f_2_2 + f_3_2)*(120*f_66_2 + 120*f_67_2 + 90*f_68_2 + 90*f_69_2 + 80*f_70_2 + 80*f_71_2 + 75*f_72_2 + 75*f_73_2 + 72*f_74_2 + 72*f_75_2 + 70*f_76_2 + 70*f_77_2))/(60.*U[4]) + ((f_0_2 + f_1_2)*(120*f_68_2 + 120*f_69_2 + 90*f_70_2 + 90*f_71_2 + 80*f_72_2 + 80*f_73_2 + 75*f_74_2 + 75*f_75_2 + 72*f_76_2 + 72*f_77_2 + 70*f_78_2 + 70*f_79_2))/(60.*U[4])))/((f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J_3_2*((5*(f_58_2 + f_59_2)*(f_64_2/U[3] + f_65_2/U[3] + 2*((12*f_74_2)/(4*U[3] - 5*U[4]) + (12*f_75_2)/(4*U[3] - 5*U[4]) + (7*f_76_2)/(2*U[3] - 3*U[4]) + (7*f_77_2)/(2*U[3] - 3*U[4]) + (8*f_70_2)/(4*U[3] - 3*U[4]) + (8*f_71_2)/(4*U[3] - 3*U[4]) + (3*f_68_2)/(2*U[3] - U[4]) + (3*f_69_2)/(2*U[3] - U[4]) + (4*f_66_2)/(4*U[3] - U[4]) + (4*f_67_2)/(4*U[3] - U[4]))))/4. - (5*(f_56_2 + f_57_2)*(f_66_2/U[3] + f_67_2/U[3] + 2*((12*f_76_2)/(4*U[3] - 5*U[4]) + (12*f_77_2)/(4*U[3] - 5*U[4]) + (7*f_78_2)/(2*U[3] - 3*U[4]) + (7*f_79_2)/(2*U[3] - 3*U[4]) + (8*f_72_2)/(4*U[3] - 3*U[4]) + (8*f_73_2)/(4*U[3] - 3*U[4]) + (3*f_70_2)/(2*U[3] - U[4]) + (3*f_71_2)/(2*U[3] - U[4]) + (4*f_68_2)/(4*U[3] - U[4]) + (4*f_69_2)/(4*U[3] - U[4]))))/4. + (6*(f_60_2 + f_61_2)*(f_64_2/U[3] + f_65_2/U[3] + 5*((7*f_76_2)/(5*U[3] - 6*U[4]) + (7*f_77_2)/(5*U[3] - 6*U[4]) + (5*f_72_2)/(5*U[3] - 4*U[4]) + (5*f_73_2)/(5*U[3] - 4*U[4]) + (4*f_70_2)/(5*U[3] - 3*U[4]) + (4*f_71_2)/(5*U[3] - 3*U[4]) + (3*f_68_2)/(5*U[3] - 2*U[4]) + (3*f_69_2)/(5*U[3] - 2*U[4]) + (2*f_66_2)/(5*U[3] - U[4]) + (2*f_67_2)/(5*U[3] - U[4]))))/5. - (6*(f_58_2 + f_59_2)*(f_66_2/U[3] + f_67_2/U[3] + 5*((7*f_78_2)/(5*U[3] - 6*U[4]) + (7*f_79_2)/(5*U[3] - 6*U[4]) + (5*f_74_2)/(5*U[3] - 4*U[4]) + (5*f_75_2)/(5*U[3] - 4*U[4]) + (4*f_72_2)/(5*U[3] - 3*U[4]) + (4*f_73_2)/(5*U[3] - 3*U[4]) + (3*f_70_2)/(5*U[3] - 2*U[4]) + (3*f_71_2)/(5*U[3] - 2*U[4]) + (2*f_68_2)/(5*U[3] - U[4]) + (2*f_69_2)/(5*U[3] - U[4]))))/5. + 2*(f_52_2 + f_53_2)*(f_64_2/U[3] + f_65_2/U[3] + (7*f_76_2)/(U[3] - 6*U[4]) + (7*f_77_2)/(U[3] - 6*U[4]) + (6*f_74_2)/(U[3] - 5*U[4]) + (6*f_75_2)/(U[3] - 5*U[4]) + (5*f_72_2)/(U[3] - 4*U[4]) + (5*f_73_2)/(U[3] - 4*U[4]) + (4*f_70_2)/(U[3] - 3*U[4]) + (4*f_71_2)/(U[3] - 3*U[4]) + (3*f_68_2)/(U[3] - 2*U[4]) + (3*f_69_2)/(U[3] - 2*U[4])) - 2*(f_50_2 + f_51_2)*(f_66_2/U[3] + f_67_2/U[3] + (7*f_78_2)/(U[3] - 6*U[4]) + (7*f_79_2)/(U[3] - 6*U[4]) + (6*f_76_2)/(U[3] - 5*U[4]) + (6*f_77_2)/(U[3] - 5*U[4]) + (5*f_74_2)/(U[3] - 4*U[4]) + (5*f_75_2)/(U[3] - 4*U[4]) + (4*f_72_2)/(U[3] - 3*U[4]) + (4*f_73_2)/(U[3] - 3*U[4]) + (3*f_70_2)/(U[3] - 2*U[4]) + (3*f_71_2)/(U[3] - 2*U[4])) + (3*(f_54_2 + f_55_2)*(f_64_2/U[3] + f_65_2/U[3] + (12*f_74_2)/(2*U[3] - 5*U[4]) + (12*f_75_2)/(2*U[3] - 5*U[4]) + (7*f_76_2)/(U[3] - 3*U[4]) + (7*f_77_2)/(U[3] - 3*U[4]) + (8*f_70_2)/(2*U[3] - 3*U[4]) + (8*f_71_2)/(2*U[3] - 3*U[4]) + (5*f_72_2)/(U[3] - 2*U[4]) + (5*f_73_2)/(U[3] - 2*U[4]) + (4*f_66_2)/(2*U[3] - U[4]) + (4*f_67_2)/(2*U[3] - U[4])))/2. - (3*(f_52_2 + f_53_2)*(f_66_2/U[3] + f_67_2/U[3] + (12*f_76_2)/(2*U[3] - 5*U[4]) + (12*f_77_2)/(2*U[3] - 5*U[4]) + (7*f_78_2)/(U[3] - 3*U[4]) + (7*f_79_2)/(U[3] - 3*U[4]) + (8*f_72_2)/(2*U[3] - 3*U[4]) + (8*f_73_2)/(2*U[3] - 3*U[4]) + (5*f_74_2)/(U[3] - 2*U[4]) + (5*f_75_2)/(U[3] - 2*U[4]) + (4*f_68_2)/(2*U[3] - U[4]) + (4*f_69_2)/(2*U[3] - U[4])))/2. + (4*(f_56_2 + f_57_2)*(f_64_2/U[3] + f_65_2/U[3] + (18*f_74_2)/(3*U[3] - 5*U[4]) + (18*f_75_2)/(3*U[3] - 5*U[4]) + (15*f_72_2)/(3*U[3] - 4*U[4]) + (15*f_73_2)/(3*U[3] - 4*U[4]) + (7*f_76_2)/(U[3] - 2*U[4]) + (7*f_77_2)/(U[3] - 2*U[4]) + (9*f_68_2)/(3*U[3] - 2*U[4]) + (9*f_69_2)/(3*U[3] - 2*U[4]) + (6*f_66_2)/(3*U[3] - U[4]) + (6*f_67_2)/(3*U[3] - U[4])))/3. - (4*(f_54_2 + f_55_2)*(f_66_2/U[3] + f_67_2/U[3] + (18*f_76_2)/(3*U[3] - 5*U[4]) + (18*f_77_2)/(3*U[3] - 5*U[4]) + (15*f_74_2)/(3*U[3] - 4*U[4]) + (15*f_75_2)/(3*U[3] - 4*U[4]) + (7*f_78_2)/(U[3] - 2*U[4]) + (7*f_79_2)/(U[3] - 2*U[4]) + (9*f_70_2)/(3*U[3] - 2*U[4]) + (9*f_71_2)/(3*U[3] - 2*U[4]) + (6*f_68_2)/(3*U[3] - U[4]) + (6*f_69_2)/(3*U[3] - U[4])))/3. + (7*(f_62_2 + f_63_2)*(f_64_2/U[3] + f_65_2/U[3] + (36*f_74_2)/(6*U[3] - 5*U[4]) + (36*f_75_2)/(6*U[3] - 5*U[4]) + (15*f_72_2)/(3*U[3] - 2*U[4]) + (15*f_73_2)/(3*U[3] - 2*U[4]) + (8*f_70_2)/(2*U[3] - U[4]) + (8*f_71_2)/(2*U[3] - U[4]) + (9*f_68_2)/(3*U[3] - U[4]) + (9*f_69_2)/(3*U[3] - U[4]) + (12*f_66_2)/(6*U[3] - U[4]) + (12*f_67_2)/(6*U[3] - U[4])))/6. - (7*(f_60_2 + f_61_2)*(f_66_2/U[3] + f_67_2/U[3] + (36*f_76_2)/(6*U[3] - 5*U[4]) + (36*f_77_2)/(6*U[3] - 5*U[4]) + (15*f_74_2)/(3*U[3] - 2*U[4]) + (15*f_75_2)/(3*U[3] - 2*U[4]) + (8*f_72_2)/(2*U[3] - U[4]) + (8*f_73_2)/(2*U[3] - U[4]) + (9*f_70_2)/(3*U[3] - U[4]) + (9*f_71_2)/(3*U[3] - U[4]) + (12*f_68_2)/(6*U[3] - U[4]) + (12*f_69_2)/(6*U[3] - U[4])))/6. - ((f_50_2 + f_51_2)*(120*f_66_2 + 120*f_67_2 + 90*f_68_2 + 90*f_69_2 + 80*f_70_2 + 80*f_71_2 + 75*f_72_2 + 75*f_73_2 + 72*f_74_2 + 72*f_75_2 + 70*f_76_2 + 70*f_77_2))/(60.*U[4]) + ((f_48_2 + f_49_2)*(120*f_68_2 + 120*f_69_2 + 90*f_70_2 + 90*f_71_2 + 80*f_72_2 + 80*f_73_2 + 75*f_74_2 + 75*f_75_2 + 72*f_76_2 + 72*f_77_2 + 70*f_78_2 + 70*f_79_2))/(60.*U[4])))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)) + (J_4_2*(-((f_66_2 + f_67_2)*(72*f_10_2 + 72*f_11_2 + 70*f_12_2 + 70*f_13_2 + 120*f_2_2 + 120*f_3_2 + 90*f_4_2 + 90*f_5_2 + 80*f_6_2 + 80*f_7_2 + 75*f_8_2 + 75*f_9_2))/(60.*U[0]) + ((f_64_2 + f_65_2)*(75*f_10_2 + 75*f_11_2 + 72*f_12_2 + 72*f_13_2 + 70*f_14_2 + 70*f_15_2 + 120*f_4_2 + 120*f_5_2 + 90*f_6_2 + 90*f_7_2 + 80*f_8_2 + 80*f_9_2))/(60.*U[0]) + 2*(f_68_2 + f_69_2)*(f_0_2/U[4] + f_1_2/U[4] + (7*f_12_2)/(-6*U[0] + U[4]) + (7*f_13_2)/(-6*U[0] + U[4]) + (6*f_10_2)/(-5*U[0] + U[4]) + (6*f_11_2)/(-5*U[0] + U[4]) + (5*f_8_2)/(-4*U[0] + U[4]) + (5*f_9_2)/(-4*U[0] + U[4]) + (4*f_6_2)/(-3*U[0] + U[4]) + (4*f_7_2)/(-3*U[0] + U[4]) + (3*f_4_2)/(-2*U[0] + U[4]) + (3*f_5_2)/(-2*U[0] + U[4])) - 2*(f_66_2 + f_67_2)*(f_2_2/U[4] + f_3_2/U[4] + (7*f_14_2)/(-6*U[0] + U[4]) + (7*f_15_2)/(-6*U[0] + U[4]) + (6*f_12_2)/(-5*U[0] + U[4]) + (6*f_13_2)/(-5*U[0] + U[4]) + (5*f_10_2)/(-4*U[0] + U[4]) + (5*f_11_2)/(-4*U[0] + U[4]) + (4*f_8_2)/(-3*U[0] + U[4]) + (4*f_9_2)/(-3*U[0] + U[4]) + (3*f_6_2)/(-2*U[0] + U[4]) + (3*f_7_2)/(-2*U[0] + U[4])) + (3*(f_70_2 + f_71_2)*((-4*f_2_2)/(U[0] - 2*U[4]) - (4*f_3_2)/(U[0] - 2*U[4]) - (5*f_8_2)/(2*U[0] - U[4]) - (5*f_9_2)/(2*U[0] - U[4]) - (7*f_12_2)/(3*U[0] - U[4]) - (7*f_13_2)/(3*U[0] - U[4]) + f_0_2/U[4] + f_1_2/U[4] + (12*f_10_2)/(-5*U[0] + 2*U[4]) + (12*f_11_2)/(-5*U[0] + 2*U[4]) + (8*f_6_2)/(-3*U[0] + 2*U[4]) + (8*f_7_2)/(-3*U[0] + 2*U[4])))/2. - (3*(f_68_2 + f_69_2)*((-4*f_4_2)/(U[0] - 2*U[4]) - (4*f_5_2)/(U[0] - 2*U[4]) - (5*f_10_2)/(2*U[0] - U[4]) - (5*f_11_2)/(2*U[0] - U[4]) - (7*f_14_2)/(3*U[0] - U[4]) - (7*f_15_2)/(3*U[0] - U[4]) + f_2_2/U[4] + f_3_2/U[4] + (12*f_12_2)/(-5*U[0] + 2*U[4]) + (12*f_13_2)/(-5*U[0] + 2*U[4]) + (8*f_8_2)/(-3*U[0] + 2*U[4]) + (8*f_9_2)/(-3*U[0] + 2*U[4])))/2. + (4*(f_72_2 + f_73_2)*((-6*f_2_2)/(U[0] - 3*U[4]) - (6*f_3_2)/(U[0] - 3*U[4]) - (7*f_12_2)/(2*U[0] - U[4]) - (7*f_13_2)/(2*U[0] - U[4]) + f_0_2/U[4] + f_1_2/U[4] + (18*f_10_2)/(-5*U[0] + 3*U[4]) + (18*f_11_2)/(-5*U[0] + 3*U[4]) + (15*f_8_2)/(-4*U[0] + 3*U[4]) + (15*f_9_2)/(-4*U[0] + 3*U[4]) + (9*f_4_2)/(-2*U[0] + 3*U[4]) + (9*f_5_2)/(-2*U[0] + 3*U[4])))/3. - (4*(f_70_2 + f_71_2)*((-6*f_4_2)/(U[0] - 3*U[4]) - (6*f_5_2)/(U[0] - 3*U[4]) - (7*f_14_2)/(2*U[0] - U[4]) - (7*f_15_2)/(2*U[0] - U[4]) + f_2_2/U[4] + f_3_2/U[4] + (18*f_12_2)/(-5*U[0] + 3*U[4]) + (18*f_13_2)/(-5*U[0] + 3*U[4]) + (15*f_10_2)/(-4*U[0] + 3*U[4]) + (15*f_11_2)/(-4*U[0] + 3*U[4]) + (9*f_6_2)/(-2*U[0] + 3*U[4]) + (9*f_7_2)/(-2*U[0] + 3*U[4])))/3. + (5*(f_74_2 + f_75_2)*((-8*f_2_2)/(U[0] - 4*U[4]) - (8*f_3_2)/(U[0] - 4*U[4]) - (6*f_4_2)/(U[0] - 2*U[4]) - (6*f_5_2)/(U[0] - 2*U[4]) + f_0_2/U[4] + f_1_2/U[4] + (28*f_12_2)/(-6*U[0] + 4*U[4]) + (28*f_13_2)/(-6*U[0] + 4*U[4]) + (24*f_10_2)/(-5*U[0] + 4*U[4]) + (24*f_11_2)/(-5*U[0] + 4*U[4]) + (16*f_6_2)/(-3*U[0] + 4*U[4]) + (16*f_7_2)/(-3*U[0] + 4*U[4])))/4. - (5*(f_72_2 + f_73_2)*((-8*f_4_2)/(U[0] - 4*U[4]) - (8*f_5_2)/(U[0] - 4*U[4]) - (6*f_6_2)/(U[0] - 2*U[4]) - (6*f_7_2)/(U[0] - 2*U[4]) + f_2_2/U[4] + f_3_2/U[4] + (28*f_14_2)/(-6*U[0] + 4*U[4]) + (28*f_15_2)/(-6*U[0] + 4*U[4]) + (24*f_12_2)/(-5*U[0] + 4*U[4]) + (24*f_13_2)/(-5*U[0] + 4*U[4]) + (16*f_8_2)/(-3*U[0] + 4*U[4]) + (16*f_9_2)/(-3*U[0] + 4*U[4])))/4. + (6*(f_76_2 + f_77_2)*((-10*f_2_2)/(U[0] - 5*U[4]) - (10*f_3_2)/(U[0] - 5*U[4]) + f_0_2/U[4] + f_1_2/U[4] + (35*f_12_2)/(-6*U[0] + 5*U[4]) + (35*f_13_2)/(-6*U[0] + 5*U[4]) + (25*f_8_2)/(-4*U[0] + 5*U[4]) + (25*f_9_2)/(-4*U[0] + 5*U[4]) + (20*f_6_2)/(-3*U[0] + 5*U[4]) + (20*f_7_2)/(-3*U[0] + 5*U[4]) + (15*f_4_2)/(-2*U[0] + 5*U[4]) + (15*f_5_2)/(-2*U[0] + 5*U[4])))/5. - (6*(f_74_2 + f_75_2)*((-10*f_4_2)/(U[0] - 5*U[4]) - (10*f_5_2)/(U[0] - 5*U[4]) + f_2_2/U[4] + f_3_2/U[4] + (35*f_14_2)/(-6*U[0] + 5*U[4]) + (35*f_15_2)/(-6*U[0] + 5*U[4]) + (25*f_10_2)/(-4*U[0] + 5*U[4]) + (25*f_11_2)/(-4*U[0] + 5*U[4]) + (20*f_8_2)/(-3*U[0] + 5*U[4]) + (20*f_9_2)/(-3*U[0] + 5*U[4]) + (15*f_6_2)/(-2*U[0] + 5*U[4]) + (15*f_7_2)/(-2*U[0] + 5*U[4])))/5. - (7*(f_76_2 + f_77_2)*((-12*f_4_2)/(U[0] - 6*U[4]) - (12*f_5_2)/(U[0] - 6*U[4]) - (9*f_6_2)/(U[0] - 3*U[4]) - (9*f_7_2)/(U[0] - 3*U[4]) - (8*f_8_2)/(U[0] - 2*U[4]) - (8*f_9_2)/(U[0] - 2*U[4]) + f_2_2/U[4] + f_3_2/U[4] + (36*f_12_2)/(-5*U[0] + 6*U[4]) + (36*f_13_2)/(-5*U[0] + 6*U[4]) + (30*f_10_2)/(-4*U[0] + 6*U[4]) + (30*f_11_2)/(-4*U[0] + 6*U[4])))/6. + (7*(f_78_2 + f_79_2)*((-12*f_2_2)/(U[0] - 6*U[4]) - (12*f_3_2)/(U[0] - 6*U[4]) - (9*f_4_2)/(U[0] - 3*U[4]) - (9*f_5_2)/(U[0] - 3*U[4]) - (8*f_6_2)/(U[0] - 2*U[4]) - (8*f_7_2)/(U[0] - 2*U[4]) + f_0_2/U[4] + f_1_2/U[4] + (36*f_10_2)/(-5*U[0] + 6*U[4]) + (36*f_11_2)/(-5*U[0] + 6*U[4]) + (30*f_8_2)/(-4*U[0] + 6*U[4]) + (30*f_9_2)/(-4*U[0] + 6*U[4])))/6.))/((f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)*(f_0_2 + f_10_2 + f_11_2 + f_12_2 + f_13_2 + f_14_2 + f_15_2 + f_1_2 + f_2_2 + f_3_2 + f_4_2 + f_5_2 + f_6_2 + f_7_2 + f_8_2 + f_9_2)) + (J_3_2*(((120*f_52_2 + 120*f_53_2 + 90*f_54_2 + 90*f_55_2 + 80*f_56_2 + 80*f_57_2 + 75*f_58_2 + 75*f_59_2 + 72*f_60_2 + 72*f_61_2 + 70*f_62_2 + 70*f_63_2)*(f_64_2 + f_65_2))/(60.*U[3]) - ((120*f_50_2 + 120*f_51_2 + 90*f_52_2 + 90*f_53_2 + 80*f_54_2 + 80*f_55_2 + 75*f_56_2 + 75*f_57_2 + 72*f_58_2 + 72*f_59_2 + 70*f_60_2 + 70*f_61_2)*(f_66_2 + f_67_2))/(60.*U[3]) + 2*(f_68_2 + f_69_2)*(f_48_2/U[4] + f_49_2/U[4] + (7*f_60_2)/(-6*U[3] + U[4]) + (7*f_61_2)/(-6*U[3] + U[4]) + (6*f_58_2)/(-5*U[3] + U[4]) + (6*f_59_2)/(-5*U[3] + U[4]) + (5*f_56_2)/(-4*U[3] + U[4]) + (5*f_57_2)/(-4*U[3] + U[4]) + (4*f_54_2)/(-3*U[3] + U[4]) + (4*f_55_2)/(-3*U[3] + U[4]) + (3*f_52_2)/(-2*U[3] + U[4]) + (3*f_53_2)/(-2*U[3] + U[4])) - 2*(f_66_2 + f_67_2)*(f_50_2/U[4] + f_51_2/U[4] + (7*f_62_2)/(-6*U[3] + U[4]) + (7*f_63_2)/(-6*U[3] + U[4]) + (6*f_60_2)/(-5*U[3] + U[4]) + (6*f_61_2)/(-5*U[3] + U[4]) + (5*f_58_2)/(-4*U[3] + U[4]) + (5*f_59_2)/(-4*U[3] + U[4]) + (4*f_56_2)/(-3*U[3] + U[4]) + (4*f_57_2)/(-3*U[3] + U[4]) + (3*f_54_2)/(-2*U[3] + U[4]) + (3*f_55_2)/(-2*U[3] + U[4])) + (3*(f_70_2 + f_71_2)*((-4*f_50_2)/(U[3] - 2*U[4]) - (4*f_51_2)/(U[3] - 2*U[4]) - (5*f_56_2)/(2*U[3] - U[4]) - (5*f_57_2)/(2*U[3] - U[4]) - (7*f_60_2)/(3*U[3] - U[4]) - (7*f_61_2)/(3*U[3] - U[4]) + f_48_2/U[4] + f_49_2/U[4] + (12*f_58_2)/(-5*U[3] + 2*U[4]) + (12*f_59_2)/(-5*U[3] + 2*U[4]) + (8*f_54_2)/(-3*U[3] + 2*U[4]) + (8*f_55_2)/(-3*U[3] + 2*U[4])))/2. - (3*(f_68_2 + f_69_2)*((-4*f_52_2)/(U[3] - 2*U[4]) - (4*f_53_2)/(U[3] - 2*U[4]) - (5*f_58_2)/(2*U[3] - U[4]) - (5*f_59_2)/(2*U[3] - U[4]) - (7*f_62_2)/(3*U[3] - U[4]) - (7*f_63_2)/(3*U[3] - U[4]) + f_50_2/U[4] + f_51_2/U[4] + (12*f_60_2)/(-5*U[3] + 2*U[4]) + (12*f_61_2)/(-5*U[3] + 2*U[4]) + (8*f_56_2)/(-3*U[3] + 2*U[4]) + (8*f_57_2)/(-3*U[3] + 2*U[4])))/2. + (4*(f_72_2 + f_73_2)*((-6*f_50_2)/(U[3] - 3*U[4]) - (6*f_51_2)/(U[3] - 3*U[4]) - (7*f_60_2)/(2*U[3] - U[4]) - (7*f_61_2)/(2*U[3] - U[4]) + f_48_2/U[4] + f_49_2/U[4] + (18*f_58_2)/(-5*U[3] + 3*U[4]) + (18*f_59_2)/(-5*U[3] + 3*U[4]) + (15*f_56_2)/(-4*U[3] + 3*U[4]) + (15*f_57_2)/(-4*U[3] + 3*U[4]) + (9*f_52_2)/(-2*U[3] + 3*U[4]) + (9*f_53_2)/(-2*U[3] + 3*U[4])))/3. - (4*(f_70_2 + f_71_2)*((-6*f_52_2)/(U[3] - 3*U[4]) - (6*f_53_2)/(U[3] - 3*U[4]) - (7*f_62_2)/(2*U[3] - U[4]) - (7*f_63_2)/(2*U[3] - U[4]) + f_50_2/U[4] + f_51_2/U[4] + (18*f_60_2)/(-5*U[3] + 3*U[4]) + (18*f_61_2)/(-5*U[3] + 3*U[4]) + (15*f_58_2)/(-4*U[3] + 3*U[4]) + (15*f_59_2)/(-4*U[3] + 3*U[4]) + (9*f_54_2)/(-2*U[3] + 3*U[4]) + (9*f_55_2)/(-2*U[3] + 3*U[4])))/3. + (5*(f_74_2 + f_75_2)*((-8*f_50_2)/(U[3] - 4*U[4]) - (8*f_51_2)/(U[3] - 4*U[4]) - (6*f_52_2)/(U[3] - 2*U[4]) - (6*f_53_2)/(U[3] - 2*U[4]) + f_48_2/U[4] + f_49_2/U[4] + (28*f_60_2)/(-6*U[3] + 4*U[4]) + (28*f_61_2)/(-6*U[3] + 4*U[4]) + (24*f_58_2)/(-5*U[3] + 4*U[4]) + (24*f_59_2)/(-5*U[3] + 4*U[4]) + (16*f_54_2)/(-3*U[3] + 4*U[4]) + (16*f_55_2)/(-3*U[3] + 4*U[4])))/4. - (5*(f_72_2 + f_73_2)*((-8*f_52_2)/(U[3] - 4*U[4]) - (8*f_53_2)/(U[3] - 4*U[4]) - (6*f_54_2)/(U[3] - 2*U[4]) - (6*f_55_2)/(U[3] - 2*U[4]) + f_50_2/U[4] + f_51_2/U[4] + (28*f_62_2)/(-6*U[3] + 4*U[4]) + (28*f_63_2)/(-6*U[3] + 4*U[4]) + (24*f_60_2)/(-5*U[3] + 4*U[4]) + (24*f_61_2)/(-5*U[3] + 4*U[4]) + (16*f_56_2)/(-3*U[3] + 4*U[4]) + (16*f_57_2)/(-3*U[3] + 4*U[4])))/4. + (6*(f_76_2 + f_77_2)*((-10*f_50_2)/(U[3] - 5*U[4]) - (10*f_51_2)/(U[3] - 5*U[4]) + f_48_2/U[4] + f_49_2/U[4] + (35*f_60_2)/(-6*U[3] + 5*U[4]) + (35*f_61_2)/(-6*U[3] + 5*U[4]) + (25*f_56_2)/(-4*U[3] + 5*U[4]) + (25*f_57_2)/(-4*U[3] + 5*U[4]) + (20*f_54_2)/(-3*U[3] + 5*U[4]) + (20*f_55_2)/(-3*U[3] + 5*U[4]) + (15*f_52_2)/(-2*U[3] + 5*U[4]) + (15*f_53_2)/(-2*U[3] + 5*U[4])))/5. - (6*(f_74_2 + f_75_2)*((-10*f_52_2)/(U[3] - 5*U[4]) - (10*f_53_2)/(U[3] - 5*U[4]) + f_50_2/U[4] + f_51_2/U[4] + (35*f_62_2)/(-6*U[3] + 5*U[4]) + (35*f_63_2)/(-6*U[3] + 5*U[4]) + (25*f_58_2)/(-4*U[3] + 5*U[4]) + (25*f_59_2)/(-4*U[3] + 5*U[4]) + (20*f_56_2)/(-3*U[3] + 5*U[4]) + (20*f_57_2)/(-3*U[3] + 5*U[4]) + (15*f_54_2)/(-2*U[3] + 5*U[4]) + (15*f_55_2)/(-2*U[3] + 5*U[4])))/5. + (7*(f_78_2 + f_79_2)*((-12*f_50_2)/(U[3] - 6*U[4]) - (12*f_51_2)/(U[3] - 6*U[4]) - (9*f_52_2)/(U[3] - 3*U[4]) - (9*f_53_2)/(U[3] - 3*U[4]) - (8*f_54_2)/(U[3] - 2*U[4]) - (8*f_55_2)/(U[3] - 2*U[4]) + f_48_2/U[4] + f_49_2/U[4] + (36*f_58_2)/(-5*U[3] + 6*U[4]) + (36*f_59_2)/(-5*U[3] + 6*U[4]) + (30*f_56_2)/(-4*U[3] + 6*U[4]) + (30*f_57_2)/(-4*U[3] + 6*U[4])))/6. - (7*(f_76_2 + f_77_2)*((-12*f_52_2)/(U[3] - 6*U[4]) - (12*f_53_2)/(U[3] - 6*U[4]) - (9*f_54_2)/(U[3] - 3*U[4]) - (9*f_55_2)/(U[3] - 3*U[4]) - (8*f_56_2)/(U[3] - 2*U[4]) - (8*f_57_2)/(U[3] - 2*U[4]) + f_50_2/U[4] + f_51_2/U[4] + (36*f_60_2)/(-5*U[3] + 6*U[4]) + (36*f_61_2)/(-5*U[3] + 6*U[4]) + (30*f_58_2)/(-4*U[3] + 6*U[4]) + (30*f_59_2)/(-4*U[3] + 6*U[4])))/6.))/((f_48_2 + f_49_2 + f_50_2 + f_51_2 + f_52_2 + f_53_2 + f_54_2 + f_55_2 + f_56_2 + f_57_2 + f_58_2 + f_59_2 + f_60_2 + f_61_2 + f_62_2 + f_63_2)*(f_64_2 + f_65_2 + f_66_2 + f_67_2 + f_68_2 + f_69_2 + f_70_2 + f_71_2 + f_72_2 + f_73_2 + f_74_2 + f_75_2 + f_76_2 + f_77_2 + f_78_2 + f_79_2)))/2.;
b8aec90c8c6f7c508faf26c986486ae54298f6cf
a49c38da6d7dc83af75100af653c4137bf808b7b
/KickIT@Eclipse/RowControl/MotorCommunicatorImpl.cpp
4d6ae0102ea5fc20981a859fa46f1b4abcd33113
[]
no_license
vkoschmann/SWE_2017_KickIT
02b2d9731302bbb86303a29c0eb48562d0234ec5
0a475d00a814c4338db6ee65742c368b23142764
refs/heads/master
2021-01-01T19:09:31.979816
2017-07-26T15:08:46
2017-07-26T15:08:46
98,528,395
0
0
null
2017-07-27T11:32:01
2017-07-27T11:32:01
null
UTF-8
C++
false
false
3,864
cpp
MotorCommunicatorImpl.cpp
#include "MotorCommunicatorImpl.hpp" #include <iostream> #include <stdio.h> #include <cstring> #include <unistd.h> //For write in sendPort using namespace std; MotorCommunicatorImpl::MotorCommunicatorImpl(Row r):socketId(0) { switch (r) { case KEEPER: port = "can0"; driverInit(); //homing(); break; default: cout << "not implemented" << endl; break; } } void MotorCommunicatorImpl::moveTo(float y) { } void MotorCommunicatorImpl::kick() { } int MotorCommunicatorImpl::openPort() { struct ifreq ifr; struct sockaddr_can addr; socketId = socket(PF_CAN, SOCK_RAW, CAN_RAW); if (socket < 0) { cout << "opening port failed" << endl; return -1; } addr.can_family = AF_CAN; strcpy(ifr.ifr_name, port); //C++ functions! if (ioctl(socketId, SIOCGIFINDEX, &ifr) < 0) { cout << "opening port failed" << endl; return -1; } addr.can_ifindex = ifr.ifr_ifindex; fcntl(socketId, F_SETFL, O_NONBLOCK); if (bind(socketId, (struct sockaddr *) &addr, sizeof(addr)) < 0) { cout << "opening port failed" << endl; return -1; } return 0; } int MotorCommunicatorImpl::closePort() { close(socketId); return 0; } int MotorCommunicatorImpl::sendPort(struct can_frame *frame) { int retval = write(socketId, frame, sizeof(struct can_frame)); if (retval != sizeof(struct can_frame)) return -1; return 0; } void MotorCommunicatorImpl::readPort() { /*struct can_frame frame_rd; int recvbytes = 0; readCanPort = 1; while (readCanPort) { struct timeval timeout = { 1, 0 }; fd_set readSet; FD_ZERO(&readSet); FD_SET(soc, &readSet); if (select((soc + 1), &readSet, NULL, NULL, &timeout) >= 0) { if (!readCanPort) break; if (FD_ISSET(soc, &readSet)) { recvbytes = read(soc, &frame_rd, sizeof(struct can_frame)); if (recvbytes) { printf("dlc = %d, data = %s\n", frame_rd.can_dlc, frame_rd.data); readCanPort = 0; } } } }*/ cout << "not supported" << endl; } void MotorCommunicatorImpl::frameInit(int ID, int DLC, int Data_0, int Data_1, int Data_2, int Data_3, int Data_4, int Data_5, int Data_6, int Data_7) { openPort(); struct can_frame frame; frame.can_id = ID; // COB ID 200 für RxPDO1 + Can ID 1 frame.can_dlc = DLC; // Datenanzahl frame.data[0] = Data_0; // Daten frame.data[1] = Data_1; //Daten frame.data[2] = Data_2; //.. frame.data[3] = Data_3; frame.data[4] = Data_4; frame.data[5] = Data_5; frame.data[6] = Data_6; frame.data[7] = Data_7; sendPort(&frame); closePort(); } void MotorCommunicatorImpl::homing() { cout << "Homen... " << endl; frameInit(0x201, 0x8, 0x3F, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); //Homen Command an RXPD0 1 frameInit(0x80, 0x0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); //Sync sleep(25); cout << "Gehomed" << endl; } void MotorCommunicatorImpl::driverInit() { cout << "Reseten" << endl; frameInit(0x601, 0x8, 0x23, 0x00, 0x20, 0xB, 0x00, 0x00, 0x00, 0x00); // Reset Command sleep(20); cout << "Operational" << endl; frameInit(0x00, 0x2, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); sleep(2); cout << "ready to switch on" << endl; frameInit(0x201, 0x8, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); frameInit(0x80, 0x0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); sleep(2); cout << "switch on" << endl; frameInit(0x201, 0x8, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); frameInit(0x80, 0x0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); // Sync sleep(2); cout << "homen: " << endl; frameInit(0x201, 0x8, 0x3F, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); // Homen Command an RXPD0 1 frameInit(0x80, 0x0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); // Sync sleep(25); cout << "gehomed" << endl; frameInit(0x201, 0x8, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); frameInit(0x80, 0x0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); // Sync }
ae08c062b1829d282af5fc8d0e0358b23cb5e2d4
ef618c41d3012e5e9070a839d7dd749592cc0a35
/src/AssignStat.cpp
72fae10c56003d02cf043b0c57fe388437ef1a9e
[]
no_license
azru0512/Ada-CS-Compiler
bdce9de97e29b2d27f8aadcb5932b46c00c7faa3
7711ec44680d356535d713c4bf40af2f86394a20
refs/heads/master
2016-09-06T03:07:26.599218
2010-11-15T02:16:02
2010-11-15T02:16:02
850,541
2
1
null
null
null
null
UTF-8
C++
false
false
365
cpp
AssignStat.cpp
#include "AST/AssignStat.hpp" #include "AST/VarNameExpr.hpp" #include "SymbolTable.hpp" #include "llvm/Value.h" llvm::Value *AssignStat::CodeGen(llvm::IRBuilder<> &builder) { llvm::Value *expr = expr_->CodeGen(builder); llvm::Value *var = boost::dynamic_pointer_cast<VarNameExpr>(var_)->attr()->value(); builder.CreateStore(expr, var); return expr; }
8db07b4438ffa87564fa99bd045567110dea5daa
e661ce0e9a97399f366cb32989f4edb461447f20
/src/ce_sim/fileioc.cpp
80c757438488b4a0ce6c5e60565b9cda06f60fc4
[ "BSD-3-Clause" ]
permissive
tswilliamson/oiram
2a5bd6cd25216eea733079955bb3f9686d25b557
6e0382f118ee3eb7e937dfd0baca7471300c12e3
refs/heads/master
2022-12-03T07:19:39.592310
2020-08-26T02:52:16
2020-08-26T02:52:16
284,789,454
7
1
null
2020-08-03T19:31:23
2020-08-03T19:31:23
null
UTF-8
C++
false
false
10,395
cpp
fileioc.cpp
#include "platform.h" #include "debug.h" #include "ce_sim.h" #include "fileioc.h" #include "fxcg/file.h" // TI file format borrowed from https://github.com/calc84maniac/tiboyce/blob/master/tiboyce-romgen/romgen.c enum VAR_TYPE { TYPE_APPVAR = 0x15 }; enum VAR_FLAG { VAR_UNARCHIVED = 0x00, VAR_ARCHIVED = 0x80 }; #pragma pack(push, 1) struct tivar { uint16_t header_length; uint16_t data_length; uint8_t type; uint8_t name[8]; uint8_t version; uint8_t flag; uint16_t data_length_2; uint16_t var_length; }; struct tifile { uint8_t signature[11]; uint8_t comment[42]; uint16_t file_length; struct tivar data; tifile() { memset(this, '\0', sizeof(tifile)); strcpy((char*) signature, "**TI83F*\x1A\x0A"); file_length = 0; data.type = TI_APPVAR_TYPE; } void DoEndianSwap() { EndianSwap_Little(file_length); EndianSwap_Little(data.header_length); EndianSwap_Little(data.data_length); EndianSwap_Little(data.data_length_2); EndianSwap_Little(data.var_length); } }; #pragma pack(pop) struct CEFileSlot { tifile file; char path[96]; uint8_t* data; bool managed; int dataSize; uint32 pos; int32 writeHandle; CEFileSlot() : data(nullptr), writeHandle(-1) {} void Close() { if (writeHandle >= 0) { Bfile_CloseFile_OS(writeHandle); writeHandle = -1; } } }; const int NumSlots = 36; static bool bAnyOpen = false; static CEFileSlot AllFiles[NumSlots]; static int FindSlot(const char* forPath) { for (int i = 0; i < NumSlots; i++) { if (strcmp(AllFiles[i].path, forPath) == 0 || AllFiles[i].data == nullptr) { return i; } } return -1; } void ti_CloseAll() { if (bAnyOpen) { for (int i = 0; i < NumSlots; i++) { AllFiles[i].Close(); } } bAnyOpen = false; } static void GetVarName(uint16_t* destName,const char* name, bool bHasExtension = false) { char fullName[64]; strcpy(fullName, "\\\\fls0\\"); strcat(fullName, name); if (!bHasExtension) { strcat(fullName, ".8xv"); } Bfile_StrToName_ncpy(destName, fullName, 64); } static int OpenVar(const char* name, int mode, bool bHasExtension = false) { uint16_t shortName[64]; GetVarName(shortName, name, bHasExtension); return Bfile_OpenFile_OS(shortName, mode, 0); } static void* currentAllocation = nullptr; uint32_t currentAllocationSize = 0; void ti_FileSetAllocation(void* mem, uint32_t allocedSize) { currentAllocation = mem; currentAllocationSize = allocedSize; } /** * Opens a file * * An AppVar is used as default file storage * @param name Name of file to open * @param mode * "r" - Opens a file for reading. The file must exist. Keeps file in archive if in archive. <br> * "w" - Creates an empty file for writing. Overwrites file if already exists. <br> * "a" - Appends to a file. Writing operations, append data at the end of the file. The file is created if it does not exist. <br> * "r+" - Opens a file to update both reading and writing. The file must exist. Moves file from archive to RAM if in archive. <br> * "w+" - Creates an empty file for both reading and writing. Overwrites file if already exists. <br> * "a+" - Opens a file for reading and appending. Moves file from archive to RAM if in archive. Created if it does not exist. * @returns Slot variable * @note If there isn't enough memory to create the variable, or a slot isn't open, zero (0) is returned */ ti_var_t ti_Open(const char *name, const char *mode, int readSize) { void* preferredAllocation = currentAllocation; currentAllocation = nullptr; int slot = FindSlot(name); if (slot == -1) return 0; if (!strcmp(mode, "r")) { // data already read? if (AllFiles[slot].data) { if (AllFiles[slot].dataSize == readSize) return slot + 1; else { // free unless the allocation was set up by program if (AllFiles[slot].managed) { free(AllFiles[slot].data); } AllFiles[slot].data = nullptr; } } int handle = OpenVar(name, READ); if (handle >= 0) { if (Bfile_ReadFile_OS(handle, &AllFiles[slot].file, sizeof(tifile), -1) != sizeof(tifile)) { Bfile_CloseFile_OS(handle); return 0; } AllFiles[slot].file.DoEndianSwap(); const int var_length = AllFiles[slot].file.data.var_length; const int readAmt = readSize == -1 ? var_length : min(readSize, var_length); if (preferredAllocation) { DebugAssert(currentAllocationSize >= readAmt); AllFiles[slot].data = (uint8_t*)preferredAllocation; AllFiles[slot].managed = false; } else { AllFiles[slot].data = (uint8_t*)malloc(readAmt); AllFiles[slot].managed = true; } if (AllFiles[slot].data == nullptr) { Bfile_CloseFile_OS(handle); return 0; } AllFiles[slot].dataSize = readSize; if (Bfile_ReadFile_OS(handle, AllFiles[slot].data, readAmt, -1) != readAmt) { free(AllFiles[slot].data); AllFiles[slot].data = nullptr; Bfile_CloseFile_OS(handle); AllFiles[slot].Close(); return 0; } Bfile_CloseFile_OS(handle); strcpy(AllFiles[slot].path, name); AllFiles[slot].pos = 0; bAnyOpen = true; return slot + 1; } return 0; } if (!strcmp(mode, "w")) { // Prizm files need to know their size DebugAssert(readSize > 0); // free any cached data, we'll use direct write calls for this one if (AllFiles[slot].data) { // free unless the allocation was set up by program if (AllFiles[slot].managed) { free(AllFiles[slot].data); } AllFiles[slot].data = nullptr; } // acct for TI file hader unsigned int dataSize = readSize; readSize += sizeof(tifile); int handle = OpenVar(name, WRITE); int fileSize = handle < 0 ? -1 : Bfile_GetFileSize_OS(handle); if (fileSize != readSize) { uint16_t fileName[64]; GetVarName(fileName, name); // create a new one if (handle >= 0) { Bfile_CloseFile_OS(handle); Bfile_DeleteEntry(fileName); } int result = Bfile_CreateEntry_OS(fileName, CREATEMODE_FILE, (size_t*) &readSize); if (result != 0) { return 0; } handle = OpenVar(name, WRITE); if (handle < 0) { return 0; } } strcpy(AllFiles[slot].path, name); tifile newFile; newFile.file_length = readSize; newFile.data.var_length = dataSize; newFile.data.data_length = dataSize + 2; newFile.data.data_length_2 = dataSize + 2; newFile.data.header_length = (uint16_t)(offsetof(tivar, data_length_2) - offsetof(tivar, data_length)); memset(newFile.comment, 0, sizeof(newFile.comment)); memcpy((char*) newFile.data.name, name, 8); newFile.DoEndianSwap(); memcpy(&AllFiles[slot].file, &newFile, sizeof(tifile)); Bfile_WriteFile_OS(handle, &AllFiles[slot].file, sizeof(tifile)); AllFiles[slot].writeHandle = handle; bAnyOpen = true; return slot + 1; } DebugAssert(0); // unsupported return 0; } void *ti_GetDataPtr(const ti_var_t slot) { CEFileSlot& fileSlot = AllFiles[slot - 1]; return &fileSlot.data[fileSlot.pos]; } int ti_GetC(const ti_var_t slot) { CEFileSlot& fileSlot = AllFiles[slot - 1]; if (fileSlot.pos < fileSlot.file.data.var_length) { return fileSlot.data[fileSlot.pos++]; } else { return EOF; } } int ti_PutC(const char c, const ti_var_t slot) { CEFileSlot& fileSlot = AllFiles[slot - 1]; int retOffset = Bfile_WriteFile_OS(fileSlot.writeHandle, &c, 1); if (retOffset < 0) return EOF; return retOffset; } size_t ti_Write(const void *data, size_t size, size_t count, const ti_var_t slot) { CEFileSlot& fileSlot = AllFiles[slot - 1]; int retOffset = Bfile_WriteFile_OS(fileSlot.writeHandle, data, size * count); if (retOffset < 0) return EOF; return retOffset; } int ti_SetArchiveStatus(bool archived, const ti_var_t slot) { // does nothing! return 0; } int ti_Seek(int offset, unsigned int origin, const ti_var_t slot) { CEFileSlot& fileSlot = AllFiles[slot - 1]; int newPos = offset; if (origin == SEEK_CUR) newPos += fileSlot.pos; if (origin == SEEK_END) newPos += fileSlot.file.data.var_length; if (newPos >= 0 && newPos <= fileSlot.file.data.var_length) { fileSlot.pos = newPos; return 0; } return EOF; } int ti_Rewind(const ti_var_t slot) { CEFileSlot& fileSlot = AllFiles[slot - 1]; fileSlot.pos = 0; return 0; } struct foundFile { char path[256]; }; typedef struct { unsigned short id, type; unsigned long fsize, dsize; unsigned int property; unsigned long address; } file_type_t; static void FindFiles(const char* path, foundFile* toArray, int& numFound, int maxAllowed) { unsigned short filter[0x100], found[0x100]; int ret, handle; file_type_t info; // See Bfile_FindFirst for the definition of this struct Bfile_StrToName_ncpy(filter, path, 0xFF); // Overkill ret = Bfile_FindFirst((const char*)filter, &handle, (char*)found, &info); while (ret == 0 && numFound < maxAllowed) { Bfile_NameToStr_ncpy(toArray[numFound++].path, found, 0xFF); ret = Bfile_FindNext(handle, (char*)found, (char*)&info); }; Bfile_FindClose(handle); } char *ti_Detect(void **curr_search_posistion, const char *detection_string) { // todo : detection string static foundFile files[32]; static int numFound = -1; // only search once if (numFound == -1) { numFound = 0; FindFiles("\\\\fls0\\*.8xv", files, numFound, 64); for (int i = 0; i < numFound; i++) { *strrchr(files[i].path, '.') = 0; } } int* curFile = (int*) curr_search_posistion; while (numFound > *curFile) { foundFile& slotFile = files[*curFile]; bool bValid = true; if (detection_string) { int detectLength = strlen(detection_string); DebugAssert(detectLength < 32); int slot = FindSlot(slotFile.path); if (slot == -1 || AllFiles[slot].data == nullptr) { int handle = OpenVar(slotFile.path, READ, false); char readFile[32]; DebugAssert(handle != -1); if (Bfile_ReadFile_OS(handle, readFile, detectLength, sizeof(tifile)) != detectLength || memcmp(readFile, detection_string, detectLength)) { bValid = false; } Bfile_CloseFile_OS(handle); } else { if (memcmp(AllFiles[slot].data, detection_string, detectLength)) { bValid = false; } } } if (bValid) { char* ret = slotFile.path; curFile[0]++; return ret; } else { curFile[0]++; } } return nullptr; } uint8_t ti_RclVar(const uint8_t var_type, const char *var_name, void **data_struct) { // todo (translate Alpha_GetData?) return 1; }
9cf5ce80ecc7adbe5f9d385700e664c0f7ae2f64
0bf0a8605549340f9a21db2194f566db160914fa
/autoCells/main.cpp
7f2e2291023136bd141fe80109a79abc3c431060
[]
no_license
ramenkup/sorting
8cad90ced6a0cb986c5a4ca6c0d912edecd75317
ecb33f6235cb68a4946650ee2dc3669221949cb9
refs/heads/master
2021-01-10T18:57:51.554025
2015-04-06T00:55:10
2015-04-06T00:55:10
33,460,484
0
0
null
null
null
null
UTF-8
C++
false
false
2,565
cpp
main.cpp
// // main.cpp // Bubblesort, InsertionSort, SelectionSort, and Palindrome checker. // // Created by Spencer Klinge on 4/5/15. // Copyright (c) 2015 Spencer Klinge. All rights reserved. // #include <iostream> #include <cstdlib> using namespace std; void bubbleSort(){ int array[200], a, b, c, swap; printf("Enter number of elements\n"); scanf("%d" , &a); printf("Enter %d integers\n", a); for(b = 0; b < a; b++) scanf("%d", &array[b]); for (b= 0; b < (a - 1); b++) { for(c=0; c<a-b-1; c++) { if(array[c] > array[c+1]) { swap= array[c]; array[c]= array[c+1]; array[c+1]= swap; } } } printf("Sorted list:\n"); for(b=0; b<a; b++) printf("%d\n", array[b]); } void insertionSort(){ int a, array[1000], b, c, temp; printf("Enter number of elements\n"); scanf("%d", &a); printf("Enter %d integers\n", a); for(b=0; b <a; b++){ scanf("%d", &array[b]); } for (b=1; b<=a-1;b++){ c=b; while( c > 0 && array[c] < array[c-1]) { temp= array[c]; array[c]= array[c-1]; array[c-1]=temp; c--; } } printf("Sorted list:\n"); for(b=0; b <=a-1; b++){ printf("%d\n", array[b]); } } void selectionSort(){ int array[1000], a, b, c, pos, swap; printf("Enter number of elements\n"); scanf("%d", &a); printf("Enter %d integers\n",a); for( b =0 ; b<a; b++) scanf("%d", &array[b]); for(b=0; b<(a-1) ; b++){ pos= b; for(c=b+1; c < a; c++){ if( array[pos] > array[c] ) pos=c; } if(pos !=b){ swap= array[b]; array[b]= array[pos]; array[pos]= swap; } } printf("Sorted list:\n"); for( b=0; b<a; b++) printf("%d\n", array[b]); } void Palindrome() { int m, rev = 0, temp; printf("Enter a number to check if it is a palindrome\n"); scanf("%d",&m); temp=m; while( temp != 0) { rev= rev *10; rev= rev + temp%10; temp = temp/10; } if ( m == rev ) printf("%d is a palindrome number.\n", m); else printf("%d is not a palindrome number.\n", m); } int main(){ bubbleSort(); insertionSort(); selectionSort(); Palindrome(); }
8c21c6c90f7baf0776f8f836317acf0a4ab12656
f9a3ea0b2e6b2b17793647eacb5ea50afbf92606
/arduino/demo/rudder.ino
6fd66471a05892e40fbe15c7d79747a90b88ff6c
[]
no_license
graygr/senior-design-moana
545308eafcd0fceb3a5574cbce7f9e3912065118
372a289cbe6f93cef6722944522a4db3bcbae9a9
refs/heads/master
2023-06-13T04:16:55.180914
2021-06-30T00:14:41
2021-06-30T00:14:41
313,147,724
1
0
null
null
null
null
UTF-8
C++
false
false
1,508
ino
rudder.ino
#include <Servo.h> #include <Wire.h> Servo rudder; void setup() { // put your setup code here, to run once: // Treat ESC like a servo // Assign PIN 6 to servo, with range between 1000ms and 2000ms rudder.attach(6, 1000, 2000); // Open I2C on port 5 Wire.begin(5); // Listen to I2C call to this port, call receiveEvent() on receive Wire.onReceive(receiveEvent); Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: delay(100); } void receiveEvent(int howMany) { // Store received serial data into character array char cmd[7]; int i = 0; while(0 < Wire.available()) { cmd[i] = Wire.read(); Serial.print(cmd[i]); i++; } Serial.println(" "); // Translate characters to integers by subtracting '0' character for(int q = 0; q < 7; ++q) cmd[q] = cmd[q] - '0'; // TODO: transmit in numbers, not characters. More efficient data transmission for final project char servo_pos[3]; for(int j = 0; j < 3; ++j) servo_pos[j] = cmd[j]; char duration[4]; for(int k = 0; k < 4; ++k) duration[k] = cmd[k+3]; // Translate characters to values int pos = servo_pos[2] + 10 * servo_pos[1] + 100 * servo_pos[0]; int dur = 10 * duration[3] + 100 * duration[2] + 1000 * duration[1] + 10000 * duration[0]; Serial.print("Position is "); Serial.println(pos); Serial.print("Duration is "); Serial.println(dur); // Write position rudder.write(pos); // Wait until next command delay(dur); }
97ac15a0e42dcf8b0ef340bcbc3e6f708457d13a
df112e1ee87c7d723e5c9d2b8f0eb6b65caf705f
/source/peclet.h
e993ac72433a3caea217e2ed38655f9caf6cf226
[ "MIT" ]
permissive
agzimmerman/peclet
5ed5576987df1cb17b99fd14ac00ead86658fb9f
da75aafa0da2be53b2bff25920d35dbbcc5f2d4b
refs/heads/master
2022-02-28T09:39:26.622011
2019-09-20T12:22:25
2019-09-20T12:22:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
34,904
h
peclet.h
#ifndef peclet_h #define peclet_h #include <deal.II/base/utilities.h> #include <deal.II/base/quadrature_lib.h> #include <deal.II/base/function.h> #include <deal.II/base/logstream.h> #include <deal.II/lac/vector.h> #include <deal.II/lac/full_matrix.h> #include <deal.II/lac/dynamic_sparsity_pattern.h> #include <deal.II/lac/sparse_matrix.h> #include <deal.II/lac/solver_cg.h> #include <deal.II/lac/solver_bicgstab.h> #include <deal.II/lac/precondition.h> #include <deal.II/lac/constraint_matrix.h> #include <deal.II/grid/tria.h> #include <deal.II/grid/grid_generator.h> #include <deal.II/grid/grid_refinement.h> #include <deal.II/grid/tria_accessor.h> #include <deal.II/grid/tria_iterator.h> #include <deal.II/dofs/dof_handler.h> #include <deal.II/dofs/dof_accessor.h> #include <deal.II/dofs/dof_tools.h> #include <deal.II/fe/fe_q.h> #include <deal.II/fe/fe_values.h> #include <deal.II/numerics/vector_tools.h> #include <deal.II/numerics/matrix_tools.h> #include <deal.II/numerics/solution_transfer.h> #include <deal.II/numerics/error_estimator.h> #include <deal.II/base/table_handler.h> #include <iostream> #include <functional> #include <assert.h> #include <deal.II/grid/manifold_lib.h> #include <deal.II/grid/tria_boundary_lib.h> #include <deal.II/base/parsed_function.h> #include "extrapolated_field.h" #include "my_grid_generator.h" #include "fe_field_tools.h" #include "output.h" #include "my_matrix_creator.h" #include "my_vector_tools.h" #include "peclet_parameters.h" /*! A namespace for everything specific to Peclet. This mostly just includes the Peclet class, but also some related data. @ingroup peclet */ namespace Peclet { using namespace dealii; const double EPSILON = 1.e-14; struct SolverStatus { unsigned int last_step; }; /*! This class solves the unsteady scalar convection-diffusion initial boundary value problem. The strong form of the initial boundary value problem (IBVP) is \f[ u_t(\bf{x},t) + \bf{v}(x)\cdot\nabla u(x,t) - \nabla \cdot (\alpha(\bf{x})\nabla u(\bf{x},t)) = s(\bf{x},t) \forall \bf{x}, t \in \bf{\Omega} \times (t_0,t_f) \\ u(\bf{x},0) = u_0(\bf{x}) \quad \forall \bf{x} \in \bf{\Omega} \\ u(\bf{x},t) = g(\bf{x},t) \quad \forall \bf{x},t \in \bf{\Gamma}_D \times (t_0,t_f) \\ \alpha(\bf{x})(\hat{\bf{n}}\cdot\nabla)u(\bf{x},t) = h(\bf{x},t) \quad \forall \bf{x},t \in \bf{\Gamma}_N \times (t_0,t_f) \f] Spatial derivatives are discretized with the standard Galerkin finite element method, and the temporal derivative is discretized with the $\theta$-family of semi-implicit finite difference methods. Linear system assembly and time stepping are based on deal.II Tutorial 26 by Wolfgang Bangerth, Texas A&M University, 2013 Some of the more notable extensions (beyond step-26) include: - Builds convection-diffusion matrix instead of Laplace matrix - Supports time-dependent non-zero Dirichlet and Neumann boundary condition - Re-designed parmameter handling - Generalized boundary condition handling via the parameter input file - Writes FEFieldFunction to disk, and can read it from disk to initialize a restart - Extended the FEFieldFunction class for extrapolation - Added verification via Method of Manufactured Solutions (MMS) with error table based on approach from Tutorial 7 - Added test suite using ctest and the standard deal.II approach - Added a parameteric sphere-cylinder grid - Added a boundary grid refinement routine - Added a output option for 1D solutions in tabular format A simulation can be run for example with the following main program: @code #include "peclet.h" int main(int argc, char* argv[]) { Peclet::Peclet<2> peclet; peclet.run(); return 0; } @endcode The previous example uses default parameters and writes used_parameters.prm. A user can edit this file and save it as an input parameter file. The main program peclet/source/main.cc accepts an input parameter file path from the command line. Some methods of this class are decomposed into header files named peclet_*.h. All prototypes are implemented in header files to facilitate templating. @ingroup peclet */ template<int dim> class Peclet { public: Peclet(); /*! Structures all input parameters so that ParameterHandler can be discarded. This is public so that the parameters can be edited directly before calling Peclet:run(). */ Parameters::StructuredParameters params; /*! Run the simulation. This is the main method of the class. */ void run(const std::string parameter_file = ""); private: // Data members /*! The finite element triangulation, often just called tria in deal.II codes*/ Triangulation<dim> triangulation; /*! The Q1 finite element */ FE_Q<dim> fe; /*! The degrees of freedom handler This relates triangulation and fe to the system matrix. */ DoFHandler<dim> dof_handler; /*! The constraints matrix This serves two purposes: 1. Enforce Dirichlet boundary conditions. 2. Apply hanging node constraints originating from local grid refinement. */ ConstraintMatrix constraints; /*! The sparsity pattern This maps values to the sparse system matrix. */ SparsityPattern sparsity_pattern; /*! The mass matrix, $M$ This is the well known mass matrix arising from discretizing time via finite differences. */ SparseMatrix<double> mass_matrix; /*! The convection-diffusion matrix, (C + K) This is the convection diffusion matrix, which is the sum of the convection matrix, C, and the well known stiffness (a.k.a. Laplace) matrix, K. Rather than assembling C and K separately and then summing them, this class assembles the convection-diffusion matrix element-wise with a single kernel, which is only a slight modfication of the Laplace matrix assembly routine. */ SparseMatrix<double> convection_diffusion_matrix; /*! The system matrix This is the composite matrix for the entire linear system. */ SparseMatrix<double> system_matrix; /*! The solution vector */ Vector<double> solution; /*! The solution vector from the previous time step */ Vector<double> old_solution; /*! The composite right-hand side of the entire linear system */ Vector<double> system_rhs; /*! The current time for the time-dependent simulation */ double time; /*! The time step size for the time-dependent simulation Note that this is constant for any call to Peclet::run(). */ double time_step_size; /*! A counter to track the current time step index */ unsigned int time_step_counter; /*! Geometric information required for exact spherical geometry */ Point<dim> spherical_manifold_center; /*! These ID's label manifolds used for exact geometry */ std::vector<unsigned int> manifold_ids; /*! These strings label types of manifolds used for exact geometry */ std::vector<std::string> manifold_descriptors; // Function data members /*! A pointer to a deal.II Function for spatially variable convection velocity */ Function<dim>* velocity_function; /*! A pointer to a deal.II Function for spatially variable thermal diffusivity */ Function<dim>* diffusivity_function; /*! A pointer to a deal.II Function for a spatially and temporally variable source */ Function<dim>* source_function; /*! A vector of pointers to deal.II Functions for spatially and temporally variable boundary conditions */ std::vector<Function<dim>*> boundary_functions; /*! A pointer to a deal.II Function for spatially variable initial values */ Function<dim>* initial_values_function; /*! A pointer to a deal.II Function for spatially and temporally variable exact solution Of course this is only used for code verification purposes, when an exact solution is known. See the tests involving the method of manufactured solution (MMS). */ Function<dim>* exact_solution_function; /*! A deal.II TableHandler for tabulating convergence/verification data */ TableHandler verification_table; /*! The path where to write the table containing convergence/verification data Also see Peclet::verification_table. */ std::string verification_table_file_name = "verification_table.txt"; /*! A deal.II TableHandler for tabulating 1D solution data This has primarily been used as a convenient output for importing the 1D data into MATLAB. This is impractical for large problems, which should use the standard visualization formats for tools such as ParaView or VisIt. */ TableHandler solution_table_1D; /*! The path where to write the table containing 1D solution data Also see Peclet::solution_table_1D. */ std::string solution_table_1D_file_name = "1D_solution_table.txt"; // Methods /*! Solve a time step. This involves solving the linear system based on the homogeneous part of the solution, recovering the inhomogeneous solution via the constraints matrix, and applying hanging node constraints also via the constraints matrix. */ SolverStatus solve_time_step(bool quiet = false); /*! Set the coarse Triangulation, i.e. Peclet::triangulation. In deal.II language, coarse means the coarsest available representation of the geometry. In combination with geometric manifolds, this can indeed be quite coarse, even for curved geometries. For example, see the hemisphere_cylinder_shell in MyGridGenerator. Unfortunately geometric manifold data is not contained by the Triangulation. This separation allows for flexibility, but also requires extra bookkeeping by the programmer. Peclet<1>::create_coarse_grid(), Peclet<2>::create_coarse_grid(), and Peclet<3>::create_coarse_grid() had to be implemented separately because GridTools::rotate() has not be implemented for Triangulation<1>. */ void create_coarse_grid(); /*! Adaptively refine the triangulation based on an error measure. This is mostly a copy of the routine from deal.II's step-26, which uses the Kelly Error Estimator. */ void adaptive_refine(); /*! Re-initialize the linear system data and assemble the important matrices. This involves a few very important steps: - initializing hanging node constraints, the sparsity pattern, all matrices - assemble the mass and convection-diffusion matrices - reinitialize solution vectors The separation between this method and some of the work done in Peclet::run() may not be very well organized. There may be a better approach. That being said, little has been changed here relative to the step-26 tutorial. */ void setup_system(bool quiet = false); /*! Write the solution to files for visualization. Only the VTK format is supported by this class; but deal.II makes it easy to use many other standard formats. Additionally for 1D problems, a simple table can be written for easy import into MATLAB. */ void write_solution(); /*! Append convergence/verification data to the table in memory. This calculates both L2 and L1 norms based on a provided exact solution. */ void append_verification_table(); /*! Write convergence/verification data to disk. */ void write_verification_table(); /*! Append 1D solution data to the table in memory. */ void append_1D_solution_to_table(); /*! Write 1D solution data to disk. */ void write_1D_solution_table(std::string file_name); }; template<int dim> Peclet<dim>::Peclet() : fe(1), dof_handler(this->triangulation) {} #include "peclet_grid.h" template<int dim> void Peclet<dim>::setup_system(bool quiet) { dof_handler.distribute_dofs(fe); if (!quiet) { std::cout << std::endl << "===========================================" << std::endl << "Number of active cells: " << triangulation.n_active_cells() << std::endl << "Number of degrees of freedom: " << dof_handler.n_dofs() << std::endl << std::endl; } constraints.clear(); DoFTools::make_hanging_node_constraints( dof_handler, constraints); constraints.close(); DynamicSparsityPattern dsp(dof_handler.n_dofs()); DoFTools::make_sparsity_pattern( this->dof_handler, dsp, this->constraints, /*keep_constrained_dofs = */ true); this->sparsity_pattern.copy_from(dsp); this->mass_matrix.reinit(this->sparsity_pattern); this->convection_diffusion_matrix.reinit(this->sparsity_pattern); this->system_matrix.reinit(this->sparsity_pattern); MatrixCreator::create_mass_matrix( this->dof_handler, QGauss<dim>(fe.degree+1), this->mass_matrix); MyMatrixCreator::create_convection_diffusion_matrix<dim>( this->dof_handler, QGauss<dim>(fe.degree+1), this->convection_diffusion_matrix, this->diffusivity_function, this->velocity_function); this->solution.reinit(dof_handler.n_dofs()); this->old_solution.reinit(dof_handler.n_dofs()); this->system_rhs.reinit(dof_handler.n_dofs()); } template<int dim> SolverStatus Peclet<dim>::solve_time_step(bool quiet) { double tolerance = this->params.solver.tolerance; if (this->params.solver.normalize_tolerance) { tolerance *= this->system_rhs.l2_norm(); } SolverControl solver_control( this->params.solver.max_iterations, tolerance); SolverCG<> solver_cg(solver_control); SolverBicgstab<> solver_bicgstab(solver_control); PreconditionSSOR<> preconditioner; preconditioner.initialize(this->system_matrix, 1.0); std::string solver_name; if (this->params.solver.method == "CG") { solver_name = "CG"; solver_cg.solve( this->system_matrix, this->solution, this->system_rhs, preconditioner); } else if (this->params.solver.method == "BiCGStab") { solver_name = "BiCGStab"; solver_bicgstab.solve( this->system_matrix, this->solution, this->system_rhs, preconditioner); } this->constraints.distribute(this->solution); if (!quiet) { std::cout << " " << solver_control.last_step() << " " << solver_name << " iterations." << std::endl; } SolverStatus status; status.last_step = solver_control.last_step(); return status; } #include "peclet_1D_solution_table.h" template<int dim> void Peclet<dim>::write_solution() { if (this->params.output.write_solution_vtk) { Output::write_solution_to_vtk( "solution-"+Utilities::int_to_string(this->time_step_counter)+".vtk", this->dof_handler, this->solution); } if (dim == 1) { this->append_1D_solution_to_table(); } } template<int dim> void Peclet<dim>::append_verification_table() { assert(this->params.verification.enabled); this->exact_solution_function->set_time(this->time); Vector<float> difference_per_cell(triangulation.n_active_cells()); VectorTools::integrate_difference( this->dof_handler, this->solution, *this->exact_solution_function, difference_per_cell, QGauss<dim>(3), VectorTools::L2_norm); double L2_norm_error = difference_per_cell.l2_norm(); VectorTools::integrate_difference( this->dof_handler, this->solution, *this->exact_solution_function, difference_per_cell, QGauss<dim>(3), VectorTools::L1_norm); double L1_norm_error = difference_per_cell.l1_norm(); this->verification_table.add_value("time_step_size", this->time_step_size); this->verification_table.add_value("time", this->time); this->verification_table.add_value("cells", this->triangulation.n_active_cells()); this->verification_table.add_value("dofs", this->dof_handler.n_dofs()); this->verification_table.add_value("L1_norm_error", L1_norm_error); this->verification_table.add_value("L2_norm_error", L2_norm_error); } template<int dim> void Peclet<dim>::write_verification_table() { const int precision = 14; this->verification_table.set_precision("time", precision); this->verification_table.set_scientific("time", true); this->verification_table.set_precision("time_step_size", precision); this->verification_table.set_scientific("time_step_size", true); this->verification_table.set_precision("cells", precision); this->verification_table.set_scientific("cells", true); this->verification_table.set_precision("dofs", precision); this->verification_table.set_scientific("dofs", true); this->verification_table.set_precision("L2_norm_error", precision); this->verification_table.set_scientific("L2_norm_error", true); this->verification_table.set_precision("L1_norm_error", precision); this->verification_table.set_scientific("L1_norm_error", true); std::ofstream out_file(this->verification_table_file_name, std::fstream::app); assert(out_file.good()); this->verification_table.write_text(out_file); out_file.close(); } template<int dim> void Peclet<dim>::run(const std::string parameter_file) { /* Clean up the files in the working directory */ if (dim == 1) { std::remove(solution_table_1D_file_name.c_str()); // In 1D, the solution will be appended here at every time step. } if (this->params.verification.enabled) { std::remove(this->verification_table_file_name.c_str()); } /* Working with deal.II's Function class has been interesting, and I'm sure many of my choices are unorthodox. The most important lesson learned has been that a Function<dim>* can point to any class derived from Function<dim>. This is generally true for derived classes in C++. In this code, the general design pattern then is to instantitate all of the functions that might be needed, and then to point to the ones actually being used. The extra instantiations don't cost us anything. */ Functions::ParsedFunction<dim> parsed_velocity_function(dim), parsed_diffusivity_function, parsed_source_function, parsed_boundary_function, parsed_initial_values_function, parsed_exact_solution_function; this->params = Parameters::read<dim>( parameter_file, parsed_velocity_function, parsed_diffusivity_function, parsed_source_function, parsed_boundary_function, parsed_exact_solution_function, parsed_initial_values_function); this->create_coarse_grid(); this->velocity_function = &parsed_velocity_function; this->diffusivity_function = &parsed_diffusivity_function; this->source_function = &parsed_source_function; this->exact_solution_function = &parsed_exact_solution_function; /* Generalizing the handling of auxiliary functions is complicated. In most cases one should be able to use a ParsedFunction, but the generality of Function<dim>* allows for a standard way to account for any possible derived class of Function<dim>. For example this allows for.... - an optional initial values function that interpolates an old solution loaded from disk. - flexibily implementing general boundary conditions */ /* Initial values function */ Triangulation<dim> field_grid; DoFHandler<dim> field_dof_handler(field_grid); Vector<double> field_solution; if (this->params.initial_values.function_name != "interpolate_old_field") { // This will write files that need to exist. this->setup_system(true); FEFieldTools::save_field_parts(this->triangulation, this->dof_handler, this->solution); } FEFieldTools::load_field_parts( field_grid, field_dof_handler, field_solution, this->fe); MyFunctions::ExtrapolatedField<dim> field_function( field_dof_handler, field_solution); if (this->params.initial_values.function_name == "interpolate_old_field") { this->initial_values_function = &field_function; } else if (this->params.initial_values.function_name == "parsed") { this->initial_values_function = &parsed_initial_values_function; } /* Boundary condition functions */ unsigned int boundary_count = this->params.boundary_conditions.implementation_types.size(); assert(params.boundary_conditions.function_names.size() == boundary_count); std::vector<ConstantFunction<dim>> constant_functions; for (unsigned int boundary = 0; boundary < boundary_count; boundary++) { std::string boundary_type = this->params.boundary_conditions.implementation_types[boundary]; std::string function_name = this->params.boundary_conditions.function_names[boundary]; if (function_name == "constant") { double value = this->params.boundary_conditions.function_double_arguments.front(); this->params.boundary_conditions.function_double_arguments.pop_front(); constant_functions.push_back(ConstantFunction<dim>(value)); } } /* Organize boundary functions to simplify application during the time loop */ unsigned int constant_function_index = 0; for (unsigned int boundary = 0; boundary < boundary_count; boundary++) { std::string boundary_type = this->params.boundary_conditions.implementation_types[boundary]; std::string function_name = this->params.boundary_conditions.function_names[boundary]; if (function_name == "constant") { assert(constant_function_index < constant_functions.size()); this->boundary_functions.push_back(&constant_functions[constant_function_index]); constant_function_index++; } else if (function_name == "parsed") { this->boundary_functions.push_back(&parsed_boundary_function); } } /* Attach manifolds for exact geometry */ assert(dim < 3); /* @todo 3D extension: For now the CylindricalManifold is being ommitted. deal.II makes is impractical for a CylindricalManifold to exist in 2D. */ SphericalManifold<dim> spherical_manifold(this->spherical_manifold_center); for (unsigned int i = 0; i < manifold_ids.size(); i++) { if (manifold_descriptors[i] == "spherical") { this->triangulation.set_manifold(manifold_ids[i], spherical_manifold); } } /* Run initial grid refinement cycles */ this->triangulation.refine_global(this->params.refinement.initial_global_cycles); Refinement::refine_mesh_near_boundaries( this->triangulation, this->params.refinement.boundaries_to_refine, this->params.refinement.initial_boundary_cycles); /* Initialize the linear system and constraints */ this->setup_system(); Vector<double> tmp; Vector<double> forcing_terms; double epsilon = 1e-14; /* Iterate through time steps A goto statement (to the start_time_iteration label) is used to handle pre-refinement. Generally goto's are a terrible idea; but the step-26 tutorial makes a case for it being instructive here. It would probably be better to redesign this without a goto. */ unsigned int pre_refinement_step = 0; start_time_iteration: tmp.reinit(this->solution.size()); VectorTools::interpolate(this->dof_handler, *this->initial_values_function, this->old_solution); this->solution = this->old_solution; this->write_solution(); /* Write the initial values */ this->time_step_counter = 0; this->time = 0; double theta = this->params.time.semi_implicit_theta; this->time_step_size = this->params.time.step_size; if (this->time_step_size < EPSILON) { this->time_step_size = this->params.time.end_time/ pow(2., this->params.time.global_refinement_levels); } double Delta_t = this->time_step_size; bool final_time_step = false; bool output_this_step = true; SolverStatus solver_status; do { ++this->time_step_counter; /* Typically you see something more like "time += Delta_t" in time-dependent codes, but that method accumulates finite-precision roundoff errors. This is a better way. */ time = Delta_t*time_step_counter; /* Set some flags that will control output for this step. */ final_time_step = this->time > this->params.time.end_time - epsilon; bool at_interval = false; if (this->params.output.time_step_interval == 1) { at_interval = true; } else if (this->params.output.time_step_interval != 0) { if ((time_step_counter % this->params.output.time_step_interval) == 0) { at_interval = true; } } else { at_interval = false; } if (at_interval) { output_this_step = true; } else { output_this_step = false; } /* Report the time step index and time. */ if (output_this_step) { std::cout << "Time step " << this->time_step_counter << " at t=" << this->time << std::endl; } /* Add mass and convection-diffusion matrix terms to the RHS. */ this->mass_matrix.vmult(this->system_rhs, this->old_solution); this->convection_diffusion_matrix.vmult(tmp, this->old_solution); this->system_rhs.add(-(1. - theta)*Delta_t, tmp); /* Add source/forcing terms to the RHS. */ source_function->set_time(this->time); VectorTools::create_right_hand_side( this->dof_handler, QGauss<dim>(fe.degree+1), *source_function, tmp); forcing_terms = tmp; forcing_terms *= Delta_t*theta; source_function->set_time(this->time - Delta_t); VectorTools::create_right_hand_side( this->dof_handler, QGauss<dim>(fe.degree + 1), *source_function, tmp); forcing_terms.add(Delta_t*(1 - theta), tmp); this->system_rhs += forcing_terms; /* Add natural boundary conditions to RHS */ for (unsigned int boundary = 0; boundary < boundary_count; boundary++) { if ((this->params.boundary_conditions.implementation_types[boundary] != "natural")) { continue; } std::set<types::boundary_id> dealii_boundary_id = {boundary}; /* @todo: This throws a warning */ boundary_functions[boundary]->set_time(this->time); MyVectorTools::my_create_boundary_right_hand_side( this->dof_handler, QGauss<dim-1>(fe.degree + 1), *boundary_functions[boundary], tmp, dealii_boundary_id); forcing_terms = tmp; forcing_terms *= Delta_t*theta; boundary_functions[boundary]->set_time(this->time - Delta_t); MyVectorTools::my_create_boundary_right_hand_side( this->dof_handler, QGauss<dim-1>(fe.degree + 1), *boundary_functions[boundary], tmp, dealii_boundary_id); forcing_terms.add(Delta_t*(1. - theta), tmp); this->system_rhs += forcing_terms; } /* Make the system matrix and apply constraints. */ system_matrix.copy_from(mass_matrix); system_matrix.add(theta*Delta_t, convection_diffusion_matrix); constraints.condense(system_matrix, system_rhs); { /* Apply strong boundary conditions */ std::map<types::global_dof_index, double> boundary_values; for (unsigned int boundary = 0; boundary < boundary_count; boundary++) { if (this->params.boundary_conditions.implementation_types[boundary] != "strong") { continue; } boundary_functions[boundary]->set_time(time); VectorTools::interpolate_boundary_values( this->dof_handler, boundary, *boundary_functions[boundary], boundary_values ); } MatrixTools::apply_boundary_values( boundary_values, this->system_matrix, this->solution, this->system_rhs); } solver_status = this->solve_time_step(!output_this_step); /* Check if a steady state has been reached. */ if ((this->params.time.stop_when_steady) & (solver_status.last_step == 0)) { std::cout << "Reached steady state at t = " << this->time << std::endl; final_time_step = true; output_this_step = true; } /* Write the solution. */ if (output_this_step) { this->write_solution(); if (this->params.verification.enabled) { this->append_verification_table(); } } /* Adaptively refine the grid. */ if ((time_step_counter == 1) && (pre_refinement_step < this->params.refinement.adaptive.initial_cycles)) { this->adaptive_refine(); ++pre_refinement_step; tmp.reinit(this->solution.size()); std::cout << std::endl; goto start_time_iteration; } else if ((time_step_counter > 0) && (params.refinement.adaptive.interval > 0) // % 0 (mod 0) is undefined && (time_step_counter % params.refinement.adaptive.interval == 0)) { for (unsigned int cycle = 0; cycle < params.refinement.adaptive.cycles_at_interval; cycle++) { this->adaptive_refine(); } tmp.reinit(this->solution.size()); } this->old_solution = this->solution; } while (!final_time_step); /* Write FEFieldFunction related data so that it can be used as initial values for another run. */ FEFieldTools::save_field_parts(triangulation, dof_handler, solution); /* Write the convergence/verification table. */ if (this->params.verification.enabled) { this->write_verification_table(); } /* Write the 1D solution table */ if (dim == 1) { this->write_1D_solution_table(this->solution_table_1D_file_name); } /* Clean up. Manifolds must be detached from Triangulations before leaving this scope. */ this->triangulation.set_manifold(0); } } #endif
63a8e31f1697eaa03c3fececc32ad7bb1120b92c
11111216d72b941f5907a8ebba7b463ededb1e55
/omnetpp-5.1.1/src/common/histogram.h
564e056d8d95032481ab0f89c703553df6e8b589
[]
no_license
kevinc-303/Final-Year-Project
4b1e40af0773bb53e8ffa78cdd55dd42ed1a579d
18f4b57bfba8f7638385d694c6ec34d2f74f6b55
refs/heads/main
2023-04-14T01:34:57.714629
2021-04-27T21:34:38
2021-04-27T21:34:38
362,257,257
0
0
null
null
null
null
UTF-8
C++
false
false
3,093
h
histogram.h
//========================================================================= // HISTOGRAM.H - part of // OMNeT++/OMNEST // Discrete System Simulation in C++ // // Author: Andras Varga // //========================================================================= /*--------------------------------------------------------------* Copyright (C) 1992-2015 Andras Varga Copyright (C) 2006-2015 OpenSim Ltd. This file is distributed WITHOUT ANY WARRANTY. See the file `license' for details on this and other legal matters. *--------------------------------------------------------------*/ #ifndef __OMNETPP_COMMON_HISTOGRAM_H #define __OMNETPP_COMMON_HISTOGRAM_H #include <vector> #include "commondefs.h" #include "commonutil.h" namespace omnetpp { namespace common { /** * Class for storing histogram bins (cells). */ class COMMON_API Histogram { public: struct Bin {double lowerBound, count;}; private: std::vector<Bin> bins; public: Histogram() {} Histogram(const Histogram& other) : bins(other.bins) {} void reserveBins(int expectedNumberOfBins) {bins.reserve(expectedNumberOfBins);} void addBin(double lowerBound, double count = 0); void collect(double value, double weight = 1); void collectIntoBin(int k, double weight = 1); const std::vector<Bin>& getBins() const {return bins;} std::vector<double> getBinLowerBounds() const; std::vector<double> getBinValues() const; int getNumBins() const {return bins.size();} double getBinLowerBound(int k) const; double getBinUpperBound(int k) const; double getBinValue(int k) const; }; inline void Histogram::addBin(double lowerBound, double count) { Assert(bins.empty() || lowerBound > bins.back().lowerBound); // preserve ordering bins.push_back(Bin { lowerBound, count} ); } inline void Histogram::collect(double value, double weight) { //TODO find corresponding cell, then add } inline void Histogram::collectIntoBin(int k, double weight) { Assert(k >= 0 && k < (int)bins.size()); bins[k].count += weight; } inline double Histogram::getBinLowerBound(int k) const { Assert(k >= 0 && k < (int)bins.size()); return bins[k].lowerBound; } inline double Histogram::getBinUpperBound(int k) const { Assert(k >= 0 && k < (int)bins.size()); return (k == (int)bins.size()-1) ? POSITIVE_INFINITY : bins[k+1].lowerBound; } inline double Histogram::getBinValue(int k) const { Assert(k >= 0 && k < (int)bins.size()); return bins[k].count; } inline std::vector<double> Histogram::getBinLowerBounds() const { std::vector<double> result; result.reserve(bins.size()); for (auto& bin : bins) result.push_back(bin.lowerBound); return result; } inline std::vector<double> Histogram::getBinValues() const { std::vector<double> result; result.reserve(bins.size()); for (auto& bin : bins) result.push_back(bin.count); return result; } } // namespace common } // namespace omnetpp #endif